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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #60570B;
  --primary-dark:   #4a4209;
  --primary-light:  #7a6d0e;
  --accent:         #3B5C37;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --surface-dark:   #edeae0;
  --ink:            #141414;
  --ink-mid:        #2e2e2e;
  --muted:          #6B665C;
  --muted-light:    #9a9590;
  --border:         rgba(96,87,11,0.18);
  --border-light:   rgba(20,20,20,0.09);
  --shadow-sm:      0 2px 8px rgba(20,20,20,0.07);
  --shadow-md:      0 8px 28px rgba(20,20,20,0.10);
  --shadow-lg:      0 24px 60px rgba(20,20,20,0.14);
  --header-height:  72px;
  --radius:         0;
  --section-py:     clamp(96px, 12vh, 180px);
  --max-w:          1440px;
  --max-w-content:  1320px;
}

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

/* ============================================================
   GLOBAL RESETS
   ============================================================ */
*, *::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;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--canvas);
  overflow-x: hidden;
}

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

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

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

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; 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; 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;
}

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

/* Anchor base */
a { color: var(--ink); transition: color 150ms; text-decoration: none; }
a:hover { color: var(--primary); }

ul { list-style: none; }

svg { display: block; }

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

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.wide-container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

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

h1 { font-size: clamp(48px, 8vw, 132px); }
h2 { font-size: clamp(36px, 5vw, 80px); }
h3 { font-size: clamp(22px, 3vw, 36px); }

p { line-height: 1.68; }

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

.section-sub, .page-header-sub, .hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 52ch;
  margin-top: 18px;
}

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

.btn-primary,
a.btn-primary,
button.btn-primary {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--surface); text-decoration: none; }

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: var(--surface); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); color: #fff; }

.btn-service {
  background: var(--primary);
  color: var(--surface);
  padding: 14px 28px;
  font-size: 12px;
}
.btn-service:hover { background: var(--primary-dark); color: var(--surface); }

.btn-submit,
.btn-form-submit,
.btn-banner-primary,
.contact-form button[type="submit"],
form button[type="submit"] {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
  width: 100%;
  justify-content: center;
  font-size: 13px;
  margin-top: 8px;
}
.btn-submit:hover, .btn-form-submit:hover, form button[type="submit"]:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--surface);
}

/* SVG inside buttons */
.btn-primary svg, .btn-ghost svg, .btn-outline-light svg,
.btn-service svg, .btn-submit svg {
  width: 16px; height: 16px; flex-shrink: 0;
}

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

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

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

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  background: var(--canvas);
  border: 1.5px solid var(--border-light);
  border-radius: 0;
  padding: 13px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 150ms;
  outline: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
}

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

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B665C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

/* Forms on dark background (cta-banner) */
.cta-banner input, .cta-banner select, .cta-banner textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.cta-banner input::placeholder, .cta-banner textarea::placeholder { color: rgba(255,255,255,0.45); }
.cta-banner input:focus, .cta-banner select:focus, .cta-banner textarea:focus {
  border-color: rgba(255,255,255,0.6);
}
.cta-banner label { color: rgba(255,255,255,0.6); }
.cta-banner select { color: rgba(255,255,255,0.85); }

