/* ============================================================
   Beyond Magical Travel — brand site
   Palette + type from the "Radically Reimagine" identity (NWC, June 2026)
   ============================================================ */

/* ---------- Brand fonts (self-hosted from the official asset pack) ---------- */

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/Cormorant-Garamond-Light.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/Cormorant-Garamond-Light-Italic.woff2") format("woff2");
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/Cormorant-Garamond-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/Cormorant-Garamond-Regular-Italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/Cormorant-Garamond-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../assets/fonts/Jost-Light.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../assets/fonts/Jost-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../assets/fonts/Jost-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}

:root {
  --navy: #0B1428;        /* Midnight Navy — primary */
  --night: #14213F;       /* Clear Night Sky */
  --gold: #C9A24E;        /* Star Gold */
  --copper: #BD7A3C;      /* Copper — secondary accent */
  --ivory: #F5F1E7;       /* Ivory — light ground */
  --mist: #C6D0D6;        /* Mist — cool neutral */

  --ivory-soft: rgba(245, 241, 231, 0.72);
  --gold-line: rgba(201, 162, 78, 0.35);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* no CSS smooth scrolling — ScrollSmoother owns scroll easing; the two fight */

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--navy);
  color: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: min(1140px, 88vw);
  margin: 0 auto;
}

.narrow { width: min(760px, 88vw); margin: 0 auto; }

/* ---------- Fixed background underlay ----------
   With motion enabled, every section goes transparent and this fixed
   layer paints the sky; GSAP crossfades it navy <-> ivory as ivory
   content scrolls through, so there are no hard background edges. */

.bg-underlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--navy);
  pointer-events: none;
}

.bg-underlay .sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(11, 20, 40, 0.25), rgba(11, 20, 40, 0.25)),
    url("../assets/night-sky.jpg") center / cover no-repeat,
    var(--navy);
}

.bg-underlay .starfield { position: absolute; inset: 0; }

/* cloud layers above the stars — two banks drifting at different speeds
   and directions so the sky visibly moves; the wrapper takes scroll
   parallax, pointer-follow and the hover brightness boost */
.bg-underlay .cloud-wrap {
  position: absolute;
  inset: 0;
  opacity: 0.75;
}

.bg-underlay .clouds {
  position: absolute;
  inset: -18% -14%;
  background:
    radial-gradient(38% 30% at 22% 32%, rgba(74, 98, 152, 0.5), transparent 70%),
    radial-gradient(46% 34% at 74% 18%, rgba(56, 76, 126, 0.44), transparent 72%),
    radial-gradient(46% 36% at 42% 74%, rgba(82, 106, 160, 0.32), transparent 70%),
    radial-gradient(30% 24% at 24% 86%, rgba(198, 208, 214, 0.12), transparent 75%),
    radial-gradient(34% 26% at 88% 26%, rgba(198, 208, 214, 0.08), transparent 75%);
  animation: cloud-drift-a 55s ease-in-out infinite alternate;
}

.bg-underlay .clouds.b {
  background:
    radial-gradient(44% 30% at 12% 62%, rgba(90, 112, 164, 0.34), transparent 72%),
    radial-gradient(36% 26% at 52% 12%, rgba(64, 86, 138, 0.3), transparent 70%),
    radial-gradient(42% 32% at 80% 8%, rgba(74, 98, 152, 0.26), transparent 72%),
    radial-gradient(26% 20% at 58% 44%, rgba(198, 208, 214, 0.1), transparent 75%);
  animation: cloud-drift-b 85s ease-in-out infinite alternate;
}

@keyframes cloud-drift-a {
  from { transform: translate3d(-4.5%, 1.2%, 0) scale(1); }
  to   { transform: translate3d(4.5%, -1.6%, 0) scale(1.06); }
}

@keyframes cloud-drift-b {
  from { transform: translate3d(4%, -1.2%, 0) scale(1.05); }
  to   { transform: translate3d(-4%, 1.6%, 0) scale(1); }
}

/* headroom so scroll parallax never exposes layer edges */
html.has-motion .bg-underlay .sky { top: -12%; bottom: -12%; }

@media (prefers-reduced-motion: reduce) {
  .bg-underlay .clouds { animation: none; }
}

html.has-motion .night-sky,
html.has-motion .hero,
html.has-motion .page-hero,
html.has-motion .statement-band,
html.has-motion .section.ivory,
html.has-motion .seq.ivory {
  background: transparent;
}

/* ---------- Night sky grounds ---------- */

