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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:       #CC0000;
  --primary-dark:  #A30000;
  --primary-light: #FF1A1A;
  --accent:        #FFFFFF;
  --canvas:        #FFFFFF;
  --surface:       #F7F4ED;
  --surface-2:     #EDE9E0;
  --ink:           #141414;
  --ink-mid:       #2E2E2E;
  --muted:         #6B665C;
  --border:        rgba(20,20,20,0.12);
  --border-red:    rgba(204,0,0,0.3);
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 8px 28px rgba(0,0,0,0.12);
  --shadow-lg:     0 20px 56px rgba(0,0,0,0.16);
  --header-height: 72px;
  --radius:        0;
  --section-y:     clamp(96px, 12vh, 180px);
  --max-w:         1440px;
  --max-w-content: 1320px;
}

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

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

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

body {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  overflow-x: hidden;
}

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

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

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 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, .site-footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

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

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

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

p { line-height: 1.7; }

a { color: inherit; 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; }

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

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

.wide-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.bleed { width: 100%; max-width: none; padding: 0; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up, .fade-left, .fade-right, .scale-in, .stagger > * {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.fade-up              { transform: translateY(32px); }
.fade-left            { transform: translateX(-32px); }
.fade-right           { transform: translateX(32px); }
.scale-in             { transform: scale(0.94); }
.stagger > *          { transform: translateY(24px); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible,
.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; }

/* ============================================================
   SECTION EYEBROW / LABELS
   ============================================================ */
.section-eyebrow, .gallery-eyebrow, .service-eyebrow,
.cta-banner-eyebrow, .page-hero-eyebrow,
.about-story-eyebrow, .info-card-eyebrow {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.section-eyebrow::before, .gallery-eyebrow::before, .service-eyebrow::before,
.cta-banner-eyebrow::before, .page-hero-eyebrow::before,
.about-story-eyebrow::before, .info-card-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 2px;
  background: var(--primary);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, button.btn,
.btn-primary,
.btn-outline,
.btn-ghost-white,
.btn-outline-white,
.btn-white,
.btn-phone,
.btn-submit,
.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms, transform 150ms, box-shadow 200ms;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary, .btn-submit {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover, .btn-submit:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,0,0,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-2px);
}
.btn-ghost-white {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.24);
  color: #fff;
  text-decoration: none;
}
.btn-white {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--surface);
  text-decoration: none;
}
.btn-phone {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-phone svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-phone:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  text-decoration: none;
}
.btn-service {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  font-size: 13px;
  padding: 14px 24px;
}
.btn-service svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-service:hover {
  background: var(--primary-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

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

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

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

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 0; margin: 0;
}
.nav-pages li { list-style: none; }
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: none; }
.nav-pages a[aria-current="page"],
.nav-pages a.current {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 200ms, filter 200ms;
}
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-cta:hover { background: var(--primary-dark); color: #fff; text-decoration: none; }
.nav-cta-text { display: inline; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta-text { display: none; }
  .nav-cta { padding: 10px 12px; }
  .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 clamp(20px, 4vw, 56px);
    gap: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  .nav-pages.open { display: flex; }
  .nav-pages a {
    font-size: 15px;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-pages li:last-child a { border-bottom: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero, #hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
}

.hero > img, #hero > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(20,20,20,0.1) 0%,
    rgba(20,20,20,0.2) 40%,
    rgba(140,0,0,0.35) 75%,
    rgba(20,20,20,0.92) 100%
  );
}

.booking-ribbon {
  position: absolute;
  top: clamp(20px, 4vh, 40px);
  right: clamp(20px, 4vw, 48px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 20px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.ribbon-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(204,0,0,0.6); }
  50% { transform: scale(1.15); opacity: 0.9; box-shadow: 0 0 0 6px rgba(204,0,0,0); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w-content);
  margin: 0 auto;
  width: 100%;
  padding: clamp(48px, 8vh, 96px) clamp(20px, 4vw, 56px) clamp(64px, 10vh, 120px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

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

.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 18ch;
  margin: 0;
}

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.6vw, 19px);
  color: rgba(255,255,255,0.82);
  max-width: 54ch;
  line-height: 1.55;
  margin: 0;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  padding: 0;
}
.hero-trust-chips .trust-chip {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid var(--primary);
  padding: 6px 14px;
  background: rgba(204,0,0,0.12);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 clamp(20px, 4vw, 56px);
  max-width: var(--max-w-content);
  margin: 0 auto;
}
.trust-strip-inner::-webkit-scrollbar { display: none; }

