/* ─────────────────────────────────────────────────────────────
   Hyco River Investments — Site Styles
   Palette + type system from brief Section 2
   ───────────────────────────────────────────────────────────── */

:root {
  --navy: #1B3A5C;
  --navy-deep: #122740;
  --navy-ink: #0c1c30;
  --blue: #4A90B8;
  --blue-soft: #88b3cf;
  --red: #8B2E2E;
  --red-soft: #b15050;
  --bg: #F7F5F0;
  --bg-warm: #efeae0;
  --gray: #F4F6F8;
  --gray-2: #e6e9ee;
  --text: #1A1A2E;
  --text-mid: #4A5568;
  --text-soft: #6b7280;
  --rule: rgba(26, 26, 46, 0.12);

  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', 'Source Sans Pro', system-ui, -apple-system, Arial, sans-serif;

  --maxw: 1200px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin: 0;
}
h1 { font-size: clamp(40px, 5.4vw, 60px); }
h2 { font-size: clamp(30px, 3.6vw, 40px); }
h3 { font-size: clamp(20px, 2vw, 24px); }
p  { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow .dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--red);
  margin: 0 10px 2px;
  transform: rotate(45deg);
  vertical-align: middle;
}

.serif-italic { font-family: var(--serif); font-style: normal; font-weight: 400; }

em, cite { font-style: normal; }

/* Layout */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section.tight { padding: clamp(48px, 6vw, 80px) 0; }

.divider-rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* ─── Header / Nav ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s, border-color 0.2s;
}
.nav.on-dark {
  background: rgba(18, 39, 64, 0.55);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
}
.brand-logo {
  display: block;
  height: 38px;
  width: auto;
  object-fit: contain;
}
.brand-md .brand-logo { height: 52px; }
.brand-lg .brand-logo { height: 52px; }
@media (max-width: 520px) {
  .brand-md .brand-logo { height: 40px; }
}

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  border-radius: 4px;
  transition: color 0.15s;
  position: relative;
}
.nav.on-dark .nav-links a { color: rgba(255,255,255,0.85); }
.nav-links a:hover { color: var(--blue); }
.nav.on-dark .nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--navy); }
.nav.on-dark .nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: '';
  position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 1px; background: var(--red);
}

