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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #FCBC14;
  --primary-dark:   #e0a50e;
  --accent:         #54AC54;
  --canvas:         #FFFFFF;
  --surface:        #F4F2EE;
  --ink:            #0C0C0F;
  --muted:          #6B6B6B;
  --border:         rgba(12,12,15,0.10);
  --border-strong:  rgba(12,12,15,0.18);
  --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;
  --radius-pill:    999px;
  --header-height:  72px;
  --section-py:     clamp(88px, 11vh, 144px);
  --container:      1280px;
  --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; }
}

/* ============================================================
   GLOBAL RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  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 background */
.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 headers */
.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,
.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; }

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

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

ul { list-style: none; }

svg { flex-shrink: 0; }

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

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); letter-spacing: -0.02em; }
h4 { font-size: clamp(16px, 1.8vw, 20px); }

p { line-height: 1.68; }

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

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

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

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

#scrollBar { height: 3px; background: var(--primary); }

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

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

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

.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-family: var(--font-body);
  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-body);
  font-weight: 600;
  font-size: 14px;
  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; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; margin-left: auto; }

  .nav-pages {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 8px;
    border-bottom: 1px solid rgba(12,12,15,0.08);
    z-index: 800;
  }

  .nav-pages.open { display: flex; }
  .nav-pages ul { flex-direction: column; align-items: flex-start; gap: 8px; }
  .nav-pages li { width: 100%; }
  .nav-pages a { font-size: 17px; padding: 8px 0; display: block; }

  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 12px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: filter 150ms, transform 150ms, box-shadow 150ms;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary, .btn-submit {
  background: var(--primary);
  color: var(--ink);
  border: none;
}

.btn-primary:hover, .btn-submit:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(252,188,20,0.3);
  color: var(--ink);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-strong);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--canvas);
  text-decoration: none;
  border-color: var(--ink);
}

.btn-outline-white {
  background: transparent;
  color: var(--canvas);
  border: 1.5px solid rgba(255,255,255,0.45);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: var(--canvas);
  text-decoration: none;
}

.btn-phone {
  background: transparent;
  color: var(--canvas);
  border: 1.5px solid rgba(255,255,255,0.45);
}

.btn-phone:hover {
  background: rgba(255,255,255,0.12);
  color: var(--canvas);
  text-decoration: none;
}

.btn-banner-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-strong);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  transition: background 150ms, color 150ms;
}

.btn-banner-phone:hover {
  background: var(--ink);
  color: var(--canvas);
  text-decoration: none;
}

.btn-banner-phone svg,
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   TRUST CHIPS
   ============================================================ */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1.2;
}

.trust-chip-accent {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--ink);
}

/* ============================================================
   SECTION NUMERAL SUPERGRAPHIC
   ============================================================ */
.section-numeral,
.hero-numeral,
.panel-numeral,
.contact-num,
.about-story-num,
.journey-header-num,
.crew-header-num,
.cta-numeral,
.info-card-num,
.map-num,
.map-placeholder-num,
.page-header-num,
.page-numeral {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
}

.crew-value-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
}

/* ============================================================
   SECTION EYEBROW
   ============================================================ */
.section-eyebrow,
.service-eyebrow,
.hero-eyebrow,
.page-header-eyebrow,
.about-story-eyebrow,
.journey-header-eyebrow,
.crew-header-eyebrow,
.contact-eyebrow,
.cta-banner-eyebrow,
.cta-eyebrow,
.rating-sub,
.map-eyebrow,
.page-eyebrow,
.page-header-sub,
.footer-col-title,
.crew-value-label,
.info-label,
.contact-info-label,
.footer-contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  line-height: 1.3;
  margin-bottom: 12px;
  display: block;
}

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

.section-header-text { flex: 1; }
.section-header-text h2 { margin-top: 4px; }
.section-header-text .section-eyebrow { margin-bottom: 8px; }

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.22,.68,0,1.2), transform 0.65s cubic-bezier(.22,.68,0,1.2);
}

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s cubic-bezier(.22,.68,0,1.2), transform 0.65s cubic-bezier(.22,.68,0,1.2);
}

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s cubic-bezier(.22,.68,0,1.2), transform 0.65s cubic-bezier(.22,.68,0,1.2);
}

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  background: var(--ink);
}

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

.hero-booking-ribbon {
  display: none;
}

.hero-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
  padding-top: clamp(80px, 12vh, 140px);
  padding-bottom: clamp(60px, 8vh, 100px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

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

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0;
}

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

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

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

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-trust-chips .trust-chip {
  border-color: rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
}

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

.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

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

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

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

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

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

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

/* ============================================================
   SERVICES (tabbed panel on index.html)
   ============================================================ */