/* ============================================================
   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 {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-height);
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.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;
  width: auto !important;
}

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

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

.nav-pages a,
#navLinks a,
#navLinks li a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}

.nav-pages a:hover,
#navLinks a:hover { color: var(--primary); text-decoration: none; }
.nav-pages a[aria-current="page"],
#navLinks a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--surface);
  padding: 10px 20px;
  border-radius: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms;
}
.nav-cta:hover { background: var(--primary-dark); color: var(--surface); text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-pages {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--canvas);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px clamp(20px, 4vw, 56px) 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 899;
  }

  .nav-pages.open { display: flex; }

  .nav-pages ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav-pages li, .nav-pages ul li { width: 100%; }

  .nav-pages a, #navLinks a, #navLinks li a {
    display: block;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
  }

  .nav-cta .nav-cta-label { display: none; }
  .nav-cta { padding: 10px 14px; }
}

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

.hero > img:first-of-type,
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: brightness(0.72);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(20,20,20,0.18) 0%,
    rgba(96,87,11,0.08) 50%,
    rgba(20,20,20,0.78) 100%
  );
}

.hero-ribbon {
  position: absolute;
  top: 32px; right: clamp(20px, 4vw, 56px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(20,20,20,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(96,87,11,0.4);
  padding: 10px 18px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}

.hero-ribbon-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(96,87,11,0.6); }
  50% { opacity: 0.8; transform: scale(1.15); box-shadow: 0 0 0 6px rgba(96,87,11,0); }
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding: clamp(56px, 8vw, 120px) clamp(20px, 4vw, 56px);
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  position: relative;
  padding-left: 22px;
}
.hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 2px;
  background: var(--primary);
}

.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: #fff;
  max-width: 18ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.75);
  max-width: 46ch;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-ctas .btn-primary {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}
.hero-ctas .btn-phone {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 18px 28px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: background 160ms, border-color 160ms;
}
.hero-ctas .btn-phone:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; text-decoration: none; }

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(96,87,11,0.55);
  padding: 7px 14px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(20,20,20,0.35);
  backdrop-filter: blur(4px);
}
.trust-chip svg { width: 13px; height: 13px; }

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

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

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
  white-space: nowrap;
}
.trust-badge svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

/* trust-chip inside trust-strip (services.html variant) */
.trust-strip .trust-chip {
  border: 1px solid var(--border);
  color: var(--ink-mid);
  background: transparent;
  backdrop-filter: none;
}

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

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

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

.marquee-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, 1.2vw, 15px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1;
}

.marquee-item::before {
  content: '✦';
  color: var(--primary);
  font-size: 8px;
}

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

/* ============================================================
   SERVICES (index.html — feature blocks)
   ============================================================ */
.services {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.services-header {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  margin-bottom: clamp(64px, 8vh, 112px);
}

.services-header .section-title {
  font-size: clamp(40px, 5.5vw, 80px);
  margin-top: 12px;
}

.service-block {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 0;
  margin-bottom: 8px;
  min-height: 380px;
}

.service-block.reverse {
  grid-template-columns: 60% 40%;
}

.service-block-img {
  position: relative;
  overflow: hidden;
  background: var(--surface-dark);
}

.service-block-img img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform 600ms ease;
}

.service-block:hover .service-block-img img { transform: scale(1.03); }

