@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;1,9..144,700&family=Inter+Tight:wght@400;450;500;600;700&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #D4BCA5;
  --accent:         #D4C4AC;
  --canvas:         #FAF6EE;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --muted:          #6B6660;

  /* Derived */
  --primary-dark:   #B89E87;
  --primary-dim:    rgba(212,188,165,0.18);
  --ink-mid:        #3A3530;
  --ink-faint:      rgba(26,24,20,0.08);
  --border:         rgba(26,24,20,0.10);
  --border-strong:  rgba(26,24,20,0.20);

  --radius:         8px;
  --radius-lg:      16px;

  --section-py:     clamp(96px, 12vh, 160px);
  --content-max:    1280px;
  --wide-max:       1400px;

  --header-height:  72px;

  --font-display:   'Fraunces', Georgia, serif;
  --font-body:      'Inter Tight', system-ui, sans-serif;
}

@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 450;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 44px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.about-feature > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a,
[class*="gallery-grid"] > figure {
  grid-column: auto; width: auto; max-width: 100%; height: auto; min-height: 0;
}
[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

/* Anchors inside headings render as heading, not links */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* Global anchor transitions */
a { color: var(--ink); transition: color 150ms; text-decoration: none; }
a:hover { color: var(--primary-dark); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.wrap {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

.container {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

.wide-container {
  max-width: var(--wide-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
#scrollBar, .scroll-bar, #scrollProgress, .scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--primary);
  z-index: 9999;
  transition: width 80ms linear;
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); letter-spacing: -0.01em; }
h4 { font-size: 16px; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; }

p { line-height: 1.68; }

/* ============================================================
   EYEBROW — brand-color square bullet + mono-uppercase
   ============================================================ */
.eyebrow,
.section-eyebrow,
.page-eyebrow,
.page-header-eyebrow,
.cta-eyebrow,
.info-card-eyebrow,
.area-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.eyebrow-bullet,
.eyebrow::before,
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}

/* When eyebrow-bullet is a real span child */
.eyebrow .eyebrow-bullet,
.section-eyebrow .eyebrow-bullet {
  width: 8px;
  height: 8px;
  background: var(--primary);
  display: inline-block;
  flex-shrink: 0;
}

/* Prevent double bullets when ::before AND .eyebrow-bullet coexist */
.eyebrow:has(.eyebrow-bullet)::before,
.section-eyebrow:has(.eyebrow-bullet)::before { display: none; }

/* ============================================================
   SECTION HEADING BLOCK
   ============================================================ */
.sec-hd {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.sec-hd h2 { max-width: 18ch; }
.sec-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 72px); font-weight: 700; line-height: 1.0; letter-spacing: -0.02em; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-ghost,
.btn-outline,
.btn-white,
.btn-submit,
.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 200ms ease-out;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary,
.btn-submit {
  background: var(--ink);
  color: var(--canvas);
  border-color: var(--ink);
}
.btn-primary:hover, .btn-submit:hover {
  background: var(--ink-mid);
  border-color: var(--ink-mid);
  color: var(--canvas);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-ghost,
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-ghost:hover, .btn-outline:hover {
  border-color: var(--primary);
  color: var(--ink);
  text-decoration: none;
}

.btn-white {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--surface);
}
.btn-white:hover {
  background: var(--canvas);
  text-decoration: none;
}

.btn-service {
  background: transparent;
  color: var(--primary-dark);
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-service svg { width: 16px; height: 16px; }
.btn-service:hover { text-decoration: none; gap: 12px; }

/* ============================================================
   CHIPS
   ============================================================ */
.chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: var(--canvas);
  background: rgba(212,188,165,0.08);
  white-space: nowrap;
}

.trust-chip,
.area-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: var(--ink);
  background: transparent;
  white-space: nowrap;
}

/* ============================================================
   SITE HEADER + NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
}

.top-nav {
  height: var(--header-height);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  flex: 0 0 auto;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo img {
  max-height: 44px !important;
  max-width: 200px !important;
  width: auto !important;
}

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 28px;
  align-items: center;
}

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-pages a[aria-current="page"] {
  color: var(--primary-dark);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  background: var(--ink);
  color: var(--canvas);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { filter: brightness(1.15); color: var(--canvas); text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta span { display: inline; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .top-nav { padding: 0 20px; gap: 16px; }
  .nav-pages {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    flex-direction: column;
    padding: 24px 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 800;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages li { width: 100%; }
  .nav-pages a { padding: 10px 0; font-size: 17px; width: 100%; display: block; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 12px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.hero-overlay {
  background: linear-gradient(
    to top,
    rgba(26,24,20,0.88) 0%,
    rgba(26,24,20,0.55) 40%,
    rgba(26,24,20,0.15) 100%
  );
}

.hero-inner {
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 64px);
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  padding-bottom: clamp(64px, 8vw, 112px);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-line {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(72px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 14ch;
  margin-bottom: 28px;
}

/* If hero-title wraps the span */
.hero-title {
  display: block;
  margin-bottom: 28px;
  max-width: 14ch;
}
.hero-title .hero-line { margin-bottom: 0; }

.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 450;
  color: rgba(250,246,238,0.80);
  max-width: 52ch;
  margin-bottom: 40px;
  line-height: 1.60;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.trust-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 16px clamp(20px, 5vw, 64px);
  max-width: var(--content-max);
  margin: 0 auto;
}

.tbadge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  white-space: nowrap;
}
.tbadge svg { width: 20px; height: 20px; color: var(--primary-dark); flex-shrink: 0; }