.trust-chip-strip {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  padding: 20px 24px;
  border: 1px solid var(--primary);
  margin: 16px 8px;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 4px;
}

/* contact.html trust strip variant */
.trust-strip ul.trust-strip-inner {
  list-style: none;
}
.trust-strip ul.trust-strip-inner .trust-chip {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 20px 24px;
  border: 1px solid var(--primary);
  margin: 16px 8px;
  color: var(--ink);
}

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

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

.marquee-set {
  display: flex;
  align-items: center;
  gap: 0;
}

.marquee-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.2;
  color: var(--ink);
  padding: 0 32px;
}

.marquee-sep {
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
  align-self: center;
}

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

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

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

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

.services-inner h2,
.services-inner .section-heading {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 40px;
  max-width: 20ch;
}

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

.service-tab {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--border);
  padding: 10px 20px;
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
  white-space: nowrap;
}
.service-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.service-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.services-panels {
  position: relative;
}

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

.service-panel-img {
  position: relative;
  overflow: hidden;
  height: 480px;
}
.service-panel-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-panel-body {
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: var(--surface);
}
.service-panel-body h3 {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.service-panel-body p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.68;
  max-width: 52ch;
}

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

/* Services feature blocks (services.html) */
.services-feature { background: var(--canvas); }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-bottom: 1px solid var(--border);
}
.service-block:nth-child(even) .service-block-photo { order: 1; }
.service-block:nth-child(even) .service-block-body  { order: 0; }

.service-block-photo {
  position: relative;
  overflow: hidden;
}
.service-block-photo > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}
.service-block-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.55) 0%, transparent 60%);
  z-index: 1;
}
.service-block-num {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.2);
  letter-spacing: -0.04em;
}

.service-block-body {
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: var(--canvas);
}
.service-block-body h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.service-block-body p { color: var(--muted); font-size: 15.5px; max-width: 52ch; }
.service-features { display: flex; flex-direction: column; gap: 8px; }
.service-feature-item {
  font-size: 14px;
  color: var(--ink-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.service-feature-item::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 2px;
  background: var(--primary);
}

@media (max-width: 900px) {
  .service-block {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-block-photo { height: 280px; order: -1 !important; }
  .service-block-body { order: 1 !important; }
}

/* ============================================================
   GALLERY (index.html preview)
   ============================================================ */
.gallery {
  background: var(--surface);
  padding: var(--section-y) 0;
}

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

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}
.gallery-header-text {}
.gallery-header-text .section-heading { font-size: clamp(32px, 4.5vw, 64px); }
.gallery-view-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.gallery-view-link svg { width: 18px; height: 18px; }
.gallery-view-link:hover { text-decoration: underline; }

.gallery-preview {
  display: block;
  position: relative;
  overflow: hidden;
  height: clamp(280px, 40vw, 560px);
  text-decoration: none;
}
.gallery-preview img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 600ms cubic-bezier(0.22,1,0.36,1);
}
.gallery-preview:hover img { transform: scale(1.03); }
.gallery-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.7) 0%, transparent 60%);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 32px;
}
.gallery-cta-btn {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 12px 24px;
  background: rgba(204,0,0,0.7);
  z-index: 2;
}

/* Gallery page (gallery.html) */
.gallery-section {
  background: var(--canvas);
  padding: var(--section-y) 0;
}