.services {
  background: var(--surface);
  padding-block: var(--section-py);
}

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

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.service-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
}

.service-tab:hover { background: var(--canvas); color: var(--ink); }

.service-tab.active {
  background: var(--primary);
  color: var(--ink);
  border-color: var(--primary);
}

.services-panels { position: relative; }

.service-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--canvas);
  box-shadow: var(--shadow-md);
}

.service-panel.active { display: grid; }

.service-panel > img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

.service-panel-body {
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}

.panel-numeral {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  margin-bottom: 24px;
}

.service-panel-body h3 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
}

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

.service-panel-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  margin-top: 24px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  transition: color 150ms;
}

.service-panel-body a:hover { color: var(--primary); text-decoration: none; }

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

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

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

.gallery-feature-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}

.gallery-feature-wrap img {
  width: 100%;
  height: clamp(320px, 50vh, 600px);
  object-fit: cover;
  display: block;
}

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

/* ============================================================
   PROJECT GRID (gallery.html)
   ============================================================ */
.gallery-section {
  padding-block: var(--section-py);
}

.gallery-header-row {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.gallery-heading-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.gallery-heading-block h2 { font-size: clamp(28px, 4vw, 48px); }

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

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

.filter-pill:hover,
.filter-pill.active { background: var(--ink); color: var(--canvas); border-color: var(--ink); }

.project-count {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 24px;
}

.project-grid {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--surface);
  text-decoration: none;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); text-decoration: none; }

.project-card.featured {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.project-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: none;
  transition: transform 400ms ease;
}

.project-card:hover > img { transform: scale(1.04); }

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.75) 0%, transparent 55%);
  z-index: 1;
}

.project-card-num {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  z-index: 2;
}

.project-card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  background: rgba(12,12,15,0.65);
  color: rgba(255,255,255,0.9);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.project-card-info {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 20px 18px 18px;
  z-index: 2;
}

.project-card-info h3 {
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--canvas);
  margin-bottom: 4px;
  line-height: 1.2;
}

.project-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}

.project-card-location svg { width: 12px; height: 12px; }

.project-card-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

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

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

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

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

.rating-callout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: var(--canvas);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.rating-callout-score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.rating-big-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.rating-stars-row {
  display: flex;
  gap: 4px;
}

.rating-stars-row svg { width: 20px; height: 20px; color: var(--primary); fill: var(--primary); }

.rating-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0;
}

.rating-callout-text { display: flex; flex-direction: column; gap: 16px; }

.rating-statement {
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  color: var(--ink);
}

.rating-callout-text a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  text-decoration: none;
}

.rating-callout-text a:hover { color: var(--primary); text-decoration: none; }

@media (max-width: 760px) {
  .rating-callout { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
}

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

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

.faq-list { margin-top: 8px; }

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

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

summary.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--ink);
  list-style: none;
  transition: color 150ms;
}

summary.faq-question::-webkit-details-marker { display: none; }
summary.faq-question:hover { color: var(--ink); }

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 200ms, color 200ms;
}

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

.faq-answer {
  padding: 0 0 22px 0;
  font-size: 16px;
  line-height: 1.68;
  color: var(--muted);
}

.faq-answer a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.faq-answer a:hover { color: var(--primary); }

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

.cta-banner-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.cta-banner-content,
.cta-banner-text { display: flex; flex-direction: column; gap: 0; }

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

.cta-banner-content h2,
.cta-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--canvas);
  margin-bottom: 36px;
}

.cta-numeral {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  margin-bottom: 20px;
}

.cta-btn-row,
.cta-actions,
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-banner-actions .btn-banner-phone { color: var(--canvas); border-color: rgba(255,255,255,0.3); }
.cta-banner-actions .btn-banner-phone:hover { background: rgba(255,255,255,0.1); text-decoration: none; }

.cta-form-block,
.cta-banner-right { background: rgba(255,255,255,0.05); border-radius: var(--radius); padding: 40px; }

.cta-form-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--canvas);
  margin-bottom: 24px;
}

.cta-banner-left,
.cta-banner-content { display: flex; flex-direction: column; }

.cta-banner-left h2 { color: var(--canvas); margin-bottom: 16px; }

.cta-banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 32px;
}

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

/* ============================================================
   TEAM CTA STRIP
   ============================================================ */
.team-cta-strip {
  background: var(--surface);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.team-cta-text {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: var(--ink);
  max-width: 60ch;
}

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

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

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

.contact-intro {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

.contact-info-block {
  margin-bottom: 28px;
}

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

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

.contact-info-phone:hover { color: var(--primary); text-decoration: none; }

.contact-info-value {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
}

.contact-info-value a { color: var(--ink); }
.contact-info-value a:hover { color: var(--primary); text-decoration: none; }

.contact-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.contact-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: clamp(40px, 5vh, 64px);
  flex-wrap: wrap;
}

.contact-num {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--primary);
}

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

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

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

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

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

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: span 2; }

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

