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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:       #FCDC04;
  --accent:        #452A52;
  --canvas:        #FFFFFF;
  --surface:       #F4F2EE;
  --ink:           #0C0C0F;
  --muted:         #6B6B6B;
  --border:        rgba(12,12,15,0.12);
  --border-strong: rgba(12,12,15,0.22);
  --shadow-sm:     0 2px 8px rgba(12,12,15,0.06);
  --shadow-md:     0 8px 32px rgba(12,12,15,0.10);
  --shadow-lg:     0 18px 48px rgba(12,12,15,0.14);
  --radius:        4px;
  --header-height: 72px;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'IBM Plex Sans', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   RESET + GLOBAL
   ============================================================ */
*, *::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;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-pages {
    display: none; flex-direction: column; justify-content: flex-start;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--canvas); padding: 24px;
    gap: 4px; z-index: 800;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .nav-pages.open { display: flex; }
  .nav-pages li { width: 100%; }
  .nav-pages a { font-size: 14px; padding: 10px 0; display: block; width: 100%; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px; border-radius: var(--radius); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-outline, .btn-white,
.btn-primary-cta, .btn-outline-cta, .btn-phone, .btn-submit,
.contact-cta-btn, .form-submit {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 15px; padding: 14px 28px;
  border-radius: var(--radius); cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
  transition: filter 150ms, transform 150ms, box-shadow 150ms;
}
.btn-primary, .btn-primary-cta, .btn-submit, .form-submit, .contact-cta-btn {
  background: var(--primary); color: var(--ink); border-color: var(--primary);
}
.btn-primary:hover, .btn-primary-cta:hover, .btn-submit:hover, .form-submit:hover {
  filter: brightness(0.9); color: var(--ink); text-decoration: none;
  transform: translateY(-1px); box-shadow: 0 8px 24px rgba(252,220,4,0.32);
}
.btn-outline, .btn-outline-cta, .btn-phone {
  background: transparent; color: var(--canvas);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover, .btn-outline-cta:hover, .btn-phone:hover {
  border-color: var(--primary); color: var(--primary); text-decoration: none;
}
.btn-white {
  background: var(--canvas); color: var(--ink); border-color: var(--canvas);
}
.btn-white:hover { filter: brightness(0.95); color: var(--ink); text-decoration: none; }

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

.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(12,12,15,0.52) 0%,
    rgba(12,12,15,0.70) 100%
  );
}

.hero-inner {
  padding: clamp(88px, 11vh, 144px) clamp(20px, 4vw, 72px);
  max-width: 1280px; margin-inline: auto;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  min-height: 92vh;
  padding-bottom: clamp(64px, 8vh, 112px);
}

.hero-top {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 12px;
}

.hero-numeral {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 700; line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--primary);
  display: block;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8.5vw, 120px);
  font-weight: 700; line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 18ch;
  margin-bottom: 20px;
}

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

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

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

/* ============================================================
   TRUST STRIP + CHIPS
   ============================================================ */
.trust-strip {
  background: var(--canvas);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

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

.trust-chip, .trust-chip-strip {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 5px 14px;
  white-space: nowrap;
}
.trust-chip-primary {
  background: var(--primary); border-color: var(--primary);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.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;
  align-items: center;
}

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

.marquee-item.accent { color: var(--primary); }

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

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

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-header {
  display: flex; align-items: flex-start; gap: 24px;
  margin-bottom: clamp(48px, 6vh, 80px);
}

.section-header-row {
  display: flex; align-items: flex-start; gap: 24px;
  margin-bottom: clamp(48px, 6vh, 80px);
}

.section-numeral, .section-index-numeral {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700; line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--primary);
  flex-shrink: 0;
  user-select: none;
}

.section-header-text { flex: 1; }

.section-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}

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

/* ============================================================
   SERVICES — index.html
   ============================================================ */
.services {
  padding: clamp(88px, 11vh, 144px) 0;
  background: var(--surface);
}

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

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

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

.service-card {
  display: flex; flex-direction: column;
  background: var(--canvas);
  border-radius: 0;
  overflow: hidden;
  text-decoration: none; color: var(--ink);
  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);
  text-decoration: none; color: var(--ink); z-index: 1;
}

