@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;1,400&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* =============================================
   TOKENS
   ============================================= */
:root {
  --primary:        #544730;
  --primary-dark:   #3a3020;
  --primary-light:  #7a6848;
  --accent:         #544730;
  --canvas:         #FFFFFF;
  --surface:        #F4F2EE;
  --ink:            #0C0C0F;
  --ink-mid:        #2e2e32;
  --muted:          #6B6B6B;
  --border:         rgba(12,12,15,0.12);
  --border-strong:  rgba(12,12,15,0.22);
  --shadow-sm:      0 2px 8px rgba(12,12,15,0.08);
  --shadow-md:      0 8px 32px rgba(12,12,15,0.12);
  --shadow-lg:      0 24px 64px rgba(12,12,15,0.16);
  --radius:         4px;
  --radius-pill:    999px;
  --header-height:  72px;
  --section-py:     clamp(88px, 11vh, 144px);
  --max-w:          1280px;
  --wide-w:         1400px;
  --font-display:   'Space Grotesk', sans-serif;
  --font-body:      'IBM Plex Sans', sans-serif;
  --font-mono:      'IBM Plex Mono', monospace;
}

@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);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

/* 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 45%;
  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,
.page-header img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%;
  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; }

/* Heading anchors render as headings */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}
h1 a:hover, h2 a:hover, h3 a:hover {
  text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px;
}

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

ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
svg { display: block; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.wide-container {
  max-width: var(--wide-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.section-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* =============================================
   TYPOGRAPHY SCALE
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  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); }

.display-head {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.mono-label {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: block;
}

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

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

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

.nav-logo {
  flex: 0 0 auto;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo img {
  max-height: 44px !important;
  width: auto !important;
}

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

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

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 180ms;
  font-family: var(--font-body);
}
.nav-cta:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }

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

@media (max-width: 900px) {
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--canvas);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    z-index: 800;
    align-items: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 12px; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(56px, 8vh, 96px);
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(12,12,15,0.30) 0%, rgba(12,12,15,0.68) 100%);
}

.hero-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-top: clamp(80px, 12vh, 140px);
  width: 100%;
}

.hero-numeral {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 8px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.hero-inner h1,
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8.5vw, 128px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

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

.trust-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn,
.btn-primary,
.btn-cta-primary,
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 200ms, transform 150ms;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover, .btn-primary:hover, .btn-cta-primary:hover, .btn-submit:hover {
  filter: brightness(0.88);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.btn-outline,
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 15px 27px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.65);
  cursor: pointer;
  transition: background 200ms, border-color 200ms, color 200ms;
  white-space: nowrap;
  line-height: 1;
}
.btn-outline:hover, .btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 15px 27px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid var(--border-strong);
  transition: border-color 200ms, color 200ms;
}
.btn-phone:hover { color: var(--primary); border-color: var(--primary); text-decoration: none; }

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 200ms, color 200ms;
}
.btn-service:hover { background: var(--primary); color: #fff; text-decoration: none; }

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

.trust-strip-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.trust-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  white-space: nowrap;
  display: inline-block;
}

.trust-pill-filled {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* =============================================
   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(--surface);
}

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

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

.marquee-item {
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.2vw, 14px);
  line-height: 1.2;
  color: var(--ink-mid);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.marquee-accent {
  color: var(--primary);
  font-size: 1.2em;
  line-height: 1;
}

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

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

.services-top {
  margin-bottom: 48px;
}

.services-top > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-num {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  margin-bottom: -16px;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.service-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 18px;
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
}
.service-tab:hover { color: var(--ink); border-color: var(--border-strong); }
.service-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.services-panels {
  position: relative;
}

.service-panel {
  display: none;
}
.service-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.service-panel-img {
  position: relative;
  overflow: hidden;
}
.service-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-panel-body {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.panel-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.18;
  display: block;
  margin-bottom: 4px;
}

.service-panel-body h3 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 8px;
}

.service-panel-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
}

.services-footer {
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.services-all-link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  transition: opacity 180ms;
}
.services-all-link:hover { opacity: 0.7; text-decoration: none; }

