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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #2e4f2e;
  --primary-light:  #3d6b3d;
  --primary-dark:   #1e3320;
  --accent:         #2e4f2e;
  --canvas:         #0C0C0F;
  --surface:        #1A1814;
  --surface-2:      #201e1a;
  --ink:            #F4F1EA;
  --ink-mid:        #c8c4bc;
  --muted:          #8E8A82;
  --border:         rgba(244,241,234,0.10);
  --border-brand:   rgba(46,79,46,0.55);
  --header-height:  72px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter Tight', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  --radius:       4px;
  --radius-pill:  999px;

  --section-py:   clamp(112px, 14vh, 180px);
  --content-max:  1200px;
  --wide-max:     1400px;
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 16px;
  background: var(--canvas);
  color: var(--ink);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.68;
  background: var(--canvas);
  color: var(--ink);
  -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 45%; 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 45%; 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 in headings — no blue links at display scale */
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: 1px;
  text-underline-offset: 4px;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

p { line-height: 1.68; }

svg { display: inline-block; }

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

/* ============================================================
   TYPOGRAPHY HELPERS — the unique move
   accent-word = italic Cormorant at 1.25× surrounding, tinted brand
   ============================================================ */
.accent-word, .accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--primary-light);
  font-size: 1.25em;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: inherit;
}

.section-eyebrow, .page-header-eyebrow, .cta-eyebrow, .cta-banner-eyebrow,
.cta-banner-label, .contact-info-eyebrow, .contact-form-label {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: block;
  margin-bottom: 16px;
}

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

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
#scroll-progress, #scrollProgress, .scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--primary-light);
  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 var(--border);
}

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

.nav-logo {
  flex: 0 0 auto;
  text-decoration: none;
  border-bottom: none;
}
.nav-logo:hover { 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 li { list-style: none; }

.nav-pages a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  display: inline-block;
  padding: 6px 0;
  transition: color 150ms;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
}

.nav-pages a:hover {
  color: var(--ink);
  text-decoration: none;
  border-bottom-color: var(--primary-light);
}

.nav-pages a[aria-current="page"] {
  color: var(--primary-light);
  border-bottom-color: var(--primary-light);
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--ink) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  border-bottom: none !important;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(1.15); text-decoration: none !important; color: var(--ink) !important; }

.nav-cta-icon { width: 16px; height: 16px; }

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

@media (max-width: 900px) {
  .top-nav { gap: 16px; }

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

  .nav-pages.open { display: flex; }

  .nav-pages a { font-size: 16px; padding: 10px 0; }

  .nav-toggle { display: flex; }

  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 12px; }
  .nav-cta-icon { width: 18px; height: 18px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(10,18,10,0.88) 0%,
    rgba(12,12,15,0.62) 45%,
    rgba(8,14,8,0.82) 100%
  );
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(48px, 8vh, 96px) clamp(24px, 5vw, 80px);
  padding-bottom: clamp(56px, 9vh, 112px);
  max-width: var(--content-max);
  width: 100%;
}

.booking-ribbon {
  position: absolute;
  top: calc(var(--header-height) + 20px);
  right: clamp(20px, 4vw, 48px);
  z-index: 3;
  background: rgba(46,79,46,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(46,79,46,0.6);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  border-radius: var(--radius);
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(72px, 9vw, 144px);
  line-height: 0.93;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 28px;
}

.hero-title .accent-word {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--primary-light);
  font-size: 1em;
}

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

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

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

.trust-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 18px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--ink);
  box-shadow: 0 4px 24px rgba(46,79,46,0.35);
}
.btn-primary:hover {
  filter: brightness(1.18);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(46,79,46,0.45);
  color: var(--ink);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(244,241,234,0.4);
  color: var(--ink);
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-ghost svg { width: 18px; height: 18px; }

.btn-service {
  background: var(--primary);
  color: var(--ink);
  padding: 14px 26px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: filter 150ms, transform 150ms;
}
.btn-service:hover { filter: brightness(1.15); transform: translateY(-1px); text-decoration: none; color: var(--ink); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-brand);
  border-bottom: 1px solid var(--border);
  padding: 18px clamp(20px, 4vw, 48px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.trust-strip-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  justify-content: center;
}

.trust-item {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mid);
  white-space: nowrap;
  padding: 4px 16px;
}

