/* ============================================================
   Victorian Home Restoration — stylesheet
   Cream editorial mood · deep green / cream / antique gold
   ============================================================ */

:root {
  --green:        #1F3A33;
  --green-deep:   #16291F;
  --green-soft:   #2C4A41;
  --cream:        #F8F5EF;
  --cream-warm:   #F1EBDF;
  --gold:         #B48A3D;
  --gold-soft:    #C9A55E;
  --gold-deep:    #9A7330;
  --ink:          #2B2B2B;
  --ink-soft:     #5A574F;
  --grey:         #F4F4F2;
  --border:       #E2DDD2;
  --border-soft:  #ECE7DC;
  --success:      #2F7D32;

  --maxw:         1280px;
  --pad-x:        clamp(20px, 5vw, 64px);
  --sect:         clamp(64px, 11vw, 120px);

  --r-card:       16px;
  --r-btn:        12px;

  --shadow-sm:    0 2px 8px rgba(31, 58, 51, 0.05);
  --shadow-md:    0 18px 50px -28px rgba(22, 41, 31, 0.35);
  --shadow-lg:    0 40px 90px -45px rgba(22, 41, 31, 0.45);

  --serif:  "Cormorant Garamond", Georgia, serif;
  --sans:   "Inter", system-ui, sans-serif;
  --button: "Manrope", system-ui, sans-serif;

  --ease:   cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.section { padding-block: var(--sect); }
.section--tight { padding-block: clamp(48px, 8vw, 90px); }
.section--framed { border-top: 1px solid var(--border-soft); position: relative; }
.section--framed::before {
  content: "\2726"; position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  font-size: 16px; color: var(--gold); opacity: .35; background: var(--cream); padding: 0 14px; line-height: 1;
}

.center { text-align: center; }

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--green);
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h2 { font-style: normal; }

/* classic ornamental section divider */
.section-divider {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-divider::before,
.section-divider::after {
  content: ""; width: 60px; height: 1px; background: linear-gradient(to var(--dir, right), var(--gold), transparent); opacity: .4;
}
.section-divider::before { --dir: right; }
.section-divider::after { --dir: left; }
.section-divider .ornament {
  font-size: 18px; color: var(--gold); opacity: .5; line-height: 1;
}

.eyebrow {
  font-family: var(--button);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
}
.eyebrow::before,
.eyebrow.eyebrow--both::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.eyebrow--ornament::after {
  content: "\2767";
  font-size: 14px;
  color: var(--gold);
  opacity: .45;
  margin-left: 2px;
}
.center .eyebrow { justify-content: center; }

.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 60ch;
}
.center .lead { margin-inline: auto; }

.display {
  font-size: clamp(40px, 6.4vw, 80px);
}
.h-sect {
  font-size: clamp(32px, 4.6vw, 56px);
}

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; }

.muted { color: var(--ink-soft); }
em.acc { font-style: italic; color: var(--gold-deep); }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--button);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: var(--r-btn);
  padding: 15px 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .35s var(--ease), background .35s var(--ease),
              color .35s var(--ease), border-color .35s var(--ease),
              box-shadow .35s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px); }

.btn--gold { background: var(--gold); color: #fff; box-shadow: 0 12px 26px -14px rgba(154,115,48,.8); }
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 18px 34px -16px rgba(154,115,48,.85); }

.btn--green { background: var(--green); color: var(--cream); }
.btn--green:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--green); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--green); background: var(--green); color: var(--cream); transform: translateY(-2px); }

.btn--ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(4px); }
.btn--ghost-light:hover { background: #fff; color: var(--green); border-color: #fff; transform: translateY(-2px); }

.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translate(4px,-4px); }

