/* ==========================================================================
   STHIRA — Premium Design System
   ========================================================================== */
:root {
  /* Core palette */
  --green-ink:   #0E1509;
  --green-deep:  #1A2413;
  --green-mid:   #263319;
  --green-light: #3D5028;
  --sage:        #7A8A67;
  --sage-light:  #A8BA94;
  --gold:        #B8925A;
  --gold-bright: #D4A96A;
  --gold-shine:  #ECC97D;
  --cream:       #F6F1E7;
  --cream-warm:  #EDE4CC;
  --cream-deep:  #E3D7BC;
  --ink:         #1E1E16;
  --ink-soft:    #4A4A3C;
  --white:       #FDFAF4;

  /* Typography */
  --font-display: "Fraunces", serif;
  --font-body: "Manrope", sans-serif;

  /* Layout */
  --container: 1160px;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  /* Easing */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  /* Shadows */
  --shadow-xs: 0 2px 8px rgba(14,21,9,.06);
  --shadow-sm: 0 6px 20px rgba(14,21,9,.09);
  --shadow-md: 0 16px 40px rgba(14,21,9,.14);
  --shadow-lg: 0 32px 60px rgba(14,21,9,.20);
  --shadow-xl: 0 48px 80px -20px rgba(14,21,9,.30);
  --gold-glow: 0 0 40px rgba(184,146,90,.25);

  /* Spacing */
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 28px;
  --sp-lg: 48px;
  --sp-xl: 72px;
  --sp-2xl: 100px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  font-size: 15.5px;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Custom Cursor
   ========================================================================== */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,90,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform .12s ease;
}

/* ==========================================================================
   Loader
   ========================================================================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--green-ink);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: loaderPulse 1s ease infinite alternate;
}
.loader-text {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.4rem;
  letter-spacing: .22em;
  margin-bottom: 24px;
}
.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(244,241,231,.15);
  border-radius: 99px;
  margin: 0 auto;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-shine));
  border-radius: 99px;
  width: 0%;
  transition: width 1.2s var(--ease);
}
@keyframes loaderPulse {
  from { opacity: .6; transform: scale(.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   Typography Helpers
   ========================================================================== */
.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow-dark { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--green-deep);
}
.section-lead {
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.7;
}
.section-header { margin-bottom: var(--sp-lg); }
em { font-style: italic; color: var(--gold-bright); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease-spring), box-shadow .3s ease,
              background .25s ease, border-color .25s ease, color .25s ease, gap .3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .25s ease;
}
.btn:hover::after { background: rgba(255,255,255,.06); }
.btn:active { transform: scale(.97) !important; }

.btn-gold {
  background: linear-gradient(160deg, var(--gold-shine) 0%, var(--gold-bright) 40%, var(--gold) 100%);
  color: var(--green-ink);
  box-shadow: 0 8px 22px -4px rgba(184,146,90,.5);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -4px rgba(184,146,90,.65);
  gap: 12px;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.35);
  color: var(--cream);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.7);
}

.btn-outline-dark {
  background: transparent;
  border-color: rgba(26,36,19,.3);
  color: var(--green-deep);
}
.btn-outline-dark:hover {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
}

.btn-hero { padding: 15px 30px; font-size: .9rem; }
.btn-lg { padding: 16px 34px; font-size: .9rem; }
.btn-sm { padding: 9px 18px; font-size: .78rem; }
.btn-block { width: 100%; }

/* Spinner inside submit btn */
.btn-submit .btn-spinner { display: none; }
.btn-submit.is-loading .btn-text { opacity: 0; }
.btn-submit.is-loading .btn-spinner {
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(14,21,9,.2);
  border-top-color: var(--green-ink);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 20px 0;
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}
.site-header.is-scrolled {
  background: rgba(10,15,7,.88);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  padding: 12px 0;
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  flex-shrink: 0;
}
.brand-mark-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(212,169,106,.4);
  flex-shrink: 0;
  transition: border-color .3s ease;
  background: var(--green-deep);
}
.brand:hover .brand-mark-wrap { border-color: var(--gold-bright); }
.brand-mark { width: 100%; height: 100%; object-fit: cover; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.22rem;
  letter-spacing: .16em;
  font-weight: 400;
}