.service-card-img {
  aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--surface);
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease;
  filter: grayscale(20%);
}
.service-card:hover .service-card-img img { transform: scale(1.04); filter: grayscale(0); }

.service-card-body {
  padding: 28px; flex: 1;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}

.card-numeral {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700; line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700; letter-spacing: -0.01em;
  color: var(--ink); line-height: 1.2;
}

.service-card-desc {
  font-size: 14px; line-height: 1.6;
  color: var(--muted); flex: 1;
}

.service-card-link {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px;
}
.service-card:hover .service-card-link { color: var(--primary); }

.services-cta-row {
  margin-top: 48px; display: flex; justify-content: center;
}

/* ============================================================
   SERVICES DETAIL — services.html
   ============================================================ */
.services-detail {
  padding: clamp(88px, 11vh, 144px) 0;
  background: var(--canvas);
}

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

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(64px, 8vh, 104px) 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }

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

.service-block-photo {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
}
.service-block-photo img {
  width: 100%; height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(10%);
  max-height: 480px;
}

.service-block-body {
  display: flex; flex-direction: column; gap: 16px;
}

.service-block-numeral {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700; line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--primary);
  display: block;
}

.service-block-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); display: block;
}

.service-block-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.05; color: var(--ink);
}

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

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

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

/* ============================================================
   GALLERY PREVIEW — index.html
   ============================================================ */
.gallery-preview {
  padding: clamp(88px, 11vh, 144px) 0;
  background: var(--canvas);
}

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

.gallery-grid-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}

.gallery-tile {
  overflow: hidden; aspect-ratio: 4 / 3;
  background: var(--surface); display: block;
}
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease, filter 300ms;
  filter: grayscale(15%);
}
.gallery-tile:hover img { transform: scale(1.06); filter: grayscale(0); }

.gallery-tile-wide {
  grid-column: span 2; aspect-ratio: 16/9;
}

.gallery-cta-row {
  margin-top: 32px; display: flex; justify-content: flex-start;
}

@media (max-width: 900px) {
  .gallery-grid-preview { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .gallery-grid-preview { grid-template-columns: 1fr; }
  .gallery-tile-wide { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ============================================================
   GALLERY FULL — gallery.html
   ============================================================ */
.gallery-section {
  padding: clamp(64px, 8vh, 104px) 0;
  background: var(--canvas);
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.gallery-section-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  margin-bottom: clamp(40px, 5vh, 72px);
}

.gallery-section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}

.gallery-section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.0;
  color: var(--ink);
}
.gallery-section-title span { color: var(--primary); }

.gallery-count {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  white-space: nowrap;
}

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

.filter-pill {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent; cursor: pointer;
  color: var(--ink); transition: background 150ms, color 150ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--ink); color: var(--canvas); border-color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-card {
  background: var(--canvas);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.gallery-card-featured {
  grid-column: span 2;
}
@media (max-width: 900px) { .gallery-card-featured { grid-column: span 1; } }

.gallery-card-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease;
  filter: grayscale(10%);
}
.gallery-card:hover .gallery-card-img-wrap img { transform: scale(1.04); filter: grayscale(0); }

.gallery-card-badge {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--primary); color: var(--ink);
  padding: 4px 10px; border-radius: 999px;
}
.gallery-card-tag {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(12,12,15,0.72); color: var(--canvas);
  padding: 4px 10px; border-radius: 999px;
}

.gallery-card-body {
  padding: 20px 24px;
}
.gallery-card-body h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em; color: var(--ink);
  margin-bottom: 6px;
}

.gallery-card-location {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; color: var(--muted);
  text-transform: uppercase;
}
.gallery-card-location svg { width: 14px; height: 14px; flex-shrink: 0; }

.gallery-card-desc {
  font-size: 14px; color: var(--muted); line-height: 1.6;
  margin: 8px 0;
}

.gallery-card-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 12px;
}
.gallery-meta-item { display: flex; flex-direction: column; gap: 2px; }
.gallery-meta-val {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--primary); line-height: 1;
}
.gallery-meta-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}

/* ============================================================
   ABOUT SECTION — about.html
   ============================================================ */
.about-section {
  padding: clamp(88px, 11vh, 144px) 0;
  background: var(--canvas);
}

.about-layout {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px); align-items: start;
}

.about-portrait-col { display: flex; flex-direction: column; gap: 0; }