.night-sky {
  position: relative;
  background:
    radial-gradient(ellipse 55% 45% at 18% 8%, rgba(20, 33, 63, 0.9), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 90%, rgba(20, 33, 63, 0.75), transparent 65%),
    radial-gradient(ellipse 40% 35% at 70% 20%, rgba(35, 52, 92, 0.5), transparent 70%),
    var(--navy);
  overflow: hidden;
}

.starfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.starfield .dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(245, 241, 231, 0.95);
  box-shadow: 0 0 6px 1px rgba(245, 241, 231, 0.4);
  animation: twinkle 6s ease-in-out infinite;
}

.starfield .spark {
  position: absolute;
  width: 18px;
  height: 18px;
  animation: twinkle 7s ease-in-out infinite;
}

/* shooting stars — brief streaks that cross a patch of sky, then rest */
.starfield .shooting-star {
  position: absolute;
  height: 1px;
  border-radius: 1px;
  background: linear-gradient(90deg, rgba(245, 241, 231, 0.95), rgba(245, 241, 231, 0));
  box-shadow: 0 0 4px rgba(245, 241, 231, 0.35);
  opacity: 0;
  transform: rotate(-32deg) translateX(0);
  animation: shoot linear infinite;
}

.starfield .shooting-star.gold {
  background: linear-gradient(90deg, rgba(201, 162, 78, 0.95), rgba(201, 162, 78, 0));
  box-shadow: 0 0 4px rgba(201, 162, 78, 0.35);
}

@keyframes shoot {
  0%   { transform: rotate(-32deg) translateX(0); opacity: 0; }
  0.6% { opacity: 0.9; }
  5%   { transform: rotate(-32deg) translateX(-360px); opacity: 0; }
  100% { transform: rotate(-32deg) translateX(-360px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .starfield .shooting-star { display: none; }
}

/* gold sparkle blooms — brief flares somewhere in the sky, then rest */
.starfield .bloom {
  position: absolute;
  opacity: 0;
  animation: sparkle-bloom ease-in-out infinite;
}

.starfield .bloom svg { width: 100%; height: 100%; display: block; }

@keyframes sparkle-bloom {
  0%, 100% { opacity: 0; transform: scale(0.2) rotate(-12deg); }
  6%       { opacity: 0.85; transform: scale(1) rotate(0deg); }
  12%      { opacity: 0; transform: scale(0.25) rotate(10deg); }
  13%      { opacity: 0; }
}

/* wand trail — stars blooming along the cursor path */
.wand-sparkle {
  position: fixed;
  z-index: 90;
  pointer-events: none;
  animation: wand-fade 1.15s ease-out forwards;
}

.wand-sparkle svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 5px rgba(201, 162, 78, 0.75));
}

.wand-sparkle.ivory svg { filter: drop-shadow(0 0 5px rgba(245, 241, 231, 0.75)); }

@keyframes wand-fade {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx, 0px)), calc(-50% - 32px)) scale(0.1) rotate(60deg); }
}

@media (prefers-reduced-motion: reduce) {
  .starfield .bloom, .wand-sparkle { display: none; }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.12; }
  50%      { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .starfield .dot, .starfield .spark { animation: none; opacity: 0.7; }
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(11, 20, 40, 0.96);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(201, 162, 78, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  position: relative;
}

.brand-center {
  order: 2;
  flex: none;
  display: block;
  position: relative;
  text-decoration: none;
  margin: 0 3vw;
}

.brand-center img {
  height: 54px;
  width: auto;
  display: block;
  animation: logo-glow 5.5s ease-in-out infinite;
}

@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(201, 162, 78, 0)); }
  50%      { filter: drop-shadow(0 0 9px rgba(201, 162, 78, 0.5)); }
}

/* gold-foil glint: a band of light sweeps the letterforms every few
   seconds — masked to the logo artwork so it never leaves the letters */
@supports ((mask-repeat: no-repeat) or (-webkit-mask-repeat: no-repeat)) {
  .brand-center::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 40%, rgba(255, 247, 224, 0.95) 50%, transparent 60%);
    background-size: 250% 100%;
    background-repeat: no-repeat;
    -webkit-mask: url("../assets/logo-stacked-gold.svg") center / contain no-repeat;
    mask: url("../assets/logo-stacked-gold.svg") center / contain no-repeat;
    animation: logo-glint 7s linear infinite;
  }
}

