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

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #C4A435;
  --primary-dark:   #A88C27;
  --primary-light:  #D9BB5A;
  --primary-dim:    rgba(196, 164, 53, 0.12);
  --accent:         #54365A;
  --accent-dark:    #3C2540;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --surface-2:      #EDE9DF;
  --ink:            #141414;
  --ink-mid:        #2A2A2A;
  --muted:          #6B665C;
  --border:         rgba(196, 164, 53, 0.25);
  --border-light:   rgba(20, 20, 20, 0.08);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:      0 8px 28px rgba(0,0,0,0.10);
  --shadow-lg:      0 18px 48px rgba(0,0,0,0.14);
  --header-height:  72px;
  --radius:         0;
  --section-py:     clamp(96px, 12vh, 180px);
  --content-max:    1440px;
  --content-wide:   1200px;
  --font-display:   'Archivo Black', sans-serif;
  --font-label:     'Archivo', sans-serif;
  --font-body:      'Inter Tight', sans-serif;
  --font-pull:      'Fraunces', serif;
}

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

/* ============================================================
   GLOBAL 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: var(--font-body);
  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: 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;
}

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

/* Anchors */
a { color: inherit; transition: color 150ms; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* Lists */
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 { font-size: clamp(40px, 7vw, 100px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.5vw, 36px); }
h4 { font-size: clamp(16px, 1.6vw, 22px); font-weight: 700; letter-spacing: -0.01em; }

p { margin-bottom: 0; }

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

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

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

.bleed { width: 100%; }
.surface { background: var(--surface); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: filter 180ms ease, transform 150ms ease, background 180ms, color 180ms, border-color 180ms;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-primary, .btn.btn-primary {
  background: var(--primary);
  color: var(--ink);
  border-color: var(--primary);
}
.btn-primary:hover { filter: brightness(0.92); color: var(--ink); }

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

.btn-outline-light, .btn.btn-outline-light {
  background: transparent;
  color: var(--canvas);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: var(--canvas); color: var(--ink); }

.btn-canvas {
  background: var(--canvas);
  color: var(--ink);
  border-color: var(--canvas);
}
.btn-canvas:hover { background: var(--surface); }

.btn-phone {
  background: transparent;
  color: var(--canvas);
  border-color: rgba(255,255,255,0.4);
  gap: 10px;
}
.btn-phone:hover { background: rgba(255,255,255,0.12); color: var(--canvas); }

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up    { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.scale-in   { opacity: 0; transform: scale(0.94); transition: opacity 0.55s ease, transform 0.55s ease; }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

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

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

.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo:hover { color: inherit; text-decoration: none; }

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

.nav-pages li { list-style: none; }

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 150ms, border-color 150ms;
}
.nav-pages a:hover { color: var(--primary); border-bottom-color: var(--primary); text-decoration: none; }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom-color: var(--primary); }

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--ink);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 180ms;
}
.nav-cta:hover { filter: brightness(0.9); color: var(--ink); text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

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

@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 15px; padding: 10px 0; }
  .nav-cta span { display: none; }
}

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

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10,8,5,0.18) 0%,
    rgba(10,8,5,0.35) 50%,
    rgba(10,6,0,0.78) 85%,
    rgba(6,4,0,0.88) 100%
  );
}

.hero-inner {
  padding: clamp(40px, 8vh, 80px) clamp(24px, 5vw, 80px);
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  max-width: 54ch;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.hero-trust-chips .trust-chip {
  background: rgba(255,255,255,0.09);
  border-color: rgba(196,164,53,0.5);
  color: rgba(255,255,255,0.9);
}

.hero-ribbon {
  position: absolute;
  top: calc(var(--header-height) + 20px);
  right: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(20,20,20,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196,164,53,0.4);
  padding: 10px 16px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--canvas);
}

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

@media (max-width: 640px) {
  .hero { min-height: 88vh; }
  .hero-ribbon { top: calc(var(--header-height) + 12px); right: 16px; font-size: 10px; padding: 8px 12px; }
}

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

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 0;
  white-space: nowrap;
  background: transparent;
}

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

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

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

.marquee-item {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 48px;
  line-height: 1.2;
}
.marquee-item::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  flex-shrink: 0;
}

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

/* ============================================================
   SECTION EYEBROW / HEADER
   ============================================================ */