.tsep {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 64px;
  position: relative;
  z-index: 1;
  background: var(--canvas);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.marquee-strip:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.mitem {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.2vw, 15px);
  color: var(--muted);
  line-height: 1.2;
  white-space: nowrap;
}

.mdot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES (tabbed panel)
   ============================================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.svc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.svc-tab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color 150ms, border-color 150ms;
  margin-bottom: -1px;
  white-space: nowrap;
}

.svc-tab.active,
.svc-tab:hover {
  color: var(--ink);
  border-bottom-color: var(--primary);
}

.svc-panels { position: relative; }

.svc-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.svc-panel.active { display: grid; }

.svc-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink-faint);
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  display: block;
  transition: transform 600ms ease-out;
}
.svc-panel.active .svc-img img { transform: scale(1); }

.svc-body { padding-top: 12px; }
.svc-body .eyebrow { margin-bottom: 16px; }
.svc-body h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 20px;
}
.svc-body p {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 16px;
}
.svc-body > a { margin-top: 28px; }

@media (max-width: 768px) {
  .svc-panel.active { grid-template-columns: 1fr; }
  .svc-tabs { gap: 4px; }
  .svc-tab { padding: 10px 14px; font-size: 11px; }
}

/* ============================================================
   PHOTO BREAK (full-bleed mid-page)
   ============================================================ */
.photo-break,
.full-bleed-break {
  width: 100%;
  height: clamp(300px, 40vw, 560px);
  overflow: hidden;
  position: relative;
}
.photo-break > img,
.full-bleed-break > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  max-height: none !important;
}

.full-bleed-break-overlay {
  position: absolute; inset: 0;
  background: rgba(26,24,20,0.45);
  z-index: 1;
}

.full-bleed-break-content {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 5vw, 64px);
}

.full-bleed-break-text {
  max-width: 72ch;
  text-align: center;
}
.full-bleed-break-text blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.2;
  color: var(--canvas);
  letter-spacing: -0.01em;
}
.full-bleed-break-text cite {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-style: normal;
}

/* ============================================================
   GALLERY (index page)
   ============================================================ */
.gallery {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.gal-feat {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  aspect-ratio: 16 / 7;
}
.gal-feat > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  display: block;
}

.gal-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}

.gal-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gal-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.gal-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.gal-quote {
  padding: 24px 0;
}
.gal-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.3;
  color: var(--ink-mid);
  border-left: 3px solid var(--primary);
  padding-left: 20px;
}

.larr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  text-decoration: none;
  transition: gap 200ms;
}
.larr:hover { gap: 12px; text-decoration: none; }
.larr svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
  .gal-row { grid-template-columns: 1fr 1fr; }
  .gal-quote { grid-column: 1 / -1; }
}

/* ============================================================
   GALLERY PAGE (full gallery grid)
   ============================================================ */
.gallery-section {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 64px);
  max-width: var(--wide-max);
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.16);
}