@keyframes logo-glint {
  0%, 68%   { background-position: 165% 0; }
  80%, 100% { background-position: -65% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-center img { animation: none; }
  .brand-center::after { display: none; }
}

.main-nav { display: contents; }

.nav-group {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  flex: 1;
}

.nav-left { order: 1; justify-content: flex-start; }
.nav-right { order: 3; justify-content: flex-end; }

.main-nav a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory-soft);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.main-nav a:hover { color: var(--gold); }
.main-nav a.active { color: var(--gold); border-bottom-color: var(--gold-line); }

.main-nav a.social {
  display: inline-flex;
  align-items: center;
  padding-bottom: 0;
  border-bottom: none;
}

.main-nav a.social svg { width: 17px; height: 17px; display: block; }

.nav-toggle {
  display: none;
  order: 4;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 60;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ivory);
  margin: 6px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- Hero ---------- */

.hero, .page-hero, .statement-band {
  background-image:
    linear-gradient(rgba(11, 20, 40, 0.25), rgba(11, 20, 40, 0.25)),
    url("../assets/night-sky.jpg");
  background-size: cover;
  background-position: center;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 6vw 90px;
  position: relative;
}

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

.hero .star-device { width: 54px; height: 54px; margin-bottom: 8vh; }

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  line-height: 1.12;
  color: var(--ivory);
}

.hero .intro {
  max-width: 520px;
  margin: 1.6rem auto 0;
  color: var(--ivory-soft);
  font-size: 0.95rem;
}

.hero .btn { margin-top: 3rem; }

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.7;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  z-index: 1;
}

/* Page hero (interior pages — shorter) */
.page-hero {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 180px 0 90px;
  position: relative;
}

.page-hero > .container { position: relative; z-index: 1; }

/* ---------- Type ---------- */

.kicker {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.9em;
  margin-bottom: 1.8rem;
}

.kicker::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold-line);
}

h1, h2, h3 { font-family: var(--serif); font-weight: 300; }

.display {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.18;
  color: var(--ivory);
}

.display em, .gold-italic { font-style: italic; color: var(--gold); }

.section { padding: 110px 0; position: relative; }
.section > .container, .section > .narrow { position: relative; z-index: 1; }

.section.ivory { background: var(--ivory); color: var(--navy); }
.section.ivory .display { color: var(--navy); }
.section.ivory .kicker { color: var(--copper); }
.section.ivory .kicker::after { background: rgba(189, 122, 60, 0.4); }
.section.ivory p { color: rgba(11, 20, 40, 0.78); }

.section p.lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.55;
  color: var(--ivory);
}

.section.ivory p.lead { color: var(--navy); }

.manifesto-lines p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.6;
  color: var(--ivory);
  margin-bottom: 1.4em;
}

.manifesto-close {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--gold);
  line-height: 1.5;
  margin-top: 2.6rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 1.05em 2.6em 0.95em;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
}

.btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* sparkles that pop at the button corners on hover */
.btn::before,
.btn::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0Q13.6 10.4 24 12Q13.6 13.6 12 24Q10.4 13.6 0 12Q10.4 10.4 12 0Z' fill='%23C9A24E'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0;
  transform: scale(0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.btn { position: relative; }
.btn::after { top: -8px; right: -8px; }
.btn::before { bottom: -7px; left: -7px; width: 9px; height: 9px; }

.btn:hover::before,
.btn:hover::after {
  opacity: 1;
  transform: scale(1);
  animation: btn-sparkle 1.3s ease-in-out infinite;
}

.btn:hover::before { animation-delay: 0.35s; }

@keyframes btn-sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50%      { transform: scale(0.55) rotate(18deg); opacity: 0.6; }
}

@media (prefers-reduced-motion: reduce) {
  .btn::before, .btn::after { display: none; }
}

.btn.on-ivory { color: var(--copper); border-color: rgba(189, 122, 60, 0.45); }
.btn.on-ivory:hover { background: var(--copper); color: var(--ivory); border-color: var(--copper); }

/* ---------- Dividers ---------- */

.star-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 0;
  margin: 0 auto;
}

.star-divider::before, .star-divider::after {
  content: "";
  height: 1px;
  width: min(160px, 24vw);
  background: var(--gold-line);
}

.star-divider svg { width: 16px; height: 16px; flex: none; }

/* ---------- Guest cards ---------- */

.guest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 3.4rem;
}

.guest-card {
  background: var(--ivory);
  color: var(--navy);
  display: flex;
  flex-direction: column;
}