.section-eyebrow {
  font-family: var(--font-label);
  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 {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.section-header {
  margin-bottom: clamp(40px, 6vh, 72px);
}

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

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

.services-header {
  margin-bottom: 40px;
}
.services-header .section-eyebrow { margin-bottom: 12px; }
.services-header h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.service-tab {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 10px 20px;
  border-radius: 0;
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
  white-space: nowrap;
}
.service-tab:hover { color: var(--ink); border-color: var(--ink); }
.service-tab.active {
  background: var(--primary);
  color: var(--ink);
  border-color: var(--primary);
}

.services-panels { position: relative; }

.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0;
  min-height: 480px;
  border: 1px solid var(--border-light);
}
.service-panel.active { display: grid; }

.service-panel-img {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.service-panel-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

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

.service-panel-body h3 {
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: -0.025em;
  line-height: 1.0;
}

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

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

@media (max-width: 900px) {
  .service-panel { grid-template-columns: 1fr; min-height: auto; }
  .service-panel-img { min-height: 260px; }
  .service-panel-img img { position: absolute; max-height: none; }
}

/* ============================================================
   SERVICE FEATURES (services.html detail rows)
   ============================================================ */
.services-list { display: block; }

.service-feature-wrap {
  padding-block: clamp(64px, 8vh, 120px);
}
.service-feature-wrap.surface { background: var(--surface); }

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

.service-feature:nth-child(odd) .service-feature-photo { order: 1; }
.service-feature:nth-child(odd) .service-feature-body { order: 2; }

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

.service-feature-photo-num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--canvas);
  background: var(--primary);
  padding: 4px 10px;
  line-height: 1.2;
}

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

.service-feature-body h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.service-feature-body p {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.service-feature-body .btn { margin-top: 12px; }

@media (max-width: 900px) {
  .service-feature { grid-template-columns: 1fr; }
  .service-feature:nth-child(odd) .service-feature-photo { order: -1; }
  .service-feature:nth-child(odd) .service-feature-body { order: 1; }
}

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

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

.gallery-header { margin-bottom: clamp(36px, 5vh, 64px); }
.gallery-header .section-eyebrow { margin-bottom: 12px; }

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

.gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 600ms ease, filter 400ms ease;
  filter: grayscale(15%);
}
.gallery-item:hover img { transform: scale(1.04); filter: grayscale(0%); }

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

/* ============================================================
   GALLERY PAGE — header / filters / project grid
   ============================================================ */
.gallery-header[class~="gallery-header"] {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,5,0.2), rgba(10,6,0,0.78));
  z-index: 1;
}

.gallery-header-inner {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 6vh, 72px) clamp(24px, 5vw, 72px);
}

.gallery-header-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.gallery-header-sub {
  color: rgba(255,255,255,0.8);
  font-size: clamp(15px, 1.4vw, 18px);
  margin-top: 10px;
}

.gallery-section { background: var(--canvas); padding-block: var(--section-py); }
.gallery-section-header { margin-bottom: clamp(32px, 5vh, 56px); }
.gallery-section-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.gallery-section-title { font-size: clamp(36px, 5vw, 72px); letter-spacing: -0.03em; margin-bottom: 16px; }
.gallery-section-desc { color: var(--muted); font-size: 16px; max-width: 60ch; }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.filter-pill {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 8px 18px;
  cursor: pointer;
  border-radius: 0;
  transition: background 180ms, color 180ms, border-color 180ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--ink);
  color: var(--canvas);
  border-color: var(--ink);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  text-decoration: none;
  background: var(--surface);
}
.project-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 600ms ease, filter 400ms ease;
  filter: grayscale(15%);
}
.project-card:hover img { transform: scale(1.04); filter: grayscale(0%); }

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.88) 0%, rgba(10,8,5,0) 55%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  opacity: 0;
  transition: opacity 300ms;
}
.project-card:hover .project-card-overlay { opacity: 1; }

.project-card-overlay h3 { color: var(--canvas); font-size: 18px; }
.project-card-tag {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}
.project-card-location {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 4px;
}
.project-card-location svg { width: 12px; height: 12px; }

@media (max-width: 900px) {
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card.featured { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/7; }
}
@media (max-width: 640px) {
  .project-grid { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: span 1; aspect-ratio: 4/3; }
}

/* Showcase cards */
.service-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  aspect-ratio: 3/4;
  background: var(--surface);
}
.showcase-card.wide { aspect-ratio: auto; }

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms ease;
}
.showcase-card:hover img { transform: scale(1.04); }