.trust-sep, .trust-strip-dot {
  color: var(--primary-light);
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.7;
}

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

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

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

.marquee-item {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1.2;
  color: var(--muted);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

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

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

/* ============================================================
   SERVICES (tabbed panel — index.html)
   ============================================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.section-header-row, .section-heading-row {
  max-width: var(--content-max);
  margin: 0 auto clamp(40px, 5vh, 64px);
  padding: 0 clamp(20px, 4vw, 48px);
}

.services-tabs {
  max-width: var(--content-max);
  margin: 0 auto 0;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.service-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: color 150ms, border-color 150ms, background 150ms;
  white-space: nowrap;
}

.service-tab:hover {
  color: var(--ink);
  border-color: rgba(244,241,234,0.3);
}

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

.services-panels {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

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

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

.service-panel-img {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.service-panel-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: saturate(0.82) brightness(0.88);
  transition: transform 600ms ease;
}

.service-panel:hover .service-panel-img img { transform: scale(1.03); }

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

.service-panel-body h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}

.service-panel-body p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.65;
}

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

@media (max-width: 768px) {
  .service-panel { grid-template-columns: 1fr; }
  .service-panel-img { min-height: 260px; }
  .service-panel-img img { position: relative; inset: auto; width: 100%; height: 260px; }
}

/* ============================================================
   SERVICES DETAIL (services.html — alternating rows)
   ============================================================ */
.services-detail {
  padding: var(--section-py) 0;
}

.service-row {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(40px, 6vh, 72px) clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  border-bottom: 1px solid var(--border);
}

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

.service-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: saturate(0.85) brightness(0.88);
  transition: transform 600ms ease;
}

.service-row:hover .service-photo img { transform: scale(1.02); }

.service-index-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(12,12,15,0.7);
  color: var(--primary-light);
  padding: 5px 12px;
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}

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

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

.service-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}

.service-desc { font-size: 15px; color: var(--ink-mid); line-height: 1.65; }

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-bullets li {
  font-size: 14px;
  color: var(--ink-mid);
  padding-left: 18px;
  position: relative;
}

.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--primary-light);
}

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

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

/* ============================================================
   ABOUT STORY
   ============================================================ */
.about-story {
  padding: var(--section-py) clamp(20px, 4vw, 48px);
  background: var(--canvas);
}

.about-story-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.about-story-portrait-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-story-portrait-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  max-height: 620px;
  filter: saturate(0.78) brightness(0.85);
}

.about-story-portrait-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.85) 0%, transparent 100%);
  padding: 32px 20px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

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

.about-story-content .section-eyebrow { margin-bottom: 20px; }

.about-story-content h2 { margin-bottom: 28px; }

.about-story-body { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.about-story-body p { font-size: 16px; color: var(--ink-mid); line-height: 1.72; }

.about-story-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--primary-dark);
  padding-top: 24px;
}

.about-story-chips .trust-chip { color: var(--muted); }

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

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

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

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

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

.gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}

.gallery-tile.tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: saturate(0.8) brightness(0.88);
  transition: filter 400ms ease, transform 400ms ease;
}

.gallery-tile:hover img { filter: saturate(1) brightness(1); transform: scale(1.04); }

.gallery-cta { text-align: center; margin-top: 40px; }

/* Gallery full page */
.gallery-full { padding: var(--section-py) 0; }

.gallery-full-header {
  max-width: var(--content-max);
  margin: 0 auto clamp(24px, 3vh, 40px);
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.gallery-filters {
  max-width: var(--content-max);
  margin: 0 auto 36px;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  color: var(--ink);
  border-color: rgba(244,241,234,0.3);
  background: var(--surface);
}

#galleryGrid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border-top: 1px solid var(--primary);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.5);
}