.nav-cta {
  padding: 10px 18px;
  background: var(--navy);
  color: #fff !important;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--navy-deep); }
.nav.on-dark .nav-cta {
  background: #fff;
  color: var(--navy) !important;
}

.hamburger {
  display: none;
  background: transparent; border: 0;
  width: 32px; height: 32px;
  cursor: pointer;
  position: relative;
}
.hamburger span {
  position: absolute; left: 6px; right: 6px;
  height: 1.5px; background: var(--navy);
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger span:nth-child(1) { top: 11px; }
.hamburger span:nth-child(2) { top: 16px; }
.hamburger span:nth-child(3) { top: 21px; }
.nav.on-dark .hamburger span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .nav-mobile-open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    padding: 12px var(--pad) 24px;
    border-bottom: 1px solid var(--rule);
    gap: 0;
  }
  .nav-mobile-open .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
  }
  /* Keep the primary CTA visible inside the open mobile menu */
  .nav-mobile-open .nav-links .nav-cta {
    display: block;
    margin-top: 16px;
    padding: 14px 18px;
    text-align: center;
    color: #fff !important;
    border-bottom: 0;
    border-radius: 2px;
  }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  background: var(--navy);
  color: #fff;
}
.btn:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn.btn-light {
  background: #fff;
  color: var(--navy);
  border-color: rgba(255,255,255,0.9);
}
.btn.btn-light:hover { background: var(--bg); }
.btn.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn.btn-outline:hover { background: var(--navy); color: #fff; }
.btn.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn .arrow { display: inline-block; transition: transform 0.18s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg image-slot {
  width: 100%; height: 100%;
  --image-slot-bg: transparent;
  --image-slot-border: none;
  --image-slot-placeholder-color: rgba(255,255,255,0.35);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 36, 0.04) 0%, rgba(8, 20, 36, 0.18) 100%);
  pointer-events: none;
}
.hero-bg.bg-render {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(74, 144, 184, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(139, 46, 46, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #1a3a5c 0%, #0c1c30 100%);
}
.hero-bg.bg-render::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 58%, rgba(255,255,255,0.04) 60%, transparent 62%),
    linear-gradient(180deg, transparent 64%, rgba(74, 144, 184, 0.10) 66%, transparent 90%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) var(--pad) clamp(60px, 10vh, 100px);
}
.hero-card {
  display: inline-block;
  width: fit-content;
  background: rgba(12, 28, 48, 0.55);
  backdrop-filter: blur(6px) saturate(115%);
  -webkit-backdrop-filter: blur(6px) saturate(115%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 4px;
  padding: 44px 88px 48px 56px;
  max-width: min(840px, 100%);
  box-shadow: 0 24px 60px -28px rgba(8, 20, 36, 0.45);
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::after { display: none; }
.hero-eyebrow::before {
  content: '';
  height: 1px; width: 36px;
  background: rgba(255,255,255,0.4);
}

.hero h1 {
  font-family: var(--serif);
  color: #fff;
  font-weight: 400;
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 14ch;
}
.hero h1 em { font-style: normal; color: var(--blue-soft); font-weight: 400; }

.hero-tagline {
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(20px, 2.2vw, 26px);
  color: rgba(255,255,255,0.92);
  max-width: 32ch;
  margin: 32px 0 0;
  line-height: 1.5;
  white-space: pre-line;
}
.hero-actions { display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap; }

/* Hero responsive — override inline 67px + nowrap on smaller screens */
@media (max-width: 820px) {
  .hero-card { padding: 38px 40px 40px; }
  .hero h1, .hero h1 em { font-size: 48px !important; }
}
@media (max-width: 520px) {
  .hero-card { padding: 28px 24px 30px; }
  .hero h1, .hero h1 em {
    font-size: 34px !important;
    white-space: normal !important;
  }
  .hero-eyebrow { letter-spacing: 0.16em; margin-bottom: 20px; }
}

/* Mobile hero: stack the landscape as a banner above the text so the whole
   scene stays visible instead of being cropped to a sliver by the tall hero. */
@media (max-width: 700px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: visible;
  }
  .hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 10;
    flex: 0 0 auto;
  }
  .hero-bg image-slot { width: 100%; height: 100%; }
  .hero-inner {
    position: relative;
    z-index: 2;
    padding: 30px var(--pad) 10px;
  }
  .hero-card {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
    max-width: 100%;
  }
  .hero-meta { position: static; margin: 6px var(--pad) 0; bottom: auto; }
}

.hero-meta {
  position: absolute; left: var(--pad); right: var(--pad); bottom: 36px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  gap: 16px; flex-wrap: wrap;
}

/* ─── Beadwork pattern band ─── */
.bead-band {
  width: 100%;
  background: var(--navy);
  padding: 18px 0;
  position: relative;
}
.bead-band.thin { padding: 9px 0; }
.bead-svg { width: 100%; height: 14px; display: block; }
.bead-band.thin .bead-svg { height: 8px; }

.bead-rule {
  display: flex; align-items: center; gap: 20px;
  margin: 0 auto;
}
.bead-rule .line { flex: 1; height: 1px; background: var(--rule); }
.bead-rule .bead-svg { width: 220px; height: 10px; flex: 0 0 220px; }

/* ─── Sections common ─── */
.section-head { margin-bottom: clamp(40px, 5vw, 64px); max-width: 720px; }
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p {
  font-size: 19px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 60ch;
}

