@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&family=IBM+Plex+Sans:ital,wght@0,400;0,450;0,500;0,600;1,400&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:       #F4C40C;
  --primary-dark:  #d4a80a;
  --accent:        #7E6505;
  --ink:           #14181D;
  --ink-mid:       #2c333c;
  --muted:         #5C6068;
  --canvas:        #F7F6F2;
  --surface:       #FFFFFF;
  --border:        rgba(20,24,29,0.10);
  --border-brand:  rgba(244,196,12,0.55);
  --shadow-sm:     0 2px 8px rgba(20,24,29,0.08);
  --shadow-md:     0 8px 28px rgba(20,24,29,0.12);
  --shadow-lg:     0 18px 52px rgba(20,24,29,0.18);
  --radius:        4px;
  --radius-lg:     8px;
  --font-display:  'Archivo', sans-serif;
  --font-body:     'IBM Plex Sans', sans-serif;
  --font-mono:     'IBM Plex Mono', monospace;
  --header-height: 72px;
  --section-py:    clamp(80px, 10vh, 128px);
  --max-w:         1320px;
}
@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);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

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

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

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; 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; object-position: center 30%; z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

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

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

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

ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

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

.wide-container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.sec {
  padding-block: var(--section-py);
}

.eyebrow, .section-eyebrow, .page-header-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.disp, .section-title, .section-headline {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

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

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

.top-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 clamp(20px, 4vw, 60px);
  height: var(--header-height);
}

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

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.nav-pages ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-pages li { list-style: none; }
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: var(--ink); text-decoration: none; }
.nav-phone-text { display: inline; }
.nav-phone-icon { display: none; }
.nav-phone-icon svg, .nav-cta-icon { width: 18px; height: 18px; }

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

@media (max-width: 900px) {
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px clamp(20px, 5vw, 60px);
    gap: 8px;
    border-bottom: 1px solid rgba(20,24,29,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages ul { flex-direction: column; width: 100%; gap: 0; }
  .nav-pages li { width: 100%; }
  .nav-pages a { display: block; padding: 12px 0; font-size: 17px; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .nav-phone-text { display: none; }
  .nav-phone-icon { display: flex; align-items: center; }
  .nav-cta { padding: 10px; }
}

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

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%; z-index: 0;
}

.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(20,24,29,0.72) 0%,
    rgba(20,24,29,0.55) 60%,
    rgba(20,24,29,0.35) 100%
  );
  z-index: 1;
}

/* Brand-color hairline at bottom of hero */
.hero-ribbon {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  z-index: 3;
}

.hero-inner {
  padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 80px) clamp(64px, 9vh, 100px);
  max-width: calc(var(--max-w) + 120px);
  margin-inline: auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--surface);
  max-width: 18ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  color: rgba(247,246,242,0.78);
  max-width: 52ch;
  margin-bottom: 36px;
}

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

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

.h-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(247,246,242,0.08);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--surface);
  backdrop-filter: blur(4px);
}

@media (max-width: 640px) {
  #hero.hero { min-height: 100svh; }
  .hero-title { font-size: clamp(42px, 11vw, 72px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: filter 160ms, box-shadow 160ms, transform 160ms;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary, .btn-service, .c-submit, .form-submit {
  background: var(--primary);
  color: var(--ink);
  border-color: var(--primary);
}
.btn-primary:hover, .btn-service:hover, .c-submit:hover, .form-submit:hover {
  filter: brightness(0.90);
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(244,196,12,0.35);
}

.btn-outline, .btn-ghost {
  background: transparent;
  color: var(--surface);
  border-color: rgba(247,246,242,0.5);
}
.btn-outline:hover, .btn-ghost:hover {
  background: rgba(247,246,242,0.10);
  color: var(--surface);
  text-decoration: none;
}

.btn-dark {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--ink-mid);
  color: var(--surface);
  text-decoration: none;
  transform: translateY(-1px);
}

/* Banner buttons */
.btn-primary-banner, .btn-banner-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--primary);
  color: var(--ink);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--primary);
  transition: filter 160ms, transform 160ms;
}
.btn-primary-banner:hover, .btn-banner-primary:hover {
  filter: brightness(0.90); color: var(--ink); text-decoration: none; transform: translateY(-1px);
}
.btn-primary-banner svg, .btn-banner-primary svg { width: 18px; height: 18px; }