.service-block-body {
  padding: clamp(36px, 5vw, 72px);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.service-block.reverse .service-block-body { background: var(--canvas); }
.service-block:nth-child(even) .service-block-body { background: var(--canvas); }

.service-index {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1;
  color: var(--primary);
  opacity: 0.18;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.service-block-body h3 {
  font-size: clamp(22px, 2.8vw, 38px);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}

.service-block-body p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-block-body a.btn-service,
.service-block-body a {
  margin-top: 8px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-block-img {
    min-height: 260px;
    position: relative;
  }
  .service-block-img img { position: relative; min-height: 260px; }
  .service-block.reverse .service-block-img { order: -1; }
  .service-block-body { padding: clamp(28px, 5vw, 48px); }
}

/* ============================================================
   SERVICES DETAIL (services.html)
   ============================================================ */
.services-intro {
  background: var(--surface);
  padding-block: clamp(56px, 7vh, 96px);
}

.services-intro-inner {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.services-intro-inner h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-top: 12px;
}

.services-detail {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.service-feature {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 0;
  margin-bottom: 4px;
  min-height: 440px;
  align-items: stretch;
}

.service-feature.reverse {
  grid-template-columns: 52% 48%;
}

.service-feature-photo {
  position: relative;
  overflow: hidden;
  background: var(--surface-dark);
}

.service-feature-photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 600ms;
}

.service-feature:hover .service-feature-photo img { transform: scale(1.03); }

.service-feature-index {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.04em;
  z-index: 2;
  pointer-events: none;
}

.service-feature-body {
  padding: clamp(40px, 5vw, 72px);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-feature.reverse .service-feature-body { background: var(--canvas); }
.service-feature:nth-child(even) .service-feature-body { background: var(--canvas); }
.service-feature:nth-child(even).reverse .service-feature-body { background: var(--surface); }

.service-feature-body h3 {
  font-size: clamp(24px, 3vw, 42px);
  margin-bottom: 18px;
}

.service-feature-desc {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-feature-bullets {
  list-style: none;
  margin: 16px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-mid);
  line-height: 1.5;
}

.service-feature-bullets li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 0;
  background: var(--primary);
  margin-top: 6px;
  flex-shrink: 0;
}

.service-feature-body a.btn-primary { align-self: flex-start; }
.service-feature-body svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .service-feature,
  .service-feature.reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-feature-photo { min-height: 300px; position: relative; }
  .service-feature-photo img { position: relative; min-height: 300px; }
  .service-feature.reverse .service-feature-photo { order: -1; }
  .service-feature-body { padding: clamp(28px, 5vw, 48px); }
}

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

.gallery-inner {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.gallery-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(48px, 6vh, 80px);
}

.gallery-header > div { /* wraps h2 + eyebrow */ }
.gallery-header h2 { font-size: clamp(36px, 5vw, 72px); margin-top: 10px; }

.gallery-header a {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 24px;
  align-items: stretch;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  background: var(--surface-dark);
  min-height: 420px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.gallery-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-stat {
  flex: 1;
  background: var(--canvas);
  border: 1px solid var(--border-light);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-stat.alt {
  background: var(--primary);
}
.gallery-stat.alt .stat-num { color: #fff; }
.gallery-stat.alt .stat-label { color: rgba(255,255,255,0.72); }

.gallery-callout {
  flex: 0 0 auto;
  background: var(--ink);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-callout .section-eyebrow { color: var(--primary); }

.gallery-callout p { color: rgba(255,255,255,0.75); font-size: 14px; }

.gallery-callout a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .gallery-layout { grid-template-columns: 1fr; }
  .gallery-main { min-height: 300px; position: relative; }
  .gallery-main img { position: relative; min-height: 300px; }
  .gallery-header { grid-template-columns: 1fr; }
}

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

.gallery-section-inner {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.gallery-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(48px, 6vh, 80px);
}

.gallery-intro-text { /* wraps eyebrow + title */ }
.gallery-section-title { font-size: clamp(36px, 5vw, 72px); margin-top: 10px; }

.gallery-count {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  color: var(--primary);
  opacity: 0.28;
  letter-spacing: -0.04em;
  line-height: 1;
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-pill {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1.5px solid var(--border-light);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
  border-radius: 0;
}
.filter-pill.active,
.filter-pill:hover {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}

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

.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: var(--shadow-lg); }

.gallery-card.featured {
  grid-column: span 2;
}

.gallery-card-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--surface-dark);
  height: 280px;
}

.gallery-card.featured .gallery-card-img-wrap { height: 380px; }

.gallery-card-img-wrap img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 500ms;
}
.gallery-card:hover .gallery-card-img-wrap img { transform: scale(1.04); }

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

.gallery-card-category {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(20,20,20,0.65);
  color: rgba(255,255,255,0.85);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.gallery-card-body {
  padding: 20px 24px 24px;
}

.gallery-card-body h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.gallery-card-location svg { width: 12px; height: 12px; }

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

.gallery-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gallery-card-meta-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.featured { grid-column: span 2; }
  .gallery-intro { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.featured { grid-column: span 1; }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--surface);
  padding-block: var(--section-py);
}

.service-areas-inner {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 38% 62%;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.service-areas-inner > div:first-child h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  margin-top: 10px;
}

.areas-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 16px;
}

.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.area-chip {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: background 150ms, color 150ms;
}
.area-chip:hover { background: var(--primary); color: var(--surface); border-color: var(--primary); cursor: default; }

.area-pill {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

.areas-cta { margin-top: 4px; }
.areas-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}

@media (max-width: 900px) {
  .service-areas-inner { grid-template-columns: 1fr; gap: 40px; }
}

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

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