input,
textarea,
select,
.form-input,
.form-textarea,
.form-select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 13px 16px;
  width: 100%;
  transition: border-color 150ms, box-shadow 150ms;
  -webkit-appearance: none;
  appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(252,188,20,0.18);
}

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

.form-submit,
button[type="submit"],
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: filter 150ms, transform 150ms;
  width: 100%;
}

.form-submit:hover,
button[type="submit"]:hover,
.btn-submit:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}

.form-submit svg, .btn-submit svg { width: 18px; height: 18px; }

/* CTA form on dark background */
.cta-form-block input,
.cta-form-block textarea,
.cta-form-block select,
.cta-banner-right input,
.cta-banner-right textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: var(--canvas);
}

.cta-form-block input::placeholder,
.cta-form-block textarea::placeholder { color: rgba(255,255,255,0.4); }

.cta-form-block input:focus,
.cta-form-block textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(252,188,20,0.22);
}

@media (max-width: 640px) {
  .form-row,
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
}

/* ============================================================
   PAGE HEADER (sub pages)
   ============================================================ */
.page-header {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  padding-bottom: 0;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.8) 0%, rgba(12,12,15,0.35) 100%);
  z-index: 1;
}

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
  padding-bottom: 56px;
  padding-top: 80px;
  width: 100%;
}

.page-header-inner h1 {
  font-size: clamp(40px, 6vw, 88px);
  color: var(--canvas);
  margin-top: 12px;
}

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

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

.page-header-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.page-numeral {
  position: absolute;
  top: clamp(20px, 4vh, 48px);
  left: clamp(20px, 4vw, 60px);
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--primary);
  z-index: 2;
}

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

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

.services-section-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: clamp(56px, 7vh, 96px);
}

.services-section-header h2 { margin-top: 4px; }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-block: clamp(56px, 7vh, 96px);
  border-bottom: 1px solid var(--border);
}

.service-block:last-child { border-bottom: none; }

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

.service-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-photo-wrap img {
  width: 100%;
  height: clamp(280px, 40vh, 500px);
  object-fit: cover;
  display: block;
  max-height: none;
  transition: transform 500ms ease;
}

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

.service-index {
  position: absolute;
  top: 16px;
  left: 16px;
  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 10px;
  border-radius: var(--radius);
  z-index: 3;
}

.service-content { display: flex; flex-direction: column; gap: 0; }

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

.service-content h3 {
  font-size: clamp(22px, 2.8vw, 34px);
  margin-bottom: 16px;
}

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

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

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

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

.service-content a.btn { align-self: flex-start; }

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

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

.section-wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.about-story-left { display: flex; flex-direction: column; gap: 0; }

.about-story-num {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

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

.about-story-left h2 {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 24px;
}

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

.about-story-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.about-story-right { position: relative; }

.about-team-photo,
.about-story-right > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  max-height: 640px;
  filter: grayscale(15%) contrast(1.04);
}

.about-photo-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 12px;
  text-align: right;
}

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

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

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

.journey-header-text { flex: 1; }
.journey-header-text h2 { font-size: clamp(28px, 4vw, 52px); }

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.journey-steps::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 0; right: 0;
  height: 1px;
  background: var(--border-strong);
  z-index: 0;
}

.journey-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.journey-step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--canvas);
  outline: 2px solid var(--primary);
  margin-bottom: 8px;
  flex-shrink: 0;
}

.journey-step-index {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  display: block;
}

.journey-step h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  margin-bottom: 8px;
  line-height: 1.15;
}

.journey-step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 760px) {
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .journey-steps::before { display: none; }
}

@media (max-width: 500px) {
  .journey-steps { grid-template-columns: 1fr; }
}

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

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

.crew-header-text { flex: 1; }
.crew-header-text h2 { font-size: clamp(28px, 4vw, 52px); }

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

.crew-value-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.crew-value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.crew-value-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 16px;
}

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

.crew-value-card h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 12px;
  line-height: 1.2;
}

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

@media (max-width: 760px) {
  .crew-values { grid-template-columns: 1fr; }
}

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

.map-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.map-text { display: flex; flex-direction: column; gap: 0; }

.map-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 100px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

.map-headline {
  font-size: clamp(24px, 3.5vw, 44px);
  margin-bottom: 16px;
}

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