.about-portrait-wrap {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
}
.about-portrait-wrap img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(20%);
  max-height: 600px;
}

.about-numeral-bg {
  position: absolute; bottom: -10px; right: -10px;
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 700; line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary); opacity: 0.25;
  pointer-events: none; user-select: none;
}

.about-portrait-caption {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  padding: 12px 0;
}

.about-content-col { display: flex; flex-direction: column; gap: 28px; }

.about-content-col h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.0;
  color: var(--ink);
}

.about-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

.about-body { display: flex; flex-direction: column; gap: 16px; }
.about-body p { font-size: 16px; line-height: 1.75; color: var(--ink); }

.about-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  background: var(--surface); padding: 24px;
  border-radius: var(--radius); display: flex; flex-direction: column; gap: 8px;
  border: 1px solid var(--border);
}
.value-card-numeral {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 700; line-height: 0.9;
  letter-spacing: -0.03em; color: var(--primary);
  display: block;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em;
}
.value-card-body {
  font-size: 14px; line-height: 1.6; color: var(--muted);
}

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

/* Credential strip */
.credential-strip {
  background: var(--ink);
  padding: 18px 0;
  overflow: hidden;
}
.credential-strip-inner {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
}
.credential-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-right: 8px;
}
.credential-badge {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px; padding: 5px 14px;
}
.credential-badge-primary {
  background: var(--primary); color: var(--ink); border-color: var(--primary);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: clamp(88px, 11vh, 144px) 0;
  background: var(--surface);
}

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

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

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

.faq-question {
  cursor: pointer; font-weight: 600;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: -0.01em;
  list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  padding: 22px 0;
  color: var(--ink);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: "+"; font-family: var(--font-body);
  font-weight: 300; font-size: 24px;
  transition: transform 200ms;
  color: var(--muted); flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] > .faq-question::after {
  transform: rotate(45deg); color: var(--primary);
}

.faq-answer {
  padding-bottom: 22px;
}
.faq-answer p {
  font-size: 15px; line-height: 1.7; color: var(--muted);
  max-width: 72ch;
}

/* ============================================================
   CONTACT — index.html
   ============================================================ */
.contact {
  padding: clamp(88px, 11vh, 144px) 0;
  background: var(--canvas);
}

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

.contact-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px); align-items: start;
}
@media (max-width: 900px) { .contact-split { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT — contact.html
   ============================================================ */
.contact-section {
  padding: clamp(88px, 11vh, 144px) 0;
  background: var(--canvas);
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.contact-header {
  display: flex; align-items: flex-start; gap: 24px;
  margin-bottom: clamp(48px, 6vh, 72px);
}

.contact-num {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700; line-height: 0.9;
  letter-spacing: -0.03em; color: var(--primary);
  flex-shrink: 0; user-select: none;
}

.contact-heading-block { flex: 1; }

.contact-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.0;
  color: var(--ink);
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FORMS
   ============================================================ */
.contact-form, form {
  display: flex; flex-direction: column; gap: 20px;
}

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

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

.form-input, .form-textarea, .form-select,
input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], select, textarea {
  font-family: var(--font-body); font-size: 15px;
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  width: 100%; outline: none;
  transition: border-color 150ms;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus,
input:focus, select:focus, textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(252,220,4,0.25);
}

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

.form-note {
  font-size: 12px; color: var(--muted); line-height: 1.5;
}

.form-fast-tag {
  display: inline-flex;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--primary); color: var(--ink);
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 8px; align-self: flex-start;
}

.btn-submit, button[type="submit"] {
  background: var(--primary); color: var(--ink);
  border: none; border-radius: var(--radius);
  padding: 16px 32px; font-size: 15px; font-weight: 700;
  cursor: pointer; width: 100%;
  font-family: var(--font-body);
  transition: filter 150ms, transform 150ms;
}
.btn-submit:hover, button[type="submit"]:hover {
  filter: brightness(0.9); transform: translateY(-1px);
}

/* Contact form card */
.contact-form-card {
  background: var(--surface); padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
@media (max-width: 640px) { .contact-form-card { padding: 24px; } }

/* Contact info card */
.contact-info-card {
  background: var(--ink); color: var(--canvas);
  padding: 40px; border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 0;
}
@media (max-width: 640px) { .contact-info-card { padding: 28px; } }

.info-card-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 100px); font-weight: 700;
  line-height: 0.9; letter-spacing: -0.03em;
  color: var(--primary); margin-bottom: 24px;
  user-select: none;
}