.gallery-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.gallery-headline { font-size: clamp(32px, 4.5vw, 64px); }
.gallery-tally {
  text-align: right;
  flex-shrink: 0;
}
.gallery-tally-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
  display: block;
}
.gallery-tally-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.gallery-filters button, .filter-pill {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink);
  padding: 8px 18px;
  cursor: pointer;
  transition: all 200ms;
}
.gallery-filters button:hover, .filter-pill:hover,
.gallery-filters button.active, .filter-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.gallery-card-featured {
  grid-column: span 2;
}

.g-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-card-featured .g-wrap { aspect-ratio: 16/9; }
.g-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms cubic-bezier(0.22,1,0.36,1);
}
.gallery-card:hover .g-wrap img { transform: scale(1.04); }

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.75) 0%, transparent 55%);
  z-index: 1;
  transition: opacity 300ms;
}

.g-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: 4px 10px;
}
.g-tag {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(20,20,20,0.7);
  padding: 4px 10px;
}

.g-hov {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 300ms;
}
.gallery-card:hover .g-hov { opacity: 1; }
.g-hov h3 {
  font-size: clamp(16px, 2vw, 22px);
  color: #fff;
  margin-bottom: 8px;
}
.g-hov-loc, .g-hov-desc, .g-hov-meta { font-size: 12px; color: rgba(255,255,255,0.78); }
.g-hov-loc svg { width: 12px; height: 12px; display: inline; }

.g-caption {
  padding: 12px 16px;
  background: var(--canvas);
  border-top: 2px solid var(--primary);
}
.g-cap-service {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2px;
}
.g-cap-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
}
.g-cap-loc {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.g-cap-loc svg { width: 12px; height: 12px; flex-shrink: 0; }

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

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--ink);
  padding: var(--section-y) 0;
  color: #fff;
}

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

.reviews-inner .section-eyebrow { color: var(--primary); }
.reviews-inner .section-heading,
.reviews-inner h2 {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 64px);
  margin-bottom: 48px;
}

.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.reviews-rating-col {
  flex-shrink: 0;
}
.reviews-rating-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
}
.reviews-rating-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

