@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Archivo:wght@400;500;600;700&family=Fraunces:ital,wght@1,400;1,500;1,600&family=Inter+Tight:wght@400;500;600&display=swap');

/* =============================================
   CUSTOM PROPERTIES
   ============================================= */
:root {
  --primary:        #0E5C3F;
  --primary-dark:   #0a4530;
  --primary-light:  #e8f2ed;
  --accent:         #0E5C3F;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --ink:            #141414;
  --muted:          #6B665C;
  --border:         rgba(14,92,63,0.18);
  --border-light:   rgba(0,0,0,0.08);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:      0 24px 64px rgba(0,0,0,0.14);
  --radius:         0px;
  --header-height:  72px;
  --section-y:      clamp(80px, 10vh, 160px);
  --container-max:  1440px;
  --wide-max:       1400px;
  --font-display:   'DM Serif Display', sans-serif;
  --font-body:      'Inter Tight', sans-serif;
  --font-label:     'Archivo', sans-serif;
  --font-serif:     'Fraunces', 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);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.68;
  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: 64px !important;
  max-width: 220px !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 32%; 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; 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;
}

/* Anchor-in-heading fix */
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: inherit; transition: color 150ms; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

ul { list-style: none; }

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

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.wide-container {
  max-width: var(--wide-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-y) clamp(20px, 4vw, 64px);
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--section-y) clamp(20px, 4vw, 64px);
}

/* =============================================
   TYPOGRAPHY SCALE
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 900;
}
h1 { font-size: clamp(48px, 8vw, 132px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.4vw, 32px); }

.section-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.section-title { margin-bottom: clamp(32px, 4vw, 56px); }

/* =============================================
   BUTTONS
   ============================================= */
.btn, .btn-primary, .btn-white, .btn-outline-white,
.btn-inverse, .btn-phone, .btn-submit, .btn-service {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 200ms, color 200ms, transform 150ms, box-shadow 200ms;
  white-space: nowrap;
  padding: 18px 32px;
  border-radius: var(--radius);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover {
  background: var(--surface);
  color: var(--primary);
  text-decoration: none;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
}
.btn-inverse {
  background: var(--ink);
  color: #fff;
}
.btn-submit {
  background: var(--primary);
  color: #fff;
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 18px 32px;
}
.btn-submit:hover {
  background: var(--primary-dark);
  text-decoration: none;
}
.btn-service {
  background: var(--primary);
  color: #fff;
  padding: 14px 24px;
  font-size: 13px;
  margin-top: 20px;
}
.btn-service:hover {
  background: var(--primary-dark);
  color: #fff;
  text-decoration: none;
}
.btn-service svg { width: 16px; height: 16px; }

/* =============================================
   SITE HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.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;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo em { font-style: normal; color: var(--primary); }
.nav-logo span { font-size: 22px; font-family: var(--font-display); }
.nav-wordmark { font-family: var(--font-display); font-size: 20px; }
#navLinks {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#navLinks li a {
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
#navLinks li a:hover { color: var(--primary); text-decoration: none; }
#navLinks li a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 200ms;
}
.nav-cta:hover { filter: brightness(0.90); color: #fff; text-decoration: none; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; margin-left: auto; }
  #navLinks {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--canvas);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 901;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #navLinks.open { display: flex; }
  #navLinks li a { font-size: 16px; padding: 10px 0; }
  .nav-cta { font-size: 0; padding: 10px 14px; }
  .nav-cta svg { width: 18px; height: 18px; }
}

/* =============================================
   HERO
   ============================================= */
section#hero.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(14,92,63,0.08) 0%,
    rgba(0,0,0,0.30) 45%,
    rgba(14,92,63,0.72) 100%
  );
}
.hero-inner {
  padding: clamp(48px, 8vh, 120px) clamp(20px, 5vw, 80px);
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 132px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 20px;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust-chip, .hero-trust-chips .trust-chip {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(14,92,63,0.6);
  background: rgba(14,92,63,0.18);
  padding: 7px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
}

/* Hero ribbon */
.hero-ribbon {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.ribbon-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(14,92,63,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(14,92,63,0); }
}

/* =============================================
   MARQUEE STRIP
   ============================================= */
.marquee {
  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;
}
.marquee-item {
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.2;
  color: var(--muted);
  flex-shrink: 0;
}
.marquee-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 24px;
  vertical-align: middle;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: var(--canvas);
  border-bottom: 1px solid var(--border-light);
  padding: 32px 0;
}
.trust-strip-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.trust-badge {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius);
  background: transparent;
  white-space: nowrap;
}

/* =============================================
   SERVICES — TABBED PANEL
   ============================================= */
