/* ============================================================================
   BUILDE CONSTRUCTION — DESIGN SYSTEM v2
   Palette : forest green + warm milk + champagne gold
   Type    : Cormorant Garamond (display) · DM Sans (body)
   Inspired by esejones.com pattern
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  /* Green scale — primary brand */
  --green-950: #010d07;
  --green-900: #023327;  /* WP primary */
  --green-800: #034030;
  --green-700: #05593f;
  --green-600: #077050;
  --green-500: #0d8f66;
  --green-400: #29ae85;
  --green-300: #72cdb0;
  --green-200: #b7e5d6;
  --green-100: #dff3ec;
  --green-50 : #f0faf5;

  /* Accent — deep burgundy (brand color #400e17)
     On dark backgrounds use --gold-lt (a brighter wine) so accents stay clearly visible. */
  --gold     : #400e17;   /* primary brand accent — for LIGHT backgrounds */
  --gold-lt  : #c25e72;   /* brighter wine — accents on DARK backgrounds */
  --gold-dk  : #2a0910;   /* deeper shade */
  --gold-pale: rgba(64,14,23,.12);

  /* Milk / neutrals */
  --milk     : #F5F4F2;   /* WP body bg */
  --milk-deep: #ECEAE4;
  --cream    : #FAF8F4;
  --pearl    : #FFFFFF;
  --ink      : #023327;   /* deepest text = primary green */
  --text     : #585858;   /* WP body text */
  --text-mid : #7a7a7a;
  --text-soft: #a8a49e;

  /* Borders */
  --border   : rgba(2,51,39,.10);
  --border-md: rgba(2,51,39,.18);

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body   : 'DM Sans', system-ui, sans-serif;

  /* Motion */
  --ease-out : cubic-bezier(.22,1,.36,1);
  --ease-io  : cubic-bezier(.65,0,.35,1);

  /* Layout */
  --nav-h    : 72px;
  --max-w    : 1280px;
  --pad-x    : clamp(20px, 4vw, 64px);
  --section-y: clamp(72px, 8vw, 128px);
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body { background: var(--milk); color: var(--text); font-family: var(--font-body); font-weight: 400; font-size: 1rem; line-height: 1.7; overflow-x: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; background: none; cursor: pointer; }

::selection { background: var(--green-900); color: #fff; }
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--milk-deep); }
::-webkit-scrollbar-thumb { background: var(--green-700); border-radius: 99px; border: 2px solid var(--milk-deep); }

/* ── Page loader ─────────────────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; background: var(--milk); z-index: 9000;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 28px;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.out { opacity: 0; visibility: hidden; }
#loader img { height: 48px; width: auto; opacity: 0; animation: ldFade .7s ease .3s forwards; }
#loader-bar { width: 160px; height: 2px; background: var(--border); border-radius: 2px; overflow: hidden; }
#loader-bar::after {
  content: ''; display: block; height: 100%; width: 100%;
  background: var(--green-900);
  transform: translateX(-100%);
  animation: ldSlide 1.1s var(--ease-out) .5s forwards;
}
@keyframes ldFade { to { opacity: 1; } }
@keyframes ldSlide { to { transform: translateX(100%); } }

/* ── Glassmorphism ───────────────────────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,.65);
}
.glass-soft {
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,.45);
}
.glass-frost {
  background: rgba(245,244,242,.82);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,.75);
}
.glass-dark {
  background: rgba(2,51,39,.28);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border: 1px solid rgba(255,255,255,.14);
}
.glass-green {
  background: rgba(2,51,39,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
}

/* ── Aurora backgrounds ──────────────────────────────────────────────────── */
.bg-aurora {
  background:
    radial-gradient(48% 48% at 15% 20%, rgba(183,229,214,.55) 0%, transparent 70%),
    radial-gradient(42% 42% at 85% 15%, rgba(224,243,236,.7) 0%, transparent 70%),
    radial-gradient(50% 50% at 72% 82%, rgba(64,14,23,.10) 0%, transparent 70%),
    var(--milk);
}
.bg-aurora-deep {
  background:
    radial-gradient(45% 45% at 10% 30%, rgba(114,205,176,.3) 0%, transparent 65%),
    radial-gradient(40% 50% at 90% 70%, rgba(64,14,23,.12) 0%, transparent 65%),
    var(--cream);
}

/* ── Typography ──────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; color: var(--ink); letter-spacing: -.015em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.25rem, 1.8vw, 1.65rem); }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; font-weight: 600; }

.display { font-family: var(--font-display); }

/* Eyebrow label */
.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);              /* burgundy accent */
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: currentColor; opacity: .5; }
.eyebrow--gold { color: var(--gold); }
.eyebrow--light { color: var(--green-200); }

/* ── Utilities ───────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.container--wide { max-width: 1440px; }
.section { padding: var(--section-y) 0; }
.text-center { text-align: center; }
.text-left   { text-align: left; }

/* Animated underline */
.underline-anim { position: relative; }
.underline-anim::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease-out);
}
.underline-anim:hover::after { transform: scaleX(1); transform-origin: left; }

