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

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #E8D33C;
  --primary-dark:   #c9b825;
  --primary-dim:    rgba(232,211,60,0.14);
  --accent:         #3C549C;
  --accent-dark:    #2e4080;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --surface-2:      #EEEAE0;
  --ink:            #141414;
  --ink-mid:        #3a3830;
  --muted:          #6B665C;
  --border:         rgba(20,20,20,0.10);
  --border-primary: rgba(232,211,60,0.55);
  --invert-bg:      #141414;
  --invert-text:    #F7F4ED;
  --radius:         0px;
  --header-height:  72px;
  --section-py:     clamp(96px, 12vh, 180px);
  --container:      1440px;
  --container-md:   1320px;
  --gap:            32px;
  --transition:     200ms ease-out;
}

@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;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

p { line-height: 1.68; }
ul { list-style: none; }
address { font-style: normal; }

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

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

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

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

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

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

.hero-split { display: grid; grid-template-columns: 60% 40%; min-height: 88vh; gap: 0; }
.hero-split-text {
  background: var(--canvas); padding: clamp(48px, 7vw, 96px);
  display: flex; flex-direction: column; justify-content: center; z-index: 2;
}
.hero-split-photo { position: relative; overflow: hidden; background: transparent; }
.hero-split-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-photo { min-height: 60vw; order: -1; }
}

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

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.wide-container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.section-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

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

.top-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-height);
  max-width: var(--container-md);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 28px);
}

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

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 28px;
  align-items: center;
  padding: 0; margin: 0;
}
.nav-pages li { display: flex; align-items: center; }
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Archivo', sans-serif;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-pages a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--primary);
  text-underline-offset: 6px;
}
.nav-pages a[aria-current="page"] {
  color: var(--ink);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--ink) !important;
  padding: 10px 20px;
  border-radius: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  white-space: nowrap;
  transition: filter var(--transition), background var(--transition);
  border: 0;
  cursor: pointer;
}
.nav-cta:hover { filter: brightness(0.92); text-decoration: none !important; color: var(--ink) !important; }
.nav-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-cta span { display: inline; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 12px; }
  .nav-cta svg { width: 20px; height: 20px; }

  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px clamp(16px, 5vw, 32px);
    gap: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 10px 0; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s 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.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; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-outline, .btn-phone,
.btn-service, .btn-service-emergency,
.btn-submit, .btn-banner-primary, .btn-banner-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 18px 32px;
  border-radius: 0;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), filter var(--transition);
  line-height: 1;
  white-space: nowrap;
}

.btn-primary, .btn-banner-primary {
  background: var(--primary);
  color: var(--ink);
  border-color: var(--primary);
}
.btn-primary:hover, .btn-banner-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--ink);
  text-decoration: none;
  filter: brightness(0.94);
}

.btn-outline, .btn-banner-outline {
  background: transparent;
  color: var(--canvas);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover, .btn-banner-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

.btn-phone {
  background: transparent;
  color: var(--canvas);
  border-color: rgba(255,255,255,0.4);
  font-size: 14px;
}
.btn-phone:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.8);
  color: var(--canvas);
  text-decoration: none;
}

.btn-service {
  background: var(--primary);
  color: var(--ink);
  border-color: var(--primary);
  font-size: 14px;
  padding: 14px 24px;
}
.btn-service:hover {
  filter: brightness(0.93);
  text-decoration: none;
  color: var(--ink);
}

.btn-service-emergency {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-size: 14px;
  padding: 14px 24px;
}
.btn-service-emergency:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  text-decoration: none;
  color: #fff;
}

.btn-submit {
  background: var(--primary);
  color: var(--ink);
  border-color: var(--primary);
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 20px 32px;
}
.btn-submit:hover {
  filter: brightness(0.93);
  text-decoration: none;
  color: var(--ink);
}

/* ============================================================
   EYEBROW / LABEL SYSTEM
   ============================================================ */