.reviews-divider-vert {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.reviews-meta-col {
  flex: 1;
  min-width: 240px;
}
.reviews-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}
.reviews-stars svg {
  width: 20px; height: 20px;
  color: var(--primary);
  fill: var(--primary);
}
.reviews-summary {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  font-family: 'Fraunces', serif;
  font-style: italic;
}
.reviews-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}
.reviews-sub a { color: var(--primary); }
.reviews-pull {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* Review cards (if used) */
.review-card {
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.review-stars svg { color: var(--primary); fill: var(--primary); width: 18px; height: 18px; }
.review-quote { font-family: 'Fraunces', serif; font-style: italic; font-size: 17px; line-height: 1.55; margin: 14px 0; color: rgba(255,255,255,0.9); }
.review-attribution { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--surface);
  padding: var(--section-y) 0;
}
.service-areas-inner {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.service-areas-inner h2,
.service-areas-inner .section-heading {
  font-size: clamp(32px, 4.5vw, 64px);
  margin-bottom: 20px;
}
.service-areas-intro {
  color: var(--muted);
  font-size: 16px;
  max-width: 56ch;
  margin-bottom: 40px;
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-chip, .area-pill {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--primary);
  padding: 8px 16px;
  background: transparent;
  transition: background 200ms, color 200ms;
}
.area-chip:hover, .area-pill:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.faq-inner {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.faq-inner h2,
.faq-inner .section-heading { font-size: clamp(32px, 4.5vw, 64px); margin-bottom: 48px; }
.faq-list { max-width: 840px; }

details {
  border-bottom: 1px solid var(--border);
}
details > summary {
  cursor: pointer;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 900;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 24px;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
details > summary::-webkit-details-marker { display: none; }

.chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--ink);
  transition: transform 250ms cubic-bezier(0.22,1,0.36,1), color 200ms;
}
details[open] > summary .chevron {
  transform: rotate(45deg);
  color: var(--primary);
}

details p {
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 68ch;
}

/* ============================================================
   TEAM CTA / CTA BANNER
   ============================================================ */
.team-cta {
  background: var(--primary);
  padding: clamp(64px, 8vh, 120px) 0;
}
.team-cta-inner {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.team-cta-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 20ch;
}
.team-cta-headline span { color: rgba(255,255,255,0.65); }

.cta-banner {
  background: var(--ink);
  padding: clamp(64px, 8vh, 120px) 0;
}
.cta-banner-inner {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-banner-left { flex: 1; min-width: 280px; }
.cta-banner-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cta-banner-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.cta-banner-headline, .cta-banner h2 {
  font-size: clamp(28px, 4vw, 56px);
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta-banner-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
  margin-bottom: 8px;
}
.cta-banner-phone svg { width: 28px; height: 28px; color: var(--primary); flex-shrink: 0; }
.cta-banner-phone:hover { color: var(--primary); text-decoration: none; }

.cta-banner-sub { color: rgba(255,255,255,0.55); font-size: 14px; }
.cta-banner-text { flex: 1; min-width: 240px; }
.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* gallery.html cta variant */
.cta-inner {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: clamp(64px, 8vh, 120px) clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}
.cta-title {
  font-size: clamp(28px, 4vw, 56px);
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-sub { color: rgba(255,255,255,0.55); font-size: 15px; }
.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .cta-inner { flex-direction: column; }
  .cta-actions { width: 100%; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact, .contact-section {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.contact-inner {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.contact-form-col h2,
.contact-form-col .section-heading,
.contact-form-wrap h2 {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 32px;
}
.contact-form-title {
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 32px;
}

/* Form styles */
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, .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field.full-width { grid-column: span 2; }
.form-group.full-width { grid-column: span 2; }

label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

input, textarea, select {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border);
  padding: 14px 16px;
  outline: none;
  border-radius: var(--radius);
  transition: border-color 200ms;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
}
textarea { min-height: 140px; resize: vertical; }

.contact-info-col, .contact-info-card {
  background: var(--surface);
  padding: clamp(32px, 4vw, 48px);
  border-top: 3px solid var(--primary);
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.contact-info-card h3 {
  font-size: clamp(18px, 2vw, 26px);
  margin-bottom: 28px;
}

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

.contact-info-label, .info-block-label, .info-card-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}
.contact-info-value {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
}
.contact-phone-big {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
}

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

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

@media (max-width: 1100px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-info-col, .contact-info-card { position: static; }
}
@media (max-width: 640px) {
  .form-row, .form-grid { grid-template-columns: 1fr; }
  .form-field.full-width, .form-group.full-width { grid-column: span 1; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(320px, 45vw, 560px);
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(20,20,20,0.25) 0%, rgba(20,20,20,0.78) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w-content);
  margin: 0 auto;
  width: 100%;
  padding: clamp(48px, 6vh, 80px) clamp(20px, 4vw, 56px);
}
.page-hero-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: clamp(14px, 1.4vw, 18px);
  color: rgba(255,255,255,0.78);
  max-width: 56ch;
  margin-bottom: 24px;
}
.page-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-hero-chip {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(204,0,0,0.6);
  padding: 6px 12px;
  background: rgba(204,0,0,0.15);
}

/* ============================================================
   ABOUT SECTION (index.html)
   ============================================================ */
.about-section {
  background: var(--surface);
  padding: var(--section-y) 0;
}
.about-section-inner {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.about-photo-block {
  position: relative;
}
.about-photo-block img {
  width: 100%;
  height: clamp(400px, 50vw, 640px);
  object-fit: cover;
  max-height: none;
  display: block;
}
.about-photo-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 60%;
  height: 50%;
  background: var(--primary);
  z-index: -1;
}

.about-copy-block h2,
.about-copy-headline {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 24px;
  line-height: 1.0;
}
.about-copy-body { display: flex; flex-direction: column; gap: 16px; }
.about-copy-body p {
  color: var(--muted);
  font-size: 15.5px;
  max-width: 56ch;
}

.about-fraunces-quote {
  border-left: 3px solid var(--primary);
  padding-left: 24px;
  margin: 8px 0;
}
.about-fraunces-quote p,
.about-pull-quote blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
}
.about-pull-quote {
  border-left: 3px solid var(--primary);
  padding-left: 24px;
  margin: 8px 0;
}

.about-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  margin-top: 8px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
  transition: gap 200ms;
}
.about-cta-link svg { width: 16px; height: 16px; }
.about-cta-link:hover { text-decoration: none; gap: 16px; }

@media (max-width: 900px) {
  .about-section-inner { grid-template-columns: 1fr; }
  .about-photo-accent { right: 0; bottom: 0; }
}

/* ============================================================
   ABOUT STORY (about.html)
   ============================================================ */
.about-story {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.about-story-inner {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.about-story-portrait-col {
  position: relative;
}
.about-story-portrait-col img {
  width: 100%;
  height: clamp(480px, 55vw, 720px);
  object-fit: cover;
  max-height: none;
}
.about-story-portrait-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  padding-left: 4px;
}
.about-story-copy {
  padding-top: clamp(24px, 4vh, 48px);
}
.about-story-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 20px;
}
.about-story-copy h2 {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 32px;
}
.about-story-body { display: flex; flex-direction: column; gap: 20px; }
.about-story-body p { color: var(--muted); font-size: 15.5px; max-width: 58ch; line-height: 1.7; }

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-portrait-col img { height: clamp(300px, 70vw, 480px); }
}

/* ============================================================
   VALUES SECTION (about.html)
   ============================================================ */
.values-section {
  background: var(--surface);
  padding: var(--section-y) 0;
}
.values-inner {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.values-inner h2,
.values-inner .section-heading { font-size: clamp(32px, 4vw, 56px); margin-bottom: 48px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.value-card {
  background: var(--canvas);
  padding: clamp(28px, 4vw, 48px);
  border-top: 3px solid transparent;
  transition: border-color 250ms;
}
.value-card:hover { border-color: var(--primary); }
.value-card-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 16px;
}
.value-card h3 { font-size: clamp(16px, 1.8vw, 22px); margin-bottom: 12px; }
.value-card-body { color: var(--muted); font-size: 14.5px; line-height: 1.65; }

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

/* ============================================================
   TIMELINE (about.html)
   ============================================================ */
.timeline-section {
  background: var(--ink);
  padding: var(--section-y) 0;
}
.timeline-inner {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.timeline-inner h2,
.timeline-inner .section-heading { color: #fff; font-size: clamp(32px, 4vw, 56px); margin-bottom: 56px; }
.timeline-inner .section-eyebrow { color: var(--primary); }

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.timeline-step {
  background: rgba(255,255,255,0.04);
  padding: clamp(24px, 3vw, 40px);
  border-top: 2px solid rgba(255,255,255,0.1);
  position: relative;
  transition: border-color 250ms;
}
.timeline-step:hover { border-color: var(--primary); }
.timeline-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  margin-bottom: 20px;
}
.timeline-dot span {
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--primary);
}
.timeline-step-year {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.timeline-step h3 { font-size: clamp(15px, 1.6vw, 18px); color: #fff; margin-bottom: 8px; }
.timeline-step-title { font-size: clamp(15px, 1.6vw, 18px); color: #fff; margin-bottom: 8px; }
.timeline-step-body { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

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

/* ============================================================
   CREW SECTION (about.html)
   ============================================================ */
.crew-section {
  background: var(--canvas);
  padding: var(--section-y) 0;
}
.crew-inner {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.crew-inner h2 { font-size: clamp(28px, 4vw, 52px); margin-bottom: 40px; }
.crew-inner .section-eyebrow { color: var(--primary); }

.crew-strip {
  position: relative;
  overflow: hidden;
  height: clamp(280px, 40vw, 520px);
}
.crew-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}
.crew-strip-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.8) 0%, transparent 100%);
  padding: 32px 40px 32px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  letter-spacing: 0.06em;
}
.crew-strip-caption span {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}

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

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

.footer-top, .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vh, 80px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand img { max-height: 48px !important; }
.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-brand-tag, .footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 36ch;
}
.footer-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 36ch;
  margin-top: 8px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-row svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.footer-contact-row a { color: rgba(255,255,255,0.65); }
.footer-contact-row a:hover { color: var(--primary); text-decoration: none; }

.footer-contact-item {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--primary); text-decoration: none; }
.footer-contact-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
  margin-top: 16px;
}
.footer-contact-val { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.6; }

.footer-col {}
.footer-col-title, .footer-col h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  display: block;
}
.footer-links, .footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
.footer-links li a, .footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links li a:hover, .footer-col ul li a:hover {
  color: #fff;
  text-decoration: none;
}
.footer-phone, .footer-email {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.footer-copy, .footer-bottom-copy, .footer-bottom span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.03em;
}
.footer-bottom-rating, .footer-stars {
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); text-decoration: none; }