.bg-warm { background: var(--bg-warm); }
.bg-gray { background: var(--gray); }
.bg-navy { background: var(--navy); color: rgba(255,255,255,0.92); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy .eyebrow { color: var(--blue-soft); }

/* ─── Three pillars ─── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.pillar {
  background: var(--bg);
  padding: 48px 36px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.pillar:hover { background: #fff; }
.pillar:hover .pillar-arrow { transform: translateX(4px); color: var(--red); }
.pillar-icon {
  width: 44px; height: 44px;
  color: var(--navy);
  margin-bottom: 28px;
}
.pillar-num {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--text-soft);
  letter-spacing: 0.2em;
}
.pillar h3 { margin-bottom: 12px; font-weight: 500; }
.pillar p { color: var(--text-mid); font-size: 15.5px; line-height: 1.6; margin: 0; }
.pillar-arrow {
  display: inline-block;
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
  transition: transform 0.18s, color 0.18s;
}
.pillar-arrow span { color: var(--red); margin-left: 6px; }

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

/* ─── Philosophy callout ─── */
.philosophy {
  background: var(--navy);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  color: rgba(255,255,255,0.92);
  overflow: hidden;
}
.philosophy::before, .philosophy::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 14px;
  background-image: var(--bead-bg);
  background-repeat: repeat-x;
  background-size: 28px 14px;
  opacity: 0.6;
}
.philosophy::before { top: 0; }
.philosophy::after { bottom: 0; }
.philosophy-inner {
  max-width: 980px; margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}
.philosophy blockquote {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.35;
  color: #fff;
  margin: 0;
  letter-spacing: -0.005em;
}
.philosophy blockquote::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--red-soft);
  margin: 0 auto 36px;
}
.philosophy cite {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 32px;
}

/* ─── Credentials bar ─── */
.creds {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 32px 0;
}
.creds-inner {
  display: flex; flex-wrap: nowrap; justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 500;
}
.creds-inner .cred {
  display: flex; align-items: center; gap: 14px;
}
.creds-inner .cred::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--red);
  transform: rotate(45deg);
}
@media (max-width: 700px) {
  /* Let the credential chips wrap instead of overflowing off-screen. */
  .creds { padding: 24px 0; }
  .creds-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    text-align: center;
  }
}

/* ─── Footer CTA ─── */
.footer-cta {
  text-align: center;
  padding: clamp(64px, 8vw, 100px) var(--pad);
}
.footer-cta .eyebrow { margin-bottom: 20px; }
.footer-cta h2 { margin-bottom: 18px; max-width: 22ch; margin-left: auto; margin-right: auto; }
.footer-cta p {
  font-family: var(--serif);
  font-style: normal;
  color: var(--text-mid);
  font-size: 22px;
  max-width: 48ch; margin: 0 auto 36px;
}