.main-nav { display: flex; gap: 4px; }
.nav-link {
  color: rgba(246,241,231,.75);
  font-size: .82rem;
  font-weight: 600;
  position: relative;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .3s ease, background .3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 12px; right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--gold-bright);
  transition: right .35s var(--ease);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { right: 12px; }
.nav-link.is-active-nav { color: var(--gold-bright); }
.nav-link.is-active-nav::after { right: 12px; background: var(--gold-bright); }

.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(246,241,231,.75);
  font-size: .8rem;
  font-weight: 500;
  transition: color .3s ease;
}
.header-phone:hover { color: var(--gold-bright); }
.header-cta .btn { padding: 9px 20px; font-size: .78rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--cream);
  display: block;
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .35s ease, width .35s ease;
  transform-origin: left center;
}
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translateY(-1px); width: 24px; }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translateY(1px); width: 24px; }

/* ==========================================================================
   Mobile Nav Drawer
   ========================================================================== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,7,.6);
  backdrop-filter: blur(4px);
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.mobile-nav-overlay.is-open { opacity: 1; pointer-events: auto; }

.mobile-nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 88vw);
  height: 100dvh;
  background: var(--green-deep);
  z-index: 700;
  padding: 28px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateX(100%);
  transition: transform .45s var(--ease-out);
}
.mobile-nav-drawer.is-open { transform: translateX(0); }

.drawer-close {
  align-self: flex-end;
  background: rgba(246,241,231,.08);
  border: none;
  color: var(--cream);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
  flex-shrink: 0;
}
.drawer-close:hover { background: rgba(246,241,231,.15); }

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.drawer-logo { width: 36px; height: 36px; border-radius: 50%; background: var(--green-deep); }
.drawer-brand span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: .14em;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.drawer-link {
  color: rgba(246,241,231,.75);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid rgba(246,241,231,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .25s ease, padding-left .25s ease;
}
.drawer-link::after {
  content: "→";
  opacity: 0;
  font-size: .8rem;
  transition: opacity .25s ease, transform .25s ease;
  transform: translateX(-8px);
}
.drawer-link:hover {
  color: var(--gold-bright);
  padding-left: 6px;
}
.drawer-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.drawer-footer { display: flex; flex-direction: column; gap: 16px; }
.drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer-contact a {
  color: rgba(246,241,231,.55);
  font-size: .82rem;
  transition: color .25s ease;
}
.drawer-contact a:hover { color: var(--gold-bright); }

/* ==========================================================================
   Reveal on Scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--green-ink);
  color: var(--cream);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 16s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.0); }
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,7,.65) 0%, rgba(10,15,7,.25) 40%, rgba(10,15,7,.92) 100%),
    linear-gradient(100deg, rgba(10,15,7,.96) 0%, rgba(10,15,7,.4) 50%, rgba(10,15,7,.1) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .45;
  mix-blend-mode: overlay;
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180,130,70,.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(60,80,40,.18) 0%, transparent 70%);
  bottom: 120px; left: 5%;
  animation: orbFloat 16s ease-in-out 2s infinite alternate-reverse;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, -40px) scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
  flex: 1;
  padding-top: 160px;
  padding-bottom: 80px;
}
.hero-content { max-width: 560px; flex: none; }

.hero-eyebrow { color: var(--gold-bright); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 22px;
  opacity: 0;
  animation: heroRise 1s var(--ease-out) .2s forwards;
}
.title-line { display: block; }
.title-em {
  display: block;
  font-style: italic;
  color: var(--gold-shine);
}
.hero-sub {
  max-width: 48ch;
  font-size: 1.02rem;
  color: rgba(246,241,231,.75);
  line-height: 1.75;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroRise 1s var(--ease-out) .4s forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroRise 1s var(--ease-out) .6s forwards;
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}



/* Stats bar */
.stats-bar-wrap {
  position: relative;
  z-index: 4;
  padding-bottom: 0;
  margin-top: auto;
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(10,15,7,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212,169,106,.2);
}
.stat {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(246,241,231,.08);
  position: relative;
  transition: background .3s ease;
}
.stat:hover { background: rgba(212,169,106,.06); }
.stat:last-child { border-right: none; }
.stat-inner { position: relative; z-index: 1; }
.stat-number-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold-bright);
  font-weight: 400;
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--gold);
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: .72rem;
  color: rgba(246,241,231,.5);
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  max-width: 18ch;
  margin-inline: auto;
  line-height: 1.4;
}