@media (max-width: 900px) {
  .footer-top, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 640px) {
  .footer-top, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-cta-pill, .mobile-call-pill, .mobile-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: background 200ms, transform 200ms;
}
.mobile-cta-pill svg, .mobile-call-pill svg, .mobile-cta svg {
  width: 20px; height: 20px; flex-shrink: 0;
}
.mobile-cta-pill:hover, .mobile-call-pill:hover, .mobile-cta:hover {
  background: var(--primary-dark);
  text-decoration: none;
  color: #fff;
  transform: scale(1.04);
}
@media (min-width: 900px) {
  .mobile-cta-pill, .mobile-call-pill, .mobile-cta { display: none; }
}

/* ============================================================
   SECTION HEADINGS (shared utility)
   ============================================================ */
.section-heading {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

/* ============================================================
   SERVICE CARD HOVER (shared)
   ============================================================ */
.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);
}

/* ============================================================
   PROCESS STRIP (if used)
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.process-step { padding: 24px; border: 1px solid var(--border); }
.step-num { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; letter-spacing: 0.12em; }

/* ============================================================
   FAQ (standard details) — covered above, ensuring faq-list specifics
   ============================================================ */
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list details:first-child { border-top: 1px solid var(--border); }

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 1200px) {
  .hero-title { font-size: clamp(48px, 7vw, 96px); }
}