.showcase-card-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.9) 0%, rgba(10,8,5,0) 60%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}

.showcase-card-index {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
}
.showcase-card-tag {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.showcase-card-body h3 { color: var(--canvas); font-size: clamp(16px, 1.8vw, 22px); margin-bottom: 4px; }
.showcase-card-desc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }

@media (max-width: 900px) {
  .service-showcase { grid-template-columns: 1fr 1fr; }
  .showcase-card.wide { grid-column: span 2; }
}

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

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

.service-areas-inner .section-eyebrow { margin-bottom: 12px; }
.service-areas-inner h2 { font-size: clamp(32px, 4vw, 60px); margin-bottom: 20px; }
.service-areas-inner > div:first-child > p { color: var(--muted); margin-bottom: 24px; }

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

.area-chip {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 0;
  background: transparent;
}

.service-areas-strip {
  background: var(--ink);
  padding: 18px 0;
  overflow: hidden;
}

.service-areas-inner[class~="service-areas-inner"] .service-areas-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-right: 20px;
  flex-shrink: 0;
}

.areas-guarantee {
  background: var(--canvas);
  border: 1px solid var(--border);
  padding: clamp(24px, 3vw, 48px);
}
.areas-guarantee h3 { margin-bottom: 16px; font-size: clamp(20px, 2vw, 30px); }
.areas-guarantee p { color: var(--muted); margin-bottom: 20px; }

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

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

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

.faq-header { margin-bottom: clamp(32px, 5vh, 56px); }

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

.faq-list details summary {
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}
.faq-list details summary::-webkit-details-marker { display: none; }
.faq-list details summary::after {
  content: '+';
  font-family: var(--font-label);
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 200ms, color 200ms;
}
.faq-list details[open] > summary::after { transform: rotate(45deg); color: var(--primary); }

.faq-answer {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  max-width: 70ch;
  padding-right: 32px;
}

/* ============================================================
   TEAM CTA BAND
   ============================================================ */
.team-cta {
  background: var(--ink);
  padding-block: clamp(64px, 8vh, 120px);
}

.team-cta-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.team-cta-inner h2 { color: var(--canvas); font-size: clamp(28px, 4vw, 56px); }
.team-cta-inner p { color: rgba(255,255,255,0.65); margin-top: 12px; font-size: 16px; }
.team-cta-inner a.btn { flex-shrink: 0; }

@media (max-width: 768px) {
  .team-cta-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  padding-block: clamp(64px, 8vh, 120px);
}

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

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

.cta-banner-eyebrow {
  font-family: var(--font-label);
  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: '';
  width: 16px; height: 2px;
  background: var(--primary);
  display: inline-block;
}

.cta-banner-headline { color: var(--canvas); font-size: clamp(28px, 4vw, 56px); }
.cta-banner-sub { color: rgba(255,255,255,0.65); font-size: 16px; }
.cta-banner-phone { color: var(--primary); font-size: 20px; font-weight: 700; }

.cta-banner-actions, .cta-btn-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.cta-phone-link {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.cta-phone-link:hover { color: var(--primary-light); text-decoration: none; }

@media (max-width: 768px) {
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-banner-actions, .cta-btn-pair { justify-content: flex-start; }
}

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

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

.contact-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact-form h2,
.contact-form-wrap h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  margin-bottom: 8px;
}

.contact-form-eyebrow, .section-eyebrow + h2 { margin-bottom: 32px; }

/* Form styles */
.form-group {
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
  margin-bottom: 20px;
}

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

.form-group label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border-light);
  padding: 14px 16px;
  border-radius: 0;
  transition: border-color 180ms;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); }

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

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--ink);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 36px;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: filter 180ms;
  margin-top: 8px;
}
.form-submit:hover { filter: brightness(0.9); }
.form-submit svg { width: 16px; height: 16px; }

/* Contact info column */
.contact-info h3 { font-size: clamp(20px, 2.5vw, 32px); margin-bottom: 28px; }

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}
.contact-detail:last-of-type { border-bottom: none; }

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--primary); }

.contact-detail-body span {
  display: block;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-detail-body a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.contact-detail-body p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* contact.html card variant */
.contact-form-wrap { display: flex; flex-direction: column; gap: 0; }

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-card-eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
}