/* ==========================================================================
   Philosophy
   ========================================================================== */
.philosophy {
  padding: 0 0 var(--sp-2xl);
  background: var(--cream);
  position: relative;
}
.philosophy::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cream-warm), transparent);
}

/* Philosophy Image Band */
.philosophy-image-band {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  margin-bottom: var(--sp-xl);
}
.philosophy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease-in-out;
}
.philosophy-image-band:hover .philosophy-img {
  transform: scale(1.0);
}
.philosophy-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,7,.2) 0%, rgba(10,15,7,.5) 60%, rgba(10,15,7,.88) 100%),
    linear-gradient(90deg, rgba(10,15,7,.6) 0%, rgba(10,15,7,.1) 60%);
}
.philosophy-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.philosophy-img-caption .eyebrow {
  color: var(--gold-bright);
  margin-bottom: 0;
}
.philosophy-img-caption span {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  color: var(--cream);
  font-style: italic;
  font-weight: 400;
  max-width: 52ch;
  line-height: 1.35;
  opacity: .92;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: var(--sp-lg);
}
.pillar {
  position: relative;
  padding: 34px 30px 30px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,169,106,.1);
  transition: transform .4s var(--ease-spring), box-shadow .4s ease, border-color .3s ease;
  overflow: hidden;
  cursor: default;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-shine));
  opacity: 0;
  transition: opacity .4s ease;
}
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(212,169,106,.3); }
.pillar:hover::before { opacity: 1; }

.pillar-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(184,146,90,.06) 0%, transparent 70%);
  top: -60px; right: -60px;
  border-radius: 50%;
  pointer-events: none;
}
.pillar-index {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--font-display);
  color: rgba(26,36,19,.07);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  user-select: none;
}
.pillar-badge {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cream-warm), var(--cream-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform .3s var(--ease-spring);
}
.pillar:hover .pillar-badge { transform: scale(1.1) rotate(-5deg); }
.pillar-icon { width: 22px; height: 22px; color: var(--gold); }
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--green-deep);
}
.pillar p { color: var(--ink-soft); font-size: .9rem; line-height: 1.7; }
.pillar-line {
  position: absolute;
  bottom: 0; left: 30px; right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,90,.3), transparent);
}

/* ==========================================================================
   Portfolio
   ========================================================================== */
.portfolio {
  padding: 0 0 var(--sp-2xl);
  background: var(--cream-warm);
  position: relative;
}

/* Portfolio Hero Band — aerial image header */
.portfolio-hero-band {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  margin-bottom: var(--sp-xl);
}
.portfolio-hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.portfolio-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,7,.25) 0%, rgba(10,15,7,.55) 50%, rgba(244,239,227,.12) 100%),
    linear-gradient(100deg, rgba(10,15,7,.85) 0%, rgba(10,15,7,.3) 55%, rgba(10,15,7,.05) 100%);
}
.portfolio-hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 60px;
  gap: 16px;
}
.portfolio-hero-text .section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  margin-bottom: 0;
}
.portfolio-hero-text .eyebrow {
  color: var(--gold-bright);
}
.portfolio-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: var(--sp-md);
}
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  background: rgba(255,255,255,.7);
  border: 1.5px solid rgba(26,36,19,.12);
  color: var(--ink-soft);
  padding: 9px 20px;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: all .3s var(--ease-spring);
  cursor: pointer;
}
.filter-btn.is-active, .filter-btn:hover {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26,36,19,.25);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.estate-card {
  background: var(--white);
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,36,19,.06);
  transition: transform .45s var(--ease-spring), box-shadow .45s ease;
}
.estate-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.estate-card[data-status="sold"] { opacity: .75; }
.estate-card[data-status="sold"]:hover { opacity: 1; }

