@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;500;600;700&family=Inter+Tight:wght@400;500;600&display=swap');

/* =====================================================
   CUSTOM PROPERTIES
   ===================================================== */
:root {
  --primary:        #6C3A10;
  --primary-dark:   #4e2a0c;
  --primary-light:  #8a4c18;
  --accent:         #ABBF64;
  --accent-dark:    #8fa04e;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --surface-2:      #EDE9DF;
  --ink:            #141414;
  --ink-mid:        #3a3630;
  --muted:          #6B665C;
  --border:         rgba(108, 58, 16, 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.12);
  --shadow-lg:      0 24px 64px rgba(0,0,0,0.16);
  --header-height:  72px;
  --section-py:     clamp(96px, 12vh, 180px);
  --radius:         0px;
}

@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: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  overflow-x: hidden;
}

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 30%;
  z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay):not(.hero-ribbon) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

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

section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

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

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

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; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(20px, 2.5vw, 32px); letter-spacing: -0.02em; }

p { line-height: 1.68; }

.eyebrow, .section-eyebrow, .page-header-eyebrow, .cta-banner-eyebrow,
.service-feature-eyebrow, .gallery-section-label, .cta-eyebrow,
.contact-label, .info-card-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  vertical-align: middle;
  margin-right: 10px;
}

/* =====================================================
   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 0.1s linear;
}

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

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

/* =====================================================
   BUTTONS
   ===================================================== */
.btn, .btn-primary, .btn-submit, .form-submit, .btn-white,
.btn-outline, .btn-outline-light, .btn-outline-white, .btn-ghost-light, .btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 180ms, color 180ms, transform 180ms, box-shadow 180ms;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1;
}

.btn-primary, .btn-submit, .form-submit {
  background: var(--primary);
  color: var(--canvas);
  border-color: var(--primary);
}
.btn-primary:hover, .btn-submit:hover, .form-submit:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--canvas);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(108,58,16,0.28);
}

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

.btn-outline-light, .btn-outline-white {
  background: transparent;
  color: var(--canvas);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover, .btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--canvas);
  color: var(--canvas);
  text-decoration: none;
}

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

.btn-ghost-light {
  background: transparent;
  color: var(--canvas);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost-light:hover {
  border-color: var(--canvas);
  background: rgba(255,255,255,0.1);
  text-decoration: none;
}

/* =====================================================
   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 {
  height: var(--header-height);
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-pages ul, #navLinks {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#navLinks {
  display: flex;
}
.nav-pages a, #navLinks a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
  border-bottom: 2px solid transparent;
}
.nav-pages a:hover, #navLinks a:hover {
  color: var(--primary);
  text-decoration: none;
  border-bottom-color: var(--primary);
}
.nav-pages a[aria-current="page"], #navLinks a[aria-current="page"] {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--canvas);
  padding: 10px 20px;
  border-radius: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms;
}
.nav-cta:hover {
  background: var(--primary-dark);
  color: var(--canvas);
  text-decoration: none;
  filter: brightness(0.92);
}
.nav-cta svg, .nav-cta-icon { width: 18px; height: 18px; flex-shrink: 0; }

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

@media (max-width: 900px) {
  .top-nav { padding-inline: 16px; gap: 12px; }

  .nav-pages {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px;
    flex-direction: column;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800;
    gap: 8px;
  }
  .nav-pages.open { display: flex; }
  .nav-pages ul, #navLinks {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .nav-pages a, #navLinks a {
    font-size: 16px;
    padding: 10px 0;
    width: 100%;
  }

  .nav-toggle { display: flex; }
  .nav-cta-text { display: none; }
  .nav-cta { padding: 10px 12px; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--ink);
}

.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(20,10,4,0.15) 0%,
    rgba(20,10,4,0.3) 40%,
    rgba(108,58,16,0.55) 75%,
    rgba(20,10,4,0.88) 100%
  );
  z-index: 1;
}

.hero-ribbon {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,244,237,0.92);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(108,58,16,0.25);
}

.ribbon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.hero-inner {
  padding: clamp(48px, 8vw, 96px) clamp(24px, 5vw, 80px) clamp(64px, 9vh, 120px);
  max-width: 1440px;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 18ch;
  margin-bottom: 28px;
}

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 500;
  color: rgba(247,244,237,0.85);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 40px;
}

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

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.9);
  border: 1px solid rgba(171,191,100,0.5);
  background: rgba(20,20,20,0.25);
  backdrop-filter: blur(4px);
}

/* Trust strip standalone (surface bg) */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-strip-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  align-items: center;
  justify-content: center;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.trust-badge svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

/* =====================================================
   MARQUEE STRIP
   ===================================================== */
.marquee-strip {
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--canvas);
  max-height: 64px;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.2vw, 14px);
  line-height: 1.2;
  color: var(--ink);
  padding-right: 0;
}
.marquee-item strong { color: var(--ink); }
.marquee-sep {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin: 0 20px;
  vertical-align: middle;
  flex-shrink: 0;
}

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

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