.btn-phone-banner, .btn-banner-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: transparent;
  color: var(--surface);
  border: 2px solid rgba(247,246,242,0.5);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 160ms, border-color 160ms;
}
.btn-phone-banner:hover, .btn-banner-outline:hover {
  background: rgba(247,246,242,0.10); color: var(--surface); text-decoration: none;
}
.btn-phone-banner svg, .btn-banner-outline svg { width: 18px; height: 18px; }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  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;
}

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

.m-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.m-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

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

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

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

.trust-chip, .t-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.trust-chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.t-badge-ic, .t-badge svg {
  width: 20px; height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES BENTO
   ============================================================ */
#services.sec { background: var(--canvas); }

.svc-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.svc-header h2 { font-size: clamp(36px, 5vw, 68px); }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--primary);
  transition: color 150ms;
}
.link-more:hover { color: var(--primary); text-decoration: none; }
.link-more svg { width: 14px; height: 14px; }

/* Bento grid: 6 cards — 3 col layout, first card spans 2 rows */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.s-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  text-decoration: none;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  border-top: 3px solid transparent;
}
.s-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary);
  text-decoration: none;
}

/* First card spans 2 rows */
.s-card-flag {
  grid-row: span 2;
}

.s-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.s-card-flag .s-img { height: 320px; }

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

.s-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,24,29,0.55) 0%, transparent 60%);
}

.s-body {
  padding: 20px 22px 22px;
}

.s-idx {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.s-body h3, .s-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}

.s-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.s-lrn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.s-lrn svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .s-card-flag { grid-row: span 1; }
  .s-card-flag .s-img { height: 220px; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICE BAND
   ============================================================ */
.price-band {
  background: var(--ink);
  padding: 48px 0;
}

.price-band-in, .price-band-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.price-band-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.price-band-text, .price-copy {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--surface);
  line-height: 1.1;
}

.price-sub {
  font-size: 14px;
  color: rgba(247,246,242,0.65);
  margin-top: 6px;
}

@media (max-width: 640px) {
  .price-band-in, .price-band-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery.sec { background: var(--canvas); }

.gal-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

/* First tile tall */
.g-tile-tall {
  grid-row: span 2;
}

.g-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: block;
  background: var(--ink);
}
.g-tile-tall { aspect-ratio: unset; }

.g-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 500ms ease, filter 300ms ease;
  filter: saturate(0.9);
}
.g-tile:hover img { transform: scale(1.05); filter: saturate(1); }

.g-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,24,29,0.50) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 300ms;
}
.g-tile:hover .g-veil { opacity: 1; }

@media (max-width: 900px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .g-tile-tall { grid-row: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
  .gal-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
#faq.sec { background: var(--surface); }
#faq .wrap > .eyebrow { margin-bottom: 12px; }
#faq .wrap > h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 48px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

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

details.faq-item > summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 19px);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  min-height: 64px;
  color: var(--ink);
  transition: color 150ms;
}
details.faq-item > summary:hover { color: var(--accent); }
details.faq-item > summary::-webkit-details-marker { display: none; }

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

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

/* ============================================================
   TEAM CTA BAND
   ============================================================ */
.team-cta {
  background: var(--primary);
  padding: 56px 0;
}

.tcta-in {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.tcta-hl {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 8px;
}

.tcta-sub {
  font-size: 15px;
  color: var(--accent);
  font-weight: 500;
}

@media (max-width: 640px) {
  .tcta-in { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact.sec { background: var(--canvas); }
#contact .wrap > .eyebrow { margin-bottom: 12px; }
#contact .wrap > h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 48px;
}

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

/* Contact form (index.html: .c-form) */
.c-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.c-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.c-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.c-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

.c-input, .c-select, .c-textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--canvas);
  font-size: 15px;
  color: var(--ink);
  font-family: var(--font-body);
  transition: border-color 150ms, box-shadow 150ms;
  width: 100%;
}
.c-input:focus, .c-select:focus, .c-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(244,196,12,0.18);
}
.c-textarea { resize: vertical; min-height: 120px; }