section#services.services {
  background: var(--canvas);
}
.services > .section-inner { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.service-tab {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 200ms, color 200ms, border-color 200ms;
}
.service-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.service-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.services-panels { position: relative; }
.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0;
  min-height: 480px;
  border: 1px solid var(--border-light);
}
.service-panel.active { display: grid; }
.service-panel-img {
  overflow: hidden;
  position: relative;
  min-height: 420px;
}
.service-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  position: absolute;
  inset: 0;
}
.service-panel-body {
  padding: clamp(28px, 4vw, 52px);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.service-index-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.12;
  position: absolute;
  top: 16px;
  right: 24px;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.service-panel-body h3 {
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 16px;
  line-height: 1.0;
  position: relative;
  z-index: 1;
}
.service-panel-body p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .service-panel { grid-template-columns: 1fr; min-height: auto; }
  .service-panel-img { min-height: 260px; position: relative; }
}

/* =============================================
   GALLERY (index.html split layout)
   ============================================= */
section#gallery.gallery {
  background: var(--surface);
}
.gallery > .section-inner { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.gallery-split {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 24px;
  margin-top: 32px;
}
.gallery-main-img {
  overflow: hidden;
}
.gallery-main-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  max-height: none;
}
.gallery-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  background: var(--canvas);
}
.gallery-side p { color: var(--muted); line-height: 1.7; }
.gallery-side a {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.gallery-side a:hover { text-decoration: underline; text-decoration-thickness: 2px; }
@media (max-width: 900px) {
  .gallery-split { grid-template-columns: 1fr; }
  .gallery-main-img img { height: 280px; }
}

/* =============================================
   GALLERY PAGE (gallery.html)
   ============================================= */
.gallery-section {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.gallery-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.gallery-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
}
.gallery-section-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.gallery-section-title {
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 0.96;
}
.gallery-count {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-pill {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 200ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  background: var(--surface);
  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.18);
}
.gallery-card-img-wrap {
  position: relative;
  overflow: hidden;
}
.gallery-card-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease;
}
.gallery-card:hover .gallery-card-img-wrap img { transform: scale(1.03); }
.gallery-card-num {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 11px;
  background: var(--primary);
  color: #fff;
  padding: 3px 8px;
  letter-spacing: 0.06em;
}
.gallery-card-cat {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  padding: 4px 10px;
}
.gallery-card-body {
  padding: 20px;
}
.gallery-card-body h3 {
  font-size: 17px;
  margin-bottom: 6px;
  line-height: 1.2;
}
.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.gallery-card-location svg { width: 12px; height: 12px; flex-shrink: 0; }
.gallery-card-desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 12px; }
.gallery-card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.gallery-meta-item {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 3px 8px;
  border: 1px solid var(--border-light);
}
#noResults {
  display: none;
  text-align: center;
  padding: 64px 0;
  color: var(--muted);
  font-size: 16px;
  grid-column: 1 / -1;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-header-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* =============================================
   FAQ
   ============================================= */
section#faq.faq {
  background: var(--surface);
}
.faq-inner h2 { margin-bottom: 48px; }
details.faq, .faq details {
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}
.faq details > summary,
details.faq > summary {
  cursor: pointer;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  padding: 4px 0;
}
details.faq > summary::-webkit-details-marker,
.faq details > summary::-webkit-details-marker { display: none; }
.faq-chev {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 200ms;
}
details[open] .faq-chev { transform: rotate(45deg); }
details.faq p, .faq details p {
  margin-top: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 72ch;
  font-size: 15.5px;
}

/* =============================================
   TEAM CTA
   ============================================= */
.team-cta {
  background: var(--primary);
  padding: 40px 0;
}
.team-cta-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.team-cta-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.team-cta-inner > a {
  background: #fff;
  color: var(--primary);
  padding: 16px 32px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
  border-radius: var(--radius);
  transition: background 200ms;
}
.team-cta-inner > a:hover {
  background: var(--surface);
  text-decoration: none;
}

/* =============================================
   CONTACT (index.html)
   ============================================= */