.services-intro {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-bottom: 56px;
}

.section-heading {
  font-size: clamp(36px, 5vw, 72px);
  max-width: 18ch;
  color: var(--ink);
  margin-top: 12px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 52ch;
  margin-top: 16px;
  line-height: 1.65;
}

.section-title {
  font-size: clamp(36px, 5vw, 72px);
  max-width: 18ch;
  color: var(--ink);
  margin-top: 12px;
}

.services-bento {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
}

/* flagship: spans 2 cols and 2 rows */
.service-card { position: relative; overflow: hidden; display: block; text-decoration: none; background: var(--ink); }
.service-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-out;
  filter: grayscale(20%);
  max-height: none;
}
.service-card:hover > img { transform: scale(1.04); }

.sc-flagship {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  min-height: 560px;
}
.sc-right {
  grid-column: 3;
  grid-row: 1;
  min-height: 280px;
}
.sc-third {
  grid-column: auto;
  min-height: 270px;
}

.sc-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,10,4,0.85) 0%, rgba(20,10,4,0.2) 50%, transparent 100%);
}

.sc-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sc-flagship .sc-body { padding: 40px 48px; }

.sc-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
}
.sc-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--canvas);
  line-height: 1.05;
}
.sc-flagship .sc-body h3 { font-size: clamp(24px, 3.5vw, 44px); }
.sc-desc {
  font-size: 14px;
  color: rgba(247,244,237,0.8);
  line-height: 1.55;
  max-width: 46ch;
  display: block;
}
.sc-link {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.sc-link::after {
  content: '\2192';
  font-size: 14px;
}

.service-card { transition: box-shadow 250ms ease-out; }
.service-card:hover { box-shadow: 0 0 0 3px var(--primary); text-decoration: none; }

@media (max-width: 900px) {
  .services-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 3px;
  }
  .sc-flagship {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 340px;
  }
  .sc-right { grid-column: auto; min-height: 220px; }
  .sc-third { min-height: 200px; }
}

@media (max-width: 600px) {
  .services-bento { grid-template-columns: 1fr; }
  .sc-flagship, .sc-right { min-height: 280px; }
  .sc-third { min-height: 200px; }
  .sc-body { padding: 20px 20px; }
  .sc-flagship .sc-body { padding: 24px 24px; }
}

/* =====================================================
   GALLERY PREVIEW (index page)
   ===================================================== */
.gallery-preview {
  background: var(--surface);
  padding-block: var(--section-py);
}

.gallery-preview-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.gallery-feat {
  width: 100%;
  height: clamp(300px, 50vw, 600px);
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.gallery-feat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.gallery-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

/* =====================================================
   GALLERY FULL PAGE
   ===================================================== */
.gallery-full {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.gallery-full-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.gallery-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-section-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}
.gallery-count {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid var(--border-light);
  background: var(--canvas);
  color: var(--muted);
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--canvas);
  border-color: var(--primary);
}

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

.gallery-card {
  background: var(--ink);
  overflow: hidden;
  display: block;
  position: relative;
}
.gallery-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.gallery-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms ease-out;
  filter: grayscale(15%);
}
.gallery-card:hover .gallery-card-img-wrap img { transform: scale(1.04); }

.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,10,4,0.7) 0%, transparent 50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 250ms;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }

.gallery-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  background: var(--primary);
  color: var(--canvas);
  font-family: 'Archivo', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.gallery-card-cat {
  position: absolute;
  bottom: 12px; left: 12px;
  z-index: 2;
  background: rgba(247,244,237,0.92);
  color: var(--primary);
  font-family: 'Archivo', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.gallery-card-body {
  padding: 20px 22px 24px;
  background: var(--canvas);
}
.gallery-card-body h3 {
  font-size: clamp(15px, 1.5vw, 19px);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gallery-card-location svg { width: 14px; height: 14px; flex-shrink: 0; }
.gallery-card-desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.gallery-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}
.gallery-card-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.gallery-card-stat svg { width: 14px; height: 14px; flex-shrink: 0; }

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

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

.reviews-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.reviews-inner .section-eyebrow { color: var(--accent); }
.reviews-inner .section-eyebrow::before { background: var(--accent); }
.reviews-inner h2 { color: var(--canvas); }

.reviews-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}

.reviews-score-card {
  background: var(--primary);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.score-big {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 900;
  line-height: 1;
  color: var(--canvas);
  letter-spacing: -0.04em;
}
.score-stars {
  display: flex;
  gap: 4px;
}
.score-stars svg { width: 22px; height: 22px; color: var(--accent); }
.score-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.75);
  display: block;
}

.reviews-copy-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.reviews-pull {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--canvas);
  font-style: italic;
}

.reviews-body {
  font-size: 16px;
  color: rgba(247,244,237,0.7);
  line-height: 1.65;
  max-width: 56ch;
}

.reviews-copy-col a {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.reviews-copy-col a::after { content: '\2192'; }
.reviews-copy-col a:hover { color: var(--canvas); text-decoration: none; }

@media (max-width: 900px) {
  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .reviews-score-card { flex-direction: row; flex-wrap: wrap; padding: 28px 24px; }
  .score-big { font-size: 64px; }
}

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

.faq-inner {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.faq-inner .section-eyebrow { margin-bottom: 48px; }

.faq-list { margin-top: 0; }

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

.faq-item summary {
  cursor: pointer;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  min-height: 68px;
  gap: 20px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 220ms;
}
.faq-item[open] .faq-chevron { transform: rotate(45deg); }

.faq-answer {
  padding: 0 0 24px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.68;
  max-width: 68ch;
}

/* Legacy faq pattern from required patterns */
details.faq { border-bottom: 1px solid var(--border); padding: 18px 0; }
details.faq > summary {
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after { content: "+"; font-weight: 300; transition: transform 200ms; }
details.faq[open] > summary::after { transform: rotate(45deg); color: var(--primary); }
details.faq p { margin-top: 12px; line-height: 1.6; }

/* =====================================================
   TEAM CTA (index)
   ===================================================== */
.team-cta {
  background: var(--primary);
  padding-block: clamp(64px, 8vh, 120px);
  overflow: hidden;
}
.team-cta-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  text-align: center;
}
.team-cta-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 22ch;
  margin: 0 auto 40px;
}
.team-cta-headline em {
  font-style: italic;
  color: var(--accent);
}
.team-cta-inner a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--canvas);
  color: var(--primary);
  padding: 18px 36px;
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 180ms;
}
.team-cta-inner a:hover {
  background: var(--surface);
  color: var(--primary);
  text-decoration: none;
}

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

.contact-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.contact-headline, .contact-inner h2 { margin-bottom: 56px; }
.contact-sub { color: var(--muted); margin-top: 8px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form-side { display: flex; flex-direction: column; gap: 0; }
.contact-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

form label {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

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

.form-field, .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

input, select, textarea {
  font-family: 'Inter Tight', sans-serif;
  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 150ms, box-shadow 150ms;
  outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,58,16,0.12);
}
textarea { min-height: 120px; resize: vertical; }

.form-submit, .btn-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.12em;
}

/* Contact info */
.contact-info, .contact-info-card {
  background: var(--surface);
  padding: 40px;
}

.info-card-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.info-card-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}

.info-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border-light);
  align-items: flex-start;
}
.info-icon { flex-shrink: 0; padding-top: 2px; }
.info-icon svg { width: 20px; height: 20px; color: var(--primary); }
.info-content { flex: 1; }
.info-content-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.info-content-value { font-size: 15px; color: var(--ink); line-height: 1.55; }
.info-content-value a { color: var(--primary); font-weight: 600; }

.contact-info-block {
  padding: 18px 0;
  border-top: 1px solid var(--border-light);
}
.ci-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.ci-label svg { width: 16px; height: 16px; color: var(--primary); }
.ci-value { font-size: 15px; color: var(--ink); }
.ci-value a { color: var(--primary); font-weight: 600; }

