/* ─────────────────────────────────────────────
   MHA Creative Landscapes — shared stylesheet
   Fonts: Fraunces (display) + Syne (UI)
   ───────────────────────────────────────────── */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --rust:    #b84d1a;
  --clay:    #d47242;
  --earth:   #2e1e12;
  --bark:    #7a5c42;
  --sand:    #ede4d4;
  --cream:   #faf6ef;
  --moss:    #3d5430;
  --text:    #1c120a;
  --muted:   #6b5440;
  --border:  rgba(44,30,18,.1);
  --nav-h:   72px;
  --pad-x:   5rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  z-index: 200;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.nav.solid {
  background: rgba(250,246,239,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.nav-logo img { height: 34px; width: auto; }
.nav-logo span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: -.01em;
  transition: color .25s;
  white-space: nowrap;
}
.nav.solid .nav-logo span { color: var(--earth); }

.nav-links {
  display: flex;
  gap: 2.75rem;
  list-style: none;
}
.nav-links a {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--clay); }
.nav.solid .nav-links a { color: var(--muted); }
.nav.solid .nav-links a:hover { color: var(--earth); }
.nav.solid .nav-links a.active { color: var(--rust); }

.nav-cta {
  font-family: 'Syne', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: var(--rust);
  color: #fff;
  border: none;
  padding: .65rem 1.5rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--clay); transform: translateY(-1px); }

/* mobile menu */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 320;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  transition: transform .25s, opacity .2s, background .25s;
}
.nav.solid .nav-burger span { background: var(--earth); }
.nav-burger.open span { background: var(--sand); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(26,16,8,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 2rem;
  color: var(--sand);
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--clay); }
.mobile-menu .nav-cta { font-family: 'Syne', sans-serif; font-size: .8rem; padding: .9rem 2.25rem; }

/* ── HERO (home) ── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  animation: slowPan 25s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(20,12,5,.15) 0%,
    rgba(20,12,5,.05) 25%,
    rgba(20,12,5,.55) 65%,
    rgba(20,12,5,.88) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 var(--pad-x) 5.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: flex-end;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.5rem;
}
.hero-kicker-line { display: block; width: 36px; height: 1.5px; background: var(--clay); }

.hero .hero-kicker {
  display: inline-flex;
  background: rgba(12,6,2,.44);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: .45rem 1.1rem .45rem .65rem;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.75rem, 7.5vw, 8.5rem);
  line-height: .95;
  letter-spacing: -.03em;
  color: #fff;
  font-weight: 700;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--clay);
  display: block;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: .5rem;
}

.hero-desc {
  font-size: .9rem;
  line-height: 1.85;
  color: rgba(255,255,255,.62);
  font-weight: 400;
}

.hero-btn-group {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

/* frosted Google Reviews pill */
.btn-reviews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: .7rem 1.4rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: all .2s;
  align-self: flex-start;
}
.btn-reviews:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); color: #fff; }
.btn-reviews .stars { color: #f5c54a; font-size: .7rem; letter-spacing: .05em; }

.btn-solid {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: .01em;
  background: var(--rust);
  color: #fff;
  border: none;
  padding: .95rem 2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-align: center;
  display: block;
  width: 100%;
  text-decoration: none;
}
.btn-solid:hover { background: var(--clay); transform: translateY(-2px); }

.btn-ghost {
  font-family: 'Syne', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.18);
  padding: .95rem 2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  display: block;
  width: 100%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.35); }

.hero-scroll-cue {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.3);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  z-index: 10;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
  animation: scrollFade 2.4s ease-in-out infinite;
}

/* ── SUBPAGE HERO ── */
.subhero {
  position: relative;
  height: 62vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.subhero .hero-bg { animation-duration: 30s; }
.subhero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 var(--pad-x) 4rem;
}
.subhero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .98;
  letter-spacing: -.03em;
  color: #fff;
  font-weight: 700;
}
.subhero h1 em { font-style: italic; font-weight: 300; color: var(--clay); }
.subhero-sub {
  margin-top: 1.25rem;
  font-size: .9rem;
  line-height: 1.85;
  color: rgba(255,255,255,.62);
  max-width: 520px;
}