.faq-inner > div:first-child h2,
.faq-h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: clamp(40px, 5vh, 72px);
  margin-top: 10px;
}

.faq-list { margin-top: clamp(32px, 4vh, 56px); }

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

details > summary, details.faq > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink);
  gap: 24px;
  min-height: 60px;
}

details > summary::-webkit-details-marker,
details.faq > summary::-webkit-details-marker { display: none; }

details > summary::after,
details.faq > summary::after {
  content: '+';
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--muted-light);
  transition: transform 220ms, color 220ms;
  flex-shrink: 0;
  line-height: 1;
}

details[open] > summary::after,
details.faq[open] > summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}

/* FAQ chevron SVG variant (contact.html) */
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 220ms;
}
details[open] .faq-chevron { transform: rotate(180deg); color: var(--primary); }
/* Hide the ::after pseudo when SVG chevron is present */
details:has(.faq-chevron) > summary::after { display: none; }

details p, details .faq-answer {
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

/* ============================================================
   ABOUT SECTION (about.html)
   ============================================================ */
.about-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.about-inner {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 48% 52%;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

/* Photo stack — overlapping photos + brand block */
.about-photo-stack {
  position: relative;
  min-height: 520px;
}

.about-photo-stack > img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: grayscale(20%);
  z-index: 1;
}

.about-color-block {
  position: absolute;
  bottom: -24px;
  right: -32px;
  width: 68%;
  background: var(--primary);
  padding: 32px 28px;
  z-index: 2;
}

.about-color-block-text { }

.about-color-block-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.35;
  color: rgba(255,255,255,0.92);
}

/* Content column */
.about-content {
  padding-top: 16px;
}

.about-eyebrow {
  margin-bottom: 14px;
}

.about-content h2,
.about-headline {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 32px;
  margin-top: 10px;
}

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

.about-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.about-pull-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.3;
  color: var(--ink);
  border-left: 3px solid var(--primary);
  padding-left: 22px;
  margin-block: 8px;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.about-stat { display: flex; flex-direction: column; gap: 4px; }

.about-stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.about-stat-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-stack { min-height: 360px; margin-bottom: 60px; }
  .about-color-block { right: 0; bottom: -40px; }
}

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

.values-inner {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.values-inner > h2,
.values-inner h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: clamp(48px, 6vh, 80px);
  margin-top: 12px;
}

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

.value-card {
  background: var(--canvas);
  padding: 36px 28px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); z-index: 2; }

.value-index {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  color: var(--primary);
  opacity: 0.22;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

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

.value-title { /* used inside value-card alongside value-index */ }

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

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

.timeline-inner {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.timeline-inner > h2,
.timeline-inner h2 {
  font-size: clamp(36px, 5vw, 72px);
  color: #fff;
  margin-bottom: clamp(48px, 6vh, 80px);
  margin-top: 12px;
}

.timeline-inner .section-label { color: rgba(255,255,255,0.45); }

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 20px; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.timeline-step {
  padding: 40px 24px 28px;
  background: rgba(255,255,255,0.04);
  position: relative;
}

.timeline-dot {
  width: 10px; height: 10px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 15px; left: 24px;
}

.timeline-year {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.timeline-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 1.6vw, 20px);
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.timeline-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

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

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

.crew-inner {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.crew-inner > h2,
.crew-inner h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: clamp(48px, 6vh, 80px);
  margin-top: 12px;
}

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

.crew-card {
  background: var(--canvas);
  padding: 36px 28px;
}

.crew-initial {
  width: 64px; height: 64px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.crew-name {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.crew-role {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.crew-bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

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

/* ============================================================
   STATS
   ============================================================ */
.stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.04em;
  display: block;
}

.stat-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 1vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}

/* ============================================================
   TEAM CTA BAND
   ============================================================ */
.team-cta {
  background: var(--primary);
  padding-block: clamp(48px, 6vh, 80px);
  overflow: hidden;
}

.team-cta-inner {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.team-cta-text {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3.5vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.92);
  text-align: center;
}

.team-cta-text span {
  color: rgba(255,255,255,0.55);
}

.team-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 2px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  text-decoration: none;
  flex-shrink: 0;
}
.team-cta a:hover { color: #fff; border-color: #fff; text-decoration: none; }

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

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

.cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,20,20,0.9) 0%, rgba(96,87,11,0.2) 100%);
  z-index: 1;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 55% 45%;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.cta-banner-text { }

.cta-banner-title,
.cta-banner-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  margin-block: 14px 20px;
}

