/* ============================================================
   BOB BOYD — "Liquid Light, Refined"
   Body: light, clean, modern. The trip lives only in the hero.
   ============================================================ */

:root {
  /* Key West dusk, graded */
  --ink: #221e1a;
  --ink-soft: #5c554d;
  --paper: #faf7f2;
  --paper-deep: #f1ece3;
  --line: #e3dcd0;
  --coral: #0e7d6c;      /* now: sea green (accent) */
  --coral-deep: #0a5f52;
  --teal: #12777c;
  --teal-deep: #0d5a5e;
  --amber: #fff200;      /* now: electric yellow highlight */
  --indigo: #0a2233;     /* now: deep ocean */
  --hero-ink: #f6f1e7;
  --radius: 14px;
  --wrap: 1200px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--teal-deep); text-decoration: none; }
a:hover { color: var(--coral-deep); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(250, 247, 242, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--wrap); margin: 0 auto; padding: 18px 24px;
}
.brand {
  font-family: var(--font-display); font-weight: 600; font-size: 1.35rem;
  letter-spacing: .02em; color: var(--hero-ink);
  transition: color .35s ease;
}
.site-header.scrolled .brand, .header-light .brand { color: var(--ink); }
.brand .ow { color: var(--amber); }
.site-header.scrolled .brand .ow, .header-light .brand .ow { color: var(--coral-deep); }

nav.main-nav {
  display: flex; gap: 26px; align-items: center;
  background: rgba(8, 26, 38, .38);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(246, 241, 231, .14);
  border-radius: 40px; padding: 10px 24px;
}
.site-header.scrolled nav.main-nav, .header-light nav.main-nav {
  background: rgba(255, 255, 255, .55);
  border-color: var(--line);
}
nav.main-nav a {
  font-size: .95rem; font-weight: 500; letter-spacing: .04em;
  color: var(--hero-ink); opacity: .92; position: relative;
  transition: color .35s ease;
}
.site-header.scrolled nav.main-nav a, .header-light nav.main-nav a { color: var(--ink); }
nav.main-nav a:hover { color: var(--coral); opacity: 1; }
nav.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px;
  height: 2px; background: var(--coral); transition: right .25s ease;
}
nav.main-nav a:hover::after { right: 0; }

/* Calendar — greyed out, coming soon */
nav.main-nav .disabled {
  pointer-events: none; cursor: default; position: relative;
  color: rgba(246, 241, 231, .45);
}
.site-header.scrolled nav.main-nav .disabled, .header-light nav.main-nav .disabled {
  color: rgba(34, 30, 26, .38);
}
nav.main-nav .disabled .soon {
  display: inline-block; vertical-align: middle; margin: -2px 0 0 7px;
  font-size: .5rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--amber);
  background: rgba(8, 26, 38, .82);
  padding: 2px 7px; border-radius: 20px; white-space: nowrap;
}