section#contact.contact {
  background: var(--canvas);
}
.contact > .section-inner { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.contact-grid > div:first-child h2 { margin-bottom: 28px; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label,
.contact-form-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea,
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color 200ms;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-field textarea,
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-info { display: flex; flex-direction: column; gap: 0; }
.info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
}
.info-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 2px;
}
.info-value {
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.5;
}
.info-value a { color: var(--primary); }
.info-value-sm { font-size: 14px; }
.contact-guarantee {
  margin-top: 24px;
  padding: 20px;
  background: var(--primary-light);
  border-left: 3px solid var(--primary);
}
.guarantee-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.guarantee-text {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   CONTACT SPLIT (contact.html)
   ============================================= */
.contact-split {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.contact-split-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: block;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group.full { margin-bottom: 16px; }
.form-group label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  width: 100%;
  transition: border-color 200ms;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-disclaimer {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.contact-info-card {
  background: var(--surface);
  padding: clamp(28px, 4vw, 48px);
}
.info-card-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.info-card-title { font-size: 24px; margin-bottom: 24px; }
.info-block { display: flex; flex-direction: column; gap: 0; }
.info-row { padding: 14px 0; }
.info-icon { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.info-detail { font-size: 14.5px; color: var(--ink); }
.info-detail-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.info-detail-value { font-size: 15px; }
.info-divider { height: 1px; background: var(--border-light); margin: 20px 0; }
.service-area-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.service-area-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.area-chip {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border-light);
  padding: 5px 12px;
  border-radius: var(--radius);
}
.trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.trust-row .trust-badge {
  font-size: 10px;
  padding: 5px 12px;
}
@media (max-width: 900px) {
  .contact-split-inner { grid-template-columns: 1fr; }
}

/* =============================================
   GUARANTEE STRIP
   ============================================= */
.guarantee-strip {
  background: var(--ink);
  padding: 40px 0;
}
.guarantee-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.guarantee-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.guarantee-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  font-family: var(--font-body);
}
.guarantee-inner > a {
  background: var(--primary);
  color: #fff;
  padding: 16px 32px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
  border-radius: var(--radius);
  transition: background 200ms;
}
.guarantee-inner > a:hover { background: var(--primary-dark); text-decoration: none; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--ink);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 240px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.cta-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.cta-banner-inner.fade-up {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  grid-template-columns: none;
}
.cta-banner-eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 0.96;
  margin-bottom: 32px;
}
.cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-banner-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.cta-banner-phone svg { width: 28px; height: 28px; }
.cta-banner-phone:hover { color: rgba(255,255,255,0.8); text-decoration: none; }
.cta-banner-guarantee {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}
.cta-banner-left h2 {
  font-size: clamp(36px, 5vw, 68px);
  color: #fff;
  margin-bottom: 28px;
}
.cta-banner-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: clamp(28px, 4vw, 48px);
}
.form-title {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.cta-banner-form input,
.cta-banner-form textarea,
.cta-banner-form select {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: rgba(255,255,255,0.92);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 16px;
  width: 100%;
  margin-bottom: 12px;
  transition: border-color 200ms;
}
.cta-banner-form textarea { min-height: 96px; resize: vertical; }
.cta-banner-form input:focus,
.cta-banner-form textarea:focus { outline: none; border-color: var(--primary); }
@media (max-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; }
}

/* =============================================
   PAGE HEADER (sub-pages)
   ============================================= */
.page-header {
  min-height: 40vh;
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(14,92,63,0.65) 100%);
}
.page-header-inner {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 6vh, 80px) clamp(20px, 5vw, 80px);
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
}
.page-header-eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.page-header-eyebrow a { color: rgba(255,255,255,0.7); }
.page-header-eyebrow span { color: rgba(255,255,255,0.4); }
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 96px);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 0.96;
}
.page-header-title em { font-style: italic; }
.page-header-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin-top: 12px;
  max-width: 52ch;
}
.page-header h1 {
  font-size: clamp(40px, 6vw, 96px);
  color: #fff;
  letter-spacing: -0.03em;
}

/* =============================================
   SERVICES FEATURE (services.html)
   ============================================= */
.services-feature {
  background: var(--canvas);
}
.services-feature-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.services-feature-header {
  padding: clamp(64px, 8vw, 120px) clamp(20px, 4vw, 64px) 0;
  max-width: var(--container-max);
  margin: 0 auto;
}
.services-feature-heading {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 0;
}
.service-block {
  display: grid;
  grid-template-columns: 50% 1fr;
  min-height: 520px;
  border-bottom: 1px solid var(--border-light);
}
.service-block.alt {
  grid-template-columns: 1fr 50%;
}
.service-block.alt .service-block-photo { order: 2; }
.service-block.alt .service-block-body { order: 1; }
.service-block-photo {
  position: relative;
  overflow: hidden;
}
.service-block-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 600ms ease;
}
.service-block:hover .service-block-photo img { transform: scale(1.03); }
.service-block-index {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  background: var(--primary);
  color: #fff;
  padding: 5px 12px;
  letter-spacing: 0.06em;
}
.service-block-body {
  padding: clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--canvas);
}
.service-block.alt .service-block-body { background: var(--surface); }
.service-block-eyebrow {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-block-body h2 {
  font-size: clamp(26px, 3.5vw, 48px);
  margin-bottom: 16px;
  line-height: 1.0;
}
.service-block-desc {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
}
.service-block-bullets {
  list-style: none;
  padding: 0;
  margin: 12px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-block-bullets li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}
.service-block-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
}
@media (max-width: 900px) {
  .service-block,
  .service-block.alt { grid-template-columns: 1fr; min-height: auto; }
  .service-block-photo { height: 300px; position: relative; }
  .service-block.alt .service-block-photo { order: -1; }
  .service-block.alt .service-block-body { order: 1; }
}