.cta-banner-sub {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 48ch;
}

.cta-banner-eyebrow,
.cta-banner-label { color: var(--primary); margin-bottom: 10px; }

.cta-banner-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 32px);
  color: #fff;
  text-decoration: none;
  margin-top: 16px;
  letter-spacing: -0.02em;
}
.cta-banner-phone:hover { color: var(--primary); text-decoration: none; }

/* CTA form panel */
.cta-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 40px 36px;
}

.cta-form-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 24px);
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cta-form .btn-submit,
.cta-form form button[type="submit"],
.cta-form button {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}

.cta-banner-left { /* contains eyebrow + h2 + sub + CTA */ }
.cta-banner-right { /* contains cta-form */ }

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

/* ============================================================
   CONTACT SECTION (index.html)
   ============================================================ */
.contact {
  background: var(--surface);
  padding-block: var(--section-py);
}

.contact-inner {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 55% 45%;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.contact-inner > div:first-child h2,
.contact-form-h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 28px;
  margin-top: 10px;
}

.contact-form-desc {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.68;
  margin-bottom: 28px;
}

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

/* Contact info */
.contact-info,
.contact-info-card {
  background: var(--canvas);
  border: 1px solid var(--border-light);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.contact-section .contact-inner {
  grid-template-columns: 55% 45%;
}

.info-block { display: flex; flex-direction: column; gap: 6px; }

.info-block-label,
.info-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.info-value {
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.5;
}
.info-value a { color: var(--ink); font-weight: 600; }
.info-value a:hover { color: var(--primary); }

.info-note {
  font-size: 12.5px;
  color: var(--muted-light);
  line-height: 1.5;
}

.info-phone-link {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.info-phone-link:hover { color: var(--primary-dark); }

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

.info-card-eyebrow { }
.info-card-h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 30px);
  margin-top: 8px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

/* Hours */
.hours-table, .hours-grid { display: flex; flex-direction: column; gap: 4px; }

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.hours-day, .day {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

.hours-emerg {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Info chips (contact panel) */
.info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.info-chip {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 6px 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

/* Service area pills */
.service-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Socials */
.social-links,
.info-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link,
.social-links a,
.info-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1.5px solid var(--border-light);
  color: var(--muted);
  transition: background 150ms, color 150ms, border-color 150ms;
  text-decoration: none;
}
.social-link:hover,
.social-links a:hover,
.info-socials a:hover {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
  text-decoration: none;
}
.social-links svg, .info-socials svg { width: 18px; height: 18px; }

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

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

.page-header > img:first-of-type,
.page-header-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: brightness(0.55);
}

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

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

.page-header-eyebrow { color: var(--primary); margin-bottom: 12px; }

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

.page-header-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.7);
  margin-top: 14px;
  max-width: 50ch;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
}

.footer-inner,
.footer-grid {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding: clamp(64px, 8vh, 100px) clamp(20px, 4vw, 56px) clamp(48px, 6vh, 72px);
  display: grid;
  grid-template-columns: 28% repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand img { max-height: 48px !important; max-width: 180px !important; width: auto !important; }

.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-tagline, .footer-brand-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  max-width: 28ch;
}