.estate-visual {
  position: relative;
  height: 210px;
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite alternate;
  overflow: hidden;
}
.estate-card:nth-child(2) .estate-visual { animation-delay: -2s; }
.estate-card:nth-child(3) .estate-visual { animation-delay: -4s; }
.estate-card:nth-child(4) .estate-visual { animation-delay: -6s; }
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.estate-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,21,9,.3);
  transition: background .4s ease;
}
.estate-card:hover .estate-overlay { background: rgba(14,21,9,.55); }

.estate-hover-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .3s ease;
}
.estate-card:hover .estate-hover-content { opacity: 1; }
.sold-note { color: var(--cream); font-size: .78rem; font-weight: 600; opacity: .8; }

.visual-1 { background-image: linear-gradient(135deg, #4C5E3F, #24301E 50%, #B8925A 130%); }
.visual-2 { background-image: linear-gradient(135deg, #2E4024, #151F10 50%, #8A9678 140%); }
.visual-3 { background-image: linear-gradient(135deg, #5C6F4B, #2C3E22 50%, #D9B475 145%); }
.visual-4 { background-image: linear-gradient(135deg, #1A2413, #3D5028 55%, #B8925A 140%); }

.estate-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(14,21,9,.75);
  color: var(--gold-bright);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 99px;
  backdrop-filter: blur(4px);
  z-index: 1;
}
.tag-reserved { color: var(--sage-light); }
.tag-sold { color: rgba(246,241,231,.6); }

.estate-mark {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 22px; height: 22px;
  color: rgba(246,241,231,.35);
  z-index: 1;
  transition: color .3s ease, transform .3s ease;
}
.estate-card:hover .estate-mark { color: rgba(246,241,231,.7); transform: scale(1.2); }

.estate-body { padding: 24px 24px 26px; }
.estate-meta {
  font-size: .72rem;
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.estate-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--green-deep);
}
.estate-body p { color: var(--ink-soft); font-size: .88rem; margin-bottom: 16px; line-height: 1.65; }
.estate-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(26,36,19,.08);
}
.estate-price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--green-deep);
  font-weight: 500;
}
.estate-sold-text { color: var(--sage); font-size: .88rem; font-style: italic; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--green-deep);
  font-weight: 700;
  font-size: .82rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  transition: color .25s ease, gap .25s ease;
}
.text-link:hover { color: var(--gold); gap: 8px; }

/* No results message */
.portfolio-empty {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ==========================================================================
   Journey
   ========================================================================== */
.journey {
  padding: var(--sp-2xl) 0;
  background: var(--green-ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
/* Photo background */
.journey-photo-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.journey-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: .25;
  transform: scale(1.06);
  animation: heroZoom 22s ease-in-out infinite alternate;
  filter: saturate(.8);
}
.journey-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--green-ink) 0%, rgba(10,15,7,.7) 30%, rgba(10,15,7,.8) 70%, var(--green-ink) 100%),
    linear-gradient(90deg, rgba(10,15,7,.5) 0%, transparent 60%);
}
.journey-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(61,80,40,.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(184,146,90,.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}
.journey > .wrap { position: relative; z-index: 2; }
.journey-header { margin-bottom: var(--sp-xl); }

.journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline-connector {
  position: absolute;
  left: 35px;
  top: 60px; bottom: 60px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(212,169,106,.4) 10%, rgba(212,169,106,.4) 90%, transparent);
}

.journey-step {
  display: flex;
  gap: 36px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(246,241,231,.07);
  position: relative;
}
.journey-step:last-child { border-bottom: none; }

.step-marker {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(212,169,106,.1);
  border: 1.5px solid rgba(212,169,106,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background .3s ease, border-color .3s ease, transform .3s var(--ease-spring);
}
.journey-step:hover .step-marker {
  background: rgba(212,169,106,.2);
  border-color: var(--gold-bright);
  transform: scale(1.08);
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-bright);
  font-weight: 400;
}

.step-content { flex: 1; padding-top: 16px; }
.step-label {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--cream);
}
.step-content p { color: rgba(246,241,231,.65); font-size: .9rem; line-height: 1.7; margin-bottom: 14px; }