.info-block-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.info-block-value {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.info-block-value a { color: var(--ink); }
.info-block-value a:hover { color: var(--primary); }

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

.bbb-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
}
.bbb-badge-icon { width: 36px; height: 36px; }
.bbb-badge-icon svg { width: 36px; height: 36px; color: var(--primary); }
.bbb-badge-text { font-size: 13px; color: var(--muted); line-height: 1.4; }
.bbb-badge-text strong { color: var(--ink); }

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-light);
  color: var(--muted);
  text-decoration: none;
  transition: background 180ms, color 180ms, border-color 180ms;
}
.social-link:hover { background: var(--primary); color: var(--ink); border-color: var(--primary); text-decoration: none; }
.social-link svg { width: 18px; height: 18px; }

/* Guarantee strip */
.guarantee-strip {
  background: var(--primary);
  padding: 16px 0;
}
.guarantee-strip-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.guarantee-strip-text {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.guarantee-sep { width: 1px; height: 14px; background: rgba(20,20,20,0.3); }
.guarantee-strip-sub { font-size: 13px; color: rgba(20,20,20,0.7); font-weight: 500; }

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,5,0.25), rgba(10,6,0,0.80));
  z-index: 1;
}

.page-header-inner {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 6vh, 72px) clamp(24px, 5vw, 72px);
  max-width: 800px;
}

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

.page-header-title {
  font-size: clamp(36px, 6vw, 96px);
  letter-spacing: -0.03em;
  line-height: 0.96;
  color: var(--canvas);
}

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

/* ============================================================
   ABOUT — story + magazine layout
   ============================================================ */
.about-story {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.about-story-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}

.about-story-media {
  position: relative;
}
.about-story-media img {
  width: 100%;
  object-fit: cover;
  max-height: 600px;
}

.about-story-text .section-eyebrow { margin-bottom: 16px; }

.about-story-body h2 { font-size: clamp(28px, 3.5vw, 52px); margin-bottom: 24px; }
.about-story-body p { color: var(--muted); font-size: 16.5px; line-height: 1.72; margin-bottom: 16px; }

.pull-quote {
  font-family: var(--font-pull);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--ink);
  border-left: 3px solid var(--primary);
  padding-left: 24px;
  margin: 28px 0;
}

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

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

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

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

.value-card {
  background: var(--canvas);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--border-light);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); }

.value-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.value-title {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--ink);
}

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

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

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

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

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

.timeline-step {
  padding: clamp(20px, 2.5vw, 36px);
  background: var(--surface);
  border: 1px solid var(--border-light);
  position: relative;
}

.timeline-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.timeline-dot svg { width: 18px; height: 18px; color: var(--ink); }

.timeline-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-step h3 { font-size: clamp(16px, 1.6vw, 22px); margin-bottom: 10px; }
.timeline-body { font-size: 14px; color: var(--muted); line-height: 1.6; }
.timeline-heading { font-size: clamp(16px, 1.6vw, 22px); }

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

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

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

.crew-inner .section-eyebrow { margin-bottom: 40px; }

.crew-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  margin-bottom: 32px;
}
.crew-photo-row > img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  max-height: 560px;
}

.crew-main-photo {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  max-height: 560px;
}

.crew-side-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}
.crew-side-stack > div {
  border-left: 2px solid var(--primary);
  padding-left: 16px;
}
.crew-side-stack p:first-child { font-weight: 700; font-size: 15px; color: var(--ink); }
.crew-side-stack p:nth-child(2) { font-size: 13px; color: var(--primary); font-weight: 600; letter-spacing: 0.06em; }
.crew-side-stack p:last-child { font-size: 13px; color: var(--muted); }

.crew-tagline {
  font-family: var(--font-pull);
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--muted);
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .crew-photo-row { grid-template-columns: 1fr; }
}

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

.about-section-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.about-text-col .section-eyebrow { margin-bottom: 16px; }
.about-text-col h2 { font-size: clamp(28px, 3.5vw, 52px); margin-bottom: 20px; }
.about-text-col p { color: var(--muted); font-size: 16.5px; line-height: 1.72; margin-bottom: 16px; }
.about-text-col .btn { margin-top: 8px; }

.about-image-col {
  position: relative;
}
.about-image-col img {
  width: 100%;
  object-fit: cover;
  max-height: 580px;
}

.about-portrait-main, .about-portrait-img {
  width: 100%;
  object-fit: cover;
  max-height: 580px;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 40%;
  background: var(--primary);
  z-index: -1;
}