/* Section heading */
.section-head { max-width: 680px; }
.section-head--center { margin: 0 auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head--center .eyebrow::after { content: ''; display: inline-block; width: 24px; height: 1px; background: currentColor; opacity: .5; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 16px; line-height: 1.1; }
.section-head h2 em { font-style: italic; font-weight: 600; color: var(--green-900); }
.section-head p { color: var(--text); font-size: clamp(.92rem,1.2vw,1.05rem); line-height: 1.75; }
.section-head--light h2 { color: #fff; }
.section-head--light h2 em { color: var(--green-200); }
.section-head--light p { color: rgba(255,255,255,.65); }
.section-head--light .eyebrow { color: var(--green-200); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: .85rem; font-weight: 600;
  border-radius: 999px; padding: 13px 28px;
  transition: transform .3s var(--ease-out), box-shadow .3s ease, background .3s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { transition: transform .3s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-solid {
  background: var(--gold); color: #fff;            /* burgundy primary button */
}
.btn-solid:hover { background: #5a1420; box-shadow: 0 16px 40px -12px rgba(64,14,23,.5); }

.btn-gold { background: var(--gold-lt); color: #fff; }
.btn-gold:hover { background: #5a1420; box-shadow: 0 16px 40px -12px rgba(64,14,23,.5); }

.btn-outline { border: 1.5px solid var(--border-md); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--gold); background: var(--gold); color: #fff; }

.btn-white { background: #fff; color: var(--green-900); }
.btn-white:hover { box-shadow: 0 16px 40px -12px rgba(0,0,0,.4); }

.btn-glass { color: #fff; }
.btn-glass:hover { background: rgba(255,255,255,.25); }

/* ── Navbar ──────────────────────────────────────────────────────────────── */
#nav {
  position: fixed; inset-x: 0; top: 0;
  height: var(--nav-h); z-index: 500;
  transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease, height .4s ease;
}
#nav.solid {
  height: 64px;
  background: rgba(245,244,242,.88);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 4px 30px -12px rgba(2,51,39,.2);
  border-bottom: 1px solid rgba(255,255,255,.75);
}
.nav-inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 32px; transition: height .4s ease; }
#nav.solid .nav-inner { height: 64px; }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-wrap {
  padding: 6px 14px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(2,51,39,.12);
  transition: box-shadow .3s ease, opacity .4s ease;
}
.nav-logo-wrap:hover { box-shadow: 0 4px 16px rgba(2,51,39,.2); }
.nav-logo-wrap img { height: 32px; width: auto; object-fit: contain; display: block; }

/* Nav logo swap: light shown transparent, dark shown when solid */
.nav-logo-img { height: 34px; width: auto; object-fit: contain; display: block; transition: opacity .4s ease; }
.nav-logo-light { position: absolute; }  /* floats over, hidden when solid */
#nav-logo-dark-wrap { opacity: 0; pointer-events: none; transition: opacity .4s ease; }
/* When nav is solid, show dark logo pill, hide light logo */
#nav.solid #nav-logo-light { opacity: 0; pointer-events: none; }
#nav.solid #nav-logo-dark-wrap { opacity: 1; pointer-events: auto; }
/* When nav is transparent, show light logo */
#nav:not(.solid) #nav-logo-light { opacity: 1; pointer-events: auto; }
#nav:not(.solid) #nav-logo-dark-wrap { opacity: 0; pointer-events: none; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: .82rem; font-weight: 500; letter-spacing: .02em;
  transition: color .3s ease;
}
.nav-link--light { color: rgba(255,255,255,.88); }
.nav-link--light:hover { color: #fff; }
.nav-link--dark  { color: rgba(2,51,39,.72); }
.nav-link--dark:hover, .nav-link--dark.active { color: var(--gold); }

.nav-cta-btn {
  font-size: .8rem; font-weight: 600; border-radius: 999px; padding: 10px 22px;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.nav-cta-btn--light { background: #fff; color: var(--green-900); }
.nav-cta-btn--light:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -10px rgba(0,0,0,.4); }
.nav-cta-btn--dark { background: var(--gold); color: #fff; }
.nav-cta-btn--dark:hover { background: #5a1420; transform: translateY(-1px); box-shadow: 0 12px 30px -10px rgba(64,14,23,.55); }

.nav-burger { display: none; width: 44px; height: 44px; border-radius: 50%; align-items: center; justify-content: center; flex-direction: column; gap: 5px; padding: 8px; transition: background .3s ease; }
.nav-burger span { display: block; width: 22px; height: 1.5px; border-radius: 2px; transition: transform .35s ease, opacity .35s ease; }
.nav-burger--light span { background: #fff; }
.nav-burger--dark  span { background: var(--green-900); }
.nav-burger:hover { background: rgba(2,51,39,.07); }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* Mobile overlay */
#nav-overlay {
  position: fixed; inset: 0; z-index: 499; background: var(--green-950);
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  transition: transform .55s var(--ease-out);
}
#nav-overlay.open { transform: translateY(0); }
.overlay-glow {
  pointer-events: none; position: absolute; inset: 0;
  background: radial-gradient(50% 40% at 80% 10%, rgba(114,205,176,.4), transparent 70%),
              radial-gradient(45% 45% at 10% 90%, rgba(13,143,102,.3), transparent 70%);
}
.overlay-header { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); padding: 0 var(--pad-x); }
.overlay-links { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0 var(--pad-x); gap: 4px; }
.overlay-link {
  font-family: var(--font-display); font-size: clamp(2.2rem, 8vw, 3.5rem); font-weight: 300;
  color: rgba(255,255,255,.5); padding: 6px 0; display: flex; align-items: baseline; gap: 16px;
  transition: color .3s ease;
}
.overlay-link:hover, .overlay-link.active { color: #fff; }
.overlay-link-num { font-family: var(--font-body); font-size: .72rem; font-weight: 500; color: var(--green-300); opacity: .6; }
.overlay-footer { border-top: 1px solid rgba(255,255,255,.1); padding: 20px var(--pad-x); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.overlay-footer a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .3s ease; }
.overlay-footer a:hover { color: #fff; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100svh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
/* Video filter to punch it up a touch */
.hero-media video { filter: saturate(1.08) contrast(1.05) brightness(1.0); }
/* Overlays */
.hero-ov-base { position: absolute; inset: 0; background: rgba(2,51,39,.35); }
.hero-ov-grad { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(2,51,39,.4) 0%, transparent 40%, rgba(2,51,39,.5) 100%); }
.hero-ov-vign { position: absolute; inset: 0; box-shadow: inset 0 0 200px 60px rgba(2,20,15,.5); pointer-events: none; }
/* Fade to milk at bottom */
.hero-ov-fade { position: absolute; inset-x: 0; bottom: 0; height: 200px; background: linear-gradient(to bottom, transparent, var(--milk)); }

.hero-content {
  position: relative; z-index: 2;
  text-align: center; display: flex; flex-direction: column; align-items: center;
  padding: 0 var(--pad-x);
}
.hero-badge {
  margin-bottom: 28px;
  padding: 7px 18px 7px 14px;
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px;
  font-family: var(--font-body); font-size: .7rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.9);
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.75)} }
.hero-h1 {
  max-width: 900px; font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 300;
  line-height: 1.02; color: #fff; letter-spacing: -.03em;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero-h1 em { font-style: italic; font-weight: 600; color: var(--gold-lt); }
.hero-sub { margin-top: 24px; max-width: 480px; font-size: clamp(.95rem,1.5vw,1.12rem); font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.78); }
.hero-btns { margin-top: 40px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-scroll-hint {
  position: absolute; bottom: 220px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.55);
}
.hero-scroll-line { width: 1px; height: 50px; background: rgba(255,255,255,.25); position: relative; overflow: hidden; }
.hero-scroll-line::after { content:''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,.7); animation: scrollDot 1.8s ease infinite; }
@keyframes scrollDot { 0%{top:-100%} 100%{top:100%} }

/* ── Marquee ─────────────────────────────────────────────────────────────── */
.marquee-band { overflow: hidden; white-space: nowrap; background: var(--green-900); padding: 18px 0; }
.marquee-track { display: inline-flex; animation: marquee 32s linear infinite; }
.marquee-track span {
  font-family: var(--font-body); font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.85);
  padding: 0 32px;
}
.marquee-track .sep { color: var(--gold-lt); padding: 0 16px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Stats grid ──────────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(2,51,39,.1);
  background: rgba(2,51,39,.06);
}
.stat-cell {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 40px 32px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.stat-num {
  font-family: var(--font-display); font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600; color: var(--green-900); line-height: 1; letter-spacing: -.03em;
}
.stat-label { margin-top: 8px; font-size: .7rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: rgba(2,51,39,.5); }

/* ── About split ─────────────────────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(48px,6vw,80px); }
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(2,51,39,.35);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 8s ease; }
.about-img-wrap:hover img { transform: scale(1.04); }
.about-float-card {
  position: absolute; bottom: -8px; right: -8px;
  border-radius: 20px; padding: 24px 28px;
  max-width: 200px;
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}
.about-float-num { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--green-900); line-height: 1; }
.about-float-label { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(2,51,39,.5); margin-top: 4px; }
.about-text .eyebrow { margin-bottom: 20px; }
.about-text h2 { margin-bottom: 20px; }
.about-text h2 em { font-style: italic; font-weight: 700; color: var(--green-900); }
.about-text p { color: var(--text); line-height: 1.8; margin-bottom: 18px; font-size: clamp(.9rem,1.1vw,1rem); }
.about-checks { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.about-check { display: flex; align-items: center; gap: 12px; font-size: .93rem; color: var(--ink); }
.about-check-ico { width: 26px; height: 26px; border-radius: 50%; background: rgba(64,14,23,.08); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--gold); flex-shrink: 0; }

/* ── Service cards ───────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: #fff; border-radius: 26px;
  padding: 40px 36px;
  border: 1px solid rgba(2,51,39,.06);
  box-shadow: 0 10px 40px -20px rgba(2,51,39,.18);
  transition: transform .5s var(--ease-out), box-shadow .5s ease;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold), #7a1f2e);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -25px rgba(64,14,23,.35); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green-50); border: 1.5px solid rgba(2,51,39,.12);
  font-family: var(--font-body); font-size: .8rem; font-weight: 700;
  color: var(--green-800); letter-spacing: .05em;
  margin-bottom: 20px; line-height: 1; flex-shrink: 0;
  transition: background .3s ease, border-color .3s ease;
}
.svc-card:hover .svc-num { background: var(--gold); color: #fff; border-color: var(--gold); }
.svc-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(64,14,23,.06); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--gold); margin-bottom: 20px; }
.svc-card h4 { font-size: clamp(1.1rem,1.5vw,1.35rem); margin-bottom: 12px; color: var(--ink); }
.svc-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 600; color: var(--gold); letter-spacing: .04em; transition: gap .3s ease, color .3s ease; }
.svc-card:hover .svc-link { gap: 10px; color: #5a1420; }

/* ── Project cards ───────────────────────────────────────────────────────── */
.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.proj-card {
  position: relative; overflow: hidden;
  border-radius: 24px; cursor: pointer;
  background: var(--ink);
  box-shadow: 0 10px 40px -20px rgba(2,51,39,.25);
  transition: transform .6s var(--ease-out), box-shadow .6s ease;
}
.proj-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(64,14,23,.4); }
.proj-card--xl  { grid-column: span 7; }
.proj-card--lg  { grid-column: span 5; }
.proj-card--md  { grid-column: span 4; }
.proj-card-media { position: relative; }
.proj-card-media video, .proj-card-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.78); transition: transform .9s ease, filter .6s ease; }
.proj-card:hover .proj-card-media video,
.proj-card:hover .proj-card-media img { transform: scale(1.07); filter: brightness(.65); }
.proj-card-media-inner { height: 100%; min-height: 480px; overflow: hidden; }
.proj-card--md .proj-card-media-inner { min-height: 380px; }
.proj-card-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,20,10,.88) 0%, rgba(2,20,10,.1) 55%, transparent 100%); }
.proj-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px; }
.proj-card-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 8px;
}
.proj-card-tag::before { content: ''; width: 20px; height: 1px; background: currentColor; }
.proj-card h3, .proj-card h4 { color: #fff; margin-bottom: 8px; }
.proj-card h3 { font-size: clamp(1.3rem,2vw,2rem); }
.proj-card h4 { font-size: clamp(1.1rem,1.5vw,1.5rem); }
.proj-card-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.proj-card-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.4); }
.proj-card-meta span { font-size: .78rem; color: rgba(255,255,255,.6); }
.proj-card-arrow {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff; opacity: 0;
  transform: translateY(8px) scale(.9);
  transition: opacity .4s ease, transform .4s ease, background .3s ease;
}
.proj-card:hover .proj-card-arrow { opacity: 1; transform: translateY(0) scale(1); }
.proj-card:hover .proj-card-arrow { background: var(--gold-lt); color: #fff; }

.badge-pill {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-family: var(--font-body); font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}
.badge-complete { background: rgba(41,174,133,.15); color: #1a9970; }
.badge-ongoing  { background: rgba(158,65,80,.18); color: var(--gold-lt); }

/* ── Process steps ───────────────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-card {
  background: #fff; border-radius: 24px; padding: 36px 28px;
  border: 1px solid rgba(2,51,39,.06);
  box-shadow: 0 8px 32px -16px rgba(2,51,39,.14);
  position: relative;
  transition: transform .5s var(--ease-out), box-shadow .5s ease;
}
.process-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -20px rgba(64,14,23,.28); }
.process-card-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-900);
  font-family: var(--font-body); font-size: .82rem; font-weight: 700;
  color: #fff; letter-spacing: .04em;
  margin-bottom: 20px; line-height: 1; flex-shrink: 0;
}
.process-card-icon { font-size: 28px; color: var(--green-700); margin-bottom: 16px; }
.process-card h4 { font-size: 1.15rem; color: var(--ink); margin-bottom: 12px; }
.process-card p  { font-size: .88rem; color: var(--text-mid); line-height: 1.7; }

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  border-radius: 26px; padding: 36px 32px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 20px 50px -30px rgba(2,51,39,.35);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 32px 60px -25px rgba(64,14,23,.4); }
.testi-quote-icon { color: var(--green-300); font-size: 36px; line-height: 1; margin-bottom: 16px; }
.testi-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 18px; font-size: 13px; }
.testi-text { flex: 1; font-size: .97rem; line-height: 1.75; color: var(--ink); opacity: .75; margin-bottom: 28px; }
.testi-author { border-top: 1px solid rgba(2,51,39,.07); padding-top: 20px; }
.testi-name  { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.testi-role  { font-size: .8rem; color: var(--text-soft); }

/* ── Blog cards ──────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  background: #fff; border-radius: 26px; overflow: hidden;
  border: 1px solid rgba(2,51,39,.06);
  box-shadow: 0 10px 40px -20px rgba(2,51,39,.18);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s ease;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -25px rgba(64,14,23,.32); }
.blog-card-img { position: relative; height: 240px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-cat {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 14px; border-radius: 999px;
  font-size: .67rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  background: var(--green-900); color: #fff;
}
.blog-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: .72rem; color: var(--text-soft); letter-spacing: .08em; margin-bottom: 12px; }
.blog-card h4 { font-size: clamp(1rem,1.3vw,1.2rem); color: var(--ink); margin-bottom: 12px; line-height: 1.3; transition: color .3s ease; }
.blog-card:hover h4 { color: var(--gold); }
.blog-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(2,51,39,.06); padding-top: 16px; }
.blog-more { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 600; color: var(--gold); transition: gap .3s ease; }
.blog-card:hover .blog-more { gap: 10px; }
.blog-read-time { font-size: .74rem; color: var(--text-soft); }

/* ── CTA Band ────────────────────────────────────────────────────────────── */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--green-900); padding: clamp(72px,9vw,120px) 0; text-align: center;
}
.cta-band-glow {
  pointer-events: none; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 50% -5%, rgba(114,205,176,.35), transparent 70%),
              radial-gradient(40% 40% at 85% 90%, rgba(64,14,23,.18), transparent 70%);
}
.cta-band-content { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2rem,4.5vw,3.6rem); font-weight: 300; color: #fff; max-width: 720px; margin: 0 auto 16px; line-height: 1.1; }
.cta-band h2 em { font-style: italic; font-weight: 600; color: var(--gold-lt); }
.cta-band p { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 420px; margin: 0 auto 36px; }
.cta-band-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Page hero ───────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(.28) saturate(.6);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .breadcrumb { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 24px; }
.page-hero .breadcrumb a { color: var(--gold-lt); transition: opacity .3s ease; }
.page-hero .breadcrumb a:hover { opacity: .8; }
.page-hero .breadcrumb-sep { color: rgba(255,255,255,.25); }
.page-hero .eyebrow { color: var(--green-200); margin-bottom: 16px; }
.page-hero h1 { color: #fff; max-width: 800px; margin-bottom: 20px; }
.page-hero h1 em { color: var(--gold-lt); }
.page-hero p { font-size: clamp(.93rem,1.2vw,1.05rem); color: rgba(255,255,255,.65); max-width: 500px; }

/* ── Project single page ──────────────────────────────────────────────────── */
.proj-hero { position: relative; height: 90svh; min-height: 560px; overflow: hidden; }
.proj-hero video, .proj-hero img.cover { width: 100%; height: 100%; object-fit: cover; filter: brightness(.6); }
.proj-hero-ov { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(2,15,10,.15) 0%, rgba(2,15,10,.08) 40%, rgba(2,15,10,.7) 80%, rgba(2,15,10,.95) 100%); }
.proj-hero-ov-fade { position: absolute; inset-x: 0; bottom: 0; height: 120px; background: linear-gradient(to bottom, transparent, var(--milk)); }
.proj-hero-content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 0 0 48px; }
.proj-meta-row { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.proj-meta-item .label-xs { display: block; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 3px; }
.proj-meta-item span { font-size: .92rem; color: #fff; }

.proj-body { display: grid; grid-template-columns: 1fr 340px; gap: 56px; padding: var(--section-y) 0; align-items: start; }
.proj-sidebar { position: sticky; top: 90px; background: #fff; border-radius: 24px; padding: 32px; box-shadow: 0 10px 40px -20px rgba(2,51,39,.15); border: 1px solid rgba(2,51,39,.06); }
.proj-sidebar h5 { font-family: var(--font-body); font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.proj-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(2,51,39,.06); }
.proj-row:last-of-type { border-bottom: none; }
.proj-row-key { font-size: .73rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); flex-shrink: 0; }
.proj-row-val { font-size: .88rem; color: var(--ink); text-align: right; }

.proj-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.proj-gal--lg { grid-column: span 8; }
.proj-gal--sm { grid-column: span 4; }
.proj-gal--half { grid-column: span 6; }
.proj-gal-item { border-radius: 20px; overflow: hidden; }
.proj-gal-item img, .proj-gal-item video { width: 100%; height: 100%; min-height: 320px; object-fit: cover; transition: transform .7s ease; }
.proj-gal-item:hover img, .proj-gal-item:hover video { transform: scale(1.04); }

/* ── Service single ──────────────────────────────────────────────────────── */
.svc-body { display: grid; grid-template-columns: 1fr 380px; gap: 56px; padding: var(--section-y) 0; align-items: start; }
.svc-img-block { border-radius: 28px; overflow: hidden; box-shadow: 0 40px 80px -30px rgba(2,51,39,.3); }
.svc-img-block img { width: 100%; height: 480px; object-fit: cover; }
.svc-why-card { background: #fff; border-radius: 24px; padding: 32px; border: 1px solid rgba(2,51,39,.08); margin-top: 20px; }
.svc-why-card h6 { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 20px; }
.svc-check-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(2,51,39,.06); }
.svc-check-row:last-child { border-bottom: none; }
.svc-check-ico { width: 22px; height: 22px; border-radius: 50%; background: rgba(2,51,39,.09); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--green-700); flex-shrink: 0; }
.svc-step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(2,51,39,.06); }
.svc-step:last-child { border-bottom: none; }
.svc-step-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 32px; }
.svc-step h5 { font-family: var(--font-body); font-size: .95rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.svc-step p { font-size: .87rem; color: var(--text-mid); line-height: 1.65; }

/* ── Blog single ─────────────────────────────────────────────────────────── */
.blog-post-hero { position: relative; height: 65svh; min-height: 480px; overflow: hidden; border-radius: 0 0 32px 32px; }
.blog-post-hero img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.45); }
.blog-post-hero-ov { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(2,20,10,.1) 0%, rgba(2,15,8,.72) 75%, rgba(2,51,39,.92) 100%); }
.blog-post-hero-content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 0 0 52px; }