.gallery-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-faint);
}
.gallery-card-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  display: block;
  transition: transform 500ms ease-out;
}
.gallery-card:hover .gallery-card-media > img { transform: scale(1.03); }

.gallery-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}

.gallery-card-num {
  position: absolute;
  bottom: 12px; right: 12px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: rgba(250,246,238,0.70);
  line-height: 1;
  z-index: 2;
}

.gallery-card-body {
  padding: 20px 24px 24px;
}
.gallery-card-body h2 {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.gallery-card-location {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.gallery-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.gallery-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.meta-stat {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.meta-stat span { color: var(--ink); }

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 20px;
  font-size: 15px;
  color: var(--muted);
}

/* Gallery filter */
.gallery-filter {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px clamp(20px, 5vw, 64px);
  position: sticky;
  top: var(--header-height);
  z-index: 100;
}

.filter-row {
  max-width: var(--wide-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.filter-label-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.filter-pill {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--ink-mid);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 150ms;
  white-space: nowrap;
}
.filter-pill.active,
.filter-pill:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--canvas);
}

.gallery-count {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-left: auto;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--section-py) 0; background: var(--surface); }

.faq-list {
  border-top: 1px solid var(--border);
  max-width: 72ch;
}

.faq-item,
details.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-item summary,
details.faq-item > summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  color: var(--ink);
  gap: 20px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker,
details.faq-item > summary::-webkit-details-marker { display: none; }

.faq-chev {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: transform 200ms, color 200ms;
}
.faq-chev svg { width: 20px; height: 20px; }

details.faq-item[open] .faq-chev {
  transform: rotate(45deg);
  color: var(--primary-dark);
}

.faq-ans {
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
  max-width: 64ch;
}

/* faq-section (services page) */
.faq-section {
  padding: var(--section-py) clamp(20px, 5vw, 64px);
  max-width: var(--content-max);
  margin: 0 auto;
}

.faq-header {
  margin-bottom: clamp(32px, 4vw, 56px);
}
.faq-header h2 { max-width: 24ch; }

.faq-section .faq-list { max-width: 100%; }

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--ink);
}

.team-cta-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.team-cta-hl {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--canvas);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 44ch;
}

.team-cta .larr { color: var(--primary); }

/* ============================================================
   CONTACT (index page)
   ============================================================ */
.contact {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* ============================================================
   CONTACT PAGE (contact.html)
   ============================================================ */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.contact-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-form-side { }
.contact-form-side .section-eyebrow { margin-bottom: 20px; }
.contact-form-side h2 { margin-bottom: 12px; font-size: clamp(28px, 3.5vw, 44px); }
.contact-form-lead { color: var(--muted); margin-bottom: 32px; font-size: 16px; }

.contact-info-side { }

/* Info card */
.info-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.info-card-eyebrow { margin-bottom: 24px; }

.info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.info-item:last-child { border-bottom: none; }

.info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.info-value {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.info-value a { color: var(--ink); }
.info-value a:hover { color: var(--primary-dark); }

.quote-note {
  font-size: 12px;
  color: var(--muted);
}

/* Trust card */
.trust-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.trust-row:last-of-type { border-bottom: none; }

.trust-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--primary-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 18px; height: 18px; color: var(--primary-dark); }

.trust-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
}

/* Service area chips */
.service-area-chips {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.service-area-chips .area-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.area-chip {
  display: inline-flex;
  margin: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: var(--ink-mid);
  background: transparent;
}

@media (max-width: 900px) {
  .contact-grid,
  .contact-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 450;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 14px 16px;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212,188,165,0.18);
}

.form-group textarea { min-height: 120px; resize: vertical; }

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

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.55;
}
.form-note a { color: var(--primary-dark); }

.form-submit {
  display: flex;
  justify-content: flex-start;
}

.btn-submit {
  width: 100%;
  justify-content: center;
}

/* cinfo (index contact section) */
.cinfo {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cinfo-item:last-child { border-bottom: none; }

.cinfo-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--primary-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.cinfo-icon svg { width: 20px; height: 20px; color: var(--primary-dark); }

.cinfo-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.cinfo-val {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.cinfo-val a { color: var(--ink); }
.cinfo-val a:hover { color: var(--primary-dark); }

@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 40vh, 520px);
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.page-header-overlay {
  background: linear-gradient(
    to top,
    rgba(26,24,20,0.85) 0%,
    rgba(26,24,20,0.35) 100%
  );
}

.page-header-inner {
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 64px);
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.page-header-inner h1 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 700;
  font-style: italic;
  color: var(--canvas);
  line-height: 1.0;
  letter-spacing: -0.025em;
  max-width: 18ch;
}