@media (max-width: 700px) {
  .service-panel.active {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-panel-img { min-height: 220px; }
}

/* Services detail page */
.services-detail {
  padding: var(--section-py) 0;
}

.services-detail-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.services-intro {
  margin-bottom: clamp(56px, 7vh, 88px);
  max-width: 64ch;
}

.services-intro-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

.services-intro h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 16px;
}

.services-intro-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--muted);
  line-height: 1.65;
}

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: clamp(48px, 6vh, 80px);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--canvas);
  border: 1px solid var(--border);
}

.service-feature.reverse {
  direction: rtl;
}
.service-feature.reverse > * {
  direction: ltr;
}

.service-feature.tinted {
  background: var(--surface);
}

.service-feature-photo {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.service-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-feature-body {
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.service-numeral {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  opacity: 0.15;
  margin-bottom: 0;
}

.service-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  display: block;
}

.service-feature-body h2 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.0;
  margin-bottom: 4px;
}

.service-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
}

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

@media (max-width: 800px) {
  .service-feature { grid-template-columns: 1fr; direction: ltr; }
  .service-feature.reverse { direction: ltr; }
  .service-feature-photo { min-height: 240px; }
}

/* Service areas strip */
.service-areas-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.service-areas-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.service-areas-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  flex-shrink: 0;
}

.service-areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* =============================================
   ABOUT
   ============================================= */
.about-section {
  padding: var(--section-py) 0;
  background: var(--canvas);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.about-header-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 56px;
}

.about-section-numeral {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  flex-shrink: 0;
  opacity: 0.9;
}

.about-header-text h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 8px;
}

.about-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.about-magazine {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.about-portrait-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-portrait-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.about-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(15%);
}

.about-portrait-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.about-value-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
}

.about-areas-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}

.about-areas-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-areas-list li {
  font-size: 14px;
  color: var(--ink-mid);
  padding-left: 12px;
  position: relative;
}
.about-areas-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 1px;
  background: var(--primary);
}

.about-story-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}
.about-story-col p {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
  color: var(--ink-mid);
}
.about-story-col > div {
  margin-top: 8px;
}

@media (max-width: 800px) {
  .about-magazine { grid-template-columns: 1fr; }
  .about-portrait-frame { aspect-ratio: 4 / 3; }
}

/* Credentials section */
.credentials-section {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.credentials-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.credentials-header-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 48px;
}

.cred-numeral {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  flex-shrink: 0;
}

.cred-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.credentials-header-text h2 {
  font-size: clamp(32px, 4.5vw, 56px);
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

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

.cred-card-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 12px;
  opacity: 0.35;
}

.cred-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.cred-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

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

.reviews-header {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.reviews-super {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  opacity: 0.9;
}

.reviews-title-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reviews-title-block > a {
  display: contents;
  text-decoration: none;
}

.reviews-rating-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.rating-big {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.star-row {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 4px;
}
.star-row svg { width: 18px; height: 18px; color: var(--primary); fill: var(--primary); }

.rating-sub {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reviews-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 48ch;
}

.reviews-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-stat-card {
  background: var(--canvas);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.14);
}

.review-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 8px;
}

.review-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.review-stat-bg {
  position: absolute;
  top: -10px; right: -10px;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}

.reviews-google-link {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (max-width: 800px) {
  .reviews-header { grid-template-columns: 1fr; }
  .reviews-highlight { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .reviews-highlight { grid-template-columns: 1fr; }
}

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

.gallery-top {
  margin-bottom: 40px;
}

.gallery-top > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gallery-num-block {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  margin-bottom: -16px;
}

.gallery-preview {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 7;
  background: var(--surface);
}
.gallery-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 600ms ease;
}
.gallery-preview:hover img { transform: scale(1.03); }

.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 24px;
  gap: 16px;
}

.gallery-count {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

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

.gallery-section-header {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}

.gallery-section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.gallery-section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-filter-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
}
.gallery-filter-pill:hover,
.gallery-filter-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.gallery-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.gallery-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  cursor: pointer;
}
.gallery-tile.tall { aspect-ratio: 4 / 5; }

.gallery-tile > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms ease;
  filter: grayscale(10%);
}
.gallery-tile:hover > img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,12,15,0.72) 100%);
  opacity: 0;
  transition: opacity 300ms;
}
.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }

.gallery-tile-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 300ms, opacity 300ms;
}
.gallery-tile:hover .gallery-tile-meta { transform: translateY(0); opacity: 1; }

.gallery-tile h3 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}

.gallery-tile-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-bottom: 4px;
}

.gallery-tile-cat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
}
.gallery-tile-cat svg { width: 12px; height: 12px; flex-shrink: 0; }
.gallery-tile-title { font-size: 14px; font-weight: 600; color: #fff; }

/* Projects grid */
.projects-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

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

.project-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease;
}
.project-card:hover .project-card-img img { transform: scale(1.04); }

.project-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.project-card-body {
  padding: 22px;
}

.project-card-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.project-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.project-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.project-card-location svg { width: 12px; height: 12px; flex-shrink: 0; }

.project-card-desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 14px;
}

.project-card-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.project-stat {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}

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

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

.faq-top {
  margin-bottom: 48px;
}

.faq-super {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  margin-bottom: -16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 840px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

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

.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: transform 220ms, color 200ms;
}
.faq-chevron svg { width: 16px; height: 16px; }
details.faq-item[open] .faq-chevron {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
  padding-bottom: 22px;
  max-width: 72ch;
}

/* =============================================
   TEAM CTA
   ============================================= */
.team-cta {
  padding: var(--section-py) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.team-cta-row {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.team-cta-num {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  margin-bottom: -16px;
}

.team-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.team-cta-copy h2 {
  font-size: clamp(32px, 4.5vw, 56px);
}

.team-portrait-thumb {
  width: clamp(140px, 18vw, 240px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.team-portrait-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(15%);
}

@media (max-width: 700px) {
  .team-cta-row {
    grid-template-columns: 1fr;
  }
  .team-portrait-thumb {
    width: 120px;
    aspect-ratio: 1 / 1;
  }
}

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

.contact-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

.contact-num-super {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  margin-bottom: -16px;
}

.contact-head {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 32px;
  line-height: 0.96;
}

.contact-section {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.contact-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

.contact-form-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form-heading-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-form-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.2;
}

.contact-form-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.contact-form-heading-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-field,
.form-group {
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }

.form-field label,
.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 180ms;
}

.form-field input,
.form-field textarea,
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  outline: none;
  transition: border-color 180ms, box-shadow 180ms;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(84,71,48,0.14);
}
.form-field input:focus + label,
.form-group input:focus + label { color: var(--primary); }

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

.btn-submit {
  align-self: flex-start;
  margin-top: 8px;
}

.contact-info-col,
.contact-right {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.18;
  margin-bottom: 4px;
}

.info-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: block;
}

.info-card-value {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-card-value svg { width: 18px; height: 18px; color: var(--primary); }

.info-divider {
  height: 1px;
  background: var(--border);
}

.contact-item-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.contact-item-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.contact-areas,
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.area-chip {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 5px 10px;
  white-space: nowrap;
}

.service-areas-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.social-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  transition: color 180ms, border-color 180ms, background 180ms;
}
.social-link:hover { color: var(--primary); border-color: var(--primary); background: rgba(84,71,48,0.06); text-decoration: none; }
.social-link svg { width: 16px; height: 16px; }

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

/* =============================================
   PAGE HEADER (sub-pages)
   ============================================= */
.page-header {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
}

.page-header-overlay {
  background: linear-gradient(180deg, rgba(12,12,15,0.3) 0%, rgba(12,12,15,0.65) 100%);
}

.booking-ribbon {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  z-index: 5;
}

.page-header-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  width: 100%;
  position: relative;
  z-index: 3;
}

.page-header-numeral,
.page-header-num {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.page-header-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
  display: block;
}

.page-header-inner h1 {
  color: #fff;
  font-size: clamp(40px, 6vw, 80px);
  max-width: 20ch;
}

.page-header-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
  max-width: 48ch;
}

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

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.012) 60px,
    rgba(255,255,255,0.012) 61px
  );
  pointer-events: none;
}

.cta-banner-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cta-banner-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-banner-numeral,
.cta-banner-num {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 108px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  margin-bottom: -12px;
}

.cta-banner-eyebrow,
.cta-banner-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.65);
  display: block;
}

.cta-banner-text h2,
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
}