.step-checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step-checklist li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(246,241,231,.5);
  font-size: .8rem;
  font-weight: 500;
}
.step-checklist li svg { color: var(--gold); flex-shrink: 0; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
  padding: var(--sp-2xl) 0;
  background: var(--white);
  position: relative;
}

.testimonial-carousel { position: relative; max-width: 820px; margin: 0 auto; }
.testimonial-track { overflow: hidden; position: relative; }
.testimonial {
  display: none;
  padding: 48px 52px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,36,19,.07);
  border-left: 4px solid var(--gold);
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.testimonial.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(184,146,90,.15);
  line-height: 1;
  position: absolute;
  top: 16px; left: 40px;
  font-style: italic;
  user-select: none;
}
.testimonial p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--green-deep);
  line-height: 1.65;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.testimonial footer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial footer strong {
  display: block;
  color: var(--green-deep);
  font-size: .88rem;
}
.testimonial footer span { color: var(--ink-soft); font-size: .78rem; }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.t-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(26,36,19,.15);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease-spring);
  box-shadow: var(--shadow-xs);
}
.t-btn:hover {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
  transform: scale(1.1);
}

.testimonial-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(26,36,19,.2);
  transition: all .3s var(--ease-spring);
}
.t-dot.is-active {
  background: var(--gold);
  transform: scale(1.4);
  width: 24px;
  border-radius: 4px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: var(--sp-2xl) 0;
  background: var(--cream-warm);
}
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-left { position: sticky; top: 100px; }
.faq-left .section-title { max-width: 22ch; }
.faq-contact-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.faq-contact-btns .btn { justify-content: flex-start; }

.accordion {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(26,36,19,.06);
}
.acc-item { border-bottom: 1px solid rgba(26,36,19,.07); }
.acc-item:last-child { border-bottom: none; }

.acc-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--green-deep);
  text-align: left;
  transition: background .25s ease, padding-left .25s ease;
  gap: 16px;
}
.acc-trigger:hover { background: rgba(26,36,19,.02); padding-left: 30px; }
.acc-item.is-open .acc-trigger { color: var(--gold); background: rgba(184,146,90,.04); }

.acc-icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.acc-icon::before, .acc-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .35s ease;
}
.acc-icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.acc-icon::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.acc-item.is-open .acc-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.acc-item.is-open .acc-icon::before { transform: translateY(-50%) rotate(180deg); }