.section-eyebrow, .hero-eyebrow, .page-header-eyebrow,
.service-block-eyebrow, .gallery-panel-eyebrow, .cta-banner-eyebrow,
.about-eyebrow, .contact-eyebrow, .footer-col-label, .footer-col-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-eyebrow::before, .about-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   HERO
   ============================================================ */
#hero.hero, section#hero.hero {
  min-height: 100svh;
  background: var(--invert-bg);
}

#hero.hero > img, section#hero.hero > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(15%) brightness(0.75);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    175deg,
    rgba(20,20,20,0.28) 0%,
    rgba(20,20,20,0.18) 40%,
    rgba(20,20,20,0.72) 78%,
    rgba(12,10,5,0.90) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(40px, 6vh, 80px) clamp(20px, 4vw, 72px) clamp(56px, 8vh, 96px);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
}
.hero-eyebrow::before { background: var(--primary); }

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

.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: rgba(247,244,237,0.82);
  max-width: 520px;
  margin-bottom: 32px;
  font-weight: 500;
}

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

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

.trust-chip {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.88);
  border: 1px solid var(--border-primary);
  padding: 7px 14px;
  border-radius: 0;
  background: rgba(232,211,60,0.06);
  white-space: nowrap;
}

/* Hero ribbon */
.hero-ribbon {
  position: absolute;
  top: calc(var(--header-height) + 20px);
  right: clamp(16px, 3vw, 40px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(20,20,20,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-primary);
  padding: 10px 16px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--canvas);
}

.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% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(232,211,60,0.5); }
  50% { opacity: 0.9; transform: scale(1.15); box-shadow: 0 0 0 5px rgba(232,211,60,0); }
}

@media (max-width: 640px) {
  .hero-title { max-width: 100%; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline,
  .hero-ctas .btn-banner-primary, .hero-ctas .btn-banner-outline,
  .hero-ctas .btn-phone { width: 100%; justify-content: center; }
  .hero-ribbon { display: none; }
}

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

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

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border-primary);
  padding: 8px 16px;
  background: var(--canvas);
}

.trust-badge-feature {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--ink);
  font-size: 12px;
  padding: 10px 20px;
}

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

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

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

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

.marquee-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
  color: var(--ink);
  flex-shrink: 0;
}

.marquee-sep {
  color: var(--primary);
  font-weight: 900;
  font-size: clamp(13px, 1.4vw, 18px);
  flex-shrink: 0;
}

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

/* ============================================================
   SECTION BASE
   ============================================================ */
section { padding-top: var(--section-py); padding-bottom: var(--section-py); }
section:nth-child(even of .alternating) { background: var(--surface); }

.services { background: var(--canvas); }
#services { background: var(--canvas); }
.trust-strip ~ #services, .trust-strip + div + #services { background: var(--canvas); }
#gallery { background: var(--surface); }
#service-areas { background: var(--canvas); }
#faq { background: var(--surface); }
#team-cta { background: var(--invert-bg); padding: clamp(80px, 10vh, 140px) 0; }
#contact { background: var(--canvas); }

/* ============================================================
   SERVICES — TABBED PANEL
   ============================================================ */
.services .section-inner {
  padding-top: 0;
}

.services .section-eyebrow { margin-bottom: 12px; }

.section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 18ch;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 0;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.service-tab {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 0;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  position: relative;
  bottom: -2px;
  border-bottom: 2px solid transparent;
}
.service-tab:hover {
  color: var(--ink);
  border-bottom-color: rgba(232,211,60,0.5);
}
.service-tab.active {
  color: var(--ink);
  border-bottom: 2px solid var(--primary);
  background: transparent;
}

.services-panels {
  position: relative;
}

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

.service-panel > img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  max-height: none;
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 0;
}

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

.service-panel-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.55;
  display: block;
}

.service-panel-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 4px;
}

.service-panel-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 46ch;
}

.service-panel-title { font-size: clamp(22px, 2.5vw, 36px); }

@media (max-width: 900px) {
  .service-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-panel > img {
    min-height: 56vw;
    max-height: 56vw;
    width: 100%;
  }
}