/* ── TRUST STRIP ── */
.trust {
  background: var(--earth);
  padding: .9rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: auto;
  flex-wrap: nowrap;
}
.trust-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  white-space: nowrap;
}
.trust-divider { width: 1px; height: 32px; background: rgba(255,255,255,.1); }
.trust-badges { display: flex; gap: 1.5rem; align-items: center; flex-wrap: nowrap; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
}
.trust-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clay);
  flex-shrink: 0;
}
.trust-rating {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  padding: .5rem 1.1rem;
  text-decoration: none;
  transition: background .2s;
}
.trust-rating:hover { background: rgba(255,255,255,.1); }
.trust-stars { color: #f5c54a; font-size: .7rem; letter-spacing: .05em; }
.trust-rating-text {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}

/* ── SECTION UTIL ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--rust);
  flex-shrink: 0;
}
.eyebrow.on-dark { color: var(--clay); }
.eyebrow.on-dark::before { background: var(--clay); }

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.05;
}
.section-title em { font-style: italic; font-weight: 300; color: var(--rust); }
.section-title.on-dark { color: var(--sand); }
.section-title.on-dark em { color: var(--clay); }

.title-lg { font-size: clamp(2.5rem, 4vw, 3.75rem); }
.title-md { font-size: clamp(2.25rem, 3.5vw, 3.25rem); }

/* ── APPROACH (split image/text) ── */
.approach {
  padding: 9rem var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.approach-visual { position: relative; }

.approach-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

.approach-img-accent {
  position: absolute;
  bottom: -3.5rem;
  right: -3rem;
  width: 54%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  border: 8px solid var(--cream);
  box-shadow: 0 16px 48px rgba(0,0,0,.16);
}

.approach-tag {
  position: absolute;
  top: 2.5rem;
  left: -1.75rem;
  background: var(--rust);
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 1.25rem .75rem;
  border-radius: 4px;
  z-index: 2;
}

.approach-text { padding-top: 1.5rem; }
.approach-title { margin-bottom: 2rem; }

.approach-body {
  font-size: .95rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.approach-pull {
  border-left: 3px solid var(--clay);
  padding: 1.25rem 1.75rem;
  background: var(--sand);
  border-radius: 0 6px 6px 0;
  margin: 2.25rem 0;
}
.approach-pull p {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--earth);
  line-height: 1.55;
}

.approach-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.75rem;
}
.approach-list li {
  display: flex;
  align-items: center;
  gap: .875rem;
  font-size: .875rem;
  color: var(--muted);
}
.approach-list li::before {
  content: '';
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--clay);
  flex-shrink: 0;
}

.btn-earth {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Syne', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: var(--earth);
  color: #fff;
  border: none;
  padding: 1rem 2.25rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-earth:hover { background: var(--rust); transform: translateY(-2px); }

/* ── SERVICES (image cards) ── */
.services { padding: 9rem var(--pad-x); background: var(--earth); }

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
}

.services-view-all {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  align-self: flex-end;
}
.services-view-all:hover { color: var(--clay); border-bottom-color: var(--clay); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.svc-card-img {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.svc-card:hover .svc-card-img { transform: scale(1.05); }

.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,10,3,.92) 0%, rgba(20,10,3,.3) 45%, transparent 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.25rem;
  transition: background .3s;
}
.svc-card:hover .svc-card-overlay {
  background: linear-gradient(to top, rgba(20,10,3,.96) 0%, rgba(20,10,3,.5) 55%, transparent 70%);
}

.svc-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: .85rem;
  color: var(--clay);
  margin-bottom: .75rem;
}

.svc-name {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: .875rem;
  line-height: 1.1;
}

.svc-desc {
  font-size: .82rem;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
  font-weight: 400;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s;
  opacity: 0;
}
.svc-card:hover .svc-desc { max-height: 96px; opacity: 1; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  margin-top: 1.25rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .3s .1s, gap .2s;
}
.svc-card:hover .svc-link { max-height: 32px; opacity: 1; }
.svc-link:hover { gap: .75rem; }

/* ── SERVICE DETAIL (services page) ── */
.svc-detail {
  padding: 7rem var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.svc-detail.alt { background: var(--sand); }
.svc-detail-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.svc-detail-img.tall { aspect-ratio: 3/4; }
.svc-detail h2 { font-size: clamp(2rem, 3vw, 2.75rem); margin-bottom: 1.5rem; }
.svc-detail-body {
  font-size: .95rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.75rem 0 2.25rem;
}
.svc-tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rust);
  background: rgba(180,77,26,.08);
  border: 1px solid rgba(180,77,26,.18);
  border-radius: 100px;
  padding: .45rem 1rem;
}