.info-emergency {
  background: var(--primary);
  padding: 20px 24px;
  margin-top: 24px;
}
.info-emergency-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.info-emergency-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--canvas);
}
.info-emergency-value a { color: var(--canvas); }

.service-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.area-pill {
  padding: 4px 10px;
  background: var(--surface-2);
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

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

/* =====================================================
   PAGE HEADER (subpages)
   ===================================================== */
.page-header {
  min-height: clamp(260px, 40vh, 480px);
  max-height: 64vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(20,10,4,0.3) 0%,
    rgba(20,10,4,0.7) 100%
  );
}

.page-header-inner {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 5vw, 64px) clamp(24px, 5vw, 80px);
  max-width: 1440px;
}

.page-header-eyebrow, .eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.page-header-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 18ch;
}

.page-header-sub {
  font-size: 17px;
  color: rgba(247,244,237,0.8);
  margin-top: 14px;
  max-width: 52ch;
  line-height: 1.6;
}

/* =====================================================
   SERVICES DETAIL PAGE
   ===================================================== */
.services-intro-strip {
  background: var(--surface);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.services-intro-strip-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.services-intro-strip-inner p {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.services-intro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.services-intro-chips li {
  padding: 6px 14px;
  border: 1px solid var(--border);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  background: var(--canvas);
}

.service-feature {
  padding-block: var(--section-py);
  background: var(--canvas);
}
.service-feature:nth-of-type(even) { background: var(--surface); }

.service-feature-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

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

.service-feature-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}
.service-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-feature-photo-index {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.25;
  letter-spacing: -0.04em;
}

.service-feature-photo-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 3;
  background: var(--primary);
  color: var(--canvas);
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.service-feature-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-feature-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--primary);
  display: inline-block;
}

.service-feature-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}

.service-feature-copy {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 16px;
  max-width: 56ch;
}

.service-bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.service-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 7px;
}

.service-feature-body .btn, .service-feature-body a.btn-primary {
  display: inline-flex;
}

@media (max-width: 900px) {
  .service-feature-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-feature.flip .service-feature-inner { direction: ltr; }
  .service-feature-photo { aspect-ratio: 16 / 9; }
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: var(--ink);
  padding-block: clamp(80px, 12vh, 160px);
  position: relative;
  overflow: hidden;
}
.cta-banner > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  opacity: 0.25;
  max-height: none;
}
.cta-banner-bg {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(20,10,4,0.75);
}
.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-banner-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.cta-banner-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--canvas);
  margin-bottom: 24px;
}
.cta-banner-title span { color: var(--accent); }
.cta-banner-sub { font-size: 16px; color: rgba(247,244,237,0.75); margin-bottom: 28px; line-height: 1.6; }
.cta-banner-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--canvas);
  text-decoration: none;
  margin-bottom: 20px;
}
.cta-phone:hover { color: var(--accent); text-decoration: none; }
.cta-phone-num { color: inherit; }

.cta-banner-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--canvas);
  letter-spacing: -0.02em;
}

.cta-form {
  background: var(--canvas);
  padding: 40px;
}
.cta-form-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* About page cta-banner single-column */
.cta-banner-inner.fade-up {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
}

.cta-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--canvas);
  margin-bottom: 20px;
}
.cta-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.cta-sub { font-size: 16px; color: rgba(247,244,237,0.75); margin-bottom: 32px; line-height: 1.6; }
.cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 900px) {
  .cta-banner-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* =====================================================
   ABOUT PAGE — STORY
   ===================================================== */
.about-story {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.about-story-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.about-story-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.about-story-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}
.about-story-portrait-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 60%;
  height: 60%;
  background: var(--primary);
  z-index: -1;
}

.about-story-text .section-eyebrow { margin-bottom: 20px; }
.about-headline, .about-story-text h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  margin-bottom: 28px;
}

.about-body p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 58ch;
}

.pull-quote {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--primary);
  border-left: 4px solid var(--primary);
  padding-left: 24px;
  margin-block: 32px;
}

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

/* =====================================================
   VALUES
   ===================================================== */
.values {
  background: var(--surface);
  padding-block: var(--section-py);
}
.values-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 56px;
}