/* ============================================================
   SERVICES DETAIL PAGE (services.html)
   ============================================================ */
.page-header {
  min-height: clamp(240px, 38vh, 480px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--invert-bg);
}

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

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

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

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

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

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

.services-intro {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
  margin-bottom: clamp(56px, 7vh, 96px);
}
.services-intro h2, .services-intro .section-title {
  font-size: clamp(36px, 5vw, 64px);
  max-width: 16ch;
}
.services-intro p { max-width: 56ch; color: var(--muted); font-size: 17px; margin-top: 14px; }

.service-block {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
  padding-bottom: clamp(64px, 8vh, 112px);
}
.service-block:last-child { padding-bottom: 0; }

.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
}
.service-block-inner.photo-right { direction: ltr; }
.service-block-inner.photo-right .service-block-photo { order: 2; }
.service-block-inner.photo-right .service-block-body { order: 1; }

.service-block-photo {
  position: relative;
  overflow: hidden;
}
.service-block-photo img {
  width: 100%;
  height: clamp(280px, 40vw, 540px);
  object-fit: cover;
  max-height: none;
  display: block;
}

.service-block-body {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-index-numeral {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  opacity: 0.5;
  margin-bottom: -16px;
}

.service-block-body h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
}

.service-block-copy p { color: var(--muted); font-size: 16.5px; line-height: 1.68; margin-bottom: 8px; }

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

@media (max-width: 900px) {
  .service-block-inner,
  .service-block-inner.photo-right {
    grid-template-columns: 1fr;
  }
  .service-block-inner.photo-right .service-block-photo { order: 0; }
  .service-block-inner.photo-right .service-block-body { order: 1; }
}

/* ============================================================
   ABOUT SECTION (index + about.html)
   ============================================================ */
.about-story {
  background: var(--canvas);
  padding: var(--section-py) 0;
  overflow: hidden;
}
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
  align-items: start;
}

/* Magazine-style overlapping photo area */
.about-story-photos {
  position: relative;
  min-height: clamp(340px, 50vw, 640px);
}
.about-story-photos > img {
  width: 78%;
  height: clamp(320px, 44vw, 580px);
  object-fit: cover;
  max-height: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.about-photo-primary {
  width: 78% !important;
  height: clamp(320px, 44vw, 580px) !important;
  object-fit: cover !important;
  max-height: none !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-color-block {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 56%;
  height: 52%;
  background: var(--primary);
  z-index: 0;
}

.about-photo-secondary-text {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: right;
  line-height: 1.6;
}

.about-story-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 16px;
}

.about-story-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  max-width: 14ch;
}

.about-story-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-story-body p { color: var(--ink-mid); font-size: 16.5px; line-height: 1.68; }

.about-pull-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.35;
  color: var(--ink);
  border-left: 4px solid var(--primary);
  padding: 14px 0 14px 24px;
  margin: 8px 0;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-photos { min-height: 72vw; }
}

/* ============================================================
   VALUES (about.html)
   ============================================================ */
.values { background: var(--surface); }
.values-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  background: var(--canvas);
  padding: 32px 28px;
  border-top: 3px solid var(--primary);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.14); }
.value-card-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.value-card h3 {
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.value-card-body { color: var(--muted); font-size: 15px; line-height: 1.62; }

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

/* ============================================================
   TIMELINE (about.html)
   ============================================================ */
.timeline { background: var(--canvas); }
.timeline-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: 20px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.timeline-step {
  position: relative;
  z-index: 1;
}
.timeline-dot {
  width: 40px; height: 40px;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.timeline-dot-inner {
  width: 12px; height: 12px;
  background: var(--primary);
}
.timeline-year {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.timeline-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 8px;
}
.timeline-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

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

/* ============================================================
   CREW (about.html)
   ============================================================ */
.crew { background: var(--surface); }
.crew-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.crew-portrait-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  margin-top: 48px;
  align-items: start;
}
.crew-role {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.crew-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 16px;
}
.crew-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.crew-chip {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border-primary);
  padding: 6px 12px;
  background: var(--canvas);
}
@media (max-width: 640px) { .crew-portrait-layout { grid-template-columns: 1fr; } }