/* ── PORTFOLIO ── */
.portfolio { padding: 9rem var(--pad-x); }

.portfolio-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
}

.portfolio-view-all {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid var(--border);
  transition: color .2s, border-color .2s;
  align-self: flex-end;
  white-space: nowrap;
}
.portfolio-view-all:hover { color: var(--rust); border-bottom-color: var(--rust); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 300px;
  gap: 1.25rem;
}

.p-item {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.p-span-3 { grid-column: span 3; }
.p-span-4 { grid-column: span 4; }
.p-span-5 { grid-column: span 5; }
.p-span-6 { grid-column: span 6; }
.p-span-7 { grid-column: span 7; }
.p-span-8 { grid-column: span 8; }
.p-tall   { grid-row: span 2; }

.p-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .65s ease;
}
.p-item:hover .p-bg { transform: scale(1.05); }

.p-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,10,3,.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 1.75rem;
}
.p-item:hover .p-overlay { opacity: 1; }

.p-tag {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: .4rem;
}
.p-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}

/* ── TESTIMONIALS (spotlight) ── */
.testimonials {
  background: var(--sand);
  border-top: 1px solid rgba(44,30,18,.08);
  border-bottom: 1px solid rgba(44,30,18,.08);
  padding: 7rem var(--pad-x);
}
.testi-stage {
  width: 66%;
  margin: 0 auto;
  text-align: center;
}
.testi-slide { display: none; }
.testi-slide.active { display: block; animation: fadeUp .5s ease; }

.testi-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.3vw, 2.1rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--earth);
  margin-bottom: 2.5rem;
}
.testi-quote::before { content: '\201C'; color: var(--clay); opacity: .6; }
.testi-quote::after  { content: '\201D'; color: var(--clay); opacity: .6; }

.testi-meta { display: flex; flex-direction: column; align-items: center; }
.testi-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(180,77,26,.12);
  border: 1px solid rgba(180,77,26,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--rust);
  font-weight: 300;
  margin-bottom: 1rem;
}
.testi-name {
  font-size: .875rem;
  font-weight: 700;
  color: var(--earth);
  margin-bottom: .2rem;
}
.testi-loc { font-size: .75rem; color: var(--muted); }
.testi-stars { color: #d4903a; font-size: .8rem; letter-spacing: .08em; margin-top: .75rem; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 3rem;
}
.testi-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid var(--rust);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.testi-dot.active { background: var(--rust); transform: scale(1.2); }

/* ── PROCESS ── */
.process { padding: 9rem var(--pad-x); background: var(--cream); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
}

.process-step {
  padding: 2.5rem 2.5rem 2.5rem 0;
  position: relative;
}
.process-step + .process-step {
  padding-left: 2.5rem;
  border-left: 1px solid var(--border);
}

.step-marker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.step-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--sand);
  border: 1.5px solid rgba(180,77,26,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  color: var(--rust);
  flex-shrink: 0;
}

.step-line {
  flex: 1;
  height: 1px;
  background: rgba(180,77,26,.18);
}
.process-step:last-child .step-line { display: none; }

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: .875rem;
}

.step-desc {
  font-size: .85rem;
  line-height: 1.85;
  color: var(--muted);
}