.guest-card .card-head {
  background: var(--night);
  color: var(--ivory);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 1.1em 1.6em;
  display: flex;
  align-items: center;
  gap: 0.9em;
}

.guest-card .card-head svg { width: 13px; height: 13px; flex: none; }

.guest-card .card-body { padding: 2rem 1.9rem 2.3rem; }

.guest-card h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(11, 20, 40, 0.12);
}

.guest-card p { font-size: 0.9rem; color: rgba(11, 20, 40, 0.75); }

/* testimonial variant of the guest card */
.guest-card .stars {
  display: flex;
  gap: 0.45em;
  margin-bottom: 1.2rem;
}

.guest-card .stars svg { width: 13px; height: 13px; }

.guest-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.22rem;
  line-height: 1.6;
  color: var(--navy);
}

.guest-card .guest-name {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(11, 20, 40, 0.12);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--copper);
}

.guest-close {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.7;
  color: var(--ivory);
  margin-top: 4rem;
}

/* ---------- Polaroid carousel ---------- */

.polaroid-carousel {
  /* full-bleed native scroller: auto-drift comes from JS nudging
     scrollLeft, so trackpad, touch and click-drag all just work */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 3.6rem;
  padding: 30px 0 36px;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.polaroid-carousel::-webkit-scrollbar { display: none; }
.polaroid-carousel.dragging { cursor: grabbing; }
.polaroid-carousel.dragging .polaroid { pointer-events: none; }

.polaroid-track {
  display: flex;
  width: max-content;
}

.polaroid {
  margin: 0 34px 0 0;
  background: #FAF7F0;
  padding: 14px 14px 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  width: min(320px, 72vw);
  flex: none;
  transform: rotate(var(--tilt, -2deg));
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  filter: saturate(1.03) contrast(1.02);
}

.polaroid figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  color: rgba(11, 20, 40, 0.78);
  text-align: center;
  padding: 12px 4px 8px;
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.polaroid:nth-child(9n+1) { --tilt: -3deg; }
.polaroid:nth-child(9n+2) { --tilt: 2.2deg; }
.polaroid:nth-child(9n+3) { --tilt: -1.4deg; }
.polaroid:nth-child(9n+4) { --tilt: 2.8deg; }
.polaroid:nth-child(9n+5) { --tilt: -2.2deg; }
.polaroid:nth-child(9n+6) { --tilt: 1.6deg; }
.polaroid:nth-child(9n+7) { --tilt: -2.8deg; }
.polaroid:nth-child(9n+8) { --tilt: 3deg; }
.polaroid:nth-child(9n+9) { --tilt: -1.8deg; }

/* ============================================================
   THE FOUNDER MOMENT (Our Story)
   Connie's photo pinned to the page like a scrapbook polaroid, held
   by the brand's gold star. Hover straightens it, as the postcards do.
   ============================================================ */

.founder-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 8%;
  align-items: center;
}

.founder-photo {
  position: relative;
  margin: 0 auto;
  width: min(360px, 78vw);
  background: #FAF7F0;
  padding: 15px 15px 18px;
  box-shadow: 0 22px 50px rgba(11, 20, 40, 0.28);
  transform: rotate(-3.2deg);
  transition: transform 0.55s cubic-bezier(.2,.8,.3,1.15), box-shadow 0.55s ease;
}

.founder-photo:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 28px 60px rgba(11, 20, 40, 0.34);
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 32%;
  display: block;
}

.founder-photo figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: rgba(11, 20, 40, 0.74);
  text-align: center;
  padding: 14px 4px 4px;
}

/* the gold star that pins the photo to the page */
.founder-photo .pin {
  position: absolute;
  top: -22px;
  left: -20px;
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 4px 10px rgba(11, 20, 40, 0.35));
  animation: pin-twinkle 5s ease-in-out infinite;
}

.founder-photo .pin svg { width: 100%; height: 100%; display: block; }

@keyframes pin-twinkle {
  0%, 100% { transform: rotate(-8deg) scale(1); opacity: 0.95; }
  50%      { transform: rotate(4deg) scale(1.08); opacity: 1; }
}

.founder-text .display { margin-top: 0.2em; }

.founder-role {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 0.9rem;
}

.founder-line {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  line-height: 1.6;
  color: rgba(11, 20, 40, 0.8);
  margin-top: 1.6rem;
  max-width: 30em;
}

.founder-text .award-badge { margin-top: 2rem; }

@media (prefers-reduced-motion: reduce) {
  .founder-photo .pin { animation: none; }
}