.acc-panel { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc-item.is-open .acc-panel { max-height: 280px; }
.acc-panel p {
  padding: 0 26px 24px;
  color: var(--ink-soft);
  font-size: .9rem;
  max-width: 58ch;
  line-height: 1.75;
}

/* ==========================================================================
   CTA Band
   ========================================================================== */
.cta-band {
  background: linear-gradient(130deg, var(--green-mid) 0%, var(--green-ink) 60%, #0A0F07 100%);
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,169,106,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,169,106,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}
.cta-text p { color: rgba(246,241,231,.65); font-size: 1rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--green-ink);
  color: rgba(246,241,231,.6);
  padding: var(--sp-xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(246,241,231,.08);
}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo { width: 40px; height: 40px; border-radius: 50%; background: var(--green-deep); }
.footer-brand-name {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.15rem;
  letter-spacing: .14em;
}
.footer-blurb { max-width: 30ch; font-size: .88rem; line-height: 1.7; margin-bottom: 10px; }
.footer-est { font-size: .76rem; color: var(--gold); margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(246,241,231,.06);
  border: 1px solid rgba(246,241,231,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246,241,231,.6);
  transition: all .3s ease;
}
.social-btn:hover {
  background: rgba(212,169,106,.15);
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 18px;
  font-size: .92rem;
  letter-spacing: .04em;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: .84rem;
  transition: color .25s ease, gap .25s ease;
}
.footer-col a:hover { color: var(--gold-bright); gap: 12px; }
.footer-col a svg { opacity: .6; flex-shrink: 0; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .76rem;
  opacity: .55;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { opacity: 1; color: var(--gold-bright); }

/* ==========================================================================
   Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,7,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
  padding: 20px;
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }

.modal {
  position: relative;
  background: var(--white);
  max-width: 500px;
  width: 100%;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  transform: translateY(24px) scale(.97);
  transition: transform .45s var(--ease-spring);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(26,36,19,.08);
}
.modal-overlay.is-open .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: rgba(26,36,19,.06);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.modal-close:hover { background: rgba(26,36,19,.12); color: var(--ink); transform: scale(1.1); }

.modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.modal-logo { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; background: var(--green-deep); }
.modal-header .eyebrow { margin-bottom: 2px; }
.modal h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--green-deep);
}
.modal-sub { color: var(--ink-soft); font-size: .86rem; margin-bottom: 24px; }

/* Form */
#enquireForm { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; }
.form-row-2col { flex-direction: row; gap: 14px; }
.form-row-2col .form-field { flex: 1; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.field-label { font-size: .74rem; font-weight: 700; color: var(--ink-soft); letter-spacing: .02em; }
.req { color: var(--gold); }

#enquireForm input,
#enquireForm select,
#enquireForm textarea {
  border: 1.5px solid rgba(26,36,19,.15);
  background: var(--cream);
  padding: 11px 14px;
  font-size: .9rem;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
#enquireForm input:focus,
#enquireForm select:focus,
#enquireForm textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,146,90,.12);
}
#enquireForm input.is-error,
#enquireForm select.is-error,
#enquireForm textarea.is-error {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}
#enquireForm textarea { resize: vertical; min-height: 80px; }

.field-error {
  font-size: .72rem;
  color: #C0392B;
  display: none;
  font-weight: 600;
}
.form-field.has-error .field-error { display: block; }

/* Success state */
.modal-success { text-align: center; padding: 20px 0; display: none; }
.modal-success.is-active { display: block; }
.success-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26,36,19,.08), rgba(184,146,90,.12));
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-icon { width: 28px; height: 28px; color: var(--gold); }
.modal-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.modal-success p { color: var(--ink-soft); font-size: .9rem; margin-bottom: 28px; line-height: 1.7; }

/* ==========================================================================
   Focus & Accessibility
   ========================================================================== */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2.5px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  /* Badge: shrink on tablet, keep visible */
  .hero-badge {
    --badge-size: 170px;
    --logo-size: 130px;
  }
  .faq-wrap { grid-template-columns: 1fr; gap: 48px; }
  .faq-left { position: static; }
  .faq-contact-btns { flex-direction: row; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .pillars { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(246,241,231,.08); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(246,241,231,.08); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .timeline-connector { left: 35px; }
  .testimonial { padding: 34px 28px; }
  .form-row-2col { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  /* Image sections responsive */
  .philosophy-image-band { height: 340px; }
  .philosophy-img-caption { padding: 28px 32px; }
  .portfolio-hero-band { height: 360px; }
}

@media (max-width: 640px) {
  /* Hero: stack vertically, badge goes below text */
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 110px;
    padding-bottom: 40px;
    gap: 36px;
  }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.4rem); }
  .hero-sub { font-size: .95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  /* Badge: centered below text on mobile */
  .hero-badge {
    --badge-size: 160px;
    --logo-size: 130px;
    align-self: center;
    margin-bottom: 8px;
  }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid rgba(246,241,231,.08); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(246,241,231,.08); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .portfolio-top { flex-direction: column; align-items: flex-start; }
  .journey-step { flex-direction: column; gap: 16px; }
  .step-content { padding-top: 0; }
  .timeline-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .modal { padding: 30px 22px; }
  .header-cta .btn { display: none; }
  .faq-contact-btns { flex-direction: column; }
  /* Image sections - mobile */
  .philosophy-image-band { height: 260px; }
  .philosophy-img-caption { padding: 20px 20px; }
  .philosophy-img-caption span { font-size: 1rem; }
  .portfolio-hero-band { height: 280px; }
  .portfolio-hero-text { padding-top: 40px; }
}