/* ── STORY / ABOUT blocks ── */
.story {
  padding: 9rem var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.story-img {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.story-body {
  font-size: .95rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.values {
  background: var(--earth);
  padding: 8rem var(--pad-x);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.value-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sand);
  margin: 1.25rem 0 .875rem;
}
.value-card p {
  font-size: .85rem;
  line-height: 1.85;
  color: rgba(237,228,212,.5);
}
.value-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 2.25rem;
  color: var(--clay);
}

.areas {
  padding: 8rem var(--pad-x);
  text-align: center;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.area-card {
  background: var(--sand);
  border: 1px solid rgba(44,30,18,.08);
  border-radius: 6px;
  padding: 2.5rem 1.5rem;
}
.area-card h3 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.35rem;
  color: var(--earth);
  margin-bottom: .5rem;
}
.area-card p { font-size: .75rem; color: var(--muted); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--rust);
  padding: 6rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.1;
}
.cta-band h2 em { font-style: italic; font-weight: 300; color: var(--sand); }
.cta-band .btn-earth { background: var(--earth); flex-shrink: 0; }
.cta-band .btn-earth:hover { background: #1c120a; }

/* ── CONTACT ── */
.contact {
  padding: 9rem var(--pad-x);
  background: var(--earth);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-title { color: var(--sand); margin-bottom: 1.5rem; }
.contact-title em { color: var(--clay); }

.contact-sub {
  font-size: .9rem;
  color: rgba(237,228,212,.5);
  line-height: 1.85;
  max-width: 380px;
  margin-bottom: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.c-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.c-info-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
  min-width: 62px;
  padding-top: .1rem;
}
.c-info-val {
  font-size: .85rem;
  color: rgba(237,228,212,.6);
  line-height: 1.6;
}
.c-info-val a { color: rgba(237,228,212,.6); text-decoration: none; transition: color .2s; }
.c-info-val a:hover { color: var(--sand); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.field label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(237,228,212,.35);
}
.field input,
.field textarea,
.field select {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(237,228,212,.85);
  padding: .875rem 1rem;
  font-family: 'Syne', sans-serif;
  font-size: .875rem;
  font-weight: 400;
  border-radius: 6px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(237,228,212,.25); }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: rgba(212,114,66,.5); }
.field textarea { resize: none; height: 108px; }
.field select { appearance: none; cursor: pointer; }
.field select option { color: var(--earth); }

.form-note {
  font-size: .72rem;
  color: rgba(237,228,212,.28);
  text-align: center;
  margin-top: -.25rem;
}

.btn-submit {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: .01em;
  background: var(--rust);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s;
  width: 100%;
}
.btn-submit:hover { background: var(--clay); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: #110b05;
  color: var(--sand);
  padding: 4.5rem var(--pad-x) 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 2.5rem;
}

.footer-logo { height: 56px; width: auto; margin-bottom: 1.25rem; }

.footer-brand-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.35rem;
  color: var(--sand);
  margin-bottom: .875rem;
}
.footer-tagline {
  font-size: .825rem;
  color: rgba(237,228,212,.35);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 2rem;
}
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: .75rem;
}
.fcr-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
  min-width: 52px;
}
.fcr-val {
  font-size: .82rem;
  color: rgba(237,228,212,.45);
}
.fcr-val a { color: rgba(237,228,212,.45); text-decoration: none; transition: color .2s; }
.fcr-val a:hover { color: var(--sand); }

.footer-col-title {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.5rem;
}
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: .875rem; }
.footer-nav a {
  font-size: .875rem;
  color: rgba(237,228,212,.38);
  text-decoration: none;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--sand); }
.footer-nav li { font-size: .875rem; color: rgba(237,228,212,.38); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: .72rem; color: rgba(237,228,212,.22); }
.footer-certs { display: flex; gap: 2rem; }
.footer-cert {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(237,228,212,.22);
}

/* ── SERVICE PULL QUOTE ── */
.svc-pull { margin: 0 0 2rem; }
.svc-pull-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--earth);
  line-height: 1.5;
}
.svc-detail.alt .svc-pull-text { color: var(--bark); }
.svc-pull-author {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .35rem;
}

/* ── WORK GALLERY ── */
.work-gallery { padding: 9rem var(--pad-x); }
.work-gallery-head { margin-bottom: 4rem; }

/* ── ABOUT STORY ── */
.story-title { margin-bottom: 2rem; }

/* ── SCROLL REVEAL ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .65s ease, transform .65s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
}

/* ── GOOGLE LOCAL GUIDE BADGE ── */
.local-guide-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: 'Syne', sans-serif;
  font-style: normal;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #4285f4;
  background: rgba(66,133,244,.1);
  border: 1px solid rgba(66,133,244,.22);
  border-radius: 100px;
  padding: .22rem .6rem;
  margin-left: .5rem;
  vertical-align: middle;
}

/* ── READ MORE TOGGLE ── */
.testi-quote-inner.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testi-quote-inner.expanded { display: block; }
.testi-read-more {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--clay);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: .5rem 0 1.25rem;
  transition: color .2s;
}
.testi-read-more:hover { color: var(--rust); }