@media (max-width: 900px) {
  .founder-wrap { grid-template-columns: 1fr; gap: 3.2rem; text-align: center; }
  .founder-text .founder-line { margin-left: auto; margin-right: auto; }
  .founder-photo .pin { width: 44px; height: 44px; top: -18px; left: -14px; }
}

/* ============================================================
   POSTCARD CAROUSEL + FLIP CARDS (restored from deployment k8ucg5rla)
   ============================================================ */

/* ---------- Flip postcards (click to turn over) ---------- */

.postcard-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 3.4rem;
  padding: 16px 0 26px;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.postcard-carousel::-webkit-scrollbar { display: none; }

.postcard-carousel.dragging { cursor: grabbing; }

.postcard-carousel.dragging .flip-card { pointer-events: none; }

.postcard-track {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 0 max(6vw, calc(50vw - 570px));
}

.flip-card {
  display: block;
  width: min(430px, 82vw);
  aspect-ratio: 3 / 2;
  perspective: 1400px;
  flex: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-align: inherit;
  font: inherit;
  color: inherit;
}

.flip-inner {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.35, 0.1, 0.2, 1);
}

.flip-card.flipped .flip-inner { transform: rotateY(180deg); }

.flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #FAF7F0;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.flip-front {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 2.2rem;
}

/* postcard furniture: stamp box + postmark rings */
.flip-front::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 52px;
  border: 1px dashed rgba(189, 122, 60, 0.55);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0Q13.6 10.4 24 12Q13.6 13.6 12 24Q10.4 13.6 0 12Q10.4 10.4 12 0Z' fill='%23C9A24E'/%3E%3C/svg%3E")
    no-repeat center / 20px;
}

.flip-front::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 70px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(11, 20, 40, 0.15);
  border-radius: 50%;
}

.flip-front .fc-kicker {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.9rem;
}

.flip-front h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.35;
  color: var(--navy);
  max-width: 82%;
}

.flip-front .fc-text {
  display: block;
  font-size: 0.86rem;
  color: rgba(11, 20, 40, 0.72);
  margin-top: 0.9rem;
  max-width: 88%;
}

.flip-front .fc-hint {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(11, 20, 40, 0.4);
}

.flip-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 2.4rem;
  text-align: center;
}

.flip-back .fb-text {
  display: block;
  font-family: var(--serif);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.7;
  color: var(--navy);
}

.flip-back.photo { padding: 12px; }

.flip-back.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flip-back.photo .fb-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(11, 20, 40, 0.72);
  color: var(--ivory);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  padding: 0.5em 1em;
}

.carousel-hint {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  margin-top: 1.6rem;
}

.section.ivory .carousel-hint { color: rgba(11, 20, 40, 0.5); }

/* ---------- Auto-cycling itinerary (restored) ---------- */

.itinerary-card .day { transition: opacity 0.5s ease, transform 0.5s ease; opacity: 0.45; }

.itinerary-card .day.active { opacity: 1; transform: translateX(4px); }

.itinerary-card .day.active .day-label { color: var(--gold); }

html:not(.has-motion) .itinerary-card .day { opacity: 1; }

/* ---------- Detailed services (title + description) ---------- */

.services-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px 52px;
  margin-top: 3.4rem;
  padding: 0;
}

.services-detail .svc {
  list-style: none;
  display: flex;
  gap: 1.1em;
  align-items: baseline;
}

.services-detail .svc > svg { width: 12px; height: 12px; flex: none; transform: translateY(1px); }

.services-detail h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.45em;
}

.services-detail p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(11, 20, 40, 0.72);
}

@media (max-width: 800px) {
  .services-detail { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Values ---------- */

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  margin-top: 3.6rem;
}

.values-grid h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.values-grid p { font-size: 0.88rem; color: var(--ivory-soft); }

/* ---------- Services list ---------- */

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 40px;
  margin-top: 3.2rem;
}

.services-list li {
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 0.9em;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  padding: 0.55em 0;
  border-bottom: 1px solid rgba(11, 20, 40, 0.1);
}

.services-list li svg { width: 12px; height: 12px; flex: none; transform: translateY(1px); }

/* ---------- Itinerary vignette ---------- */

.itinerary-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.itinerary-card {
  background:
    radial-gradient(ellipse 70% 50% at 30% 0%, rgba(35, 52, 92, 0.6), transparent 65%),
    var(--night);
  border: 1px solid rgba(201, 162, 78, 0.25);
  padding: 3rem 2.8rem 2.6rem;
  max-width: 420px;
  justify-self: center;
  width: 100%;
}