.blog-post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; padding: 72px 0; align-items: start; }
.blog-post-body h3 { font-size: clamp(1.3rem,2vw,1.8rem); color: var(--ink); margin: 40px 0 14px; }
.blog-post-body p { font-size: 1.02rem; color: var(--text); line-height: 1.85; margin-bottom: 22px; }
.blog-post-body blockquote { border-left: 3px solid var(--green-900); padding: 20px 28px; background: var(--green-50); border-radius: 0 16px 16px 0; margin: 32px 0; }
.blog-post-body blockquote p { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--ink); margin-bottom: 0; }
.blog-post-body img { width: 100%; border-radius: 20px; margin: 32px 0; }
.blog-post-body ul { list-style: none; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.blog-post-body ul li { display: flex; gap: 12px; align-items: flex-start; font-size: .97rem; color: var(--text); line-height: 1.6; }
.blog-post-body ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green-700); margin-top: 8px; flex-shrink: 0; }
.sidebar-widget { background: #fff; border-radius: 22px; padding: 28px; border: 1px solid rgba(2,51,39,.07); margin-bottom: 20px; box-shadow: 0 8px 30px -16px rgba(2,51,39,.12); }
.sidebar-widget-title { font-family: var(--font-body); font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 20px; }
.sidebar-mini-post { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(2,51,39,.06); }
.sidebar-mini-post:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-mini-img { width: 68px; height: 68px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.sidebar-mini-post h6 { font-family: var(--font-body); font-size: .83rem; font-weight: 500; color: var(--ink); line-height: 1.4; margin-bottom: 4px; letter-spacing: 0; text-transform: none; }
.sidebar-mini-post span { font-size: .72rem; color: var(--text-soft); }
.sidebar-cat-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(2,51,39,.06); }
.sidebar-cat-row:last-child { border-bottom: none; }
.sidebar-cat-row a { font-size: .88rem; color: var(--text-mid); transition: color .3s ease; }
.sidebar-cat-row a:hover { color: var(--gold); }
.sidebar-cat-row span { font-size: .74rem; color: var(--text-soft); }

/* ── Contact page ────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: var(--section-y) 0; align-items: start; }
.contact-info h3 { margin-bottom: 16px; }
.contact-info > p { color: var(--text); line-height: 1.75; margin-bottom: 36px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 24px; }
.contact-ico { width: 48px; height: 48px; border-radius: 14px; background: var(--green-50); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--green-800); flex-shrink: 0; }
.contact-item h6 { font-family: var(--font-body); font-size: .78rem; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.contact-item p { font-size: .88rem; color: var(--text-mid); margin-bottom: 0; }
.contact-item a { transition: color .3s ease; }
.contact-item a:hover { color: var(--gold); }

.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: #fff; border: 1.5px solid rgba(2,51,39,.1); border-radius: 14px;
  padding: 14px 18px; font-size: .93rem; color: var(--ink);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-soft); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(7,112,80,.1);
}
.form-textarea { resize: vertical; min-height: 148px; }
.form-select { cursor: pointer; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  position: relative; overflow: hidden;
  background: var(--green-950); color: #fff;
}
footer::before { content: ''; display: block; height: 1px; background: linear-gradient(to right, transparent, rgba(114,205,176,.5), transparent); }
.foot-glow {
  pointer-events: none; position: absolute; inset: 0;
  background: radial-gradient(40% 50% at 85% 5%, rgba(41,174,133,.4), transparent 70%),
              radial-gradient(35% 45% at 5% 60%, rgba(114,205,176,.2), transparent 70%);
}
.foot-inner { position: relative; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.foot-top {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px,5vw,64px);
  padding: clamp(56px,7vw,80px) 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  align-items: start;
}
.foot-logo-wrap { display: inline-block; background: #fff; padding: 8px 16px; border-radius: 12px; margin-bottom: 24px; }
.foot-logo-wrap img { height: 36px; width: auto; object-fit: contain; display: block; }
.foot-tagline { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,2.1rem); font-weight: 300; line-height: 1.2; color: rgba(255,255,255,.85); max-width: 380px; margin-bottom: 28px; }
.foot-tagline em { font-style: italic; font-weight: 600; color: var(--green-200); }
.foot-socials { display: flex; flex-wrap: wrap; gap: 10px; }
.foot-social-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  font-size: .82rem; color: rgba(255,255,255,.7);
  transition: border-color .3s ease, color .3s ease;
}
.foot-social-pill:hover { border-color: rgba(255,255,255,.45); color: #fff; }
.foot-social-ico { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 12px; transition: background .3s ease; }
.foot-social-pill:hover .foot-social-ico { background: rgba(255,255,255,.2); }
/* Social icon circles */
.foot-social-circle {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.72); font-size: 15px;
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
}
.foot-social-circle:hover {
  background: var(--gold-lt); border-color: var(--gold-lt);
  color: var(--green-950); transform: translateY(-3px);
}
/* CTA card inside footer */
.foot-cta-card { border-radius: 26px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); backdrop-filter: blur(8px); padding: 32px; }
.foot-cta-card .eyebrow { color: var(--green-200); margin-bottom: 12px; }
.foot-cta-card h4 { font-size: 1.35rem; font-weight: 300; color: #fff; margin-bottom: 20px; line-height: 1.25; }
.foot-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 48px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-col-title { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.foot-col-links { display: flex; flex-direction: column; gap: 12px; }
.foot-col-link { font-size: .9rem; color: rgba(255,255,255,.6); transition: color .3s ease; }
.foot-col-link:hover { color: #fff; }
.foot-contact-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.foot-contact-icon { color: var(--green-300); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.foot-contact-text { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.foot-contact-text a:hover { color: #fff; }
/* Giant wordmark */
.foot-wordmark {
  text-align: center; font-family: var(--font-display); font-weight: 600;
  letter-spacing: -.02em; line-height: .8;
  font-size: clamp(3.5rem,16vw,14rem);
  background: linear-gradient(to bottom, rgba(255,255,255,.13) 0%, rgba(255,255,255,.02) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  user-select: none; overflow: hidden;
  padding: 12px 0;
}
.foot-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 20px 0; font-size: .76rem; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.08); }
.foot-bottom a { transition: color .3s ease; }
.foot-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── Scroll reveal ────────────────────────────────────────────────────────── */
.reveal-y { opacity: 0; transform: translateY(32px); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.reveal-x-l { opacity: 0; transform: translateX(-32px); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.reveal-x-r { opacity: 0; transform: translateX(32px); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.reveal-s { opacity: 0; transform: scale(.97); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.in { opacity: 1 !important; transform: none !important; }
[data-d="1"]{ transition-delay: .08s; }
[data-d="2"]{ transition-delay: .16s; }
[data-d="3"]{ transition-delay: .24s; }
[data-d="4"]{ transition-delay: .32s; }
[data-d="5"]{ transition-delay: .40s; }
[data-d="6"]{ transition-delay: .48s; }

/* ── Back to top ──────────────────────────────────────────────────────────── */
#btt {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green-900); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease, background .3s ease;
  cursor: pointer; box-shadow: 0 8px 24px rgba(2,51,39,.4);
}
#btt.show { opacity: 1; transform: translateY(0); }
#btt:hover { background: var(--green-800); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST, LUXURY FOCUSED
   Breakpoints: 1100 · 900 · 768 · 640 · 480 · 390
   ═══════════════════════════════════════════════════════════ */

/* ── 1100px — tablet landscape / small desktop ── */
@media (max-width: 1100px) {
  :root { --section-y: clamp(60px,7vw,100px); }

  /* Grids */
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-grid   { grid-template-columns: repeat(2, 1fr); }
  .testi-grid     { grid-template-columns: repeat(2, 1fr); }
  .blog-grid      { grid-template-columns: repeat(2, 1fr); }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .foot-links     { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .foot-top       { grid-template-columns: 1fr; }

  /* About split */
  .about-split    { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { aspect-ratio: 4/3; max-width: 560px; }
  .about-float-card { right: 0; bottom: -16px; }

  /* Project & service bodies */
  .proj-body          { grid-template-columns: 1fr; }
  .proj-sidebar       { position: static; }
  .svc-body           { grid-template-columns: 1fr; }
  .blog-post-layout   { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; gap: 52px; }

  /* Footer */
  .foot-tagline { font-size: 1.6rem; }
}

/* ── 900px — tablet portrait ── */
@media (max-width: 900px) {
  /* Project single page */
  .pj-intro-grid  { grid-template-columns: 1fr; gap: 40px; }
  .pj-sidebar     { position: static; }

  /* Team */
  .team-card .team-card-img { height: 300px; }

  /* Blog featured */
  .blog-featured-grid { grid-template-columns: 1fr !important; }

  /* Services page alternating rows */
  .svc-alt-row { grid-template-columns: 1fr !important; }
  .svc-alt-row .svc-alt-img { height: 340px; }

  /* Ph meta */
  .ph-meta { display: grid; grid-template-columns: repeat(3,1fr); }
  .ph-meta-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }

  /* Foot links */
  .foot-links { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ── 768px — large phone / small tablet ── */
@media (max-width: 768px) {
  :root {
    --nav-h    : 64px;
    --pad-x    : clamp(16px, 5vw, 32px);
    --section-y: clamp(52px, 7vw, 88px);
  }

  /* ── Navigation ── */
  .nav-links, .nav-cta-btn { display: none !important; }
  .nav-burger { display: flex !important; }
  #nav.solid { height: 58px; }

  /* ── Hero (homepage) ── */
  .hero-content { text-align: left; align-items: flex-start; }
  .hero-badge   { align-self: flex-start; }
  .hero-h1      { font-size: clamp(2.6rem, 10vw, 4rem); letter-spacing: -.025em; }
  .hero-sub     { font-size: .95rem; max-width: 100%; }
  .hero-btns    { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .hero-scroll-hint { display: none; }

  /* ── Marquee ── */
  .marquee-track span { font-size: .65rem; padding: 0 20px; }

  /* ── Stats ── */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1px; border-radius: 18px; }
  .stat-cell  { padding: 28px 20px; }
  .stat-num   { font-size: clamp(2.2rem, 8vw, 3rem); }

  /* ── About split ── */
  .about-split    { gap: 32px; }
  .about-img-wrap { aspect-ratio: 3/2; max-width: 100%; border-radius: 20px; }
  .about-float-card { right: -4px; bottom: -12px; padding: 18px 20px; max-width: 170px; border-radius: 16px; }
  .about-float-num  { font-size: 2.2rem; }
  .about-checks     { gap: 10px; }
  .about-check      { font-size: .88rem; }

  /* ── Services grid ── */
  .services-grid   { grid-template-columns: 1fr; gap: 12px; }
  .svc-card        { padding: 28px 24px; border-radius: 20px; }
  .svc-num         { width: 36px; height: 36px; font-size: .75rem; border-radius: 8px; }
  .svc-icon        { width: 44px; height: 44px; font-size: 18px; border-radius: 12px; }
  .svc-card h4     { font-size: 1.1rem; }

  /* ── Projects grid (homepage + listing) ── */
  .projects-grid  { grid-template-columns: 1fr; gap: 12px; }
  .projects-grid .proj-card,
  .projects-full-grid .proj-card,
  .proj-card--xl, .proj-card--lg, .proj-card--md { grid-column: span 12 !important; }
  .proj-card-media-inner { min-height: 280px !important; }
  .proj-card h3   { font-size: 1.5rem; }
  .proj-card h4   { font-size: 1.2rem; }
  .proj-card-content { padding: 20px 20px; }

  /* ── Process ── */
  .process-grid  { grid-template-columns: 1fr; gap: 12px; }
  .process-card  { border-radius: 18px; padding: 28px 22px; }
  .process-card-num { width: 36px; height: 36px; font-size: .75rem; border-radius: 8px; }

  /* ── Testimonials ── */
  .testi-grid    { grid-template-columns: 1fr; gap: 14px; }
  .testi-card    { padding: 28px 24px; border-radius: 20px; }
  .testi-text    { font-size: .9rem; }

  /* ── Gallery strip ── */
  .gallery-strip-grid {
    grid-template-columns: 1fr 1fr !important;
    height: 200px !important;
  }

  /* ── Blog ── */
  .blog-grid     { grid-template-columns: 1fr; gap: 14px; }
  .blog-card     { border-radius: 20px; }
  .blog-card-img { height: 220px; }
  .blog-featured { grid-template-columns: 1fr !important; }
  .blog-featured-media { height: 280px !important; }

  /* ── CTA band ── */
  .cta-band      { padding: clamp(52px,7vw,80px) 0; }
  .cta-band h2   { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .cta-band p    { font-size: .92rem; }
  .cta-band-btns { flex-direction: column; align-items: center; gap: 10px; }
  .cta-band-btns .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* ── Page hero ── */
  .page-hero        { padding-top: calc(var(--nav-h) + 56px); padding-bottom: 60px; }
  .page-hero h1     { font-size: clamp(2.2rem, 8vw, 3.4rem); }

  /* ── Contact ── */
  .contact-grid    { grid-template-columns: 1fr; gap: 40px; }
  .form-row        { grid-template-columns: 1fr; }
  .contact-info h3 { font-size: 1.5rem; }

  /* ── Footer ── */
  .foot-links      { grid-template-columns: 1fr 1fr; gap: 20px; }
  .foot-tagline    { font-size: 1.4rem; }
  .foot-wordmark   { font-size: clamp(3rem, 18vw, 8rem); }
  .foot-bottom     { flex-direction: column; text-align: center; gap: 8px; }
  .foot-cta-card   { padding: 24px 20px; border-radius: 20px; }
  .foot-top        { gap: 28px; padding: 48px 0; }

  /* ── Back to top ── */
  #btt { bottom: 20px; right: 16px; width: 40px; height: 40px; font-size: 12px; }
}

/* ── 640px — medium phone ── */
@media (max-width: 640px) {
  /* Project single hero */
  .ph-title     { font-size: clamp(2rem, 8vw, 3rem); letter-spacing: -.03em; }
  .ph-intro     { font-size: .95rem; }
  .ph-meta      { display: grid; grid-template-columns: 1fr 1fr; border-radius: 12px; }
  .ph-meta-item { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .ph-meta-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.1); }
  .ph-meta-item:nth-child(even) { border-right: none; }

  /* Project overview */
  .pj-text h2   { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .pj-lead      { font-size: 1rem; }
  .pj-detail-card { padding: 24px 20px; border-radius: 18px; }
  .pj-quote     { padding: 18px 20px; }
  .pj-tags      { gap: 6px; }
  .pj-tag       { font-size: .68rem; padding: 5px 12px; }

  /* Project gallery — horizontal swipe on mobile */
  .gal-row { flex-direction: row; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; height: auto !important; gap: 8px; padding-bottom: 4px; }
  .gal-row::-webkit-scrollbar { display: none; }
  .gal-cell, .gal-cell--xl, .gal-cell--portrait, .gal-cell--panoramic {
    flex: 0 0 82vw; max-width: 340px; height: 260px;
    scroll-snap-align: start; border-radius: 16px;
  }
  .gal-row--hero    .gal-cell--xl      { flex: 0 0 85vw; height: 300px; }
  .gal-row--panoramic .gal-cell { flex: 0 0 90vw; height: 240px; }
  .gal-label { opacity: 1; transform: none; } /* always visible on touch */

  /* Mood banner */
  .pj-banner { height: clamp(280px, 60vw, 400px); }
  .pj-banner-quote { font-size: clamp(1.5rem, 5vw, 2.4rem); }

  /* Highlights grid */
  .highlights-grid { grid-template-columns: 1fr !important; }

  /* Blog single */
  .blog-post-hero   { height: 56vw; min-height: 280px; border-radius: 0; }
  .blog-post-layout { padding: 48px 0; gap: 32px; }

  /* Team grid */
  .team-grid-3     { grid-template-columns: 1fr !important; }
  .team-grid-2     { grid-template-columns: 1fr !important; }
  .team-card-img   { height: 280px; }

  /* Process steps (project scope) */
  .scope-step      { gap: 14px; padding: 16px 0; }
  .scope-step-num  { font-size: 1.3rem; }

  /* Footer */
  .foot-links     { grid-template-columns: 1fr; gap: 16px; }
  .foot-social-pill { font-size: .76rem; }
}

/* ── 480px — small phone ── */
@media (max-width: 480px) {
  :root { --pad-x: 16px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell  { padding: 22px 16px; }
  .stat-num   { font-size: 2rem; }

  /* Hero */
  .hero-h1    { font-size: clamp(2.2rem, 11vw, 3rem); }
  .hero-sub   { font-size: .9rem; }

  /* Buttons */
  .btn        { padding: 12px 22px; font-size: .78rem; }
  .btn-solid, .btn-gold, .btn-white { padding: 14px 26px; }

  /* Section headings */
  h2          { font-size: clamp(1.7rem, 7vw, 2.5rem); }
  .section-head h2 { font-size: clamp(1.7rem, 7vw, 2.5rem); }

  /* Service cards */
  .svc-card   { padding: 24px 20px; }

  /* About float card */
  .about-float-card { display: none; }

  /* Process cards */
  .process-card { padding: 22px 18px; }

  /* Blog cards */
  .blog-card-body  { padding: 22px 20px 24px; }
  .blog-card-img   { height: 200px; }

  /* Testi */
  .testi-card  { padding: 22px 20px; }

  /* Project single */
  .ph-meta    { grid-template-columns: 1fr 1fr; }
  .ph-bottom  { padding-bottom: 32px; }

  /* Footer */
  .foot-wordmark { font-size: clamp(2.4rem, 16vw, 5rem); }
  .foot-top      { padding: 36px 0; }
  .foot-cta-card { padding: 20px 18px; }

  /* Filter bar */
  .filter-scroll-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .filter-scroll-wrap::-webkit-scrollbar { display: none; }
  .filter-bar-inner   { display: inline-flex; gap: 6px; white-space: nowrap; min-width: 100%; }
}

/* ── 390px — iPhone-sized ── */
@media (max-width: 390px) {
  :root { --pad-x: 14px; }

  .hero-h1   { font-size: 2.1rem; }
  .ph-title  { font-size: 1.9rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-cell  { padding: 20px 16px; }

  /* Nav logo */
  .nav-logo-wrap img    { height: 26px; }
  .nav-logo-light       { height: 28px; }

  /* Gallery cells even smaller */
  .gal-cell, .gal-cell--xl, .gal-cell--portrait { flex: 0 0 88vw; height: 230px; }
  .gal-row--hero .gal-cell--xl { height: 260px; }
}

/* ============================================================
   PROJECT SINGLE PAGE — Mind-blowing layout
   ============================================================ */

/* ── Cinematic hero ── */
.ph-wrap {
  position: relative;
  height: 100svh; min-height: 640px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.ph-media { position: absolute; inset: 0; z-index: 0; }
.ph-video { width: 100%; height: 100%; object-fit: cover; filter: brightness(.75) saturate(1.05); }
.ph-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(2,15,8,.3) 0%,
    transparent 35%,
    rgba(2,15,8,.55) 70%,
    rgba(2,15,8,.92) 100%);
}
.ph-fade {
  position: absolute; inset-x: 0; bottom: 0; height: 180px;
  background: linear-gradient(to bottom, transparent, var(--milk));
}

/* breadcrumb row at top */
.ph-top {
  position: relative; z-index: 2;
  padding-top: calc(var(--nav-h) + 28px);
}

/* bottom content */
.ph-bottom {
  position: relative; z-index: 2;
  padding-bottom: clamp(48px, 7vh, 88px);
}
.ph-status { margin-bottom: 14px; display: inline-block; }
.ph-title {
  font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 300;
  color: #fff; line-height: 1; letter-spacing: -.03em;
  text-shadow: 0 4px 40px rgba(0,0,0,.3);
  margin-bottom: 16px;
}
.ph-intro {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 300;
  color: rgba(255,255,255,.75); max-width: 600px;
  line-height: 1.4; margin-bottom: 28px;
}

/* Meta strip */
.ph-meta {
  display: flex; align-items: stretch; flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  overflow: hidden;
  max-width: 860px;
}
.ph-meta-item {
  padding: 16px 24px;
  flex: 1; min-width: 120px;
  border-right: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: 4px;
}
.ph-meta-item:last-child { border-right: none; }
.ph-meta-key {
  font-size: .62rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.ph-meta-val {
  font-size: .88rem; font-weight: 500; color: #fff;
}

/* ── Intro split ── */
.pj-intro-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 64px; align-items: start;
}
.pj-text { }
.pj-text h2 em { font-style: italic; font-weight: 700; color: var(--green-900); }
.pj-lead {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 400; line-height: 1.65;
  color: var(--ink); margin-bottom: 20px;
}
.pj-text p {
  font-size: .97rem; color: var(--text); line-height: 1.85; margin-bottom: 16px;
}
.pj-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px;
}
.pj-tag {
  display: inline-block;
  padding: 6px 14px; border-radius: 999px;
  font-size: .73rem; font-weight: 500; letter-spacing: .06em;
  background: rgba(64,14,23,.05); color: var(--gold);
  border: 1px solid rgba(64,14,23,.18);
}

/* ── Sidebar card ── */
.pj-sidebar { position: sticky; top: 92px; }
.pj-detail-card {
  background: #fff; border-radius: 24px; padding: 32px 28px;
  border: 1px solid rgba(2,51,39,.08);
  box-shadow: 0 12px 40px -20px rgba(2,51,39,.18);
  margin-bottom: 20px;
}
.pj-detail-title {
  font-family: var(--font-body); font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--text-soft);
  padding-bottom: 16px; margin-bottom: 0;
  border-bottom: 1px solid rgba(2,51,39,.08);
}
.pj-detail-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px; padding: 13px 0;
  border-bottom: 1px solid rgba(2,51,39,.06);
}
.pj-detail-row:last-of-type { border-bottom: none; }
.pj-detail-key {
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-soft); flex-shrink: 0;
}
.pj-detail-val { font-size: .88rem; color: var(--ink); text-align: right; }

/* Pull quote */
.pj-quote {
  background: var(--green-50); border-left: 3px solid var(--green-900);
  border-radius: 0 20px 20px 0; padding: 24px 24px;
}
.pj-quote p {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; color: var(--ink); line-height: 1.6; margin-bottom: 10px;
}
.pj-quote cite {
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-soft);
}

/* ── Mood banner ── */
.pj-banner {
  position: relative; height: clamp(360px, 50vw, 620px); overflow: hidden;
}
.pj-banner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 8s ease;
}
.pj-banner:hover img { transform: scale(1.04); }
.pj-banner-ov {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(2,51,39,.7) 0%, rgba(2,15,8,.2) 100%);
}
.pj-banner-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  gap: 16px;
}
.pj-banner-quote {
  font-size: clamp(2rem, 5vw, 4rem); font-weight: 300;
  color: #fff; max-width: 640px; line-height: 1.1;
}
.pj-banner-quote em { font-style: italic; font-weight: 600; color: var(--gold-lt); }

/* ── Gallery system ── */
.gal-row {
  display: flex; gap: 10px; margin-bottom: 10px;
}
.gal-row--hero { height: clamp(420px, 55vw, 680px); }
.gal-row--thirds { height: clamp(260px, 30vw, 420px); }
.gal-row--panoramic, .gal-row { }
.gal-row--halves { height: clamp(280px, 35vw, 460px); }

.gal-cell {
  position: relative; border-radius: 20px;
  overflow: hidden; background: var(--ink);
  flex: 1;
  cursor: pointer;
}
.gal-cell--xl    { flex: 1.65; }
.gal-cell--portrait { flex: 1; }
.gal-cell--panoramic {
  flex: 1; height: clamp(260px, 28vw, 400px);
}

.gal-media {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  filter: brightness(.88) saturate(.95);
  transition: transform 1s ease, filter .6s ease;
}
.gal-cell:hover .gal-media {
  transform: scale(1.06);
  filter: brightness(.72) saturate(1.1);
}

/* Label that appears on hover */
.gal-label {
  position: absolute; bottom: 16px; left: 16px;
  font-size: .68rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  background: rgba(2,20,10,.55); backdrop-filter: blur(8px);
  padding: 6px 14px; border-radius: 999px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.gal-cell:hover .gal-label { opacity: 1; transform: translateY(0); }

/* project-single responsive — merged into main responsive block above */

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(2,51,39,.07);
  box-shadow: 0 10px 40px -20px rgba(2,51,39,.18);
  transition: transform .5s var(--ease-out), box-shadow .5s ease;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 60px -24px rgba(2,51,39,.32);
}
.team-card-img {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.team-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(.88) saturate(.85);
  transition: transform .9s ease, filter .6s ease;
}
.team-card:hover .team-card-img img {
  transform: scale(1.06);
  filter: brightness(.75) saturate(1.05);
}
.team-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,20,10,.5) 0%, transparent 55%);
  opacity: 0; transition: opacity .5s ease;
}
.team-card:hover .team-card-overlay { opacity: 1; }
.team-card-body {
  padding: 24px 26px 28px;
}
.team-card-role {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-700); margin-bottom: 6px;
}
.team-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 500;
  color: var(--ink); margin-bottom: 10px; line-height: 1.2;
}
.team-card-bio {
  font-size: .83rem; color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   FILTER BAR (projects page)
   ============================================================ */
.filter-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-scroll-wrap::-webkit-scrollbar { display: none; }

.filter-bar-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .filter-bar-inner {
    flex-wrap: nowrap;
    white-space: nowrap;
    padding-bottom: 2px;
  }
}