.c-submit {
  width: 100%;
  padding: 16px 28px;
  font-size: 15px;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--ink);
  transition: filter 160ms, transform 160ms;
  margin-top: 8px;
}
.c-submit:hover { filter: brightness(0.90); transform: translateY(-1px); }

/* Info column */
.c-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c-info-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.c-info-block:last-child { border-bottom: none; }

.c-info-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}

.c-info-val {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.c-info-val a { color: var(--ink); font-weight: 600; }
.c-info-val a:hover { color: var(--primary); }

.c-info-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.55;
}
.c-info-note a { color: var(--muted); }
.c-info-note a:hover { color: var(--primary); }

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

.contact-form-wrap {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--primary);
}

.contact-form-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

.contact-form-guarantee {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--canvas);
  font-size: 15px;
  color: var(--ink);
  font-family: var(--font-body);
  transition: border-color 150ms, box-shadow 150ms;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(244,196,12,0.18);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.full { grid-column: 1 / -1; }

.form-submit {
  padding: 16px 28px;
  font-size: 15px;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--ink);
  transition: filter 160ms, transform 160ms;
  align-self: flex-start;
  margin-top: 8px;
}
.form-submit:hover { filter: brightness(0.90); transform: translateY(-1px); }

.contact-info-card {
  background: var(--surface);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.info-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
  display: block;
}

.info-block {
  padding: 20px 0;
}

.info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

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

.info-phone-big {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.info-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.service-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.area-pill {
  padding: 4px 12px;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 12px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.guarantee-badge {
  margin-top: 24px;
  padding: 16px;
  background: rgba(244,196,12,0.08);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-mid);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .c-row2 { grid-template-columns: 1fr; }
  .c-form, .contact-form-wrap { padding: 28px 22px; }
}

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

.cta-banner-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.22;
  z-index: 0;
}

.cta-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(20,24,29,0.80);
  z-index: 1;
}

.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  text-align: center;
}

.cta-banner-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.cta-banner-headline, .cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--surface);
  margin-bottom: 20px;
}

.cta-banner-headline span { color: var(--primary); }

.cta-banner-sub {
  font-size: 18px;
  color: rgba(247,246,242,0.70);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-banner-phone {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 32px;
}

.cta-banner-btns, .cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 42vh, 480px);
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
}

.page-header > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; z-index: 0;
  max-height: none !important;
}

.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(20,24,29,0.72) 0%, rgba(20,24,29,0.50) 100%);
  z-index: 1;
}

.page-header-hairline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  z-index: 3;
}

.page-header-inner {
  position: relative; z-index: 2;
  padding: 64px clamp(20px, 5vw, 60px) 48px;
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}

.page-header-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.page-header-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--surface);
  max-width: 18ch;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--surface);
  max-width: 18ch;
}

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

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

.services-detail-header {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  margin-bottom: 64px;
  text-align: center;
}

.services-detail-header h2 {
  font-size: clamp(36px, 5vw, 68px);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  margin-bottom: 80px;
  align-items: center;
}

.service-block-photo {
  overflow: hidden;
  border-radius: var(--radius);
}

.service-block-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 400px;
  max-height: none !important;
  display: block;
}

.service-block-body {
  padding: 48px 52px;
}

.service-block.reverse .service-block-photo { order: 2; }
.service-block.reverse .service-block-body  { order: 1; }

.service-index {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-block-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}

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

.service-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

@media (max-width: 900px) {
  .service-block {
    grid-template-columns: 1fr;
  }
  .service-block.reverse .service-block-photo { order: -1; }
  .service-block.reverse .service-block-body  { order: 1; }
  .service-block-photo img { min-height: 280px; }
  .service-block-body { padding: 32px 0; }
}

/* ============================================================
   GALLERY PAGE — PROJECT GRID
   ============================================================ */
.gallery-section {
  background: var(--canvas);
  padding-block: var(--section-py);
  padding-inline: clamp(20px, 5vw, 60px);
  max-width: var(--max-w);
  margin-inline: auto;
}