/* ============================================================
   GALLERY SECTION (index.html — feature gallery)
   ============================================================ */
.gallery { background: var(--surface); }
.gallery .section-inner { }

.gallery-header { margin-bottom: 32px; }

.gallery-feature {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
.gallery-feature > img,
.gallery-feature-img {
  width: 100%;
  height: clamp(300px, 50vw, 640px);
  object-fit: cover;
  max-height: none;
  display: block;
}
.gallery-feature-panel {
  background: var(--invert-bg);
  padding: clamp(24px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-feature-panel h3 {
  color: var(--canvas);
  font-size: clamp(22px, 2.5vw, 36px);
}
.gallery-panel-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}
.gallery-panel-body { color: rgba(247,244,237,0.78); font-size: 15px; line-height: 1.62; }
.gallery-cta-link {
  color: var(--primary);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}
.gallery-cta-link:hover { text-decoration: underline; text-decoration-color: var(--primary); color: var(--primary); }

/* Gallery section page (gallery.html) */
.gallery-section { background: var(--surface); padding: var(--section-py) 0; }
.gallery-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.gallery-header-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 24px;
}
.gallery-header-row h2 { flex: 1; font-size: clamp(32px, 4.5vw, 64px); }
.gallery-count {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* Filter row */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-pill {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--canvas);
  border: 1px solid var(--border);
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 0;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.filter-pill.active, .filter-pill:hover {
  background: var(--primary);
  color: var(--ink);
  border-color: var(--primary);
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-card {
  display: flex;
  flex-direction: column;
  background: var(--canvas);
  overflow: hidden;
  border-top: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: inherit;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
  border-top-color: var(--primary);
  text-decoration: none;
  color: inherit;
}

.gallery-card-photo-wrap {
  position: relative;
  overflow: hidden;
}
.gallery-card-photo-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease;
}
.gallery-card:hover .gallery-card-photo-wrap img { transform: scale(1.03); }

.gallery-card-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(20,20,20,0.55) 100%);
  pointer-events: none;
}
.gallery-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--ink);
  padding: 4px 10px;
}
.gallery-card-category {
  position: absolute;
  bottom: 12px; right: 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.9);
}

.gallery-card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gallery-card-body h3 {
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.gallery-card-location {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.04em;
}
.gallery-card-location svg { width: 12px; height: 12px; flex-shrink: 0; }
.gallery-card-meta {
  display: flex; flex-wrap: wrap; gap: 6px;
  list-style: none; padding: 0; margin-top: 4px;
}
.meta-chip {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 8px;
  background: var(--surface);
}

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

/* ============================================================
   CREDENTIALS
   ============================================================ */
.credentials { background: var(--canvas); }
.credentials-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.cred-card {
  background: var(--surface);
  padding: 32px 28px;
  border-top: 3px solid var(--primary);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.cred-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.14); }
.cred-card h3 { font-size: 20px; margin-bottom: 8px; letter-spacing: -0.01em; }
.cred-card-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.cred-card-detail { font-size: 13px; color: var(--muted); margin-top: 4px; }
.cred-badge {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Archivo', monospace;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: var(--primary);
  padding: 5px 12px;
}
@media (max-width: 900px) { .credentials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .credentials-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
#service-areas, .service-areas { background: var(--canvas); }
.service-areas-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.areas-intro { color: var(--muted); font-size: 17px; max-width: 48ch; margin-top: 12px; }
.areas-grid, .areas-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.area-chip, .area-pill, .service-area-pill {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border-primary);
  padding: 8px 16px;
  background: var(--canvas);
  cursor: default;
}

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

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--surface); }
.faq-list {
  margin-top: 40px;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq-item > summary {
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 20px;
  transition: color var(--transition);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--ink); }
.faq-item[open] > summary { color: var(--ink); }