.filter-btn {
  display: inline-flex; align-items: center;
  font-family: var(--font-body);
  font-size: .76rem; font-weight: 600;
  border-radius: 999px; padding: 10px 22px;
  border: 1.5px solid rgba(2,51,39,.14);
  color: var(--text-mid); cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap; flex-shrink: 0;
  background: #fff;
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn.active {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
}

/* ── projects listing full grid ── */
.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
@media (max-width: 900px) {
  .projects-full-grid .proj-card { grid-column: span 6 !important; }
  .projects-full-grid .proj-card-media-inner { min-height: 320px !important; }
}
@media (max-width: 640px) {
  .projects-full-grid { grid-template-columns: 1fr; gap: 12px; }
  .projects-full-grid .proj-card { grid-column: span 1 !important; }
  .projects-full-grid .proj-card-media-inner { min-height: 260px !important; }
}

/* ── Gallery strip (homepage) ── */
.gallery-strip-grid { transition: grid-template-columns .3s ease; }
@media (max-width: 900px) {
  .gallery-strip-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    height: 380px !important;
  }
  .gallery-strip-grid > div { border-radius: 16px !important; }
}
@media (max-width: 640px) {
  .gallery-strip-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    height: 280px !important;
    gap: 8px !important;
  }
}
@media (max-width: 480px) {
  .gallery-strip-grid {
    grid-template-columns: 1fr 1fr !important;
    height: 240px !important;
    gap: 6px !important;
  }
}