.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: min(88vh, 860px);
  background: var(--indigo);
  overflow: hidden;
  display: flex; align-items: center;
  color: var(--hero-ink);
}
#lamp {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block;
}
/* static fallback grade — also the reduced-motion / no-JS view */
.hero .lamp-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 50% at 80% 22%, rgba(255,242,0,.55), transparent 60%),
    radial-gradient(58% 75% at 78% 40%, rgba(16,160,130,.75), transparent 62%),
    radial-gradient(48% 62% at 88% 78%, rgba(20,110,190,.75), transparent 65%),
    radial-gradient(52% 66% at 60% 85%, rgba(10,125,95,.7), transparent 60%),
    var(--indigo);
  filter: blur(0px) saturate(1.05);
}
.hero .veil {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg,
    rgba(8, 26, 38, .96) 0%,
    rgba(8, 26, 38, .86) 34%,
    rgba(8, 26, 38, .38) 58%,
    rgba(8, 26, 38, 0) 80%);
}
.hero .bob {
  position: absolute; right: 0; bottom: 0; z-index: 1;
  width: 980px; height: auto; max-width: none;   /* constant — never scales with the stage */
  filter: drop-shadow(0 22px 48px rgba(0,0,0,.55)) saturate(.96) contrast(1.02);
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: var(--wrap); margin: 0 auto; padding: 96px 24px 56px;
  width: 100%;
}
.hero .eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .34em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 620;
  font-size: clamp(3.4rem, 9vw, 7rem);
  line-height: .98; letter-spacing: .005em; margin-bottom: 18px;
}
.hero .sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 300;
  max-width: 30ch; color: rgba(246, 241, 231, .88); margin-bottom: 36px;
}
.hero .sub em { font-style: italic; font-family: var(--font-display); color: var(--amber); }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 13px 30px; border-radius: 40px;
  font-weight: 600; font-size: .95rem; letter-spacing: .03em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-solid { background: var(--coral); color: #fff; box-shadow: 0 8px 24px rgba(14,125,108,.35); }
.btn-solid:hover { background: var(--coral-deep); color: #fff; transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(246,241,231,.45); color: var(--hero-ink); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 3; color: rgba(246,241,231,.6); font-size: .75rem;
  letter-spacing: .3em; text-transform: uppercase;
  animation: cue 2.6s ease-in-out infinite;
}
@keyframes cue { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }
@media (prefers-reduced-motion: reduce) { .scroll-cue { animation: none; } }

/* ---------- streaming strip ---------- */
.stream {
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 44px 0;
}
.stream .row {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.stream .tagline {
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem;
  color: var(--ink-soft); text-align: center;
}
.platforms { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.platform {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px; border: 1px solid var(--line); border-radius: 40px;
  background: #fff; color: var(--ink); font-weight: 500; font-size: .9rem;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.platform:hover {
  transform: translateY(-2px); border-color: var(--coral); color: var(--ink);
  box-shadow: 0 8px 20px rgba(34, 30, 26, .08);
}
.platform svg { width: 18px; height: 18px; fill: var(--teal-deep); }
.platform:hover svg { fill: var(--coral-deep); }
.platform.pending { opacity: .8; }
.badge-soon {
  font-size: .6rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--teal-deep); background: rgba(18,119,124,.1);
  padding: 2px 8px; border-radius: 20px;
}

/* ---------- generic section ---------- */
section.block { padding: 96px 0; }
.kicker {
  font-size: .75rem; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--coral-deep); margin-bottom: 14px;
}
.block h2.title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.1; margin-bottom: 18px;
}
.block p.lede { max-width: 58ch; color: var(--ink-soft); font-size: 1.06rem; }

/* ---------- calendar (coming soon) ---------- */
.calendar-block { background: var(--paper-deep); border-block: 1px solid var(--line); }
.cal-frame { position: relative; margin-top: 44px; }
.cal-rows { display: grid; gap: 14px; filter: blur(2.5px) grayscale(.4); opacity: .55; user-select: none; pointer-events: none; }
.cal-row {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 20px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 26px;
}
.cal-row .date { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--teal-deep); }
.cal-row .venue strong { display: block; font-size: 1.05rem; }
.cal-row .venue span { font-size: .85rem; color: var(--ink-soft); }
.cal-row .tag {
  font-size: .75rem; font-weight: 600; padding: 6px 14px; border-radius: 30px;
  background: rgba(18,119,124,.08); color: var(--teal-deep);
}
.cal-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; text-align: center;
}
.cal-overlay .pill {
  font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--indigo); background: var(--amber); padding: 10px 26px; border-radius: 40px;
  box-shadow: 0 10px 30px rgba(255,242,0,.30);
}
.cal-overlay p { color: var(--ink-soft); font-size: .95rem; max-width: 40ch; }