.faq-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  background: var(--canvas);
  flex-shrink: 0;
  font-style: normal;
  font-size: 18px;
  font-weight: 300;
  transition: transform 200ms, background var(--transition), border-color var(--transition);
  line-height: 1;
}
.faq-chevron::after { content: '+'; }
.faq-item[open] .faq-chevron {
  transform: rotate(45deg);
  background: var(--primary);
  border-color: var(--primary);
}

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

/* ============================================================
   TEAM CTA (index.html inverted band)
   ============================================================ */
#team-cta { background: var(--invert-bg); }
.team-cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.team-cta-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--canvas);
  max-width: 16ch;
}
.team-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
}
.team-cta-link:hover { color: var(--primary); text-decoration: none; border-bottom-color: var(--primary-dark); }

/* ============================================================
   CTA BANNER (services.html, gallery.html, about.html)
   ============================================================ */
.cta-banner {
  background: var(--invert-bg);
  padding: clamp(80px, 10vh, 140px) 0;
}
.cta-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.cta-banner-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex; align-items: center; gap: 10px;
}
.cta-banner-eyebrow::before {
  content: ''; display: inline-block; width: 20px; height: 2px; background: var(--primary);
}
.cta-banner-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.96;
  color: var(--canvas);
  max-width: 16ch;
}
.cta-banner-headline span { color: var(--primary); }
.cta-banner-sub, .cta-banner-text p {
  color: rgba(247,244,237,0.75);
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 52ch;
  line-height: 1.6;
}
.cta-banner-meta { color: rgba(247,244,237,0.6); font-size: 14px; }
.cta-banner-phone, .cta-phone-big {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.cta-phone-big:hover { text-decoration: none; color: var(--primary-dark); }
.cta-banner-btns, .cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact { background: var(--canvas); }
.contact-section { background: var(--canvas); padding: var(--section-py) 0; }
.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

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

.contact-form-col { display: flex; flex-direction: column; gap: 0; }
.contact-intro { color: var(--muted); font-size: 16px; margin-bottom: 28px; line-height: 1.6; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-field, .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label, label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.form-input, .form-textarea, input, textarea, select {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 0;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus, .form-textarea:focus, input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
}
.form-textarea, textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.form-full { grid-column: 1 / -1; }
.form-submit { margin-top: 8px; }

.contact-info, .contact-info-card {
  background: var(--surface);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label, .info-card-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
}
.contact-info-value, .info-card-value {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.contact-info-value a, .info-card-value a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}
.contact-info-value a:hover, .info-card-value a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--primary);
}
.contact-hours-row { display: flex; gap: 16px; margin-bottom: 4px; }
.contact-hours-day, .day { font-weight: 600; color: var(--ink); min-width: 90px; }

.info-divider { height: 1px; background: var(--border); margin: 4px 0; }
.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; }
.hours-emergency {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
}

.service-area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.footer-creds { display: flex; flex-direction: column; gap: 6px; }
.footer-cred { font-size: 13px; color: var(--muted); line-height: 1.5; }

.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--canvas);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none;
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--ink);
  text-decoration: none;
}

.free-estimate-badge {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  padding: 16px 24px;
  gap: 10px;
}
.free-estimate-badge svg { width: 24px; height: 24px; }

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer, footer {
  background: var(--invert-bg);
  color: rgba(247,244,237,0.75);
  padding: clamp(64px, 8vh, 112px) 0 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

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

.footer-brand, .footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-brand img, .footer-brand-col img {
  max-height: 40px !important;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline, .footer-brand-tagline {
  font-size: 14px;
  color: rgba(247,244,237,0.6);
  line-height: 1.6;
  max-width: 32ch;
}
.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--canvas);
  letter-spacing: -0.01em;
}
.footer-brand-desc { font-size: 14px; color: rgba(247,244,237,0.6); line-height: 1.6; }