/* ── Highlights grid in project pages ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .highlights-grid { grid-template-columns: 1fr; gap: 10px; } }

/* ── Estate features 4-col ── */
@media (max-width: 900px) {
  .estate-features-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .estate-features-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
}

/* ── Values grid (about) ── */
@media (max-width: 900px) {
  .values-grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .values-grid-3 { grid-template-columns: 1fr !important; }
}

/* ── Scope steps in project pages ── */
.scope-steps { margin-top: 44px; }

/* ── Blog featured layout ── */
.blog-featured-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}
@media (max-width: 768px) {
  .blog-featured-wrap { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   FINAL MOBILE OVERRIDES — must come LAST to win the cascade
   These fix all project-single and component issues on small screens
   ═══════════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────── 900px ── */
@media (max-width: 900px) {
  /* project overview: stack text then sidebar */
  .pj-intro-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .pj-sidebar { position: static !important; }

  /* hero meta: 3 across */
  .ph-meta {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    border-radius: 12px !important;
  }
  .ph-meta-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
    padding: 14px 16px !important;
  }
}

/* ────────────────────────────────────────────────── 768px ── */
@media (max-width: 768px) {
  /* ── project hero ── */
  .ph-wrap { min-height: 100svh; }
  .ph-title {
    font-size: clamp(2rem, 9vw, 3rem) !important;
    letter-spacing: -.025em !important;
    line-height: 1.05 !important;
  }
  .ph-intro { font-size: .92rem !important; margin-bottom: 16px !important; }
  .ph-bottom { padding-bottom: 24px !important; }

  /* ── hero meta: 2 across ── */
  .ph-meta {
    grid-template-columns: repeat(2, 1fr) !important;
    background: rgba(255,255,255,.1) !important;
  }
  .ph-meta-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.12) !important; }
  .ph-meta-item:nth-child(even) { border-right: none !important; }

  /* ── project overview ── */
  .pj-intro-grid { gap: 28px !important; }
  .pj-text h2 { font-size: clamp(1.65rem, 6vw, 2.2rem) !important; }
  .pj-lead    { font-size: .97rem !important; }

  /* ── service cards: fix number display ── */
  .svc-num {
    width: 36px !important; height: 36px !important;
    font-size: .72rem !important; border-radius: 8px !important;
    margin-bottom: 16px !important;
  }

  /* ── process cards ── */
  .process-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
  .process-card-num { width: 36px !important; height: 36px !important; font-size: .72rem !important; }

  /* ── footer ── */
  .foot-links { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
  .foot-top   { grid-template-columns: 1fr !important; padding: 44px 0 !important; }
}