.itinerary-card .it-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  text-align: center;
  color: var(--ivory);
  line-height: 1.4;
  margin-bottom: 2.2rem;
}

.itinerary-card .day { padding: 0.9em 0; border-bottom: 1px solid rgba(245, 241, 231, 0.08); }
.itinerary-card .day:last-of-type { border-bottom: none; }

.itinerary-card .day p.day-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  color: var(--copper);
}

.itinerary-card .day-label {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--copper);
  display: flex;
  align-items: center;
  gap: 0.8em;
  margin-bottom: 0.35em;
}

.itinerary-card .day-label svg { width: 9px; height: 9px; }

.itinerary-card .day p {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ivory);
  line-height: 1.4;
}

/* ---------- Story (about) ---------- */

.story-lines p {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  line-height: 1.65;
  color: var(--navy);
  margin-bottom: 1.35em;
}

.story-lines .attribution {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 2.4rem;
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  background: #FBF3E4;
  border: 1px solid #E7D4A6;
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.85em 1.5em;
  margin-top: 2.2rem;
}

.award-badge svg { width: 14px; height: 14px; flex: none; }

/* ---------- Personality band ---------- */

.statement-band { text-align: center; padding: 130px 0; }

.statement-band .big {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.4;
  color: var(--gold);
}

.statement-band .support {
  max-width: 540px;
  margin: 1.8rem auto 0;
  color: var(--ivory-soft);
  font-size: 0.92rem;
}

/* ---------- Contact ---------- */

.contact-card {
  background: var(--ivory);
  color: var(--navy);
  max-width: 560px;
  margin: 3.4rem auto 0;
  padding: 3.4rem 3.2rem;
  text-align: center;
  position: relative;
}

.contact-card .monogram { width: 58px; margin: 0 auto 1.6rem; }

.contact-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.9rem;
  color: var(--navy);
}

.contact-card .role {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 0.5em;
}

.contact-card .contact-lines { margin-top: 2.2rem; padding-top: 2.2rem; border-top: 1px solid rgba(11, 20, 40, 0.12); }

.contact-card .contact-lines a {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 0.6em;
  transition: color 0.3s;
}

.contact-card .contact-lines a:hover { color: var(--copper); }

/* enquiry form inside the contact card */
.contact-form {
  text-align: left;
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(11, 20, 40, 0.12);
}

.contact-form .field { margin-bottom: 1.7rem; }

.contact-form label {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.6em;
}

.contact-form label .opt {
  text-transform: none;
  letter-spacing: 0.05em;
  color: rgba(11, 20, 40, 0.62);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(11, 20, 40, 0.25);
  border-radius: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  padding: 0.35em 0;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-bottom-color: var(--copper); }

.contact-form textarea { resize: vertical; line-height: 1.6; }

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23BD7A3C' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.2em center;
  cursor: pointer;
}

.contact-form .btn {
  width: 100%;
  text-align: center;
  cursor: pointer;
  background-color: transparent;
  font-family: var(--sans);
  margin-top: 0.6rem;
}

.contact-form .form-note {
  font-size: 0.72rem;
  color: rgba(11, 20, 40, 0.62);
  text-align: center;
  margin-top: 1.1rem;
  line-height: 1.6;
}

.contact-card .site-line {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(11, 20, 40, 0.55);
  margin-top: 1.6rem;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid rgba(201, 162, 78, 0.18);
  padding: 70px 0 46px;
  text-align: center;
  position: relative;
}

.site-footer .monogram { width: 44px; margin: 0 auto 1.8rem; opacity: 0.95; }

.footer-nav { display: flex; justify-content: center; gap: 2.2rem; margin-bottom: 2.2rem; flex-wrap: wrap; }

.footer-nav a {
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory-soft);
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.7rem;
  margin-bottom: 2.1rem;
}

.footer-social a { color: var(--ivory-soft); transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 19px; height: 19px; display: block; }

.site-footer .award-badge {
  margin: 0 auto 2rem;
  font-size: 0.72rem;
}

.site-footer .member {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(245, 241, 231, 0.45);
}

.site-footer .fineprint {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(245, 241, 231, 0.58);
  margin-top: 0.8rem;
}

/* ---------- Immersive scroll sequences ----------
   Default styles are the static fallback (no JS / reduced motion):
   every line simply flows in the document. When main.js confirms
   motion is allowed it adds .has-motion to <html> and the lines
   become pinned, one-thought-at-a-time moments driven by scroll. */