/* text link with arrow */
.link-more {
  font-family: var(--button);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.link-more .ln { width: 22px; height: 1px; background: var(--gold); transition: width .35s var(--ease); }
.link-more:hover .ln { width: 38px; }
.link-more:hover { color: var(--gold-deep); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .4s var(--ease);
  padding-block: 22px;
}
.site-header.scrolled {
  background: rgba(248, 245, 239, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--border-soft), var(--shadow-sm);
  padding-block: 12px;
}
.header-row { display: flex; align-items: center; justify-content: center; gap: 0; position: relative; }

.brand { display: flex; align-items: center; justify-content: center; flex: none; order: 2; margin: 0 clamp(12px, 2vw, 28px); transition: transform .4s var(--ease); }
.brand:hover { transform: scale(1.04); }
.brand .logo-img { height: 125px; width: auto; display: block; transition: height .4s var(--ease); }
.scrolled .brand .logo-img { height: 75px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav--left { order: 1; justify-content: flex-end; flex: 1; }
.nav--right { order: 3; justify-content: flex-start; flex: 1; }
.nav a {
  font-family: var(--button); font-weight: 500; font-size: 14.5px;
  color: var(--cream); padding: 9px 16px; border-radius: 8px;
  position: relative; transition: color .4s var(--ease), background .4s var(--ease);
}
.scrolled .nav a { color: var(--green); }
.nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 14px; order: 4; margin-left: auto; position: absolute; right: 0; }
.header-cta .btn { padding: 12px 22px; font-size: 14px; }

.menu-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px; width: 42px;
}
.menu-toggle span { height: 2px; width: 24px; background: var(--cream); transition: .35s var(--ease); }
.scrolled .menu-toggle span { background: var(--green); }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--green); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 0 var(--pad-x);
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
}
.menu-open .mobile-nav { opacity: 1; visibility: visible; transform: none; }
.mobile-nav a { font-family: var(--serif); font-size: 34px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav .btn { margin-top: 26px; align-self: flex-start; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; isolation: isolate; }
.hero-bg { position: absolute !important; inset: 0; width: 100% !important; height: 100% !important; z-index: -2; }
.hero-bg::part(frame) { border-radius: 0; }
.hero-slideshow { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--green-deep); }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.8s var(--ease); transform: scale(1.05);
}
.hero-slide.is-active { opacity: 1; animation: kenburns 9s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.16); } }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity .6s linear; }
  .hero-slide.is-active { animation: none; }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,37,28,.70) 0%, rgba(20,37,28,.46) 35%, rgba(16,28,21,.76) 100%),
    radial-gradient(120% 90% at 50% 120%, rgba(16,28,21,.90), rgba(16,28,21,0) 60%);
}
.hero-content { width: 100%; max-width: 960px; margin-inline: auto; padding-block: 200px 64px; text-align: center; color: #fff; }
.hero-content .eyebrow { color: var(--gold-soft); }
.hero-content .eyebrow::before, .hero-content .eyebrow.eyebrow--both::after { background: var(--gold-soft); }
.hero h1 { color: #fff; font-size: clamp(44px, 7vw, 92px); font-weight: 500; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero .lead { color: rgba(255,255,255,.86); margin: 26px auto 38px; font-size: clamp(17px,1.5vw,20px); }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.trust-row {
  display: flex; gap: 14px 36px; justify-content: center; flex-wrap: wrap;
  margin-top: 52px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.16);
}
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-family: var(--button); font-weight: 500; font-size: 14px; color: rgba(255,255,255,.9); letter-spacing: .01em; }
.trust-item svg { width: 18px; height: 18px; color: var(--gold-soft); flex: none; }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.7); font-family: var(--button); font-size: 10.5px; letter-spacing: .25em; text-transform: uppercase;
}
.scroll-cue .dot { width: 1px; height: 42px; background: linear-gradient(rgba(255,255,255,.7), transparent); animation: cue 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ============================================================
   OUR GOAL — split layout
   ============================================================ */
.goal-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.goal-grid .goal-copy p + p { margin-top: 18px; }

.beforeafter {
  position: relative; border-radius: var(--r-card); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5;
}
.beforeafter image-slot { width: 100%; height: 100%; }
.ba-pill {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  font-family: var(--button); font-weight: 600; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(22,41,31,.78); color: #fff; padding: 8px 14px; border-radius: 100px; backdrop-filter: blur(6px);
}
.ba-badge {
  position: absolute; right: -26px; bottom: -26px; z-index: 4;
  width: 158px; height: 158px; border-radius: 50%;
  background: var(--gold); color: #fff; display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-md); padding: 16px;
}
.ba-badge .n { font-family: var(--serif); font-size: 46px; font-weight: 600; line-height: 1; }
.ba-badge .t { font-family: var(--button); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-top: 4px; opacity: .92; }

/* ============================================================
   APPROACH — three cards
   ============================================================ */
.approach { background: var(--cream-warm); }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 34px); }
.appr-card {
  background: var(--cream); border: 1px solid var(--border-soft); border-radius: var(--r-card);
  padding: clamp(30px, 3vw, 44px) clamp(26px, 2.6vw, 38px); position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.appr-card::after {
  content: ""; position: absolute; inset: 6px; border: 1px solid var(--border-soft); border-radius: 12px;
  pointer-events: none; opacity: .45; transition: opacity .5s var(--ease);
}
.appr-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border); }
.appr-card:hover::after { opacity: .7; border-color: var(--gold-soft); }
.appr-num {
  width: 60px; height: 60px; border-radius: 50%; border: 1.5px solid var(--gold);
  color: var(--gold-deep); font-family: var(--serif); font-size: 26px; font-weight: 600;
  display: grid; place-items: center; margin-bottom: 26px;
}
.appr-card h3 { font-size: 30px; margin-bottom: 12px; }
.appr-card p { margin: 0; color: var(--ink-soft); font-size: 16px; }
.appr-card .step-line { position: absolute; top: 30px; right: 30px; font-family: var(--button); font-size: 11px; letter-spacing: .18em; color: var(--gold); opacity: .55; }