.gallery-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: saturate(0.82) brightness(0.88);
  transition: filter 350ms, transform 350ms;
}

.gallery-card:hover .gallery-card-img img { filter: saturate(1) brightness(0.95); transform: scale(1.03); }

.gallery-card-tag {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(12,12,15,0.75);
  color: var(--primary-light);
  padding: 4px 10px;
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}

.gallery-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gallery-card-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.1;
  color: var(--ink);
}

.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-card-location svg { width: 12px; height: 12px; flex-shrink: 0; }

.gallery-card-desc { font-size: 14px; color: var(--ink-mid); line-height: 1.55; }

.gallery-card-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.gallery-card-meta li {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.gallery-empty {
  max-width: var(--content-max);
  margin: 40px auto;
  padding: 0 clamp(20px, 4vw, 48px);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: none;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile.tall { grid-row: span 1; aspect-ratio: 4 / 3; }
  #galleryGrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
  #galleryGrid { grid-template-columns: 1fr; }
}

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

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

.service-areas-left { display: flex; flex-direction: column; gap: 0; }
.service-areas-left .section-eyebrow { margin-bottom: 16px; }
.service-areas-left h2 { margin-bottom: 28px; }

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mid);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  transition: color 150ms, border-color 150ms;
}

.area-pill:hover { color: var(--ink); border-color: rgba(244,241,234,0.3); }

.service-areas-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: clamp(24px, 3vw, 40px);
}

.service-areas-right p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.7;
}

.service-areas-right a { align-self: flex-start; }

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

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

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

.faq-header { margin-bottom: 48px; }

.faq-list { display: flex; flex-direction: column; }

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

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

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

details summary::-webkit-details-marker { display: none; }

details summary:hover { color: var(--ink); }

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

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

details[open] summary { color: var(--ink); }

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

/* ============================================================
   TEAM CTA (between FAQ and contact on index)
   ============================================================ */
.team-cta {
  background: var(--surface);
  border-top: 1px solid var(--border-brand);
  border-bottom: 1px solid var(--border);
}

.team-cta-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(56px, 7vh, 96px) clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.team-cta-text { display: flex; flex-direction: column; gap: 16px; flex: 1; }

.team-cta-text p {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.team-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.team-cta-text h2 span {
  font-style: italic;
  color: var(--primary-light);
}

.team-cta-inner > a { flex-shrink: 0; }

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

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

.contact-form-wrap { display: flex; flex-direction: column; gap: 28px; }

.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.contact-form-wrap h2 span {
  font-style: italic;
  color: var(--primary-light);
}

/* Contact page */
.contact-section { padding: var(--section-py) 0; }

.contact-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

.contact-form-side { display: flex; flex-direction: column; gap: 24px; }

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

.contact-form-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.contact-form-heading em { color: var(--primary-light); }

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

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

.info-block { display: flex; flex-direction: column; gap: 8px; }

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

.info-block a {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.info-block a:hover { color: var(--primary-light); text-decoration: none; }

.info-block-sub { font-size: 14px; color: var(--ink-mid); line-height: 1.5; }
.info-block-value { font-size: 15px; color: var(--ink-mid); }

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

.info-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 4px 0;
}

.info-hours-day { font-size: 14px; color: var(--ink-mid); }
.info-hours-time { font-size: 14px; color: var(--ink-mid); }
.info-hours-time.accent { color: var(--primary-light); font-weight: 500; }

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

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

.contact-info-block { display: flex; flex-direction: column; }
.contact-info-block > div { padding: 20px 0; }

.info-item-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;
}

.info-item-value { font-size: 15px; color: var(--ink-mid); }

.payment-badges, .payment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.payment-badge, .payment-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.payment-chip {
  color: var(--ink-mid);
  border-color: rgba(244,241,234,0.12);
}

.guarantee-strip {
  background: var(--surface);
  border-left: 2px solid var(--primary-light);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.guarantee-strip p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }
.guarantee-strip strong { color: var(--ink); }

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

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

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

.form-field, .form-group {
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
  position: relative;
}

.form-field label, .form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 150ms;
}

.form-field input:focus ~ label,
.form-field textarea:focus ~ label,
.form-group input:focus ~ label,
.form-group textarea:focus ~ label {
  color: var(--primary-light);
}

.form-field input,
.form-field textarea,
.form-field select,
.form-group input,
.form-group textarea,
.form-group select,
#cf-email, #cf-message, #cf-name, #cf-phone,
#f-area, #f-email, #f-message, #f-name, #f-phone, #f-service {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 150ms, box-shadow 150ms;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(46,79,46,0.2);
}

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

.form-field select, .form-group select { cursor: pointer; color: var(--ink-mid); }

.form-submit {
  background: var(--primary);
  color: var(--ink);
  border: none;
  border-radius: var(--radius);
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: filter 150ms, transform 150ms;
  align-self: flex-start;
}
.form-submit:hover { filter: brightness(1.15); transform: translateY(-1px); }
.form-submit svg { width: 18px; height: 18px; }

.form-note { font-size: 12px; color: var(--muted); margin-top: -8px; }

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

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--surface);
  border-top: 1px solid var(--border-brand);
  border-bottom: 1px solid var(--border);
  padding: var(--section-py) 0;
}

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

.cta-left, .cta-banner-inner > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-headline, .cta-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.cta-headline em, .cta-banner-headline em { color: var(--primary-light); }

.cta-meta, .cta-banner-sub {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.65;
}

.cta-phone-link {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  font-style: italic;
  color: var(--primary-light);
  text-decoration: none;
}
.cta-phone-link:hover { text-decoration: underline; color: var(--primary-light); }

.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 45vh, 480px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

.page-header-inner {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 5vh, 56px) clamp(24px, 5vw, 80px);
  max-width: var(--content-max);
  width: 100%;
}

.page-header-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}

.page-header-title em { color: var(--primary-light); }

.page-header-sub {
  font-size: 16px;
  color: var(--ink-mid);
  max-width: 56ch;
}

.breadcrumb {
  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: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary-light); text-decoration: none; }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--ink-mid); }

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

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

.section-heading-row { margin-bottom: clamp(40px, 5vh, 64px); }

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

.value-card {
  background: var(--canvas);
  padding: clamp(28px, 3vw, 44px);
  border-top: 1px solid var(--primary-dark);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 250ms;
}

.value-card:hover { background: rgba(46,79,46,0.06); }

.value-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary-light);
}

.value-card-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.value-card-title em { color: var(--primary-light); }

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

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

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

.journey-section > div {
  max-width: var(--content-max);
  margin: 0 auto 48px;
  padding: 0 clamp(20px, 4vw, 48px);
}

.timeline-list {
  list-style: none;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: calc(clamp(20px, 4vw, 48px) + 7px);
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border-brand);
}

.timeline-item {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 28px;
  padding: 0 0 40px;
  position: relative;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.timeline-dot-inner {
  width: 8px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 50%;
  margin: 4px;
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  margin-bottom: 8px;
}

.timeline-event-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.timeline-event-title em { color: var(--primary-light); }

.timeline-event-body { font-size: 14px; color: var(--ink-mid); line-height: 1.65; }

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

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

.crew-inner > div:first-child { margin-bottom: 48px; }

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

.crew-card {
  background: var(--canvas);
  border-radius: var(--radius);
  overflow: hidden;
  border-top: 1px solid var(--primary-dark);
}

.crew-card-img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.crew-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: saturate(0.7) brightness(0.85);
}

.crew-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.crew-card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.crew-card-name em { color: var(--primary-light); }

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

@media (max-width: 768px) {
  .crew-portrait-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border-brand);
  padding: clamp(56px, 8vh, 96px) 0 0;
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) clamp(40px, 5vh, 64px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
}

/* index + contact pages footer layout without .footer-grid */
.footer-inner > div:not(.footer-bottom):not(.footer-grid) {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  margin-bottom: 0;
}

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