@media (max-width: 900px) {
  .hero { min-height: 80vh; }
  .hero-title { font-size: clamp(44px, 10vw, 72px); }
  .booking-ribbon { display: none; }
  .trust-strip-inner { justify-content: flex-start; }
  .reviews-aggregate { flex-direction: column; align-items: flex-start; }
  .reviews-divider-vert { display: none; }
  .team-cta-inner { flex-direction: column; }
  .cta-banner-inner { flex-direction: column; gap: 32px; }
  .cta-banner-right { width: 100%; }
}

@media (max-width: 640px) {
  .hero-title { font-size: clamp(40px, 12vw, 64px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 10px; padding: 8px 14px; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   SVG CAPS (unsized svgs inside containers)
   ============================================================ */
svg { max-width: 100%; }
.nav-cta svg,
.nav-toggle svg { width: 20px; height: 20px; display: block; }
.btn svg, .btn-service svg, .btn-phone svg,
.btn-outline-white svg, .btn-ghost-white svg { width: 18px; height: 18px; flex-shrink: 0; }
.about-cta-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.gallery-view-link svg { width: 18px; height: 18px; }
.cta-banner-phone svg { width: 28px; height: 28px; }
.footer-contact-row svg { width: 16px; height: 16px; }
.g-cap-loc svg, .g-hov-loc svg { width: 12px; height: 12px; }
.reviews-stars svg { width: 20px; height: 20px; fill: var(--primary); color: var(--primary); }
details summary svg.chevron { width: 20px; height: 20px; flex-shrink: 0; }
.mobile-cta-pill svg, .mobile-call-pill svg, .mobile-cta svg { width: 20px; height: 20px; }
.footer-brand-logo svg { width: 24px; height: 24px; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.contact-form-col { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.about-story-copy { grid-column: 1 / -1; }
.about-copy-block { grid-column: 1 / -1; }
.form-field { 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; }