/* ============================================================
   QUOTE BANNER
   ============================================================ */
.quote-banner { background: var(--green); color: var(--cream); position: relative; overflow: hidden; }
.quote-banner::before, .quote-banner::after {
  content: "\201C"; position: absolute; font-family: var(--serif); color: rgba(255,255,255,.06);
  font-size: 420px; line-height: .7; pointer-events: none;
}
.quote-banner::before { top: -40px; left: 2%; }
.quote-banner::after { content: "\201D"; bottom: -210px; right: 2%; }
.quote-banner .wrap { position: relative; z-index: 1; }
.quote-banner blockquote {
  margin: 0; text-align: center; font-family: var(--serif); font-weight: 400;
  font-size: clamp(18px, 2.6vw, 35px); line-height: 1.25; max-width: 30ch; margin-inline: auto;
}
.quote-banner blockquote .gold { color: var(--gold-soft); font-style: italic; }
.quote-banner .qmark { width: 46px; height: 1px; background: var(--gold-soft); margin: 0 auto 34px; position: relative; }
.quote-banner .qmark::before { content: "\2726"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 12px; color: var(--gold-soft); background: var(--green); padding: 0 10px; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.2vw, 32px); }
.svc-card {
  background: var(--cream); border: 1px solid var(--border-soft); border-radius: var(--r-card);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border); }