/* ────────────────────────────────────────────────── 640px ── */
@media (max-width: 640px) {
  /* ── hero meta: 2 col tight ── */
  .ph-meta { grid-template-columns: 1fr 1fr !important; }
  .ph-meta-item { padding: 11px 14px !important; }
  .ph-meta-key  { font-size: .58rem !important; }
  .ph-meta-val  { font-size: .82rem !important; }

  /* ── pj-detail card ── */
  .pj-detail-card { padding: 22px 18px !important; }
  .pj-detail-row  { padding: 11px 0 !important; }

  /* ── service cards full width ── */
  .services-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
  .svc-card { padding: 24px 20px !important; border-radius: 18px !important; }

  /* ── footer ── */
  .foot-links { grid-template-columns: 1fr !important; gap: 14px !important; }
  .foot-col-title { margin-bottom: 12px !important; }
  .foot-wordmark  { font-size: clamp(2.8rem, 22vw, 7rem) !important; padding: 8px 0 !important; }
  .foot-bottom    { padding: 16px 0 !important; font-size: .7rem !important; }
}

/* ────────────────────────────────────────────────── 480px ── */
@media (max-width: 480px) {
  .ph-title { font-size: clamp(1.8rem, 9vw, 2.6rem) !important; }

  /* stats */
  .stats-grid { grid-template-columns: 1fr 1fr !important; }

  /* all content pads tight */
  .pj-quote { padding: 16px 18px !important; border-radius: 0 14px 14px 0 !important; }
  .pj-quote p { font-size: .95rem !important; }
}