/* =============================================
   ABOUT MAGAZINE
   ============================================= */
.about-magazine {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.about-magazine-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-magazine-photos {
  position: relative;
  min-height: 540px;
}
.about-magazine-photos img {
  position: absolute;
  object-fit: cover;
  max-height: none;
}
.about-magazine-photos img:first-child {
  width: 72%;
  height: 70%;
  top: 0;
  left: 0;
  z-index: 1;
}
.about-magazine-photos img:nth-child(2) {
  width: 58%;
  height: 60%;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.about-color-block {
  position: absolute;
  width: 44%;
  height: 38%;
  bottom: 0;
  left: 0;
  background: var(--primary);
  z-index: 0;
}
.about-eyebrow {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.about-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--primary);
}
.about-magazine-text h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 28px;
  line-height: 1.0;
}
.about-body p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  color: var(--primary);
  line-height: 1.35;
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  margin: 28px 0;
}
.about-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.about-chip {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius);
}
@media (max-width: 900px) {
  .about-magazine-inner { grid-template-columns: 1fr; }
  .about-magazine-photos { min-height: 380px; }
}

/* =============================================
   VALUES / ABOUT SECTION
   ============================================= */
.values-section {
  background: var(--surface);
  padding: var(--section-y) 0;
}
.values-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.values-inner h2 { margin-bottom: 48px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--canvas);
  padding: 32px;
  border: 1px solid var(--border-light);
  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.18);
}
.value-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.value-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* =============================================
   JOURNEY / TIMELINE
   ============================================= */
.journey-section {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.journey-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.journey-inner h2 { margin-bottom: 48px; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--border-light);
  z-index: 0;
}
.timeline-step {
  padding: 0 24px 0 0;
  position: relative;
  z-index: 1;
}
.timeline-dot {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  margin-bottom: 20px;
  flex-shrink: 0;
  position: relative;
}
.timeline-step h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.2; }
.timeline-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }
@media (max-width: 900px) {
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .timeline::before { display: none; }
}
@media (max-width: 640px) {
  .timeline { grid-template-columns: 1fr; }
}

/* =============================================
   CREW STRIP
   ============================================= */
.crew-section {
  background: var(--surface);
  padding: var(--section-y) 0;
}
.crew-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.crew-inner h2 { margin-bottom: 40px; }
.crew-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.crew-card {
  position: relative;
  overflow: hidden;
}
.crew-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  max-height: none;
  filter: grayscale(30%);
  transition: filter 400ms, transform 400ms;
}
.crew-card:hover img { filter: grayscale(0%); transform: scale(1.02); }
.crew-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.crew-card-label span {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 900px) {
  .crew-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .crew-strip { grid-template-columns: 1fr; }
}

/* =============================================
   ABOUT SECTION (split)
   ============================================= */
.about-section {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.about-section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-section-text h2 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 20px; }
.about-section-text p { font-size: 15.5px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.about-section-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  max-height: none;
}
@media (max-width: 900px) {
  .about-section-inner { grid-template-columns: 1fr; }
}

/* =============================================
   FOOTER
   ============================================= */