/* ─── Footer ─── */
footer.site-foot {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.foot-grid h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid ul li { margin-bottom: 10px; font-size: 14px; }
.foot-grid ul li a:hover { color: var(--blue-soft); }
.foot-brand .brand-logo { height: 52px; margin-bottom: 4px; }
.foot-mission {
  font-family: var(--serif);
  font-style: normal;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin: 18px 0 12px;
  max-width: 36ch;
  line-height: 1.6;
}
.foot-reg {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.foot-base {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px var(--pad) 0;
  max-width: var(--maxw);
  margin-left: auto; margin-right: auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
}
.foot-base a:hover { color: rgba(255,255,255,0.8); }
.foot-disclaim {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px var(--pad) 0;
  font-size: 11.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 820px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
}

/* ─── About page ─── */
.page-header {
  padding: 72px var(--pad) 56px;
  text-align: left;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}
.page-header-text { flex: 0 1 auto; min-width: 0; }
.page-header-image {
  flex: 0 0 auto;
  width: 340px;
  height: 400px;
  --image-slot-radius: 4px;
}
/* Red corner brackets — matching the contact page image treatment */
.page-header-image::before {
  content: '';
  position: absolute;
  top: -13px;
  left: -13px;
  width: 86px;
  height: 86px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
  z-index: 2;
  pointer-events: none;
}
.page-header-image::after {
  content: '';
  position: absolute;
  bottom: -13px;
  right: -13px;
  width: 86px;
  height: 86px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 820px) {
  .page-header { flex-direction: column; gap: 24px; }
  .page-header-image { width: 100%; height: 260px; }
}
.page-header .eyebrow { display: block; margin-bottom: 22px; }
.page-header h1 {
  font-size: clamp(44px, 5.2vw, 68px);
  max-width: 18ch;
  margin-bottom: 24px;
}
.page-header .lede {
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--text-mid);
  line-height: 1.5;
  max-width: 46ch;
  margin: 0;
}

/* Contact page: editorial split — text left, photo bleeding off the right edge */
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: clamp(28px, 4vw, 72px);
  padding-top: clamp(48px, 6vw, 76px);
  padding-bottom: clamp(36px, 4.5vw, 52px);
  padding-left: max(var(--pad), calc((100% - var(--maxw)) / 2 + var(--pad)));
  padding-right: var(--pad);
}
.contact-hero-text {
  align-self: center;
  max-width: 540px;
  padding: 12px 0;
}
.contact-hero-text .eyebrow { display: block; margin-bottom: 22px; }
.contact-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 22px;
  max-width: 11ch;
}
.contact-hero .lede {
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--text-mid);
  line-height: 1.5;
  max-width: 34ch;
  margin: 0;
}
.contact-hero-media {
  position: relative;
  min-height: clamp(420px, 52vh, 560px);
}
.contact-hero-media::before {
  content: '';
  position: absolute;
  top: -13px;
  left: -13px;
  width: 86px;
  height: 86px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
  z-index: 2;
  pointer-events: none;
}
.contact-hero-media::after {
  content: '';
  position: absolute;
  bottom: -13px;
  right: -13px;
  width: 86px;
  height: 86px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
  z-index: 2;
  pointer-events: none;
}
.contact-hero-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  --image-slot-radius: 0;
}
@media (max-width: 820px) {
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
  .contact-hero-text { max-width: 100%; align-self: start; }
  .contact-hero h1 { max-width: 16ch; }
  .contact-hero-media { min-height: 300px; }
  .contact-hero-media::before { display: none; }
  .contact-hero-media::after { display: none; }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

.split .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  position: sticky; top: 100px;
}
.split .body p { font-size: 18px; color: var(--text); line-height: 1.75; margin-bottom: 1.2em; }
.split .body p:last-child { margin-bottom: 0; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.value {
  background: var(--bg);
  padding: 44px 32px 40px;
  position: relative;
  border-radius: 4px;
  border: 1.5px solid rgba(20, 30, 50, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(20, 30, 50, 0.04), 0 14px 32px -18px rgba(20, 30, 50, 0.18);
}
.values .value:nth-child(even) { background: #d9e7ef; }
.value .num {
  width: 52px;
  height: 52px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 6px;
}
.value .num svg { width: 44px; height: 44px; display: block; }
.value h3 {
  font-size: 24px;
  margin: 14px 0 12px;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.value h3::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  margin-bottom: 16px;
}
.value p { font-size: 15px; color: var(--text-mid); line-height: 1.6; margin: 0; }
@media (max-width: 820px) { .values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .values { grid-template-columns: 1fr; } }

.exp-list {
  border-top: 1px solid var(--rule);
}
.exp-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.exp-row .num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--red);
  letter-spacing: 0.18em;
}
.exp-row .title {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  color: var(--navy);
  line-height: 1.3;
}
.exp-row .meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}
@media (max-width: 720px) {
  .exp-row { grid-template-columns: 60px 1fr; }
  .exp-row .meta { grid-column: 1 / -1; padding-left: 60px; }
}

/* ─── Section image (Mission, Story) ─── */
.split-left {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 36px);
}
.split-left .label {
  position: static;
}
.section-image {
  aspect-ratio: 4 / 5;
  background: var(--gray);
  border: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
}
.section-image image-slot {
  width: 100%;
  height: 100%;
  display: block;
  --image-slot-bg: transparent;
}
@media (max-width: 820px) {
  .section-image { aspect-ratio: 16 / 10; }
}