.value-card {
  background: var(--canvas);
  padding: 36px 32px;
  border-top: 3px solid var(--primary);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.25;
}
.value-card h3 {
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.value-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
.value-title { font-family: 'Archivo Black', sans-serif; font-size: 18px; font-weight: 900; color: var(--ink); }

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

/* =====================================================
   JOURNEY TIMELINE
   ===================================================== */
.journey {
  background: var(--canvas);
  padding-block: var(--section-py);
}
.journey-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.journey-inner .section-eyebrow { margin-bottom: 56px; }
.journey-inner h2 { margin-bottom: 56px; }

.journey-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.journey-track::before {
  content: '';
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.journey-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 24px 0 0;
  position: relative;
  z-index: 1;
}

.journey-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--canvas);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.journey-dot-inner {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
}

.journey-year {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--primary);
  line-height: 1;
}
.journey-label {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.journey-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) {
  .journey-track {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .journey-track::before { display: none; }
}
@media (max-width: 480px) {
  .journey-track { grid-template-columns: 1fr; }
}

/* =====================================================
   CREW STRIP
   ===================================================== */
.crew {
  background: var(--surface);
  padding-block: var(--section-py);
}
.crew-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.crew-layout {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.crew-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.crew-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.crew-text .section-eyebrow { margin-bottom: 20px; }
.crew-headline { margin-bottom: 20px; }
.crew-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 54ch;
}

.crew-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.crew-stat-item { display: flex; flex-direction: column; gap: 4px; }
.crew-stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--primary);
}
.crew-stat-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.crew-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.crew-certs .trust-chip {
  color: var(--ink-mid);
  border-color: var(--border);
  background: var(--canvas);
  backdrop-filter: none;
}

@media (max-width: 1100px) {
  .crew-layout { grid-template-columns: 1fr; }
  .crew-photo { aspect-ratio: 16 / 9; }
  .crew-stats { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer, .site-footer {
  background: var(--ink);
  padding-top: clamp(64px, 8vh, 96px);
  padding-bottom: 0;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: clamp(48px, 6vh, 80px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand img { max-height: 40px !important; max-width: 160px !important; }
.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--canvas);
  letter-spacing: -0.01em;
}
.footer-tagline { font-size: 14px; color: rgba(247,244,237,0.55); line-height: 1.55; max-width: 32ch; }
.footer-contact-lines { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.footer-contact-lines a, .footer-contact-line a {
  font-size: 14px;
  color: rgba(247,244,237,0.7);
  text-decoration: none;
}
.footer-contact-lines a:hover, .footer-contact-line a:hover {
  color: var(--accent);
  text-decoration: none;
}
.footer-contact-line { font-size: 14px; color: rgba(247,244,237,0.55); }
.footer-phone-big { font-family: 'Archivo Black', sans-serif; font-size: 20px; font-weight: 900; color: var(--canvas); }
.footer-phone-big a { color: inherit; text-decoration: none; }

.footer-col-title {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.4);
  margin-bottom: 18px;
  display: block;
}

.footer-links, .footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.footer-links a, .footer-links li a {
  font-size: 14px;
  color: rgba(247,244,237,0.7);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover, .footer-links li a:hover {
  color: var(--accent);
  text-decoration: none;
}
.footer-info li { font-size: 14px; color: rgba(247,244,237,0.55); }

.footer-email, .footer-phone {
  font-size: 14px;
  color: rgba(247,244,237,0.7);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 12px; color: rgba(247,244,237,0.35); }
.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-cert, .footer-cert-chip {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.45);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.1);
}

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

/* =====================================================
   MOBILE CTA PILL
   ===================================================== */
.mobile-call-pill, .mobile-sticky-cta, .mobile-cta-pill, .mobile-cta > a {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--canvas);
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 180ms, transform 180ms;
}
.mobile-call-pill:hover, .mobile-sticky-cta:hover, .mobile-cta-pill:hover, .mobile-cta > a:hover {
  background: var(--primary-dark);
  text-decoration: none;
  transform: translateY(-2px);
  color: var(--canvas);
}
.mobile-call-pill svg, .mobile-sticky-cta svg, .mobile-cta-pill svg, .mobile-cta > a svg {
  width: 20px; height: 20px; flex-shrink: 0;
}

.mobile-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
}

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

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

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

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

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

.stagger .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger .fade-up:nth-child(2) { transition-delay: 80ms; }
.stagger .fade-up:nth-child(3) { transition-delay: 160ms; }
.stagger .fade-up:nth-child(4) { transition-delay: 240ms; }
.stagger .fade-up:nth-child(5) { transition-delay: 320ms; }
.stagger .fade-up:nth-child(6) { transition-delay: 400ms; }
.stagger .fade-up:nth-child(7) { transition-delay: 480ms; }
.stagger .fade-up:nth-child(8) { transition-delay: 560ms; }