/* ── Swipe gallery override ── */
/* Replace row-based gallery with a slide component below */

/* ═══════════════════════════════════════════════════════════════════
   SWIPE / SLIDE GALLERY  (replaces gal-row grid on all screens)
   ═══════════════════════════════════════════════════════════════════ */
.swipe-gallery {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  border-radius: 0; /* full bleed */
  user-select: none;
}

.swipe-track {
  display: flex;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
  will-change: transform;
  touch-action: pan-y;
}

.swipe-slide {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
}

.swipe-slide img,
.swipe-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* ── heights per screen ── */
.swipe-gallery { height: clamp(360px, 56vw, 680px); }
@media (max-width: 768px) { .swipe-gallery { height: 72vw; min-height: 280px; max-height: 460px; } }
@media (max-width: 480px) { .swipe-gallery { height: 80vw; min-height: 260px; } }

/* ── overlay gradient on each slide ── */
.swipe-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,15,8,.45) 0%, transparent 55%);
  pointer-events: none;
}

/* ── label overlay on slide ── */
.swipe-slide-label {
  position: absolute; bottom: 18px; left: 18px; z-index: 2;
  font-size: .65rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  background: rgba(2,15,8,.5);
  backdrop-filter: blur(8px);
  padding: 6px 14px; border-radius: 999px;
}

/* ── prev / next buttons ── */
.swipe-btn {
  position: absolute; top: 50%; z-index: 3;
  transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.swipe-btn:hover { background: var(--gold); border-color: var(--gold); }
.swipe-btn-prev { left: 16px; }
.swipe-btn-next { right: 16px; }
.swipe-btn:active { transform: translateY(-50%) scale(.92); }

@media (max-width: 640px) {
  .swipe-btn { width: 36px; height: 36px; font-size: 11px; }
  .swipe-btn-prev { left: 10px; }
  .swipe-btn-next { right: 10px; }
}

/* ── counter ── */
.swipe-counter {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  color: rgba(255,255,255,.8);
  background: rgba(2,15,8,.5); backdrop-filter: blur(8px);
  padding: 5px 12px; border-radius: 999px;
}

/* ── dots ── */
.swipe-dots {
  position: absolute; bottom: 16px; right: 18px; z-index: 3;
  display: flex; gap: 6px; align-items: center;
}
.swipe-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.swipe-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ── section wrapper ── */
.gallery-section {
  background: var(--milk);
  padding: clamp(48px, 6vw, 80px) 0;
}
.gallery-section-head {
  text-align: center;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════════════════════
   TEAM CINEMA — full editorial slider
   ═══════════════════════════════════════════════════════════════════ */
.team-cinema {
  background: var(--green-950);
  overflow: hidden;
  position: relative;
}

/* Ambient glow blobs */
.team-cinema::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 80% 20%, rgba(41,174,133,.18) 0%, transparent 65%),
    radial-gradient(40% 50% at 5%  80%, rgba(114,205,176,.1) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

.tc-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}

/* ── Photo panel ── */
.tc-photo-panel {
  position: relative;
  overflow: hidden;
  background: var(--green-900);
}
.tc-photo-track {
  display: flex;
  height: 100%;
  transition: transform .75s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.tc-photo-slide {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
}
.tc-photo-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(.82) saturate(.9);
  transition: transform 6s ease;
}
.tc-photo-slide.active img { transform: scale(1.04); }

/* Overlay gradient on photo */
.tc-photo-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--green-950) 100%);
  pointer-events: none;
}

/* ── Info panel ── */
.tc-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(52px, 6vw, 88px) clamp(32px, 5vw, 72px) clamp(40px, 4vw, 64px);
}

.tc-info-track { position: relative; flex: 1; }

.tc-info-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.tc-info-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Number */
.tc-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.07);
  display: block;
  margin-bottom: 16px;
  /* Outline text trick for luxury feel */
  -webkit-text-stroke: 1px rgba(194,94,114,.55);
}

/* Name */
.tc-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}

/* Role */
.tc-role {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.tc-role::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold-lt); opacity: .8;
  flex-shrink: 0;
}

/* Divider */
.tc-divider {
  width: 48px; height: 1px;
  background: rgba(255,255,255,.15);
  margin-bottom: 24px;
}

/* Bio */
.tc-bio {
  font-size: clamp(.85rem, 1.1vw, .97rem);
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 380px;
}

/* ── Bottom navigation ── */
.tc-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.tc-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  cursor: pointer;
  transition: all .3s ease;
  flex-shrink: 0;
}
.tc-arrow:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: var(--green-950);
}

.tc-tabs {
  display: flex;
  gap: 6px;
  flex: 1;
}
.tc-tab {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,.3);
  cursor: pointer;
  padding: 4px 10px;
  border-bottom: 1.5px solid transparent;
  transition: color .3s ease, border-color .3s ease;
  letter-spacing: .02em;
}
.tc-tab.active {
  color: #fff;
  border-bottom-color: var(--gold-lt);
}
.tc-tab:hover { color: rgba(255,255,255,.7); }

.tc-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
}
.tc-progress-line {
  width: 60px; height: 1px;
  background: rgba(255,255,255,.12);
  position: relative; overflow: hidden;
  border-radius: 1px;
}
.tc-progress-fill {
  height: 100%;
  background: var(--gold-lt);
  border-radius: 1px;
  transition: width .6s cubic-bezier(.22,1,.36,1);
}