/* ─── Experience grid ─── */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.exp-card {
  background: #fff;
  border-radius: 4px;
  padding: 28px 30px 28px 34px;
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 22px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 30, 50, 0.06);
  box-shadow: 0 1px 2px rgba(20, 30, 50, 0.04), 0 8px 24px -14px rgba(20, 30, 50, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.exp-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--exp-accent, var(--navy));
}
.exp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(20, 30, 50, 0.05), 0 14px 32px -10px rgba(20, 30, 50, 0.14);
}
.exp-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--exp-tint, #e7ecf3);
  color: var(--exp-accent, var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
}
.exp-icon svg { width: 28px; height: 28px; }
.exp-content { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.exp-card .exp-heading {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.exp-card .exp-body {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--navy);
  opacity: 0.72;
  line-height: 1.5;
  text-wrap: pretty;
}

/* Accent rotation — brand palette */
.exp-card-0 { --exp-accent: #8B2E2E; --exp-tint: #f3dada; }
.exp-card-1 { --exp-accent: #1B3A5C; --exp-tint: #dbe1ea; }
.exp-card-2 { --exp-accent: #1B3A5C; --exp-tint: #dbe1ea; }
.exp-card-3 { --exp-accent: #8B2E2E; --exp-tint: #f3dada; }
.exp-card-4 { --exp-accent: #B58A3D; --exp-tint: #f0e5cf; }
.exp-card-5 { --exp-accent: #4A90B8; --exp-tint: #dceaf2; }

@media (max-width: 820px) {
  .exp-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .exp-card { padding: 24px 22px 24px 26px; grid-template-columns: 48px 1fr; column-gap: 18px; }
  .exp-icon { width: 48px; height: 48px; }
  .exp-icon svg { width: 24px; height: 24px; }
  .exp-card .exp-heading { font-size: 19px; }
}

/* ─── Specializations ─── */
.spec-tabs {
  position: sticky;
  top: 73px;
  z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.spec-tabs-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.spec-tab {
  padding: 22px 0;
  margin-right: 40px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.spec-tab:hover { color: var(--navy); }
.spec-tab.active {
  color: var(--navy);
  border-bottom-color: var(--red);
}
.spec-tab .n {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: var(--red);
  margin-right: 8px;
}

.track {
  padding: clamp(40px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--rule);
}
.track:last-child { border-bottom: 0; }
.track-head { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; margin-bottom: 32px; align-items: stretch; }
@media (max-width: 820px) { .track-head { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 700px) {
  /* Wrap the section tabs so all three are visible instead of hidden in a
     horizontal scroller, and ease the inline 48px title down a notch. */
  .spec-tabs-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px 22px;
    overflow-x: visible;
  }
  .spec-tab { margin-right: 0; padding: 14px 0; font-size: 12px; }
  .track-head h2 { font-size: 32px !important; }
}
.track-head .eyebrow { margin-bottom: 14px; display: block; }
.track-head h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.15;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-bottom: 4px;
}
.track-head .desc {
  font-family: var(--serif);
  font-style: normal;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.55;
  max-width: 56ch;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--navy);
  border-radius: 4px;
  padding: 22px 26px;
  margin: 0;
  align-self: end;
}

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (max-width: 720px) { .services { grid-template-columns: 1fr; } }
.service {
  padding: 32px 32px 32px 0;
  border-bottom: 1px solid var(--rule);
  display: flex; gap: 24px; align-items: flex-start;
}
.service:nth-child(odd) { border-right: 1px solid var(--rule); padding-right: 32px; }
.service:nth-child(even) { padding-left: 32px; }
@media (max-width: 720px) {
  .service, .service:nth-child(odd), .service:nth-child(even) {
    padding: 28px 0;
    border-right: 0;
  }
}
.service .marker {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--red);
  letter-spacing: 0.18em;
  padding-top: 4px;
  flex: 0 0 36px;
}
.service h4 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}

/* ─── Hub & spoke service diagram ─── */
.hub-spoke {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.hub-lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hub-lines line {
  stroke: var(--blue);
  stroke-width: 1.2;
  opacity: 0.5;
}
.hub-spoke .hub {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 2;
}
.hub-circle {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 0 0 12px rgba(27, 58, 92, 0.08);
}
.hub-circle svg { width: 52px; height: 52px; }
.hub-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  line-height: 1.4;
  white-space: pre-line;
}
.spokes {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.spoke {
  position: absolute;
  width: 180px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: center;
  box-shadow: 0 1px 0 rgba(27, 58, 92, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.spoke:hover {
  box-shadow: 0 6px 22px rgba(27, 58, 92, 0.10);
}
.spoke-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #d9e7ef;
  border: 2px solid var(--blue);
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
}
.spoke-text {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--navy);
  line-height: 1.3;
  text-wrap: balance;
}

@media (max-width: 820px) {
  /* Inline height (360–460px) is set by React for the desktop radial layout;
     it must be cleared on mobile or the stacked list sits in a broken tall box. */
  .hub-spoke { height: auto !important; padding: 8px 0 4px; }
  .hub-lines { display: none; }
  .hub-spoke .hub { position: static; transform: none; margin: 0 auto 26px; }
  /* Rebuild the diagram as a vertical “spine”: hub on top, a connector line
     running down, and each service as a card whose dot sits on the line. */
  .spokes {
    position: relative;
    display: flex; flex-direction: column;
    gap: 22px;
    max-width: 400px;
    margin: 0 auto;
  }
  .spokes::before {
    content: '';
    position: absolute;
    left: 50%; transform: translateX(-50%);
    top: -26px; bottom: 14px;
    width: 2px;
    background: var(--blue);
    opacity: 0.25;
    z-index: 0;
  }
  .spoke {
    position: relative;
    transform: none;
    width: 100%;
    left: auto !important; top: auto !important;
    margin: 0;
    z-index: 1;
    padding: 16px 18px;
  }
  .spoke-dot {
    position: absolute;
    top: -8px; left: 50%;
    transform: translateX(-50%);
  }
  .spoke-text { font-size: 15px; }
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form {
  display: flex; flex-direction: column; gap: 24px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.field label .req { color: var(--red); margin-left: 4px; }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  outline: none;
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--navy);
}
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field.row2 > div { display: flex; flex-direction: column; gap: 8px; }
@media (max-width: 520px) { .field.row2 { grid-template-columns: 1fr; } }
.field.error input, .field.error select, .field.error textarea { border-bottom-color: var(--red); }
.field .err-msg { color: var(--red); font-size: 12px; }

.contact-form-actions {
  display: flex; align-items: center; gap: 24px; margin-top: 12px; flex-wrap: wrap;
}
.compliance-note {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.6;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  margin-top: 12px;
  max-width: 60ch;
}

.contact-aside {
  background: var(--bg-warm);
  padding: 40px;
  border-left: 2px solid var(--red);
}
.contact-aside h3 {
  font-size: 22px;
  margin-bottom: 28px;
}
.contact-card-row { margin-bottom: 24px; }
.contact-card-row:last-child { margin-bottom: 0; }
.contact-card-row .lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.contact-card-row .val {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--navy);
  line-height: 1.4;
}
.contact-card-row .val a:hover { color: var(--red); }

.success {
  text-align: center;
  padding: 64px 32px;
  background: var(--bg-warm);
  border: 1px solid var(--rule);
}
.success-icon {
  width: 56px; height: 56px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.success h3 { font-size: 32px; margin-bottom: 14px; }
.success p { font-size: 17px; color: var(--text-mid); max-width: 42ch; margin: 0 auto 28px; }

/* ─── Contact mode tabs ─── */
.contact-mode-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.contact-mode-tab {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  position: relative;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.contact-mode-tab:hover { border-color: rgba(27, 58, 92, 0.4); transform: translateY(-1px); }
.contact-mode-tab.active {
  border-color: var(--navy);
  box-shadow: inset 3px 0 0 var(--red);
}
.contact-mode-tab-num {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--red);
}
.contact-mode-tab-label { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.contact-mode-tab-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.contact-mode-tab-sub {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-mid);
}
@media (max-width: 720px) {
  .contact-mode-tabs { grid-template-columns: 1fr; }
}

/* ─── Contact grid variant for booking layout ─── */
.contact-grid-booking {
  grid-template-columns: 1.6fr 1fr;
}
@media (max-width: 980px) {
  .contact-grid-booking { grid-template-columns: 1fr; }
}

/* ─── Booking widget ─── */
.booking-widget {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 1px 2px rgba(20, 30, 50, 0.04), 0 14px 36px -22px rgba(20, 30, 50, 0.14);
}
.booking-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 28px;
}
.booking-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.booking-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.005em;
  max-width: 28ch;
  margin: 0;
}
.booking-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-mid);
}
.booking-meta-row { display: flex; align-items: center; gap: 8px; }
.booking-meta-icon { color: var(--navy); display: inline-flex; }

.booking-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 1fr);
  gap: 36px;
}
@media (max-width: 720px) {
  .booking-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Calendar */
.booking-calendar {}
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cal-month {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
}
.cal-arrow {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule);
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  color: var(--navy);
  transition: border-color 0.15s, color 0.15s;
}
.cal-arrow:hover { border-color: var(--navy); }
.cal-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.cal-weekday {
  text-align: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 4px 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s, color 0.12s, transform 0.12s;
}
.cal-day:not(:disabled):hover {
  background: #dceaf2;
  border-color: #4A90B8;
}
.cal-empty { visibility: hidden; pointer-events: none; }
.cal-disabled {
  color: var(--text-soft);
  opacity: 0.35;
  cursor: not-allowed;
}
.cal-today { box-shadow: inset 0 -2px 0 var(--red); }
.cal-selected,
.cal-selected:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.cal-legend {
  display: flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 18px;
}
.cal-legend-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.cal-legend-available { background: #4A90B8; }
.cal-legend-taken { background: rgba(20, 30, 50, 0.2); }

/* Side column: slots / details */
.booking-side { display: flex; flex-direction: column; min-width: 0; }
.booking-empty {
  background: var(--bg);
  border: 1px dashed var(--rule);
  border-radius: 4px;
  padding: 32px 28px;
  text-align: center;
  color: var(--text-mid);
}
.booking-empty-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}
.booking-empty p {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  max-width: 30ch;
  margin: 0 auto;
}
.booking-side-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.booking-side-eyebrow {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.booking-link {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--blue);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(74, 144, 184, 0.4);
  text-underline-offset: 3px;
  padding: 0;
}
.booking-link:hover { color: var(--navy); }