/* overflow stays visible so polaroid shadows never clip at the
   section edges (sky decorations live on the fixed underlay now) */
.seq { position: relative; padding: 110px 0; }

.seq .seq-inner {
  width: min(880px, 88vw);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.seq .kicker { justify-content: center; }
.seq .kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold-line);
}

.seq-line {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.1vw, 2.45rem);
  line-height: 1.55;
  color: var(--ivory);
  margin-bottom: 1.5em;
}

.seq-line em { font-style: italic; color: var(--gold); }
.seq-line.gold { font-style: italic; color: var(--gold); }

.seq.ivory { background: var(--ivory); }
.seq.ivory .seq-line { color: var(--navy); }
.seq.ivory .seq-line em, .seq.ivory .seq-line.gold { color: var(--copper); }
.seq.ivory .kicker { color: var(--copper); }
.seq.ivory .kicker::before, .seq.ivory .kicker::after { background: rgba(189, 122, 60, 0.4); }

/* step sequences (title + body per beat, e.g. brand values) */
.seq-line .step-title {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--gold);
  margin-bottom: 0.7em;
}

.seq-line .step-body {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.8;
  color: var(--ivory-soft);
  max-width: 600px;
  margin: 0 auto;
}

html.has-motion .seq {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
}

html.has-motion .seq .seq-inner { width: min(880px, 88vw); }

/* when side polaroids share the stage, keep the words clear of them */
@media (min-width: 1101px) {
  html.has-motion .seq:has(.seq-polaroids) .seq-inner { width: min(640px, 40vw); }
  html.has-motion .seq:has(.seq-polaroids) .seq-line { font-size: clamp(1.4rem, 2.6vw, 2.1rem); }
}

html.has-motion .seq-lines {
  position: relative;
  height: min(52vh, 560px);
}