.footer-brand p, .footer-tagline, .footer-brand-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 36ch;
}

.footer-brand-tagline em { color: var(--primary-light); font-style: italic; }

.footer-brand-contact,
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-contact { flex-direction: column; gap: 10px; align-items: flex-start; }

.footer-brand-contact a, .footer-contact-item a {
  font-size: 14px;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 150ms;
}
.footer-brand-contact a:hover, .footer-contact-item a:hover { color: var(--primary-light); text-decoration: none; }

.footer-contact-icon { width: 14px; height: 14px; color: var(--primary-light); flex-shrink: 0; }

.footer-brand-name { font-size: 13px; font-weight: 500; color: var(--ink-mid); margin-top: 4px; }

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

h4, .footer-col-title, .footer-col-heading, .footer-col-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: var(--ink); text-decoration: none; }

.footer-areas {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-area-item, .footer-areas span {
  font-size: 13px;
  color: var(--muted);
  display: block;
}

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

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-mid);
}
.footer-contact-line a { color: var(--ink-mid); text-decoration: none; }
.footer-contact-line a:hover { color: var(--primary-light); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px clamp(20px, 4vw, 48px);
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy, .footer-trust, .footer-payment {
  font-size: 12px;
  color: var(--muted);
}

.footer-payment { color: var(--muted); }
.footer-payments { font-size: 12px; color: var(--muted); }

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

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

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

.mobile-call-pill:hover,
.mobile-cta-pill:hover,
.mobile-sticky-cta:hover,
.mobile-cta:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  color: var(--ink) !important;
  text-decoration: none !important;
}

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

/* Link wrapping the pill is the pill itself on some pages */
.mobile-cta > a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink) !important;
  text-decoration: none !important;
}

.mobile-call-pill > a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink) !important;
  text-decoration: none !important;
}

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 640ms cubic-bezier(0.16,1,0.3,1), transform 640ms cubic-bezier(0.16,1,0.3,1);
}

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 640ms cubic-bezier(0.16,1,0.3,1), transform 640ms cubic-bezier(0.16,1,0.3,1);
}

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 640ms cubic-bezier(0.16,1,0.3,1), transform 640ms cubic-bezier(0.16,1,0.3,1);
}

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 560ms cubic-bezier(0.16,1,0.3,1), transform 560ms cubic-bezier(0.16,1,0.3,1);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms cubic-bezier(0.16,1,0.3,1), transform 560ms cubic-bezier(0.16,1,0.3,1);
}

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

.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 60ms; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 130ms; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 200ms; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 270ms; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 340ms; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 410ms; }
.stagger.visible > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 480ms; }
.stagger.visible > *:nth-child(8) { opacity: 1; transform: none; transition-delay: 550ms; }
.stagger.visible > *:nth-child(n+9) { opacity: 1; transform: none; transition-delay: 620ms; }

/* Pre-visible state: items that start visible (set in HTML with .visible) */
.fade-up.visible { opacity: 1; transform: none; }

/* ============================================================
   SERVICE CARD HOVER (shared)
   ============================================================ */
.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  border-top: 1px solid var(--primary-dark);
  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.35);
}

/* ============================================================
   REVIEW / TESTIMONIAL CARDS (if present)
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface-2);
}
.review-stars svg { color: var(--primary-light); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

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

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

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

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

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

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

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

body > * { position: relative; z-index: 1; }

.site-header { z-index: 900; }
.mobile-call-pill, .mobile-cta-pill, .mobile-sticky-cta, .mobile-cta { z-index: 999; }
#scroll-progress, #scrollProgress, .scroll-progress { z-index: 9999; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-tile { grid-column: 1 / -1; }
.service-photo { grid-column: 1 / -1; }
.service-content { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.gallery-empty { grid-column: 1 / -1; }
.timeline-dot { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-headline { grid-column: 1 / -1; }
.cta-banner-sub { grid-column: 1 / -1; }
.cta-banner-actions { 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; }