@media (max-width: 900px) {
  .about-section-inner { grid-template-columns: 1fr; }
  .about-image-accent { display: none; }
}

/* ============================================================
   SERVICE AREAS STRIP (about page)
   ============================================================ */
.service-areas-strip {
  background: var(--ink);
  padding: 18px 0;
  overflow: hidden;
}

.service-areas-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.service-areas-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-right: 12px;
  flex-shrink: 0;
}

.service-areas-strip .area-chip {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.15);
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.stat-label {
  font-family: var(--font-label);
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   PROCESS STRIP
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.process-step {
  padding: 24px;
  border: 1px solid var(--border);
}

.step-num {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

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

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

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

.footer-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(56px, 8vh, 96px) clamp(20px, 4vw, 56px) 0;
}

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

.footer-brand p { font-size: 14px; line-height: 1.65; margin-top: 14px; color: rgba(255,255,255,0.55); }

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--canvas);
  letter-spacing: -0.02em;
  margin-top: 10px;
}

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

.footer-col h4, .footer-col-title {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--canvas);
  margin-bottom: 18px;
}

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

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

.footer-col li { font-size: 14px; color: rgba(255,255,255,0.5); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); display: block; margin-bottom: 2px; }
.footer-contact-val { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-contact-val a { color: rgba(255,255,255,0.7); }
.footer-contact-val a:hover { color: var(--primary); text-decoration: none; }
.footer-contact-line { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-line > div { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-contact-line a { color: rgba(255,255,255,0.7); }
.footer-contact-line a:hover { color: var(--primary); text-decoration: none; }
.footer-contact-line strong { display: block; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 700; margin-bottom: 2px; }
.footer-contact-line span { font-size: 13px; color: rgba(255,255,255,0.6); }

.footer-social, .social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer-social a { color: rgba(255,255,255,0.5); width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; transition: background 180ms, color 180ms, border-color 180ms; }
.footer-social a:hover { background: var(--primary); color: var(--ink); border-color: var(--primary); text-decoration: none; }
.footer-social svg { width: 16px; height: 16px; }
.footer-logo { max-height: 40px; width: auto; }

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

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom p, .footer-bottom span:first-child { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom span:last-child { font-size: 12px; color: rgba(255,255,255,0.35); }

.footer-badges, .footer-bottom-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-badge, .footer-trust-chip {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 10px;
}

.footer-rating-chip {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px;
}

.footer-phone { color: var(--primary); font-weight: 700; }

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

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

/* ============================================================
   TABLES (readability rule — thead/tbody contrast)
   ============================================================ */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price { background: var(--ink); color: var(--canvas); }

.services-table tbody .col-service,
.services-table tbody .col-desc,
.services-table tbody .col-timeline,
.services-table tbody .col-price { background: var(--canvas); color: var(--ink); }

/* ============================================================
   MISCELLANEOUS UTILITY
   ============================================================ */
.featured { grid-column: span 2; }

/* SVG cap */
svg { display: block; }
.contact-icon svg,
.timeline-dot svg,
.footer-contact-item svg,
.footer-social svg,
.social-link svg,
.bbb-badge-icon svg,
.project-card-location svg { max-width: 24px; max-height: 24px; }

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

/* ============================================================
   RESPONSIVE — final adjustments
   ============================================================ */
@media (max-width: 640px) {
  .hero-inner { padding: clamp(32px, 6vh, 56px) 20px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 10px; padding: 8px 14px; }
  .service-areas-inner { padding-inline: 20px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.delay-1 { grid-column: 1 / -1; }
.delay-2 { grid-column: 1 / -1; }
.delay-3 { grid-column: 1 / -1; }
.delay-4 { grid-column: 1 / -1; }
.delay-5 { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-phone-link { grid-column: 1 / -1; }
.cta-btn-pair { grid-column: 1 / -1; }
.project-card { grid-column: 1 / -1; }
.showcase-card { grid-column: 1 / -1; }
.service-areas-label { grid-column: 1 / -1; }
.area-chip { grid-column: 1 / -1; }
.crew-main-photo { grid-column: 1 / -1; }
.crew-side-stack { grid-column: 1 / -1; }
.cta-banner-headline { grid-column: 1 / -1; }
.cta-banner-sub { grid-column: 1 / -1; }
.cta-banner-phone { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