/* ── Mobile responsive ── */
@media (max-width: 900px) {
  .tc-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .tc-photo-panel {
    height: 65vw;
    min-height: 280px;
    max-height: 420px;
  }
  .tc-photo-slide::after {
    background: linear-gradient(to bottom, transparent 55%, var(--green-950) 100%);
  }
  .tc-info-panel {
    padding: 32px var(--pad-x) 40px;
    min-height: 340px;
  }
  .tc-info-track { min-height: 240px; }
  .tc-info-slide { position: relative; inset: auto; }
  .tc-info-slide:not(.active) { display: none; }
  .tc-num { font-size: 3.5rem; margin-bottom: 8px; }
  .tc-name { font-size: clamp(1.5rem, 5vw, 2rem); }
  .tc-bio  { font-size: .88rem; max-width: 100%; }
  .tc-nav  { padding-top: 24px; }
}

@media (max-width: 640px) {
  .tc-photo-panel { height: 72vw; max-height: 360px; }
  .tc-info-panel  { padding: 24px 20px 32px; }
  .tc-num { font-size: 3rem; }
  .tc-tabs { gap: 4px; }
  .tc-tab  { font-size: .9rem; padding: 3px 7px; }
  .tc-progress { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   PROJECT GALLERY — main image + thumbnail strip (esejones style)
   ═══════════════════════════════════════════════════════════════════ */
.pg-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Main display ── */
.pg-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 16 / 9;
}
@media (max-width: 768px) { .pg-main { aspect-ratio: 4/3; border-radius: 18px; } }
@media (max-width: 480px) { .pg-main { aspect-ratio: 3/2; border-radius: 14px; } }

.pg-main-track {
  position: relative;
  width: 100%; height: 100%;
}
.pg-main-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.pg-main-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.pg-main-slide img,
.pg-main-slide video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Label bottom-left */
.pg-label {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  font-size: .65rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  background: rgba(2,15,8,.55); backdrop-filter: blur(10px);
  padding: 6px 14px; border-radius: 999px;
  transition: opacity .3s ease;
}

/* Counter top-right */
.pg-counter {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  color: rgba(255,255,255,.8);
  background: rgba(2,15,8,.45); backdrop-filter: blur(8px);
  padding: 5px 12px; border-radius: 999px;
}

/* Prev / next arrows on main */
.pg-arrow {
  position: absolute; top: 50%; z-index: 3;
  transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.18); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .3s ease, opacity .3s ease;
  opacity: 0;
}
.pg-wrap:hover .pg-arrow { opacity: 1; }
.pg-arrow-prev { left: 14px; }
.pg-arrow-next { right: 14px; }
.pg-arrow:hover { background: var(--gold); border-color: var(--gold); }
@media (max-width: 768px) {
  .pg-arrow { opacity: 1; width: 34px; height: 34px; font-size: 11px; }
}

/* ── Thumbnail strip ── */
.pg-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 640px) {
  .pg-thumbs { gap: 7px; }
}
@media (max-width: 480px) {
  .pg-thumbs { grid-template-columns: repeat(4, 1fr); gap: 6px; }
}

.pg-thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 2px solid transparent;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  background: var(--ink);
}
@media (max-width: 480px) {
  .pg-thumb { border-radius: 10px; border-width: 1.5px; }
}
.pg-thumb img,
.pg-thumb video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.75);
  transition: filter .3s ease, transform .4s ease;
}
.pg-thumb:hover img,
.pg-thumb:hover video { filter: brightness(.9); transform: scale(1.05); }

.pg-thumb.active {
  border-color: var(--green-900);
  box-shadow: 0 0 0 2px rgba(2,51,39,.25);
}
.pg-thumb.active img,
.pg-thumb.active video { filter: brightness(1); }

/* Play icon on video thumbs */
.pg-thumb-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85); font-size: 18px;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

/* ── Gallery section wrapper ── */
.gallery-section {
  background: var(--milk);
  padding: clamp(48px,6vw,80px) 0;
}
.gallery-section-head {
  text-align: center;
  margin-bottom: 32px;
}
.gallery-section-head .eyebrow { justify-content: center; }
.gallery-section-head .eyebrow::before { display: none; }
.gallery-section-head .eyebrow::after { content: ''; display: inline-block; width: 20px; height: 1px; background: currentColor; opacity: .5; }

/* ═══════════════════════════════════════════════════════════════════
   BLOG PAGE
   ═══════════════════════════════════════════════════════════════════ */

/* ── Featured post ── */
.bl-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(2,51,39,.2);
  border: 1px solid rgba(2,51,39,.07);
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .bl-featured { grid-template-columns: 1fr; border-radius: 22px; margin-bottom: 48px; }
}

.bl-featured-img-wrap {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 380px;
}
@media (max-width: 900px) { .bl-featured-img-wrap { min-height: 280px; } }
@media (max-width: 640px) { .bl-featured-img-wrap { min-height: 240px; } }

.bl-featured-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.82);
  transition: transform .9s ease, filter .6s ease;
}
.bl-featured:hover .bl-featured-img-wrap img {
  transform: scale(1.04);
  filter: brightness(.7);
}
.bl-featured-img-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,20,10,.35) 0%, transparent 60%);
}

.bl-cat-badge {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-body);
  font-size: .66rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #fff;
  padding: 5px 14px; border-radius: 999px;
}
.bl-cat-badge--sm {
  font-size: .62rem; padding: 4px 12px;
}

.bl-featured-body {
  background: #fff;
  padding: clamp(32px, 5vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.bl-featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.bl-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--text-soft); flex-shrink: 0;
}
.bl-featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}
.bl-featured-title a { transition: color .3s ease; }
.bl-featured-title a:hover { color: var(--gold); }
.bl-featured-excerpt {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
  flex: 1;
}

/* ── Article grid ── */
.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .bl-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 640px) {
  .bl-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Article card ── */
.bl-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(2,51,39,.07);
  box-shadow: 0 8px 32px -16px rgba(2,51,39,.14);
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s ease;
}
.bl-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px -22px rgba(2,51,39,.28);
}

.bl-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  display: block;
}
@media (max-width: 640px) { .bl-card-img-wrap { height: 200px; } }
.bl-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.82);
  transition: transform .9s ease, filter .6s ease;
}
.bl-card:hover .bl-card-img-wrap img {
  transform: scale(1.06);
  filter: brightness(.7);
}

.bl-card-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bl-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.bl-card-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color .3s ease;
}
.bl-card-title a { transition: color .3s ease; }
.bl-card:hover .bl-card-title a { color: var(--gold); }
.bl-card-excerpt {
  font-size: .86rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.bl-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--green-800);
  transition: gap .3s ease, color .3s ease;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(2,51,39,.07);
}
.bl-card:hover .bl-read-more { gap: 12px; color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════
   REVIEWS / TESTIMONIALS — Mature editorial style
   ═══════════════════════════════════════════════════════════════════ */
.review-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--green-950);
}
.review-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.18) saturate(.5);
  z-index: 0;
}
.review-bg-ov {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,
    rgba(2,13,7,.92) 0%,
    rgba(2,51,39,.6) 100%);
}
.review-inner { position: relative; z-index: 2; }

/* Header */
.review-header { margin-bottom: clamp(36px,5vw,56px); }
.review-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300; color: #fff;
  margin-top: 12px; line-height: 1.1;
}
.review-title em { font-style: italic; font-weight: 600; color: var(--gold-lt); }

/* Slider */
.review-slider { position: relative; min-height: 340px; }
.review-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.review-slide.active {
  opacity: 1; transform: translateY(0);
  pointer-events: auto; position: relative;
}

.review-slide-inner {
  max-width: 820px;
}
@media (max-width: 900px) {
  .review-slider { min-height: auto; }
}

/* Quote block */
.review-quote-block { display: flex; flex-direction: column; }
.review-quote-mark {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 6.5rem);
  line-height: 1; color: var(--gold-lt);
  opacity: .6; margin-bottom: -12px;
  font-weight: 300;
}
.review-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.9);
  line-height: 1.55;
  margin-bottom: 28px;
}
.review-stars {
  font-size: 14px; color: var(--gold-lt);
  letter-spacing: 4px; margin-bottom: 24px;
}
.review-client {
  display: flex; align-items: center; gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.review-client-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 500; color: #fff;
  margin-bottom: 3px;
}
.review-client-role {
  display: block;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* Navigation */
.review-nav {
  display: flex; align-items: center; gap: 16px;
  margin-top: clamp(28px, 4vw, 44px);
  flex-wrap: wrap;
}
.review-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 13px;
  cursor: pointer; flex-shrink: 0;
  transition: all .3s ease;
}
.review-arrow:hover {
  background: var(--gold-lt); border-color: var(--gold-lt);
  color: var(--green-950);
}
.review-progress { display: flex; gap: 8px; align-items: center; }
.review-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer; border: none;
  transition: background .3s ease, transform .3s ease, width .4s ease;
}
.review-dot.active {
  background: var(--gold-lt); transform: scale(1.15);
  width: 24px; border-radius: 4px;
}
.review-counter {
  margin-left: auto;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  color: rgba(255,255,255,.35);
}

@media (max-width: 640px) {
  .review-nav { gap: 12px; }
  .review-arrow { width: 38px; height: 38px; font-size: 11px; }
  .review-counter { display: none; }
}