.footer-contact-block, .footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-line, .footer-contact-list li {
  font-size: 14px;
  color: rgba(247,244,237,0.7);
}
.footer-contact-line a, .footer-contact-list a {
  color: rgba(247,244,237,0.85);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.footer-contact-line a:hover, .footer-contact-list a:hover {
  color: var(--primary); text-decoration: none;
}

.footer-socials, .footer-social-links, .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.footer-social-link, .footer-social a {
  display: flex;
  align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(247,244,237,0.7);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.footer-social-link svg, .footer-social a svg { width: 14px; height: 14px; }
.footer-social-link:hover, .footer-social a:hover {
  background: var(--primary); border-color: var(--primary); color: var(--ink);
  text-decoration: none;
}

.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col-title, .footer-col-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.45);
  display: block;
  margin-bottom: 4px;
}
.footer-col-list, .footer-nav-list, .footer-links {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-col-list a, .footer-nav-list a, .footer-links a {
  font-size: 14px;
  color: rgba(247,244,237,0.72);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col-list a:hover, .footer-nav-list a:hover, .footer-links a:hover {
  color: var(--primary); text-decoration: none;
}

.footer-address {
  font-size: 14px;
  color: rgba(247,244,237,0.6);
  line-height: 1.75;
}
.footer-address a { color: rgba(247,244,237,0.72); }
.footer-address a:hover { color: var(--primary); text-decoration: none; }

.footer-hours-block, .footer-hours-list {
  font-size: 13px;
  color: rgba(247,244,237,0.6);
  line-height: 1.75;
  list-style: none; padding: 0;
}
.footer-hours-list li { display: flex; gap: 8px; justify-content: space-between; }
.footer-hours-list li span:first-child { color: rgba(247,244,237,0.5); }
.footer-trust-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.footer-trust-list li { font-size: 13px; color: rgba(247,244,237,0.6); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
}

.footer-copy, .footer-bottom p, .footer-bottom-copy {
  font-size: 13px;
  color: rgba(247,244,237,0.35);
}

.footer-cert-row, .footer-cred-chip, .footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.footer-cert, .footer-badge, .footer-cert-badge, .footer-cred-chip {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
}
.footer-certs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }

@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 CALL PILL + STICKY CTA
   ============================================================ */
.mobile-call-pill, .mobile-cta-sticky {
  display: flex;
  align-items: center;
  gap: 10px;
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter var(--transition), transform var(--transition);
  white-space: nowrap;
}
.mobile-call-pill svg, .mobile-cta-sticky svg {
  width: 20px; height: 20px; flex-shrink: 0;
}
.mobile-call-pill:hover, .mobile-cta-sticky:hover {
  filter: brightness(0.93); transform: scale(1.03);
  text-decoration: none; color: var(--ink);
}

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

/* ============================================================
   REVIEW / STAT / PROCESS PATTERNS (utility)
   ============================================================ */
.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 { 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; font-family: 'Archivo Black', sans-serif; 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; font-family: 'Archivo', sans-serif; font-weight: 700; }

.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; font-family: 'Archivo', sans-serif; }

/* Table cell contrast safety */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--invert-bg); color: var(--canvas);
}

/* ============================================================
   MISC / SUPPRESSED PATTERNS
   ============================================================ */
/* No mirror transforms */
.flip { order: 2; }

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

/* SVG caps throughout */
svg { max-width: 100%; }
.faq-chevron svg,
.gallery-card-location svg,
.btn svg, .nav-cta svg,
.footer-social-link svg, .social-link svg,
.contact-info-value svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .services-tabs { border-bottom: 1px solid var(--border); }
  .gallery-feature { grid-template-columns: 1fr; }
  .gallery-feature > img, .gallery-feature-img { max-height: 60vw; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .trust-strip-inner { justify-content: flex-start; }
  .service-block-body h2 { font-size: clamp(26px, 7vw, 40px); }
  .cta-banner-btns, .cta-banner-actions { flex-direction: column; }
  .cta-banner-btns a, .cta-banner-actions a { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-feature-img { grid-column: 1 / -1; }
.gallery-feature-panel { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.footer-brand-col { grid-column: 1 / -1; }
.day { grid-column: 1 / -1; }