.booking-slots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.booking-slot {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.booking-slot:hover {
  border-color: var(--navy);
  background: #fff;
  transform: translateY(-1px);
}
.booking-slot-taken {
  color: var(--text-soft);
  background: rgba(20, 30, 50, 0.03);
  text-decoration: line-through;
  cursor: not-allowed;
}
.booking-slot-taken:hover { border-color: var(--rule); transform: none; }

.booking-tz {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-soft);
}
.booking-tz a { color: var(--blue); text-decoration: underline; text-decoration-color: rgba(74,144,184,0.4); text-underline-offset: 3px; }

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.booking-success {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 56px 32px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(20, 30, 50, 0.04), 0 14px 36px -22px rgba(20, 30, 50, 0.14);
}
.booking-success .success-icon {
  width: 56px; height: 56px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.booking-success h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 14px;
  color: var(--navy);
}
.booking-success-meta {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.booking-success p {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text-mid);
  max-width: 48ch;
  margin: 0 auto 28px;
  line-height: 1.5;
}

/* ─── Disclosures ─── */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px var(--pad);
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text);
}
.legal h1 {
  font-size: 36px;
  margin-bottom: 12px;
}
.legal .meta-line {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.legal h2 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  margin: 48px 0 14px;
  padding-top: 14px;
}
.legal p { color: var(--text); margin-bottom: 1em; }
.legal a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}
.legal a:hover { color: var(--red); }

/* Page transition (kept subtle / no opacity dip on first paint) */
.page {
  opacity: 1;
}
.page.animate-in {
  animation: fadeIn 0.35s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