.page-header-eyebrow,
.page-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.page-header-eyebrow::before,
.page-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary);
  flex-shrink: 0;
}

.page-header-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(250,246,238,0.75);
  margin-top: 12px;
  max-width: 52ch;
  line-height: 1.60;
}

/* ============================================================
   SERVICES PAGE (services-detail)
   ============================================================ */
.services-intro {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 64px);
  max-width: var(--content-max);
  margin: 0 auto;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.services-intro-grid h1 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.services-intro-grid p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.68;
  padding-top: 8px;
}

.services-divider {
  height: 1px;
  background: var(--border);
  max-width: var(--content-max);
  margin: 0 auto clamp(56px, 7vw, 96px);
  padding: 0 clamp(20px, 5vw, 64px);
}
.services-divider::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--border);
}

.services-detail {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) var(--section-py);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(56px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.service-row:last-child { border-bottom: none; }

.service-row.reverse .service-photo-col { order: 2; }
.service-row.reverse .service-text-col  { order: 1; }

.service-photo-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink-faint);
}
.service-photo-col > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  display: block;
}

.service-text-col { }

.service-index {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  font-style: italic;
  color: var(--primary-dark);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  opacity: 0.7;
}

.service-text-col h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.service-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 20px;
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.service-bullets li {
  font-size: 15px;
  color: var(--ink-mid);
  padding-left: 20px;
  position: relative;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 1px;
}

@media (max-width: 768px) {
  .service-row { grid-template-columns: 1fr; gap: 28px; }
  .service-row.reverse .service-photo-col { order: -1; }
  .service-row.reverse .service-text-col  { order: 1; }
  .services-intro-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: var(--section-py) 0;
}

.cta-banner-bg,
.cta-banner > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  max-height: none !important;
  opacity: 0.25;
}

.cta-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(26,24,20,0.65);
  z-index: 1;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  text-align: center;
}

.cta-banner-inner h2,
.cta-banner-heading {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  font-style: italic;
  color: var(--canvas);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(250,246,238,0.72);
  max-width: 52ch;
  margin: 0 auto 36px;
  line-height: 1.60;
}

.cta-pair,
.cta-banner-actions,
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.cta-banner .eyebrow,
.cta-eyebrow {
  color: var(--primary);
  justify-content: center;
  margin-bottom: 20px;
}
.cta-banner .eyebrow::before,
.cta-eyebrow::before {
  background: var(--primary);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.about-story-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.about-story-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ink-faint);
  position: sticky;
  top: calc(var(--header-height) + 32px);
}
.about-story-portrait > img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  max-height: none !important;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.about-story-text { }
.about-story-text .eyebrow { margin-bottom: 20px; }
.about-story-text h2 {
  font-size: clamp(32px, 4.5vw, 60px);
  font-style: italic;
  margin-bottom: 32px;
}

.about-story-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drop-cap::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  font-weight: 700;
  line-height: 0.8;
  float: left;
  margin-right: 8px;
  margin-top: 6px;
  color: var(--ink);
}

.about-story-divider {
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin-top: 32px;
}

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-portrait { position: static; aspect-ratio: 4 / 3; }
}

/* ============================================================
   VALUES
   ============================================================ */
.values {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.values-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.values-inner h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-style: italic;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 22ch;
}

.values-heading {
  font-size: clamp(32px, 4vw, 56px);
  font-style: italic;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.10);
}

.value-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.value-card-label::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary);
  flex-shrink: 0;
}

.value-card-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   JOURNEY / TIMELINE
   ============================================================ */
.journey {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.journey-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.journey-inner h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-style: italic;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 22ch;
}

.journey-heading {
  font-size: clamp(32px, 4vw, 56px);
  font-style: italic;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.journey-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.journey-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: var(--primary-dark);
  letter-spacing: 0.06em;
  padding-top: 4px;
  opacity: 0.7;
}

.journey-step-content h3 {
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 10px;
  font-style: italic;
}