.footer-phone, .footer-email {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.footer-phone a, .footer-email a { color: rgba(255,255,255,0.7); }
.footer-phone a:hover, .footer-email a:hover { color: var(--primary); }

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

.footer-col-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

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

.footer-col a, .footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col a:hover, .footer-links a:hover { color: rgba(255,255,255,0.95); text-decoration: none; }

/* Footer hours */
.footer-hours-list { display: flex; flex-direction: column; gap: 6px; }
.footer-hours-row { display: flex; justify-content: space-between; gap: 16px; }
.footer-hours-day { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-hours-time { font-size: 13px; color: rgba(255,255,255,0.65); }

/* Footer contact items */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: #fff; }

.footer-contact-line {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}
.footer-contact-line a { color: rgba(255,255,255,0.55); }
.footer-contact-line a:hover { color: #fff; }

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

.footer-social a,
.footer-socials a,
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  transition: background 150ms, color 150ms, border-color 150ms;
  text-decoration: none;
}
.footer-social a:hover, .footer-socials a:hover, .footer-social-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  text-decoration: none;
}
.footer-social svg, .footer-socials svg { width: 16px; height: 16px; }

.footer-license { font-size: 11px; color: rgba(255,255,255,0.25); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding: 20px clamp(20px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

address { font-style: normal; }

@media (max-width: 1100px) {
  .footer-inner, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .footer-inner, .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand { grid-column: span 1; }
}

/* ============================================================
   MOBILE CTA PILL
   ============================================================ */
.mobile-call-pill,
.mobile-cta-pill,
.mobile-cta,
.mobile-sticky-call {
  display: none;
}

@media (max-width: 900px) {
  .mobile-call-pill,
  .mobile-cta-pill {
    display: flex !important;
    position: fixed;
    bottom: 18px; right: 18px;
    z-index: 999;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--surface);
    padding: 14px 22px;
    border-radius: 999px;
    box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    text-decoration: none;
  }
  .mobile-call-pill:hover, .mobile-cta-pill:hover { background: var(--primary-dark); text-decoration: none; }
  .mobile-call-pill svg, .mobile-cta-pill svg { width: 18px; height: 18px; }

  .mobile-cta {
    display: flex !important;
    position: fixed;
    bottom: 18px; right: 18px;
    z-index: 999;
    flex-direction: column;
    gap: 0;
  }
  .mobile-cta > a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--surface);
    padding: 14px 22px;
    border-radius: 999px;
    box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
  }
  .mobile-cta a svg { width: 20px; height: 20px; }

  .mobile-sticky-call {
    display: flex !important;
    position: fixed;
    bottom: 18px; right: 18px;
    z-index: 999;
  }
  .mobile-sticky-call a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--surface);
    padding: 14px 22px;
    border-radius: 999px;
    box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
  }
  .mobile-sticky-call a svg { width: 18px; height: 18px; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}
.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger.visible > * { opacity: 1; transform: none; }

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

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

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.section-title { font-size: clamp(36px, 5vw, 80px); margin-top: 10px; }

.bleed { width: 100vw; margin-left: calc(50% - 50vw); }

.alt { }

.featured { }

.reverse { }

.active { }

.visible { }

/* Unsized SVG caps — mandatory */
svg:not([width]):not([height]) { width: 24px; height: 24px; }
.faq-chevron { width: 20px; height: 20px; }
.trust-badge svg { width: 20px; height: 20px; }
.trust-chip svg { width: 14px; height: 14px; }
.footer-social svg, .footer-socials svg, .footer-social-link svg { width: 16px; height: 16px; }
.gallery-card-location svg { width: 12px; height: 12px; }
.social-links svg, .info-socials svg { width: 18px; height: 18px; }
.footer-contact-item svg { width: 16px; height: 16px; }
.mobile-cta svg, .mobile-sticky-call svg, .mobile-call-pill svg, .mobile-cta-pill svg { width: 20px; height: 20px; }
.btn svg, .btn-primary svg, .btn-ghost svg, .btn-outline-light svg { width: 16px; height: 16px; }
.hero-trust-chips svg { width: 13px; height: 13px; }
.footer-socials a svg { width: 16px; height: 16px; }
.nav-cta svg { width: 16px; height: 16px; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.service-block-img { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.btn-primary { grid-column: 1 / -1; }
.gallery-main { grid-column: 1 / -1; }
.gallery-aside { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-feature-photo { grid-column: 1 / -1; }
.service-feature-body { grid-column: 1 / -1; }
.gallery-intro-text { grid-column: 1 / -1; }
.gallery-count { grid-column: 1 / -1; }
.form-field { 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; }