/* ── CSLB LICENSE BADGE (services hero) ── */
.subhero-license-badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: 1.75rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: .65rem 1.35rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.subhero-license-badge:hover { background: rgba(255,255,255,.18); color: #fff; }
.license-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

/* ── CSLB LICENSE CARD (services hero) ── */
.cslb-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  flex-shrink: 0;
  text-decoration: none;
  transition: background .2s;
  min-width: 200px;
  align-self: flex-end;
}
.cslb-card:hover { background: rgba(255,255,255,.16); }
.cslb-card-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: .875rem;
}
.cslb-card-main {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .625rem;
  letter-spacing: -.01em;
}
.cslb-card-sub {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.cslb-card-sub::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

/* ── ABOUT AWARD BADGE (subhero) ── */
.subhero-inner-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}
.subhero-left { flex: 1; min-width: 0; }
.subhero-award-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 10px;
  padding: 1.25rem 1.75rem;
  flex-shrink: 0;
  text-decoration: none;
}
.award-badge-icon { font-size: 2rem; color: #f5c54a; line-height: 1; }
.award-badge-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.25;
  margin-bottom: .2rem;
}
.award-badge-sub {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ── SERVICE AREA CARD VARIANTS ── */
.area-card-tag {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--muted);
}
.area-card-marin { border-left: 3px solid var(--clay); }
.area-card-marin .area-card-tag { color: var(--clay); }
.area-card-sonoma {
  background: rgba(61,84,48,.06);
  border-top: 3px solid var(--moss);
}
.area-card-sonoma h3 { color: var(--moss); }
.area-card-sonoma .area-card-tag { color: var(--moss); }
.area-card-sf {
  background: var(--earth);
  border: 1px solid transparent;
}
.area-card-sf h3 {
  font-style: normal;
  font-weight: 700;
  color: var(--sand);
}
.area-card-sf p { color: rgba(237,228,212,.5); }
.area-card-sf .area-card-tag { color: rgba(237,228,212,.35); }
.area-card-east {
  background: rgba(184,77,26,.04);
  border-bottom: 3px solid var(--rust);
}
.area-card-east h3 { color: var(--rust); }
.area-card-east .area-card-tag { color: var(--rust); }

/* ── SERVICE AREAS — text layout (about page) ── */
.areas.areas-text { text-align: left; padding-bottom: 3rem; }
.areas-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -.035em;
  line-height: .98;
  color: var(--earth);
  margin-bottom: 2.25rem;
}
.areas-cities {
  font-size: .88rem;
  color: var(--muted);
  line-height: 2.4;
  max-width: 740px;
  font-weight: 500;
  letter-spacing: .01em;
}

/* ── SERVICE AREA MAP ── */
.map-section {
  padding: 0 var(--pad-x) 8rem;
  background: var(--cream);
}
.map-container {
  margin-top: 3rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
#service-map { height: 460px; width: 100%; }
.map-label span {
  font-family: 'Syne', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--earth);
  background: rgba(250,246,239,.92);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .3rem .6rem;
  white-space: nowrap;
  pointer-events: none;
}

/* ── CONTACT PAGE (no hero) ── */
.contact.contact-page {
  padding-top: calc(var(--nav-h) + 6rem);
}

/* ── ANIMATIONS ── */
@keyframes slowPan {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1%, -1%); }
}
@keyframes scrollFade {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50%       { opacity: .7; transform: scaleY(1.1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  :root { --pad-x: 2.5rem; }
  .approach, .svc-detail, .story { gap: 4rem; }
  .footer-top { gap: 3rem; }
}

@media (max-width: 900px) {
  .nav-links, .nav .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 4.5rem; }
  .hero-scroll-cue { display: none; }

  .approach, .svc-detail, .story, .contact { grid-template-columns: 1fr; gap: 3.5rem; }
  .approach-img-accent { right: 0; }
  .svc-detail.img-right .svc-detail-img { order: -1; }

  .services-grid { grid-template-columns: 1fr; }
  .svc-desc, .svc-link { max-height: none; opacity: 1; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; }
  .portfolio-grid .p-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .p-overlay { opacity: 1; }

  .process-steps { grid-template-columns: 1fr; }
  .process-step { padding: 2rem 0; }
  .process-step + .process-step { padding-left: 0; border-left: none; border-top: 1px solid var(--border); }

  .values-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .areas-grid { grid-template-columns: 1fr 1fr; }

  .testi-stage { width: 100%; }

  .trust { justify-content: center; gap: 1.5rem; padding: 1.75rem var(--pad-x); flex-wrap: wrap; }
  .trust-divider { display: none; }
  .trust-badges { justify-content: center; gap: 1.25rem; flex-wrap: wrap; }

  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 900px) {
  .subhero-inner-split { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .subhero-award-badge { align-self: flex-start; }
  .map-section { padding-bottom: 5rem; }
  #service-map { height: 320px; }
}

@media (max-width: 560px) {
  :root { --pad-x: 1.5rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .nav-logo span { font-size: 1rem; }
}