.gallery-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.gallery-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-count {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--primary);
}

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

.filter-pill {
  padding: 8px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 150ms, background 150ms, color 150ms;
}
.filter-pill:hover, .filter-pill.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--ink);
}

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

.project-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-top: 3px solid transparent;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out, border-color 250ms;
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary);
}

.project-card-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.project-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 400ms ease;
}
.project-card:hover .project-card-photo img { transform: scale(1.04); }

.project-card-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
}

.project-card-num {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(20,24,29,0.72);
  color: var(--surface);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius);
}

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

.project-card-body h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}

.project-card-headline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.project-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}
.project-card-location svg { width: 14px; height: 14px; flex-shrink: 0; }

.project-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-card-stats {
  display: flex;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.project-stat { display: flex; flex-direction: column; gap: 2px; }

.project-stat-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.project-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

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

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

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.about-story-portrait-wrap {
  position: relative;
}

.about-story-portrait-wrap img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  max-height: 580px !important;
  display: block;
}

.about-story-portrait-tag {
  position: absolute;
  bottom: -14px; right: -14px;
  background: var(--primary);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
}

.about-story-content {
  padding-top: 8px;
}

.about-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.about-story-content h2, .about-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 24px;
}

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

.about-cred-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.cred-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--primary);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
}

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story-portrait-tag { right: 0; }
}

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

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

.values-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 48px;
}

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

.value-card {
  background: var(--canvas);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.value-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.value-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

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

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

/* ============================================================
   JOURNEY / TIMELINE
   ============================================================ */
.journey-section {
  background: var(--canvas);
  padding-block: var(--section-py);
  padding-inline: clamp(20px, 5vw, 60px);
  max-width: var(--max-w);
  margin-inline: auto;
}

.journey-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 48px;
}

.timeline {
  position: relative;
  padding-left: 48px;
}

.timeline-line {
  position: absolute;
  left: 10px; top: 12px; bottom: 12px;
  width: 2px;
  background: var(--border);
}

.timeline-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  margin-bottom: 44px;
  align-items: flex-start;
  position: relative;
}

.timeline-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--canvas);
  box-shadow: 0 0 0 2px var(--primary);
  margin-top: 2px;
  position: absolute;
  left: -42px;
  flex-shrink: 0;
}

.timeline-content {
  padding-left: 8px;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

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

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

.crew-strip-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.crew-strip-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.crew-strip-heading, .crew-strip-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--surface);
  line-height: 1.0;
}

.crew-strip-header .section-eyebrow {
  color: var(--primary);
}

.crew-strip-sub {
  font-size: 15px;
  color: rgba(247,246,242,0.60);
  max-width: 42ch;
  line-height: 1.6;
}

.crew-feature {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 52px;
  align-items: center;
}

.crew-feature-photo {
  overflow: hidden;
  border-radius: var(--radius);
}
.crew-feature-photo img {
  width: 100%; display: block;
  max-height: 480px !important;
  object-fit: cover;
  filter: grayscale(15%);
}

.crew-info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.crew-feature-info h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--surface);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.crew-info-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--surface);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.crew-info-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(247,246,242,0.70);
  margin-bottom: 32px;
}

.crew-stat-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

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

.crew-stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.crew-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,246,242,0.50);
}

@media (max-width: 900px) {
  .crew-feature { grid-template-columns: 1fr; }
  .crew-strip-header { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(247,246,242,0.70);
  padding-top: 72px;
}

/* index.html footer uses .wrap + .f-grid */
.f-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247,246,242,0.10);
}

.f-brand img { margin-bottom: 16px; }

.f-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--surface);
  margin-bottom: 6px;
}

.f-tagline {
  font-size: 13px;
  color: rgba(247,246,242,0.55);
  margin-bottom: 20px;
}

.f-about {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247,246,242,0.55);
  max-width: 34ch;
}