.info-block-label {
  display: block;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 6px;
}
.info-block-value { font-size: 15px; color: rgba(255,255,255,0.85); }

.info-divider {
  height: 1px; background: rgba(255,255,255,0.1);
  margin: 18px 0;
}

.info-phone-link, .info-email-link {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px); font-weight: 700;
  color: var(--canvas); text-decoration: none;
  letter-spacing: -0.01em; display: block;
}
.info-phone-link:hover, .info-email-link:hover {
  color: var(--primary); text-decoration: none;
}

.service-area-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.service-area-pill {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px; padding: 4px 10px;
}

.info-bbb-badge {
  display: flex; align-items: center; gap: 10px; margin-top: 8px;
}
.info-bbb-badge-icon {
  width: 36px; height: 36px; border-radius: 4px;
  background: var(--primary); display: flex;
  align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; color: var(--ink); flex-shrink: 0;
}
.info-bbb-text { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.4; }

.info-block-value svg { width: 24px; height: 24px; color: rgba(255,255,255,0.6); }

/* Contact info col — index.html */
.contact-info-col {
  display: flex; flex-direction: column; gap: 0;
}

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

.contact-info-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.contact-info-value { font-size: 16px; color: var(--ink); font-weight: 500; }

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

/* ============================================================
   CTA BANNER — services.html, gallery.html, about.html
   ============================================================ */
.cta-banner {
  padding: clamp(88px, 11vh, 128px) 0;
  background: var(--ink); overflow: hidden; position: relative;
}

.cta-banner-inner {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}

.cta-banner-left, .cta-banner-inner > div:first-child { flex: 1; min-width: 280px; }

.cta-banner-numeral, .cta-banner-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 100px);
  font-weight: 700; line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--primary); display: block; margin-bottom: 16px;
  user-select: none;
}

.cta-banner-eyebrow {
  display: block;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 12px;
}

.cta-banner-title, h2.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.0;
  color: var(--canvas); margin-bottom: 16px;
}

.cta-banner-sub {
  font-size: 16px; line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 48ch;
}
.cta-banner-sub a { color: var(--primary); text-decoration: none; }

.cta-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.0;
  color: var(--canvas);
}

.cta-banner-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}
.cta-banner-actions .btn-primary,
.cta-banner-actions a:first-child {
  background: var(--primary); color: var(--ink);
  display: inline-flex; align-items: center;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: var(--radius);
  text-decoration: none; transition: filter 150ms;
}
.cta-banner-actions .btn-primary:hover,
.cta-banner-actions a:first-child:hover { filter: brightness(0.9); text-decoration: none; color: var(--ink); }
.cta-banner-actions .btn-outline,
.cta-banner-actions a:last-child:not(:first-child) {
  background: transparent; color: var(--canvas);
  border: 2px solid rgba(255,255,255,0.4);
  display: inline-flex; align-items: center;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 12px 26px; border-radius: var(--radius);
  text-decoration: none; transition: border-color 150ms, color 150ms;
}
.cta-banner-actions .btn-outline:hover,
.cta-banner-actions a:last-child:not(:first-child):hover {
  border-color: var(--primary); color: var(--primary); text-decoration: none;
}

.cta-banner-right { flex: 0 0 auto; }

.cta-banner-phone-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); display: block; margin-bottom: 8px;
}

.cta-banner-phone {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px); font-weight: 700;
  color: var(--primary); text-decoration: none; letter-spacing: -0.02em;
}
.cta-banner-phone:hover { color: var(--canvas); text-decoration: none; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  min-height: clamp(280px, 40vh, 480px);
  background: var(--ink);
  display: flex; align-items: flex-end;
}

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

.page-header-inner {
  position: relative; z-index: 2;
  padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 48px);
  max-width: 1280px; margin-inline: auto; width: 100%;
}
.page-header-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 0.96;
  color: var(--canvas); max-width: 18ch;
}

.page-header-numeral, .page-header-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 100px); font-weight: 700;
  line-height: 0.9; letter-spacing: -0.03em;
  color: var(--primary); display: block;
  margin-bottom: 8px; user-select: none;
}