.svc-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.svc-media image-slot { width: 100%; height: 100%; }
.svc-media .svc-no { position: absolute; top: 14px; left: 16px; z-index: 3; font-family: var(--serif); font-size: 18px; color: #fff; mix-blend-mode: difference; }
.svc-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-size: 25px; margin-bottom: 9px; }
.svc-body p { margin: 0 0 22px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }
.svc-body .link-more { margin-top: auto; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why { background: var(--green); color: var(--cream); position: relative; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.why h2 { color: #fff; }
.why .eyebrow { color: var(--gold-soft); }
.why .eyebrow::before { background: var(--gold-soft); }
.why .lead { color: rgba(255,255,255,.82); }
.why-media { position: relative; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5 / 6; }
.why-media image-slot { width: 100%; height: 100%; }

.why-list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 28px; }
.why-list li {
  display: flex; align-items: center; gap: 14px; padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.12); font-family: var(--button); font-weight: 500; font-size: 15.5px;
}
.why-list svg { width: 20px; height: 20px; color: var(--gold-soft); flex: none; }
.why-actions { margin-top: 34px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { columns: 3; column-gap: 18px; }
.gal-item {
  position: relative; break-inside: avoid; margin-bottom: 18px; border-radius: var(--r-card);
  overflow: hidden; cursor: zoom-in; box-shadow: var(--shadow-sm);
}
.gal-item image-slot { width: 100%; display: block; transition: transform .8s var(--ease); }
.gal-item:hover image-slot { transform: scale(1.06); }
.gal-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(22,41,31,.55));
  opacity: 0; transition: opacity .5s var(--ease); pointer-events: none;
}
.gal-item:hover::after { opacity: 1; }
.gal-cap {
  position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff;
  font-family: var(--button); font-weight: 600; font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px); transition: .5s var(--ease); pointer-events: none;
}
.gal-item:hover .gal-cap { opacity: 1; transform: none; }
.gal-zoom {
  position: absolute; top: 14px; right: 14px; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.9); display: grid; place-items: center; color: var(--green);
  opacity: 0; transform: scale(.8); transition: .45s var(--ease); pointer-events: none;
}
.gal-item:hover .gal-zoom { opacity: 1; transform: none; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(16,28,22,.92);
  display: flex; align-items: center; justify-content: center; padding: 5vw;
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
  backdrop-filter: blur(6px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img, .lightbox .lb-empty {
  max-width: 90vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg);
  transform: scale(.96); transition: transform .45s var(--ease);
}
.lightbox.open img, .lightbox.open .lb-empty { transform: none; }
.lb-empty {
  width: min(620px, 86vw); aspect-ratio: 4/3; background: var(--green-soft); color: rgba(255,255,255,.6);
  display: grid; place-items: center; font-family: var(--button); letter-spacing: .04em; text-align: center; padding: 30px;
}
.lb-close, .lb-nav {
  position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff;
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: grid; place-items: center;
  transition: background .3s var(--ease), transform .3s var(--ease); backdrop-filter: blur(6px);
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 26px; right: 26px; }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-nav:hover { transform: translateY(-50%) scale(1.06); }
.lb-prev { left: 26px; } .lb-next { right: 26px; }
.lb-count { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-family: var(--button); font-size: 13px; letter-spacing: .15em; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.2vw, 30px); }
.testi-card {
  background: var(--cream); border: 1px solid var(--border-soft); border-radius: var(--r-card);
  padding: clamp(16px, 2vw, 22px); display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  border-top: 2px solid var(--gold-soft);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 12px; }
.stars svg { width: 12px; height: 12px; }
.testi-card blockquote { margin: 0 0 14px; font-family: var(--serif); font-size: 17px; line-height: 1.42; color: var(--green); font-weight: 500; }
.testi-meta { display: flex; align-items: center; gap: 8px; margin-top: auto; }
.testi-meta image-slot { width: 30px; height: 30px; flex: none; }
.testi-meta .who { font-size: 13px; }
.testi-meta .role { font-size: 11px; }
.avatar-mono {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cream-warm); border: 1.5px solid var(--gold);
  color: var(--gold-deep); font-family: var(--serif); font-weight: 600; font-size: 15px;
}

/* ---- testimonials carousel ---- */
.testi-carousel { position: relative; }
.testi-viewport { overflow: hidden; padding: 8px; margin: -8px; }
.testi-track { display: flex; gap: 18px; transition: transform .6s var(--ease); will-change: transform; touch-action: pan-y; }
.testi-track.grab { cursor: grab; }
.testi-track.dragging { transition: none; cursor: grabbing; }
.testi-carousel .testi-card { flex: 0 0 auto; }
.testi-carousel .testi-card blockquote { font-size: 17px; line-height: 1.42; }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 26px; }
.testi-arrow {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--cream); color: var(--green); cursor: pointer; display: grid; place-items: center;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.testi-arrow:hover { background: var(--green); color: var(--cream); border-color: var(--green); transform: translateY(-2px); }
.testi-arrow:disabled { opacity: .3; cursor: default; background: var(--cream); color: var(--green); border-color: var(--border); transform: none; }
.testi-dots { display: flex; gap: 9px; }
.testi-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--border); cursor: pointer; padding: 0; transition: width .4s var(--ease), background .4s var(--ease), border-radius .4s var(--ease); }
.testi-dots button.active { background: var(--gold); width: 28px; border-radius: 5px; }