.f-col-head {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.f-links a {
  font-size: 14px;
  color: rgba(247,246,242,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.f-links a:hover { color: var(--primary); text-decoration: none; }

.f-contact-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.f-clbl {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 52px;
  padding-top: 2px;
}

.f-cval {
  font-size: 14px;
  color: rgba(247,246,242,0.65);
  line-height: 1.5;
}
.f-cval a { color: rgba(247,246,242,0.65); text-decoration: none; }
.f-cval a:hover { color: var(--primary); text-decoration: none; }

.f-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.f-copy {
  font-size: 13px;
  color: rgba(247,246,242,0.38);
  font-family: var(--font-mono);
}

/* services/gallery/contact/about footer uses .footer-inner */
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 clamp(20px, 5vw, 60px) 48px;
  border-bottom: 1px solid rgba(247,246,242,0.10);
}

.footer-brand img { margin-bottom: 14px; }

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--surface);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(247,246,242,0.50);
  margin-bottom: 16px;
}

.footer-phone-link {
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(247,246,242,0.60);
  margin-bottom: 8px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.footer-contact-item a { color: rgba(247,246,242,0.60); text-decoration: none; }
.footer-contact-item a:hover { color: var(--primary); text-decoration: none; }

.footer-col-title, .footer-col-heading {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px clamp(20px, 5vw, 60px);
  max-width: var(--max-w);
  margin-inline: auto;
}

.footer-copy, .footer-bottom span, .footer-bottom p {
  font-size: 13px;
  color: rgba(247,246,242,0.35);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

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

/* ============================================================
   MOBILE CTA (floating pill)
   ============================================================ */
.mobile-call-pill, .mob-cta, .mobile-sticky-cta, .mobile-cta-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--ink);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(20,24,29,0.45);
  gap: 10px;
  transition: filter 150ms, transform 150ms;
}
.mobile-call-pill:hover, .mob-cta:hover, .mobile-sticky-cta:hover, .mobile-cta-pill:hover {
  filter: brightness(0.92); transform: translateY(-2px); text-decoration: none; color: var(--ink);
}

.mobile-call-pill svg, .mob-cta svg, .mobile-sticky-cta svg, .mobile-cta-pill svg {
  width: 20px; height: 20px;
}

/* Also style inner anchor for mob-cta */
.mob-cta a {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); text-decoration: none;
}
.mob-cta a svg { width: 20px; height: 20px; }

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

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

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 600ms ease, transform 600ms ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.stg > *, .stagger.visible > * { opacity: 1; transform: translateY(0); }

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

.fu {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 550ms ease, transform 550ms ease;
}
.fu.visible { opacity: 1; transform: translateY(0); }

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

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

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

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border-top: 3px solid var(--primary);
}

.review-stars svg {
  color: var(--primary);
  width: 18px;
  height: 18px;
}

.review-quote {
  font-size: 17px;
  line-height: 1.55;
  margin: 14px 0;
  font-style: italic;
}

.review-attribution {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.75;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

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

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

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

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

/* ============================================================
   MISC / UTILITY
   ============================================================ */
.full { grid-column: 1 / -1; }

/* SVG size caps across the board */
svg { max-width: 100%; }
.nav-toggle svg { width: 24px; height: 24px; }
.s-lrn svg, .link-more svg { width: 14px; height: 14px; }
.faq-chev { width: 20px !important; height: 20px !important; }
.t-badge-ic { width: 20px; height: 20px; }
.cta-banner-actions svg { width: 18px; height: 18px; }
.project-card-location svg { width: 14px; height: 14px; }

/* Ensure .reverse does not flip text */
.reverse { direction: ltr; }

/* ============================================================
   RESPONSIVE — GLOBAL
   ============================================================ */
@media (max-width: 1200px) {
  .f-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .f-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .svc-header { flex-direction: column; align-items: flex-start; }
  .gal-header  { flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .price-band-in, .price-band-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; }
  .hero-chips { gap: 8px; }
  .crew-stat-row { gap: 20px; }
  .cta-banner-btns, .cta-banner-actions { flex-direction: column; align-items: center; }
  .f-bottom { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.fu { grid-column: 1 / -1; }
.c-group { grid-column: 1 / -1; }
.f-brand { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.timeline-dot { grid-column: 1 / -1; }
.timeline-content { grid-column: 1 / -1; }
.crew-feature-photo { grid-column: 1 / -1; }
.crew-feature-info { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