.journey-step-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer,
.site-footer {
  background: var(--ink);
  color: var(--canvas);
  padding: clamp(56px, 7vw, 88px) 0 0;
}

.footer-inner,
.footer > .wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid rgba(250,246,238,0.10);
  align-items: start;
}

.footer-brand { }

.footer-brand img,
.footer-logo img {
  max-height: 48px !important;
  max-width: 180px !important;
  width: auto !important;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.90;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  color: var(--canvas);
  margin-bottom: 8px;
  line-height: 1.2;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(250,246,238,0.55);
  line-height: 1.55;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(250,246,238,0.55);
  line-height: 1.60;
  max-width: 32ch;
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(250,246,238,0.40);
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(250,246,238,0.75);
  margin-top: 12px;
}
.footer-rating svg { width: 14px; height: 14px; color: var(--primary); }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(250,246,238,0.08);
  color: rgba(250,246,238,0.70);
  transition: background 150ms, color 150ms;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--primary);
  color: var(--ink);
  text-decoration: none;
}
.footer-social a svg { width: 16px; height: 16px; }

.footer-col h4,
.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.45);
  margin-bottom: 20px;
}

.footer-col ul,
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a,
.footer-links a {
  font-size: 14px;
  color: rgba(250,246,238,0.72);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col a:hover,
.footer-links a:hover {
  color: var(--canvas);
  text-decoration: none;
}

.footer-contact-item,
.footer-contact-line {
  font-size: 14px;
  color: rgba(250,246,238,0.72);
  margin-bottom: 10px;
  line-height: 1.50;
}
.footer-contact-item a,
.footer-contact-line a {
  color: rgba(250,246,238,0.72);
}
.footer-contact-item a:hover,
.footer-contact-line a:hover {
  color: var(--canvas);
}

.footer-tel { color: var(--primary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid rgba(250,246,238,0.08);
}
.footer-bottom p,
.footer-bottom span {
  font-size: 13px;
  color: rgba(250,246,238,0.38);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   MOBILE CALL PILL (fixed sticky CTA)
   ============================================================ */
.mobile-call,
.mobile-call-pill,
.mobile-cta-pill,
.mobile-sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--ink);
  color: var(--canvas);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: transform 200ms, box-shadow 200ms;
}
.mobile-call:hover,
.mobile-call-pill:hover,
.mobile-cta-pill:hover,
.mobile-sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -10px rgba(0,0,0,0.55);
  color: var(--canvas);
  text-decoration: none;
}
.mobile-call svg,
.mobile-call-pill svg,
.mobile-cta-pill svg,
.mobile-sticky-cta svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

@media (min-width: 900px) {
  .mobile-call,
  .mobile-call-pill,
  .mobile-cta-pill,
  .mobile-sticky-cta { display: none; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 650ms ease-out, transform 650ms ease-out;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 650ms ease-out, transform 650ms ease-out;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.stagger > *.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MISC HELPERS
   ============================================================ */
.section-eyebrow::before { background: var(--primary); }

/* service card hover */
.service-card {
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
}

/* Review cards */
.review-card {
  padding: 28px;
  border-radius: 12px;
  background: rgba(0,0,0,0.02);
}
.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

/* Process strip */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.process-step { padding: 24px; border: 1px solid var(--border); border-radius: 8px; }
.step-num { font-size: 14px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; letter-spacing: 0.12em; }

/* Stat counters */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; padding: 80px 0; text-align: center; }
.stat-num { font-size: clamp(48px, 8vw, 96px); font-weight: 900; line-height: 1; color: var(--primary-dark); }
.stat-label { font-size: clamp(11px, 1vw, 14px); text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-top: 8px; }

/* Anchors inside headings */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .svc-panel.active { grid-template-columns: 1fr; }
  .gal-row { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { min-height: 88vh; }
  .hero-line { font-size: clamp(56px, 14vw, 80px); }
  .hero-ctas { flex-direction: column; }
  .gal-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .svc-tabs { overflow-x: auto; flex-wrap: nowrap; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.svc-img { grid-column: 1 / -1; }
.svc-body { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-photo-col { grid-column: 1 / -1; }
.service-text-col { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.journey-num { grid-column: 1 / -1; }
.journey-step-content { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
/* validator patch: never hide a wrapper that contains a heading */
.svc-panel { display: block !important; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