html.has-motion .seq-line {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

/* word-by-word reading reveal */
.word-reveal .w { display: inline; }

html.has-motion .pin-full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .guest-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-list { grid-template-columns: 1fr 1fr; }
  .itinerary-wrap { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 900px) {
  .header-inner { justify-content: flex-end; min-height: 48px; }

  .brand-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }

  .brand-center img { height: 42px; }

  .main-nav {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(11, 20, 40, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }

  .nav-group { display: contents; }

  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav a { font-size: 0.9rem; }

  .nav-toggle { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 700px) {
  .section { padding: 84px 0; }

  .brand-center img { height: 36px; }

  .values-grid, .services-list { grid-template-columns: 1fr; }
  .contact-card { padding: 2.6rem 1.8rem; }
}

/* ============================================================
   ACCESSIBLE INK  ·  WCAG AA pass 2026-09-03
   Measured on the real pages: Star Gold scores 2.13:1 on ivory and
   Copper 3.10:1, both under the 4.5:1 AA floor. So on every off-white
   ground the ink is Midnight Navy (16.26:1). Gold and copper stay
   exactly where they pass: as text on navy (7.65:1 and 5.25:1) and as
   non-text furniture (hairlines, stars, borders, the monogram), which
   WCAG text contrast does not govern.
   ============================================================ */

/* kickers and display italics on the light ground */
.section.ivory .kicker,
.seq.ivory .kicker { color: var(--navy); }
.section.ivory .kicker::after,
.seq.ivory .kicker::after { background: rgba(11, 20, 40, 0.3); }

.section.ivory .display em,
.section.ivory .gold-italic,
.seq.ivory .seq-line em,
.seq.ivory .seq-line.gold { color: var(--navy); }

/* flip postcards always sit on a cream face */
.flip-front .fc-kicker { color: var(--navy); }
.flip-front .fc-hint { color: rgba(11, 20, 40, 0.62); }

/* the one button that lives on ivory */
.btn.on-ivory { color: var(--navy); border-color: rgba(11, 20, 40, 0.38); }
.btn.on-ivory:hover { background: var(--navy); color: var(--ivory); border-color: var(--navy); }

/* contact form furniture */
.contact-form label,
.contact-card .role { color: var(--navy); }

/* The itinerary card is a NAVY card sitting inside an ivory section, so
   the generic `.section.ivory p` rule was winning on specificity and
   painting its title navy on navy (1.12:1, effectively invisible). */
.section.ivory .itinerary-card .it-title { color: var(--ivory); }

/* ============================================================
   SECTION PROGRESS RAIL  (Bryce's note, 2026-09-03)
   The pinned copy sections hold the page still while the words
   advance, so the reader gets no feedback that scrolling is working
   or how much is left. A hairline rail fills with scroll progress and
   a small brand star rides its head. Decorative only (aria-hidden),
   and it exists solely when the pinning does.
   ============================================================ */

.seq-progress {
  position: absolute;
  left: 50%;
  bottom: 7vh;
  width: min(280px, 54vw);
  height: 16px;
  margin-left: calc(min(280px, 54vw) / -2);
  z-index: 4;
  pointer-events: none;
}

.seq-progress .sp-track,
.seq-progress .sp-fill {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-radius: 2px;
}

.seq-progress .sp-track {
  height: 1px;
  margin-top: -0.5px;
  background: rgba(11, 20, 40, 0.18);
}

.seq-progress .sp-fill {
  height: 2px;
  margin-top: -1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

.seq-progress .sp-star {
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 15px;
  margin: -7.5px 0 0 -7.5px;
  will-change: transform;
}

.seq-progress .sp-star svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 5px rgba(201, 162, 78, 0.65));
}

/* on the navy manifesto the rail flips to light ink */
.seq.night-sky .sp-track { background: rgba(245, 241, 231, 0.22); }
.seq.night-sky .sp-fill { background: var(--ivory); }

@media (max-width: 700px) {
  .seq-progress { bottom: 5vh; }
}

/* ============================================================
   ITINERARY PANEL  (Brett's note, 2026-09-03)
   The words and the navy day-card were two objects floating on the
   cream with nothing holding them together. A single raised panel
   behind both reads as one idea: here is the promise, here is what it
   looks like. The panel is a shade lighter than the page ground and
   lifts on a soft shadow, so it separates without a hard border.
   ============================================================ */

.section.ivory .itinerary-wrap {
  background: #FBF8F2;
  border: 1px solid rgba(11, 20, 40, 0.06);
  border-radius: 28px;
  padding: 68px 64px;
  gap: 58px;
  box-shadow: 0 26px 64px rgba(11, 20, 40, 0.08),
              0 2px 6px rgba(11, 20, 40, 0.03);
}

/* inside the panel the day-card fills its half, so both columns line up
   with the panel's edges instead of drifting in the middle */
.section.ivory .itinerary-wrap .itinerary-card {
  max-width: none;
  justify-self: stretch;
}

@media (max-width: 1000px) {
  .section.ivory .itinerary-wrap { padding: 54px 44px; border-radius: 24px; }
  .section.ivory .itinerary-wrap .itinerary-card { max-width: 460px; justify-self: center; }
}

@media (max-width: 700px) {
  .section.ivory .itinerary-wrap { padding: 40px 24px; border-radius: 20px; }
}

/* ============================================================
   ENQUIRY FORM STATES  (Resend via /api/enquiry, 2026-09-18)
   Status text stays navy on the light ground (WCAG AA); success and
   error are told apart by their wording and a side rule, never by
   colour alone.
   ============================================================ */

/* the spam trap: off-screen rather than display:none, which some bots skip */
.contact-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .form-status {
  font-family: var(--sans);
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--navy);
  text-align: center;
  margin: 1.2rem auto 0;
  max-width: 440px;
}

.contact-form .form-status:empty { display: none; }

.contact-form .form-status.is-ok,
.contact-form .form-status.is-error {
  padding: 0.9rem 1.1rem;
  background: rgba(11, 20, 40, 0.035);
  border-left: 2px solid var(--gold);
  text-align: left;
}

.contact-form .form-status.is-error { border-left-color: var(--copper); }

.contact-form .form-status a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form button[disabled] {
  opacity: 0.6;
  cursor: progress;
}

/* ============================================================
   LEGAL PAGES (privacy, 2026-09-18). Navy ink on the ivory ground.
   ============================================================ */
.legal { color: var(--navy); padding-bottom: 1rem; }
.legal .legal-updated {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(11, 20, 40, 0.72);
  margin: 0 0 2rem;
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.25;
  color: var(--navy);
  margin: 2.6rem 0 0.9rem;
}
.legal p, .legal li { font-family: var(--sans); font-size: 1rem; line-height: 1.8; }
.section.ivory .legal p, .legal li { color: rgba(11, 20, 40, 0.82); }
.legal p { margin: 0 0 1.1rem; }
.legal ul { padding-left: 1.2rem; margin: 0 0 1.2rem; }
.legal li { margin-bottom: 0.5rem; }
.legal a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

.site-footer .fineprint a,
.contact-form .form-note a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