.page-header-eyebrow, .page-eyebrow {
  display: block;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 10px;
}

.page-header-sub {
  font-size: 16px; color: rgba(255,255,255,0.65);
  line-height: 1.6; max-width: 52ch; margin-top: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.75);
  padding: clamp(64px, 8vh, 104px) 0 0;
}

.footer-inner, .footer-grid {
  max-width: 1280px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
}
@media (max-width: 900px) {
  .footer-inner, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-inner, .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand-name {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--canvas); letter-spacing: -0.01em;
}

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

.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.65);
}
.footer-contact-icon { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.footer-contact-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); min-width: 48px;
}
.footer-contact-val { font-size: 14px; color: rgba(255,255,255,0.75); }

.footer-contact-link, .footer-email-link, .footer-phone-link {
  color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px;
  transition: color 150ms;
}
.footer-contact-link:hover, .footer-email-link:hover, .footer-phone-link:hover {
  color: var(--primary); text-decoration: none;
}

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title, .footer-col-label, .footer-col-heading {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 4px;
  display: block;
}

.footer-links {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 150ms;
}
.footer-links a:hover { color: var(--primary); text-decoration: none; }

.footer-trust-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.footer-trust-list li, .footer-trust-item {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.footer-address {
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55);
  font-style: normal;
}
.footer-address a { color: rgba(255,255,255,0.65); }

.footer-bbb {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer-bottom {
  max-width: 1280px; margin-inline: auto;
  padding: 24px clamp(20px, 4vw, 48px);
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 12px; margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-legal, .footer-copy {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.3);
}
.footer-copy a { color: rgba(255,255,255,0.4); text-decoration: none; }

/* ============================================================
   MOBILE CTA PILL
   ============================================================ */
.mobile-cta-sticky, .mobile-sticky-cta, .mobile-cta {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: var(--primary); color: var(--ink);
  padding: 14px 22px; border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  text-decoration: none; font-weight: 600; font-size: 15px;
  font-family: var(--font-body);
  transition: transform 150ms, box-shadow 150ms;
}
.mobile-cta-sticky:hover, .mobile-sticky-cta:hover, .mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -10px rgba(0,0,0,0.5);
  color: var(--ink); text-decoration: none;
}
.mobile-cta-sticky svg, .mobile-sticky-cta svg, .mobile-cta svg {
  width: 20px; height: 20px; flex-shrink: 0;
}
.mobile-cta-sticky > a, .mobile-sticky-cta > a, .mobile-cta > a {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); text-decoration: none;
}

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

/* ============================================================
   SECTION INDEX NUMERAL (standalone supergraphic)
   ============================================================ */
.section-index-numeral {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700; line-height: 0.9;
  letter-spacing: -0.03em; color: var(--primary);
  flex-shrink: 0; user-select: none; display: block;
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up, .fade-left, .fade-right, .scale-in {
  opacity: 0; transition: opacity 640ms ease, transform 640ms ease;
}
.fade-up    { transform: translateY(28px); }
.fade-left  { transform: translateX(-28px); }
.fade-right { transform: translateX(28px); }
.scale-in   { transform: scale(0.94); }

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

.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 540ms ease, transform 540ms ease; }
.stagger > *.visible { opacity: 1; transform: none; }
.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; }
.stagger > *:nth-child(7) { transition-delay: 480ms; }
.stagger > *:nth-child(8) { transition-delay: 560ms; }

/* ============================================================
   SVG CAPS — no unsized SVG allowed
   ============================================================ */
svg { max-width: 100%; }
.nav-cta svg, .btn svg, a svg,
.footer-contact-icon,
.gallery-card-location svg,
.mobile-cta-sticky svg, .mobile-sticky-cta svg, .mobile-cta svg,
.info-block-value svg {
  width: 20px; height: 20px; flex-shrink: 0; display: block;
}

/* ============================================================
   MISC / UTILITY
   ============================================================ */
.accent { color: var(--primary); }
.reverse { }

/* Success message */
.form-success {
  display: none; background: var(--primary); color: var(--ink);
  padding: 16px 20px; border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-tile { grid-column: 1 / -1; }
.form-label { grid-column: 1 / -1; }
.form-input { grid-column: 1 / -1; }
.form-textarea { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.about-content-col { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.form-group { 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; }