.val--email { font-size: 16px; word-break: break-word; }
.info-card .val a, .footer-contact a { transition: color .3s var(--ease); }
.info-card .val a:hover, .footer-contact a:hover { color: var(--gold-deep); }
.testi-meta .who { font-family: var(--button); font-weight: 600; font-size: 15px; color: var(--ink); }
.testi-meta .role { font-size: 13px; color: var(--ink-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream-warm); }
.faq.faq--alt { background: var(--cream); border-top: 2px solid var(--gold-soft); }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px; font-family: var(--serif); font-size: clamp(21px, 2vw, 27px); color: var(--green); font-weight: 500;
}
.faq-icon { flex: none; width: 30px; height: 30px; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--gold); transition: transform .4s var(--ease); }
.faq-icon::before { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a { overflow: hidden; height: 0; transition: height .45s var(--ease); }
.faq-a-inner { padding: 0 4px 28px; color: var(--ink-soft); font-size: 16.5px; max-width: 60ch; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 4vw, 64px); align-items: stretch; }
.contact-card { background: var(--cream); border: 1px solid var(--border-soft); border-radius: var(--r-card); padding: clamp(30px, 3.4vw, 50px); box-shadow: var(--shadow-sm); border-top: 2px solid var(--gold-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--button); font-weight: 600; font-size: 13px; letter-spacing: .03em; color: var(--green); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease); resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(180,138,61,.14); }
.field.invalid input, .field.invalid textarea { border-color: #c0392b; box-shadow: 0 0 0 4px rgba(192,57,43,.1); }
.field .err-msg { color: #c0392b; font-size: 12.5px; margin-top: 6px; font-family: var(--button); display: none; }
.field.invalid .err-msg { display: block; }
.contact-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-success {
  display: none; text-align: center; padding: 40px 10px;
}
.form-success.show { display: block; animation: pop .5s var(--ease); }
.form-success .tick { width: 70px; height: 70px; border-radius: 50%; background: rgba(47,125,50,.12); color: var(--success); display: grid; place-items: center; margin: 0 auto 20px; }
.form-success h3 { font-size: 30px; margin-bottom: 10px; }
@keyframes pop { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }

.contact-aside { display: flex; flex-direction: column; gap: 22px; }
.contact-map { flex: 1; min-height: 280px; border-radius: var(--r-card); overflow: hidden; position: relative; border: 1px solid var(--border-soft); box-shadow: var(--shadow-sm); }
.contact-map image-slot { width: 100%; height: 100%; min-height: 280px; }
.map-embed { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* Contact page — file upload field + name grid */
.field .opt { color: var(--ink-soft); font-weight: 500; font-family: var(--sans); font-size: 12px; letter-spacing: 0; text-transform: none; }
.file-field .file-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.file-btn {
  font-family: var(--button); font-weight: 600; font-size: 14px; color: var(--green);
  background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: 12px 20px;
  cursor: pointer; transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
  display: inline-flex; align-items: center; gap: 9px;
}
.file-btn:hover { border-color: var(--gold); color: var(--gold-deep); background: var(--cream-warm); }
.file-name { font-size: 14px; color: var(--ink-soft); font-family: var(--button); }
.file-name.has-file { color: var(--green); }
.contact-aside--tall .contact-map { min-height: 360px; }
.map-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-100%); z-index: 2; color: var(--gold-deep);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.25)); pointer-events: none;
}
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.info-card { background: var(--cream); border: 1px solid var(--border-soft); border-radius: var(--r-card); padding: 24px 26px; }
.info-card .ic { color: var(--gold-deep); margin-bottom: 12px; }
.info-card .lbl { font-family: var(--button); font-weight: 600; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.info-card .val { font-family: var(--serif); font-size: 20px; color: var(--green); line-height: 1.3; }

/* ============================================================
   AFFILIATES BAR
   ============================================================ */
.affiliates { background: var(--cream-warm); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding-block: clamp(36px, 5vw, 56px); text-align: center; position: relative; }
.affiliates::before, .affiliates::after {
  content: "\2766"; position: absolute; top: -10px; font-size: 14px; color: var(--gold); opacity: .3;
  background: var(--cream-warm); padding: 0 10px; line-height: 1;
}
.affiliates::before { left: calc(50% - 80px); }
.affiliates::after { left: calc(50% + 60px); }
.affiliates .eyebrow { margin-bottom: clamp(20px, 3vw, 32px); }
.affiliates-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(28px, 5vw, 56px); }
.affiliates-row img { height: clamp(44px, 5vw, 64px); width: auto; object-fit: contain; filter: grayscale(1) opacity(.55); transition: filter .4s var(--ease); }
.affiliates-row img.tall { height: clamp(54px, 6vw, 78px); }
.affiliates-row img:hover { filter: grayscale(0) opacity(1); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-deep); color: rgba(248,245,239,.72); border-top: 2px solid var(--gold); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-block: clamp(56px, 7vw, 84px); }
.footer-brand .brand { color: var(--cream); margin-bottom: 20px; }
.footer-brand p { max-width: 34ch; font-size: 15px; line-height: 1.7; }
.footer-col h4 { color: var(--cream); font-family: var(--button); font-weight: 600; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { font-size: 15px; transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-contact .row { display: flex; gap: 12px; margin-bottom: 16px; font-size: 15px; }
.footer-contact svg { color: var(--gold-soft); flex: none; margin-top: 3px; }
.socials { display: flex; gap: 12px; margin-top: 24px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; color: var(--cream); transition: .35s var(--ease); }
.socials a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue .dot { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav--left, .nav--right, .header-cta .btn { display: none; }
  .menu-toggle { display: flex; }
  .svc-grid, .approach-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .goal-grid, .why-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-media, .beforeafter { max-width: 560px; }
  .gallery-grid { columns: 2; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .svc-grid, .approach-grid, .testi-grid, .why-list, .contact-info, .footer-top, .form-row { grid-template-columns: 1fr; }
  .footer-top { gap: 36px; }
  .gallery-grid { columns: 1; }
  .ba-badge { width: 120px; height: 120px; right: 12px; bottom: -18px; }
  .ba-badge .n { font-size: 34px; }
  .lb-nav { width: 44px; height: 44px; }
  .lb-prev { left: 12px; } .lb-next { right: 12px; }
  .trust-row { gap: 12px 24px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.nav a.active { color: var(--gold-soft); }
.scrolled .nav a.active { color: var(--gold-deep); }
.nav a.active::after { transform: scaleX(1); }

.page-hero {
  background: var(--green); color: var(--cream); position: relative; overflow: hidden;
  padding: clamp(176px, 20vh, 216px) 0 clamp(46px, 5.4vw, 76px); text-align: center;
}
.page-hero::before {
  content: "\201C"; position: absolute; top: -70px; right: 4%;
  font-family: var(--serif); color: rgba(255,255,255,.05); font-size: 380px; line-height: 1; pointer-events: none;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center;
  transform: scale(1.04);
}
.page-hero.has-banner::before { display: none; }
.page-hero.has-banner::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(18,33,25,.92) 0%, rgba(18,33,25,.82) 45%, rgba(14,25,19,.95) 100%),
    radial-gradient(120% 80% at 50% 120%, rgba(14,25,19,.78), rgba(14,25,19,0) 60%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold-soft); justify-content: center; }
.page-hero .eyebrow::before, .page-hero .eyebrow.eyebrow--both::after { background: var(--gold-soft); }
.page-hero h1 { color: #fff; font-size: clamp(46px, 6.6vw, 86px); }
.page-hero h1 em { color: var(--gold-soft); font-style: italic; }
.page-hero .lead { color: rgba(255,255,255,.84); margin: 26px auto 0; }
.breadcrumb {
  font-family: var(--button); font-weight: 600; font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 26px; display: flex; gap: 10px; justify-content: center;
}
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { opacity: .5; }

/* Who We Are reuses .goal-grid + .beforeafter */
.about-who .goal-copy p + p { margin-top: 18px; }

/* Why Work With Us — points grid */
.why-points {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(16px, 2vw, 24px); margin-top: clamp(38px, 4.5vw, 56px);
}
.why-point {
  display: flex; gap: 18px; align-items: center;
  background: var(--cream); border: 1px solid var(--border-soft); border-radius: var(--r-card);
  padding: 24px 28px; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.why-point:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border); }
.why-point .chk { flex: none; width: 42px; height: 42px; border-radius: 50%; background: rgba(180,138,61,.13); color: var(--gold-deep); display: grid; place-items: center; }
.why-point .chk svg { width: 20px; height: 20px; }
.why-point p { margin: 0; font-family: var(--button); font-weight: 500; font-size: 16px; color: var(--ink); line-height: 1.4; }

/* Our Process — timeline on green */
.process { background: var(--green); color: var(--cream); }
.process .eyebrow { color: var(--gold-soft); }
.process .eyebrow::before, .process .eyebrow.eyebrow--both::after { background: var(--gold-soft); }
.process h2 { color: #fff; }
.process .lead { color: rgba(255,255,255,.82); }
.process-timeline { margin-top: clamp(38px, 4.5vw, 58px); }
.p-step {
  display: grid; grid-template-columns: 110px 1fr; gap: clamp(20px, 3vw, 48px);
  padding: clamp(28px, 3.4vw, 46px) 0; border-top: 1px solid rgba(255,255,255,.14); align-items: start;
}
.p-step:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.p-num { font-family: var(--serif); font-weight: 500; font-size: clamp(42px, 4.8vw, 64px); color: var(--gold-soft); line-height: .9; }
.p-step h3 { color: #fff; font-size: clamp(24px, 2.4vw, 31px); margin-bottom: 12px; }
.p-step p { margin: 0; color: rgba(255,255,255,.8); font-size: 16.5px; max-width: 64ch; line-height: 1.7; }
@media (max-width: 600px) {
  .p-step { grid-template-columns: 1fr; gap: 8px; }
  .p-num { font-size: 38px; }
}

/* ============================================================
   OUR APPROACH PAGE — alternating stages
   ============================================================ */
.approach-stages { display: grid; gap: clamp(76px, 10vw, 150px); }
.stage { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 88px); align-items: start; }
.stage-media { position: relative; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.stage-media image-slot { width: 100%; height: 100%; }
.stage-num-badge {
  position: absolute; top: 18px; left: 18px; z-index: 3; width: 58px; height: 58px; border-radius: 50%;
  background: rgba(22,41,31,.8); color: var(--gold-soft); font-family: var(--serif); font-weight: 600; font-size: 24px;
  display: grid; place-items: center; backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.18);
}
@media (min-width: 1025px) {
  .stage-media { position: sticky; top: 112px; }
  .stage--rev .stage-media { order: 2; }
}
.stage-body { position: relative; padding-top: 14px; }
.stage-ghost {
  display: block; font-family: var(--serif); font-weight: 600; font-size: clamp(72px, 9vw, 130px);
  line-height: .72; color: var(--gold); opacity: .15; margin-bottom: -8px; letter-spacing: -0.02em;
}
.stage-body .eyebrow { margin-top: 8px; }
.stage-body h2 { font-size: clamp(34px, 4.4vw, 58px); margin: 0 0 22px; }
.stage-body p { color: var(--ink-soft); margin: 0 0 18px; font-size: 17px; line-height: 1.75; }
.stage-body p.lead { color: var(--ink); font-size: clamp(18px, 1.5vw, 20px); }
.stage-sub { font-family: var(--button); font-weight: 600; font-size: 13px; letter-spacing: .04em; color: var(--green); margin: 28px 0 16px; text-transform: none; }
.stage-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 13px; }
.stage-list li { display: flex; gap: 14px; align-items: flex-start; font-family: var(--button); font-weight: 500; font-size: 16.5px; color: var(--ink); }
.stage-list svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; margin-top: 1px; }
@media (max-width: 1024px) {
  .stage { grid-template-columns: 1fr; gap: 30px; }
  .stage-media { max-width: 580px; aspect-ratio: 3 / 2; }
}

/* ============================================================
   RESPONSIVE POLISH + PERFORMANCE
   ============================================================ */
@media (max-width: 900px) and (min-width: 641px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 40px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: clamp(32px, 8.6vw, 50px); }
  .page-hero h1 { font-size: clamp(30px, 8.2vw, 46px); }
  .hero .lead, .page-hero .lead { font-size: 16.5px; }
  .display { font-size: clamp(34px, 9vw, 56px); }
  .stage-body h2 { font-size: clamp(28px, 7.6vw, 40px); }
  .stage-num-badge { width: 48px; height: 48px; font-size: 20px; top: 14px; left: 14px; }
  .contact-card { padding: 26px 22px; }
  .info-card { padding: 20px 22px; }
  .testi-controls { gap: 16px; margin-top: 34px; }
  .testi-arrow { width: 48px; height: 48px; }
  .btn { padding: 14px 24px; font-size: 14.5px; }
  .eyebrow { font-size: 11.5px; letter-spacing: .18em; }
  .quote-banner blockquote { font-size: clamp(16px, 4.5vw, 24px); }
}
/* avoid sideways scroll from decorative overflow on small screens */
@media (max-width: 480px) {
  .quote-banner::before, .quote-banner::after { font-size: 240px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