footer, .site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: clamp(48px, 7vh, 96px) 0 0;
}
.footer-inner, .footer-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: 48px;
}
.footer-brand, .footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand-name, .footer-brand h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-brand-name em { font-style: normal; color: var(--primary); }
.footer-brand-name span { font-family: var(--font-display); }
.footer-tagline, .footer-tagline-strip {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }
.footer-col-head, .footer-col-title, .footer-col h4 {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 16px;
}
.footer-col h4 { margin-bottom: 16px; }
.footer-links, .footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a, .footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links li a:hover, .footer-col ul li a:hover {
  color: #fff;
  text-decoration: none;
}
.footer-contact-item {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: #fff; text-decoration: none; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.footer-contact-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-right: 8px;
}
.footer-contact-value { font-size: 14px; }
.footer-phone-link { color: rgba(255,255,255,0.75); font-size: 15px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px clamp(20px, 4vw, 64px);
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy, .footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-legal, .footer-disclaimer, .footer-guarantee {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}
@media (max-width: 900px) {
  .footer-inner, .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =============================================
   MOBILE CALL PILL
   ============================================= */
.mobile-call-pill, .mobile-call, .mobile-cta-pill {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  display: none;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: background 200ms, transform 150ms;
}
.mobile-call-pill svg, .mobile-call svg, .mobile-cta-pill svg {
  width: 20px;
  height: 20px;
}
.mobile-call-pill:hover, .mobile-call:hover, .mobile-cta-pill:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}
@media (max-width: 900px) {
  .mobile-call-pill, .mobile-call, .mobile-cta-pill { display: flex; }
}

/* =============================================
   ANIMATION UTILITIES
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 600ms ease, transform 600ms ease;
}
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible {
  opacity: 1;
  transform: none;
}
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 400ms; }
.stagger.visible > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 480ms; }
.stagger.visible > *:nth-child(8) { opacity: 1; transform: none; transition-delay: 560ms; }

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

/* =============================================
   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: var(--radius);
}
.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  font-family: var(--font-label);
  text-transform: uppercase;
}

/* =============================================
   REVIEW CARDS
   ============================================= */
.review-card {
  padding: 28px;
  border-radius: var(--radius);
  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; }

/* =============================================
   SERVICE CARD (generic)
   ============================================= */
.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);
}

/* =============================================
   SVG CAPS (prevent inflation)
   ============================================= */
.info-icon { width: 20px; height: 20px; }
.faq-chev { width: 20px; height: 20px; }
.footer-contact-item svg { width: 16px; height: 16px; }
.gallery-card-location svg { width: 12px; height: 12px; }
.btn svg, .btn-service svg { width: 16px; height: 16px; }
.cta-banner-phone svg { width: 28px; height: 28px; }
.mobile-call svg, .mobile-call-pill svg, .mobile-cta-pill svg { width: 20px; height: 20px; }
nav svg { width: 20px; height: 20px; }

/* Cap unsized SVGs globally inside flex/grid */
svg:not([width]):not([height]) { width: 24px; height: 24px; }

/* =============================================
   MISC / UTILITY
   ============================================= */
.bleed { width: 100vw; margin-left: calc(50% - 50vw); }

/* Table readability */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--ink);
  color: #fff;
}

/* No mirror transforms */
.flip { order: -1; }

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

/* =============================================
   RESPONSIVE OVERRIDES
   ============================================= */
@media (max-width: 1200px) {
  .footer-inner, .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 11px; padding: 8px 12px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline-white { width: 100%; justify-content: center; }
  .team-cta-inner { flex-direction: column; }
  .gallery-header-row { flex-direction: column; align-items: flex-start; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-main-img { grid-column: 1 / -1; }
.gallery-side { grid-column: 1 / -1; }
.contact-info { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.info-label { grid-column: 1 / -1; }
.info-value { grid-column: 1 / -1; }
.info-value-sm { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.section-eyebrow { grid-column: 1 / -1; }
.services-feature-heading { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-eyebrow { grid-column: 1 / -1; }
.service-block-title { grid-column: 1 / -1; }
.service-block-desc { grid-column: 1 / -1; }
.service-block-bullets { grid-column: 1 / -1; }
.btn-service { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-title { grid-column: 1 / -1; }
.cta-banner-phone { grid-column: 1 / -1; }
.cta-banner-guarantee { grid-column: 1 / -1; }
.form-title { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.gallery-count { grid-column: 1 / -1; }
.active { grid-column: 1 / -1; }
.filter-pill { grid-column: 1 / -1; }
.gallery-card-img-wrap { grid-column: 1 / -1; }
.gallery-card-body { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.footer-brand-col { grid-column: 1 / -1; }
.about-magazine-text { grid-column: 1 / -1; }
.about-photo-back { grid-column: 1 / -1; }
.about-photo-front { grid-column: 1 / -1; }
.about-color-block { grid-column: 1 / -1; }
.value-num { grid-column: 1 / -1; }
.timeline-dot { grid-column: 1 / -1; }
.crew-card-label { grid-column: 1 / -1; }
.btn-white { grid-column: 1 / -1; }
.btn-outline-white { grid-column: 1 / -1; }
.about-section-text { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.contact-form-label { grid-column: 1 / -1; }
.contact-form-title { grid-column: 1 / -1; }
.contact-form { grid-column: 1 / -1; }
.info-divider { grid-column: 1 / -1; }
.trust-row { grid-column: 1 / -1; }
.info-icon { grid-column: 1 / -1; }
.info-detail { grid-column: 1 / -1; }