.cta-banner-sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 52ch;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.cta-banner-phone {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.cta-banner-phone:hover { color: rgba(255,255,255,0.8); text-decoration: none; }

.cta-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .cta-banner-inner {
    grid-template-columns: 1fr;
  }
  .cta-banner-actions { align-items: flex-start; }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: clamp(64px, 8vw, 100px) 0 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-logo { margin-bottom: 4px; }

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-tagline,
.footer-brand-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-social,
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-link,
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.65);
  transition: color 180ms, border-color 180ms;
  text-decoration: none;
}
.footer-social-link:hover, .footer-socials a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-social-link svg, .footer-socials a svg { width: 14px; height: 14px; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-label,
.footer-col-title,
.footer-col-heading {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.footer-links li a,
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
  display: block;
}
.footer-links li a:hover,
.footer-links a:hover { color: #fff; text-decoration: none; }

.footer-areas {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-areas span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
.footer-contact-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
}
.footer-contact-item a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer-contact-item a:hover { color: #fff; text-decoration: none; }
.footer-contact-item svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-line a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer-contact-line a:hover { color: #fff; text-decoration: none; }

.footer-phone {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.footer-email { font-size: 14px; }
.footer-rating {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-certs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-certs span {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.38);
}

.footer-legal {
  display: flex;
  gap: 16px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 150ms;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); text-decoration: none; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

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

/* Show on mobile, hide on desktop */
@media (min-width: 900px) {
  .mobile-call-pill,
  .mobile-cta-pill,
  .mobile-cta,
  .mobile-sticky-cta { display: none; }
}

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

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

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

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

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.stagger > *.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
.stagger > *:nth-child(6) { transition-delay: 400ms; }
.stagger > *:nth-child(7) { transition-delay: 480ms; }
.stagger > *:nth-child(8) { transition-delay: 560ms; }

/* =============================================
   SVG CAPS
   ============================================= */
.star-row svg { width: 18px; height: 18px; }
.faq-chevron svg { width: 16px; height: 16px; }
.gallery-tile-cat svg { width: 12px; height: 12px; }
.project-card-location svg { width: 12px; height: 12px; }
.info-card-value svg { width: 18px; height: 18px; }
.footer-contact-item svg { width: 14px; height: 14px; }
.social-link svg { width: 16px; height: 16px; }
.footer-social svg { width: 14px; height: 14px; }
.footer-socials a svg { width: 14px; height: 14px; }
.footer-social-link svg { width: 14px; height: 14px; }
.mobile-call-pill svg,
.mobile-cta-pill svg,
.mobile-sticky-cta svg,
.mobile-cta svg { width: 20px; height: 20px; }
.btn svg { width: 16px; height: 16px; }
.btn-submit svg { width: 16px; height: 16px; }
.nav-cta svg { width: 16px; height: 16px; }
.footer-contact-line svg { width: 14px; height: 14px; }

/* =============================================
   MISC / UTILITY
   ============================================= */
.phone { white-space: nowrap; }
.cta-phone-big {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.cta-phone-big:hover { color: var(--primary); text-decoration: none; }

/* 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); }

/* =============================================
   NOISE TEXTURE OVERLAY
   ============================================= */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.022;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: multiply;
}

/* =============================================
   RESPONSIVE OVERRIDES
   ============================================= */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero { min-height: 82vh; }
  .reviews-header { grid-template-columns: 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-banner-actions { align-items: flex-start; flex-direction: row; }
}

@media (max-width: 640px) {
  .hero { min-height: 88vh; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { width: 100%; justify-content: center; }
  .reviews-highlight { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-cta-row { grid-template-columns: 1fr; }
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 10px; padding: 8px 12px; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .cred-grid { grid-template-columns: 1fr; }
  .about-values { display: none; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.reviews-super { grid-column: 1 / -1; }
.reviews-title-block { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.service-feature-photo { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.cta-banner-label { grid-column: 1 / -1; }
.cta-banner-num { grid-column: 1 / -1; }
.cta-banner-title { grid-column: 1 / -1; }
.cta-banner-sub { grid-column: 1 / -1; }
.cta-banner-phone { grid-column: 1 / -1; }
.cta-btn-row { grid-column: 1 / -1; }
.about-portrait-col { grid-column: 1 / -1; }
.about-story-col { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
/* 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; }