/* Visible state for pre-marked elements */
.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible {
  opacity: 1;
  transform: none;
}

/* =====================================================
   MISC SECTION UTILITIES
   ===================================================== */
.phone-display {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--primary);
}

/* Review card pattern (required) */
.review-card { padding: 28px; border-radius: 0; background: var(--surface-2); }
.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; }

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

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

/* Readonly table rule */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--primary);
  color: var(--canvas);
}

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

/* Service card hover (required) */
.service-card { transition: transform 250ms ease-out, box-shadow 250ms ease-out; }

/* =====================================================
   RESPONSIVE ADJUSTMENTS
   ===================================================== */
@media (max-width: 1200px) {
  .crew-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero { min-height: 80vh; }
  .hero-ribbon { top: 16px; right: 16px; }
  .hero-title { max-width: 100%; }

  .reviews-layout { grid-template-columns: 1fr; }

  .about-story-inner { grid-template-columns: 1fr; }

  section { padding-inline: 0; }
}

@media (max-width: 640px) {
  .hero { min-height: 85vh; }
  .hero-inner { padding: 32px 20px 48px; }

  .trust-strip-inner { gap: 12px 20px; }
  .trust-badge { font-size: 10px; }

  .services-bento { gap: 2px; }

  .faq-inner { padding-inline: 20px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.section-eyebrow { grid-column: 1 / -1; }
.section-heading { grid-column: 1 / -1; }
.section-sub { grid-column: 1 / -1; }
.sc-overlay { grid-column: 1 / -1; }
.sc-body { grid-column: 1 / -1; }
.btn-primary { grid-column: 1 / -1; }
.score-big { grid-column: 1 / -1; }
.score-stars { grid-column: 1 / -1; }
.score-label { grid-column: 1 / -1; }
.reviews-pull { grid-column: 1 / -1; }
.reviews-body { grid-column: 1 / -1; }
.btn-outline { grid-column: 1 / -1; }
.form-row { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.btn-submit { grid-column: 1 / -1; }
.contact-info-block { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.service-feature-photo-index { grid-column: 1 / -1; }
.service-feature-photo-tag { grid-column: 1 / -1; }
.service-feature-eyebrow { grid-column: 1 / -1; }
.service-feature-title { grid-column: 1 / -1; }
.service-feature-copy { grid-column: 1 / -1; }
.service-bullets { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-title { grid-column: 1 / -1; }
.cta-phone { grid-column: 1 / -1; }
.cta-banner-sub { grid-column: 1 / -1; }
.cta-form-title { grid-column: 1 / -1; }
.gallery-count { grid-column: 1 / -1; }
.active { grid-column: 1 / -1; }
.filter-btn { grid-column: 1 / -1; }
.gallery-card-img-wrap { grid-column: 1 / -1; }
.gallery-card-body { grid-column: 1 / -1; }
.cta-banner-inner { grid-column: 1 / -1; }
.cta-banner-phone { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.about-story-text { grid-column: 1 / -1; }
.about-story-portrait-accent { grid-column: 1 / -1; }
.value-num { grid-column: 1 / -1; }
.value-title { grid-column: 1 / -1; }
.value-desc { grid-column: 1 / -1; }
.journey-dot { grid-column: 1 / -1; }
.journey-year { grid-column: 1 / -1; }
.journey-label { grid-column: 1 / -1; }
.journey-desc { grid-column: 1 / -1; }
.crew-text { grid-column: 1 / -1; }
.crew-stat-num { grid-column: 1 / -1; }
.crew-stat-label { grid-column: 1 / -1; }
.trust-chip { grid-column: 1 / -1; }
.btn-white { grid-column: 1 / -1; }
.btn-outline-white { grid-column: 1 / -1; }
.contact-label { grid-column: 1 / -1; }
.contact-headline { grid-column: 1 / -1; }
.contact-sub { grid-column: 1 / -1; }
.contact-form { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.info-card-label { grid-column: 1 / -1; }
.info-card-name { grid-column: 1 / -1; }
.info-item { grid-column: 1 / -1; }
.info-emergency { grid-column: 1 / -1; }
.cta-banner-label { grid-column: 1 / -1; }
.cta-pair { 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; }