.map-visual {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  width: 100%;
  min-height: 360px;
  background: linear-gradient(135deg, #e9e7e3 0%, #d8d5ce 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--radius);
}

.map-placeholder-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.map-placeholder p {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

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

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-form-wrap {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
}

.contact-info-card {
  background: var(--ink);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  color: var(--canvas);
}

.info-card-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  margin-bottom: 32px;
}

.info-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.info-block:last-of-type { border-bottom: none; }

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

.info-value {
  font-size: 16px;
  color: var(--canvas);
  line-height: 1.55;
}

.info-value a { color: var(--canvas); }
.info-value a:hover { color: var(--primary); text-decoration: none; }

.info-phone-link {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--canvas);
}

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.area-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: background 150ms, color 150ms;
}

.social-link:hover {
  background: var(--primary);
  color: var(--ink);
  text-decoration: none;
}

.social-link svg { width: 16px; height: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding-top: clamp(56px, 7vh, 96px);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-inner > div:not(.footer-bottom):not(.footer-grid) {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand,
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo-link { display: inline-block; }

.footer-brand-name,
.footer-brand-tagline,
.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 32ch;
}

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

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

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

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

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

.footer-links a:hover { color: var(--canvas); text-decoration: none; }

.footer-info { display: flex; flex-direction: column; gap: 10px; }
.footer-info p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.55; }
.footer-info p a { color: rgba(255,255,255,0.6); }
.footer-info p a:hover { color: var(--canvas); text-decoration: none; }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}

.footer-contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
}

.footer-contact-value { font-size: 14px; color: rgba(255,255,255,0.6); }

.footer-trust-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.footer-trust-chips .trust-chip { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.55); }

.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  transition: background 150ms, color 150ms;
}
.footer-social a:hover { background: var(--primary); color: var(--ink); text-decoration: none; }
.footer-social svg { width: 16px; height: 16px; }

.footer-phone-link,
.footer-email {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.footer-phone-link:hover,
.footer-email:hover { color: var(--canvas); text-decoration: none; }

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

.footer-copy,
.footer-bottom-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
}
.footer-legal a:hover { color: rgba(255,255,255,0.65); text-decoration: none; }

@media (max-width: 900px) {
  .footer-grid,
  .footer-inner > div:not(.footer-bottom):not(.footer-grid) {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand,
  .footer-brand-col { grid-column: span 2; }
}

@media (max-width: 560px) {
  .footer-grid,
  .footer-inner > div:not(.footer-bottom):not(.footer-grid) {
    grid-template-columns: 1fr;
  }
  .footer-brand,
  .footer-brand-col { grid-column: span 1; }
}

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-cta-pill,
.mobile-cta > a,
.mobile-call > a,
.mobile-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  text-decoration: none;
  transition: transform 200ms, box-shadow 200ms;
}

.mobile-cta-pill:hover,
.mobile-cta > a:hover,
.mobile-call > a:hover { transform: translateY(-2px); box-shadow: 0 24px 48px -12px rgba(0,0,0,0.55); text-decoration: none; color: var(--ink); }

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

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

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

/* ============================================================
   MISC UTILITY
   ============================================================ */
.reviews-section .section-header,
.faq-section    .section-header,
.gallery-section .section-header,
.services .section-header { margin-bottom: clamp(40px, 5vh, 64px); }

/* Prevent flip containers from mirroring text */
.reverse { order: unset; }
.service-block.reverse { direction: ltr; }

/* SVG caps within nav/buttons */
.nav-toggle svg { width: 24px; height: 24px; }
.faq-chevron { width: 20px; height: 20px; }
.btn svg, .nav-cta svg { width: 18px; height: 18px; }
.hero-ctas svg { width: 18px; height: 18px; }

/* Rating stars */
.rating-stars-row svg { fill: var(--primary); color: var(--primary); }

/* Team CTA strip button */
.team-cta-strip .btn-outline { border-color: var(--border-strong); }

/* Contact form col gap helper */
.contact-form-col { display: flex; flex-direction: column; gap: 0; }

/* Responsive tweaks */
@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { width: 100%; justify-content: center; }
  .section-header { flex-direction: column; gap: 8px; }
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 10px; padding: 8px 12px; }
  .gallery-header-row { flex-direction: column; align-items: flex-start; }
  .team-cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-btn-row, .cta-actions, .cta-banner-actions { flex-direction: column; }
  .cta-btn-row a, .cta-actions a, .cta-banner-actions a { width: 100%; justify-content: center; }
  .contact-head { flex-direction: column; gap: 4px; }
  .journey-header { flex-direction: column; gap: 8px; }
  .crew-header { flex-direction: column; gap: 8px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.rating-callout-score { grid-column: 1 / -1; }
.rating-callout-text { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.about-story-left { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.map-visual { 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; }