/* ---------- memory road ---------- */
.memory { background: var(--paper); }
.memory-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  margin-top: 10px;
}
.memory-photos {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.memory-photos figure {
  border-radius: var(--radius); overflow: hidden; background: var(--paper-deep);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.memory-photos figure:hover { transform: translateY(-4px) rotate(-.4deg); box-shadow: 0 16px 36px rgba(34,30,26,.12); }
.memory-photos img { width: 100%; height: 200px; object-fit: cover; }
.memory-photos figcaption { font-size: .72rem; color: var(--ink-soft); padding: 8px 12px; }
.memory-copy .classic-link { margin-top: 30px; }
.btn-classic {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 8px;
  background: var(--indigo); color: var(--hero-ink);
  font-weight: 600; font-size: .92rem;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-classic:hover { transform: translateY(-2px); color: var(--amber); box-shadow: 0 12px 30px rgba(10,34,51,.35); }
.btn-classic .arrow { transition: transform .18s ease; }
.btn-classic:hover .arrow { transform: translateX(4px); }
.classic-note { font-size: .78rem; color: var(--ink-soft); margin-top: 10px; }

/* ---------- contact teaser ---------- */
.contact-teaser { background: var(--paper-deep); border-top: 1px solid var(--line); text-align: center; }
.contact-teaser .btn { margin-top: 26px; }
.socials { display: flex; gap: 16px; justify-content: center; margin-top: 30px; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; background: #fff;
  transition: transform .18s ease, border-color .18s ease;
}
.socials a:hover { transform: translateY(-3px); border-color: var(--coral); }
.socials svg { width: 19px; height: 19px; fill: var(--ink-soft); }
.socials a:hover svg { fill: var(--coral-deep); }

/* ---------- footer ---------- */
footer.site-footer {
  background: var(--indigo); color: rgba(246,241,231,.75);
  padding: 40px 0; font-size: .85rem;
}
footer .bar { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
footer a { color: var(--amber); }
footer .fbrand { font-family: var(--font-display); font-size: 1.1rem; color: var(--hero-ink); }

/* ---------- inner pages ---------- */
.page-head {
  padding: 150px 0 60px; background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-head h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 6vw, 4rem); }
.page-head p { color: var(--ink-soft); margin-top: 10px; max-width: 60ch; }

/* gallery */
.gallery-grid { columns: 3 300px; column-gap: 18px; padding: 56px 0 90px; }
.gallery-grid figure {
  break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius);
  overflow: hidden; background: #fff; border: 1px solid var(--line);
  cursor: zoom-in; transition: transform .22s ease, box-shadow .22s ease;
}
.gallery-grid figure:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(34,30,26,.12); }
.gallery-grid figcaption { font-size: .8rem; color: var(--ink-soft); padding: 10px 14px; }

dialog.lightbox {
  border: none; background: rgba(15, 12, 34, .96); border-radius: 12px;
  padding: 0; max-width: min(92vw, 1100px);
}
dialog.lightbox::backdrop { background: rgba(15, 12, 34, .7); backdrop-filter: blur(4px); }
dialog.lightbox img { max-height: 80vh; width: auto; max-width: 100%; margin: 0 auto; }
dialog.lightbox .cap {
  color: rgba(246,241,231,.85); font-size: .9rem; text-align: center; padding: 14px 20px 20px;
}
dialog.lightbox button.close {
  position: absolute; top: 10px; right: 14px; background: none; border: none;
  color: #fff; font-size: 1.6rem; cursor: pointer; line-height: 1;
}

/* contact */
.contact-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; padding: 60px 0 100px; }
form.contact-form { display: grid; gap: 18px; }
form.contact-form label { font-size: .85rem; font-weight: 600; letter-spacing: .04em; }
form.contact-form input, form.contact-form textarea {
  width: 100%; padding: 13px 16px; margin-top: 6px;
  border: 1px solid var(--line); border-radius: 10px; background: #fff;
  font-family: inherit; font-size: .95rem; color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
form.contact-form input:focus, form.contact-form textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(18,119,124,.12);
}
.form-note { font-size: .8rem; color: var(--ink-soft); }
.form-status { font-size: .9rem; font-weight: 600; color: var(--teal-deep); min-height: 1.4em; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .memory-grid, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: 0; display: flex; flex-direction: column; }
  .hero-inner { order: 1; }
  .hero .bob { order: 2; }
  .hero .bob {
    position: static; height: auto; max-width: none; width: 100%;
    margin: 6px 0 0; opacity: 1; transform: none; z-index: 1;
    filter: drop-shadow(0 12px 26px rgba(0,0,0,.5));
  }
  .hero .veil { z-index: 0; }
  .hero .veil {
    background: linear-gradient(180deg,
      rgba(8,26,38,.9) 0%, rgba(8,26,38,.55) 55%, rgba(8,26,38,.1) 100%);
  }
  .hero-inner { padding: 84px 20px 0; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 3.6rem); margin-bottom: 10px; }
  .hero .sub { margin-bottom: 22px; }
  .hero .eyebrow { margin-bottom: 10px; }
  .scroll-cue { display: none; }
}
@media (max-width: 720px) {
  .site-header .bar { padding: 7px 14px; }
  .brand { font-size: .98rem; white-space: nowrap; }
  nav.main-nav { gap: 11px; padding: 7px 14px; }
  nav.main-nav a { font-size: .78rem; letter-spacing: .02em; }
  nav.main-nav .disabled .soon { font-size: .44rem; margin-left: 4px; padding: 1px 5px; }
  .cal-row { grid-template-columns: 1fr; gap: 6px; }
  section.block { padding: 70px 0; }
}

/* live calendar rows (CMS-driven) — undo the coming-soon skeleton treatment */
.cal-rows.cal-live { filter: none; opacity: 1; pointer-events: auto; user-select: auto; margin-top: 44px; }
