/* =====================================================================
   Ben's 50th — "The Sailor Matchbook"
   Screen-print flat inks, three committed fields, hand-painted display.
   ===================================================================== */

/* ----------------------------- Tokens ------------------------------ */
:root {
  --cobalt: #12294a;
  --ink: #0e1b2a;
  --aqua: #2fa0a6;
  --aqua-deep: #1a5361;
  --marigold: #e6a419;      /* the fourth ink: commitment / urgency only */
  --marigold-deep: #b07811; /* borders + hover on marigold fields */
  --cream: #ebe4dc;
  --paper: #ffffff;
  --sand: #d8cfc4;

  --f-display: "Caveat Brush", "Pacifico", cursive;
  --f-head: "Bebas Neue", "Oswald", "Arial Narrow", sans-serif;
  --f-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --f-label: "Bebas Neue", "Arial Narrow", sans-serif;

  --xs: 8px;
  --sm: 16px;
  --md: 24px;
  --lg: 48px;
  --xl: 96px;

  --wrap: 68rem;
  --measure: 42rem;

  --edge: 3px; /* ink hairline weight */
}

/* ----------------------------- Reset ------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:where(section[id], header[id]) { scroll-margin-top: 84px; }

body {
  font-family: var(--f-body);
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.15rem);
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; }

a { color: inherit; }

button { font: inherit; color: inherit; cursor: pointer; }

/* paper grain over everything — the pressed-onto-stock feel */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed;
  left: 50%;
  top: 8px;
  transform: translate(-50%, -250%);
  background: var(--aqua);
  color: var(--ink);
  padding: 10px 20px;
  border: var(--edge) solid var(--ink);
  font-family: var(--f-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 10000;
  transition: transform 0.2s;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ----------------------------- Icons ------------------------------- */
.icon {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.icon--flip { transform: rotate(180deg); }

/* -------------------------- Typography ----------------------------- */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.005em;
  font-size: clamp(2.4rem, 1.4rem + 4.6vw, 4.6rem);
  text-wrap: balance;
}
.display--xl {
  font-size: clamp(2.9rem, 1.2rem + 8vw, 7rem);
  line-height: 0.92;
}

/* screen-print misregistration: a hard offset ink ghost, no blur */
.ink-offset {
  text-shadow: 0.055em 0.055em 0 var(--aqua);
}
.ink-offset--cream { text-shadow: 0.055em 0.055em 0 var(--sand); }
.ink-offset--aqua { text-shadow: 0.05em 0.05em 0 var(--cobalt); }
.ink-offset--marigold { text-shadow: 0.05em 0.05em 0 var(--marigold-deep); }

.eyebrow {
  font-family: var(--f-label);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.15rem);
  color: var(--aqua);
  margin-bottom: var(--sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.eyebrow::before {
  content: "";
  width: 2.2em;
  height: var(--edge);
  background: currentColor;
}
.eyebrow--ink { color: var(--ink); }

.section-head { max-width: 46rem; margin-bottom: var(--lg); }
.section-head__lede {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  margin-top: var(--md);
  max-width: var(--measure);
}
.section-head--light .eyebrow { color: var(--aqua); }

/* ---------------------------- Buttons ------------------------------ */
.btn {
  --btn-bg: var(--aqua);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--f-label);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.15rem;
  line-height: 1;
  text-decoration: none;
  padding: 16px 30px;
  border: var(--edge) solid var(--ink);
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn .icon { width: 1.25em; height: 1.25em; stroke-width: 2; }
.btn--primary { --btn-bg: var(--aqua); --btn-fg: var(--ink); }
.btn--primary:hover { --btn-bg: var(--aqua-deep); --btn-fg: var(--paper); transform: translateY(-2px); }
.btn--secondary { --btn-bg: var(--cobalt); --btn-fg: var(--paper); }
.btn--secondary:hover { --btn-bg: var(--ink); transform: translateY(-2px); }
.btn--big { font-size: 1.35rem; padding: 20px 40px; }
.btn:focus-visible { outline: var(--edge) solid var(--ink); outline-offset: 4px; }

/* ------------------------------ Nav -------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cobalt);
  color: var(--paper);
  border-bottom: var(--edge) solid var(--ink);
}
.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 12px clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: var(--md);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--paper);
  margin-right: auto;
}
.brand__pineapple { width: 34px; height: 34px; color: var(--aqua); stroke-width: 1.6; }
.brand__text {
  font-family: var(--f-display);
  font-size: 1.5rem;
  line-height: 0.82;
  letter-spacing: 0.01em;
}
.nav__links { display: flex; gap: clamp(14px, 2vw, 26px); }
.nav__links a {
  font-family: var(--f-label);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--paper);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.nav__links a:hover { border-color: var(--aqua); color: var(--aqua); }
.nav__cta { font-size: 0.95rem; padding: 10px 20px; }
.nav__cta .icon { width: 1.1em; height: 1.1em; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
}
.nav__toggle span { width: 26px; height: 3px; background: var(--paper); display: block; }
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px clamp(16px, 4vw, 40px) 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.14);
}
.nav__mobile:not([hidden]) { display: flex; }
.nav__mobile a {
  font-family: var(--f-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--paper);
  padding: 8px 0;
}
.nav__mobile .btn { margin-top: 8px; justify-content: center; }

/* ------------------------------ Hero ------------------------------- */
/* One immersive printed panel: party photo bed, flat navy ink wash over it,
   the painted name sitting on a torn cobalt block, a collectible seal top-right. */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--cobalt);
  border-bottom: var(--edge) solid var(--ink);
  min-height: min(92vh, 880px);
  display: flex;
  overflow: hidden;
}
.hero__photo { position: absolute; inset: 0; z-index: 0; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
/* Flat navy ink laid over the photo, like a two-colour print. Not a gradient. */
.hero__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(16, 27, 42, 0.62);
  mix-blend-mode: multiply;
}
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(40px, 8vh, 96px) clamp(20px, 4vw, 40px) clamp(36px, 6vh, 72px);
  display: flex;
  align-items: flex-end;
}
.hero__panel {
  position: relative;
  color: var(--paper);
  max-width: 46rem;
  padding: clamp(20px, 3vw, 34px) clamp(22px, 3vw, 40px) clamp(24px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  gap: var(--sm);
}
/* torn cobalt ink block behind the headline for guaranteed contrast + print feel */
.hero__panel::before {
  content: "";
  position: absolute;
  inset: -6px -14px -6px -18px;
  z-index: -1;
  background: var(--cobalt);
  border: var(--edge) solid var(--ink);
  clip-path: polygon(
    0.4% 2%, 30% 0.4%, 61% 2.4%, 88% 0%, 99.6% 3%,
    100% 34%, 99.4% 66%, 100% 97%,
    72% 99.4%, 41% 98%, 12% 100%, 0.6% 97%,
    0.4% 62%, 1% 33%
  );
}
.hero__kicker {
  font-family: var(--f-label);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--aqua);
  font-size: clamp(0.95rem, 0.9rem + 0.4vw, 1.2rem);
}
.hero__title { margin: 0; }
.hero__name {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(3.6rem, 1.6rem + 13vw, 8rem);
  line-height: 0.82;
  letter-spacing: 0.01em;
  text-shadow: 0.045em 0.05em 0 var(--aqua-deep);
}
.hero__50 { color: var(--aqua); text-shadow: 0.045em 0.05em 0 var(--paper); }
.hero__tag {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.5rem, 1rem + 3.4vw, 3rem);
  color: var(--aqua);
  line-height: 1;
  margin-top: 0.1em;
}
.hero__lede { max-width: 34rem; font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); margin-top: 4px; }
.hero .btn { align-self: flex-start; margin-top: var(--xs); }

/* Good Times On Board seal */
.seal { width: 100%; height: auto; }
.seal__text {
  font-family: var(--f-label);
  font-size: 22px;
  letter-spacing: 0.14em;
  fill: var(--ink);
  text-anchor: middle;
}
.seal__stroke { fill: none; stroke: var(--ink); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.seal__dot { fill: var(--ink); }
.hero__seal {
  position: absolute;
  z-index: 4;
  top: clamp(84px, 12vh, 132px);
  right: clamp(20px, 5vw, 72px);
  width: clamp(120px, 15vw, 188px);
  transform: rotate(-8deg);
}

/* --------------------------- Essentials ---------------------------- */
.essentials { background: var(--cream); border-bottom: var(--edge) solid var(--ink); }
.essentials__row {
  max-width: var(--wrap);
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.essentials__item {
  padding: clamp(24px, 3vw, 40px) var(--md);
  text-align: center;
  border-right: 2px solid var(--sand);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.essentials__item:last-child { border-right: 0; }
.essentials__item .icon { width: 34px; height: 34px; color: var(--aqua-deep); stroke-width: 1.6; margin-bottom: 4px; }
.essentials__label {
  font-family: var(--f-label);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--aqua-deep);
  font-size: 0.95rem;
}
.essentials__big {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.4rem, 1rem + 1.6vw, 2.1rem);
  line-height: 1;
  color: var(--cobalt);
}
.essentials__sub { font-size: 0.92rem; color: var(--ink); opacity: 0.82; max-width: 18ch; }

/* ------------------- Two days off + Can you make it? --------------- */
/* The signature aqua|marigold split: the proposition on the left,
   the commitment call on the right. Two flat ink fields, one border. */
.twodays {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  border-bottom: var(--edge) solid var(--ink);
}
.twodays__aqua,
.twodays__gold { position: relative; color: var(--ink); overflow: hidden; }
.twodays__aqua { background: var(--aqua); }
.twodays__gold { background: var(--marigold); border-left: var(--edge) solid var(--ink); }
.twodays__aqua::before,
.twodays__gold::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  color: var(--ink);
  background-image: radial-gradient(currentColor 1.1px, transparent 1.3px);
  background-size: 12px 12px;
}
.twoblock { position: relative; padding: var(--xl) clamp(20px, 4vw, 56px); }
.twodays__aqua .twoblock { max-width: 40rem; margin-left: auto; }
.twodays__gold .twoblock {
  max-width: 30rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--sm);
}
.twodays__body { max-width: var(--measure); font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem); margin-top: var(--md); }
.twodays__days { display: flex; gap: 10px; margin-top: var(--lg); flex-wrap: wrap; }

/* the marigold commitment call */
.callout__title { color: var(--ink); margin: 0; }
.callout__body { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); max-width: 26rem; }
.callout__btn { margin-top: var(--xs); }
.callout__dates {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: var(--sm);
  padding-top: var(--sm);
  border-top: 2px solid var(--marigold-deep);
  font-family: var(--f-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}
.callout__dates span { display: inline-flex; align-items: center; gap: 7px; }
.callout__dates .icon { width: 1.1em; height: 1.1em; stroke-width: 2; }
.daychip {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  padding: 10px 22px;
  background: var(--cobalt);
  color: var(--paper);
  border: var(--edge) solid var(--ink);
}
.daychip--off {
  background: var(--paper);
  color: var(--cobalt);
  position: relative;
}
.daychip--off::after {
  content: "OFF";
  position: absolute;
  top: -10px; right: -8px;
  background: var(--aqua-deep);
  color: var(--paper);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 2px 6px;
  border: 2px solid var(--ink);
}
.twodays__caption {
  margin-top: var(--md);
  font-family: var(--f-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}

/* ------------------------------ Ship ------------------------------- */
.ship { background: var(--cobalt); color: var(--paper); border-bottom: var(--edge) solid var(--ink); }
.ship__inner { max-width: var(--wrap); margin: 0 auto; padding: var(--xl) clamp(16px, 4vw, 40px); }
.ship .eyebrow { color: var(--aqua); }
.ship__inner .section-head__lede { opacity: 0.9; }
.highlights {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--lg) var(--md);
}
.highlight { border-top: var(--edge) solid var(--aqua); padding-top: var(--md); }
.highlight .icon { width: 40px; height: 40px; color: var(--aqua); stroke-width: 1.5; margin-bottom: 12px; }
.highlight__name {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
  line-height: 1;
  margin-bottom: 8px;
}
.highlight p { opacity: 0.88; }
.ship__note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: var(--xl);
  padding-top: var(--lg);
  border-top: 2px solid rgba(47, 160, 166, 0.4);
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  max-width: 52rem;
}
.ship__note .icon { width: 30px; height: 30px; color: var(--aqua); flex: none; margin-top: 2px; }

/* ------------------------------ Cost ------------------------------- */
.cost { background: var(--cream); border-bottom: var(--edge) solid var(--ink); }
.cost__inner { max-width: var(--wrap); margin: 0 auto; padding: var(--xl) clamp(16px, 4vw, 40px); }
.cost .eyebrow { color: var(--aqua-deep); }

.pricetable {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: var(--edge) solid var(--ink);
  max-width: 46rem;
}
.pricetable th, .pricetable td { text-align: left; padding: 16px clamp(14px, 2vw, 24px); border-bottom: 2px solid var(--sand); }
.pricetable td {
  text-align: right;
  font-family: var(--f-head);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--cobalt);
  white-space: nowrap;
}
.pricetable th { font-weight: 600; }
.pricetable__hint { font-weight: 400; opacity: 0.7; font-size: 0.9em; }
.pricetable tbody tr:last-child th, .pricetable tbody tr:last-child td { border-bottom: 0; }
.pricetable__total { background: var(--cobalt); }
.pricetable__total th { color: var(--paper); font-family: var(--f-head); font-weight: 400; text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.4rem; }
.pricetable__total td { color: var(--aqua); font-size: 1.9rem; border: 0; }

/* cost table sits beside the painted "all in" splash */
.cost__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}
.cost__grid .pricetable { max-width: none; }
.allin {
  display: grid;
  place-items: center;
  gap: 2px;
  width: clamp(180px, 22vw, 230px);
  aspect-ratio: 1;
  background: var(--aqua);
  color: var(--ink);
  border: var(--edge) solid var(--ink);
  border-radius: 999px;
  box-shadow: 7px 7px 0 var(--cobalt);
  transform: rotate(-5deg);
  text-align: center;
}
.allin__approx {
  font-family: var(--f-label);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1rem;
}
.allin__amount {
  font-family: var(--f-display);
  font-size: clamp(3rem, 2rem + 4vw, 4.2rem);
  line-height: 0.9;
  text-shadow: 0.04em 0.04em 0 var(--paper);
}
.allin__label {
  font-family: var(--f-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  max-width: 14ch;
}

.cost__notes { margin-top: var(--lg); display: grid; gap: var(--md); max-width: var(--measure); }
.cost__flag {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--marigold);
  color: var(--ink);
  padding: 18px 20px;
  border: var(--edge) solid var(--ink);
}
.cost__flag .icon { width: 26px; height: 26px; flex: none; margin-top: 2px; }
.cost__rooms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sm);
}
.cost__rooms-meta { font-size: 0.9rem; opacity: 0.75; }
.cost__fineprint { font-size: 0.95rem; opacity: 0.75; font-style: italic; }

.fare { display: grid; grid-template-columns: 1fr 1fr; gap: var(--md); margin-top: var(--xl); }
.fare__col { padding: var(--md) var(--md) var(--lg); border: var(--edge) solid var(--ink); background: var(--paper); }
.fare__col--out { background: var(--cream); }
.fare__head {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--sm);
  padding-bottom: 10px;
  border-bottom: var(--edge) solid var(--ink);
}
.fare__col--in .fare__head { color: var(--aqua-deep); }
.fare__col--out .fare__head { color: var(--cobalt); }
.fare__head .icon { width: 26px; height: 26px; stroke-width: 2; }
.fare__col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.fare__col li { padding-left: 18px; position: relative; }
.fare__col li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 8px; height: 8px; background: var(--aqua); }
.fare__col--out li::before { background: var(--sand); }
.fare__note { margin-top: var(--md); max-width: var(--measure); font-size: 0.98rem; opacity: 0.85; }

/* ---------------------------- Dress code --------------------------- */
.dress {
  background: var(--aqua-deep);
  color: var(--paper);
  border-bottom: var(--edge) solid var(--ink);
  position: relative;
  overflow: hidden;
}
.dress__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: var(--xl) clamp(16px, 4vw, 40px);
  position: relative;
}
.dress .eyebrow--ink { color: var(--aqua); }
.dress__pineapple {
  position: absolute;
  width: clamp(140px, 22vw, 300px);
  height: auto;
  right: clamp(-30px, 2vw, 40px);
  top: var(--lg);
  color: rgba(47, 160, 166, 0.32);
  stroke-width: 1.1;
}
.dress__body { max-width: var(--measure); margin-top: var(--md); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); }
.dress__body + .dress__body { margin-top: var(--sm); }
.dress__list {
  list-style: none;
  padding: 0;
  margin-top: var(--lg);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 44rem;
}
.dress__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.7rem);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
}
.dress__list .icon { width: 30px; height: 30px; color: var(--aqua); flex: none; }

/* ------------------------------ Plan ------------------------------- */
.plan { background: var(--cobalt); color: var(--paper); border-bottom: var(--edge) solid var(--ink); }
.plan__inner { max-width: var(--wrap); margin: 0 auto; padding: var(--xl) clamp(16px, 4vw, 40px); }
.plan .eyebrow { color: var(--aqua); }
.steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--md);
  counter-reset: step;
}
.step { border: var(--edge) solid var(--aqua); padding: var(--md); background: rgba(47, 160, 166, 0.08); }
.step__badge {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--aqua);
  margin-bottom: var(--sm);
}
.step__badge .icon { width: 64px; height: 64px; stroke-width: 1.4; position: absolute; inset: 0; }
.step__badge span {
  font-family: var(--f-head);
  font-size: 1.8rem;
  color: var(--paper);
  position: relative;
}
.step__title {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.3rem, 1rem + 1vw, 1.7rem);
  line-height: 1.02;
  margin-bottom: 12px;
  color: var(--aqua);
}
.step__by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  background: var(--marigold);
  color: var(--ink);
  font-family: var(--f-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  padding: 6px 14px;
  border: 2px solid var(--ink);
}
.step__by .icon { width: 1.1em; height: 1.1em; stroke-width: 2; }
.step p { opacity: 0.9; }
.plan__then { margin-top: var(--lg); padding: var(--md); border: 2px dashed rgba(47, 160, 166, 0.5); max-width: 52rem; }
.plan__then-title { font-family: var(--f-head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.5rem; display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.plan__then-title .icon { width: 26px; height: 26px; color: var(--aqua); transform: rotate(-90deg); }
.plan__nothing {
  margin-top: var(--lg);
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.6rem);
  font-family: var(--f-body);
  max-width: 46rem;
}
.plan__nothing strong { color: var(--aqua); }
.plan__ask { margin-top: var(--sm); font-family: var(--f-label); text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.15rem; color: var(--paper); opacity: 0.85; }

/* --------------------------- Guest book ---------------------------- */
.guestbook { background: var(--cream); border-bottom: var(--edge) solid var(--ink); }
.guestbook__inner { max-width: var(--wrap); margin: 0 auto; padding: var(--xl) clamp(16px, 4vw, 40px); }
.guestbook .eyebrow { color: var(--aqua-deep); }
.guestbook__count { font-family: var(--f-label); letter-spacing: 0.08em; text-transform: uppercase; color: var(--aqua-deep); }
.guestbook__list { display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); gap: var(--md); }
.guestbook__loading { font-family: var(--f-label); text-transform: uppercase; letter-spacing: 0.12em; color: var(--aqua-deep); }
.gbcard {
  background: var(--paper);
  border: var(--edge) solid var(--ink);
  padding: var(--md);
  display: flex;
  flex-direction: column;
  gap: var(--sm);
  position: relative;
}
.gbcard::before {
  content: "\201C";
  font-family: var(--f-display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--aqua);
  height: 0.5em;
}
.gbcard__quote { font-size: 1.12rem; line-height: 1.4; }
.gbcard__quote:empty { display: none; }
.gbcard__by { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; border-top: 2px solid var(--sand); padding-top: 12px; }
.gbcard__name { font-family: var(--f-head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.4rem; color: var(--cobalt); }
.gbcard__badge {
  font-family: var(--f-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  padding: 4px 10px;
  border: 2px solid var(--ink);
  white-space: nowrap;
}
.gbcard__badge--yes { background: var(--aqua); color: var(--ink); }
.gbcard__badge--probably { background: var(--cream); color: var(--aqua-deep); }
.guestbook__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--xl) var(--md);
  border: var(--edge) dashed var(--aqua-deep);
  background: var(--paper);
}
.guestbook__empty .icon { width: 56px; height: 56px; color: var(--aqua-deep); margin: 0 auto var(--sm); }
.guestbook__empty p {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.6rem);
  line-height: 1.05;
  color: var(--aqua-deep);
  max-width: 22ch;
  margin: 0 auto;
}

/* ---------------------------- Response ----------------------------- */
.respond { background: var(--aqua); color: var(--ink); position: relative; }
.respond::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.1; color: var(--ink);
  background-image: radial-gradient(currentColor 1.1px, transparent 1.3px);
  background-size: 12px 12px;
}
.respond__inner { position: relative; max-width: 52rem; margin: 0 auto; padding: var(--xl) clamp(16px, 4vw, 40px); }
.respond .eyebrow { color: var(--ink); }
.respond .section-head { text-align: center; margin-left: auto; margin-right: auto; }
.respond .section-head .eyebrow { justify-content: center; }
.respond .section-head__lede { margin-left: auto; margin-right: auto; }
.respond__skip {
  display: grid;
  justify-items: center;
  gap: 7px;
  margin-top: var(--md);
}
.respond__skip > p:first-child { font-weight: 700; }
.respond__skip-link {
  justify-content: center;
  gap: 9px;
  font-size: 1.05rem;
}
.respond__skip-link .icon { width: 1.15em; height: 1.15em; }
.respond__skip-note { max-width: 34rem; font-size: 0.85rem; opacity: 0.72; }

.rform { display: grid; gap: var(--md); background: var(--cream); border: var(--edge) solid var(--ink); padding: clamp(20px, 4vw, 44px); }
.field { display: grid; gap: 6px; }
.field label, .field legend {
  font-family: var(--f-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  color: var(--cobalt);
}
.field__opt { opacity: 0.6; }
.field input[type="text"] {
  font: inherit;
  padding: 14px 16px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  width: 100%;
}
.field input:focus-visible { outline: none; border-color: var(--aqua); box-shadow: 0 0 0 3px var(--ink); }
.field__hint { font-size: 0.9rem; opacity: 0.72; }
.field--error input { border-color: var(--aqua-deep); border-width: var(--edge); }
.field--error .field__hint { color: var(--aqua-deep); opacity: 1; font-weight: 600; }

.field--choices { border: 0; padding: 0; margin: 0; }
.field--choices legend { margin-bottom: 8px; padding: 0; }
.choices { display: grid; gap: 10px; }
.choice {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--paper);
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: background 0.15s;
}
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice__mark {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: transparent;
  flex: none;
  transition: background 0.15s, color 0.15s;
}
.choice__mark .icon { width: 20px; height: 20px; stroke-width: 2.2; }
.choice__text { font-size: 1.1rem; }
.choice:hover { background: var(--sand); }
.choice:has(input:checked) { background: var(--aqua); }
.choice:has(input:checked) .choice__mark { background: var(--ink); color: var(--aqua); }
.choice:has(input:focus-visible) { outline: var(--edge) solid var(--ink); outline-offset: 3px; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.rform__privacy {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  padding: 14px 16px;
  background: var(--cobalt);
  color: var(--paper);
}
.rform__privacy .icon { width: 24px; height: 24px; color: var(--aqua); flex: none; margin-top: 1px; }
.rform__submit { justify-content: center; }
.rform__submit[aria-busy="true"],
.rform__submit:disabled { opacity: 0.75; pointer-events: none; }
.rform__status { text-align: center; font-weight: 600; min-height: 1.2em; }
.rform__status--error { color: var(--aqua-deep); }

.rform__done { text-align: center; background: var(--cream); border: var(--edge) solid var(--ink); padding: var(--xl) var(--md); }
.rform__done-mark { width: 64px; height: 64px; color: var(--aqua-deep); margin: 0 auto var(--sm); stroke-width: 2.4; }
.rform__done-title { font-family: var(--f-display); font-size: clamp(2.2rem, 1.6rem + 3vw, 3.4rem); color: var(--cobalt); line-height: 1; margin-bottom: 8px; }

/* ------------------------------ Footer ----------------------------- */
.foot { background: var(--ink); color: var(--cream); text-align: center; }
.foot__inner { max-width: var(--wrap); margin: 0 auto; padding: var(--xl) clamp(16px, 4vw, 40px); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.foot__pineapple { width: 50px; height: 50px; color: var(--aqua); margin-bottom: var(--sm); }
.foot__line { font-family: var(--f-display); font-size: clamp(2rem, 1.5rem + 2vw, 3rem); line-height: 1; }
.foot__meta { font-family: var(--f-label); text-transform: uppercase; letter-spacing: 0.14em; color: var(--aqua); font-size: 1rem; }
.foot__small { max-width: 58rem; color: color-mix(in srgb, var(--cream) 78%, var(--aqua)); font-size: 0.92rem; margin-top: var(--sm); }
.foot a { color: inherit; text-underline-offset: 0.22em; text-decoration-thickness: 0.1em; }
.foot a:hover { color: var(--aqua); }
.foot a:focus-visible { outline: 2px solid var(--aqua); outline-offset: 4px; }
.foot__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  width: 100%;
  margin-top: var(--md);
  padding-top: var(--md);
  border-top: 1px solid color-mix(in srgb, var(--cream) 35%, transparent);
  font-family: var(--f-label);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.foot__business {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  margin-top: var(--sm);
  color: color-mix(in srgb, var(--cream) 68%, var(--aqua));
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-transform: uppercase;
}
.foot__business span + span::before {
  content: "·";
  margin-right: 18px;
  color: var(--aqua);
}

/* --------------------------- Policy page --------------------------- */
.policy-body { background: var(--cream); color: var(--ink); }
.policy-shell { width: min(100% - 32px, 68rem); margin: 0 auto; padding: clamp(24px, 5vw, 64px) 0 var(--xl); }
.policy-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sm);
  margin-bottom: clamp(48px, 8vw, 96px);
  font-family: var(--f-label);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.policy-nav a { color: var(--cobalt); text-underline-offset: 0.25em; }
.policy-nav a:focus-visible { outline: 2px solid var(--cobalt); outline-offset: 4px; }
.policy-hero { max-width: 52rem; margin-bottom: var(--xl); }
.policy-hero .eyebrow { color: var(--aqua-deep); }
.policy-hero h1 { max-width: 12ch; margin: 12px 0 var(--md); color: var(--cobalt); font-family: var(--f-display); font-size: clamp(3.2rem, 9vw, 6rem); line-height: 0.92; }
.policy-hero p:last-child { max-width: 66ch; font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem); }
.policy-content { display: grid; gap: clamp(40px, 6vw, 64px); max-width: 52rem; }
.policy-content section { scroll-margin-top: 24px; }
.policy-content h2 { margin-bottom: 12px; color: var(--cobalt); font-family: var(--f-label); font-size: clamp(1.9rem, 5vw, 2.8rem); line-height: 1; letter-spacing: 0.02em; text-transform: uppercase; }
.policy-content h3 { margin: 26px 0 8px; color: var(--aqua-deep); font-family: var(--f-label); font-size: 1.4rem; letter-spacing: 0.03em; text-transform: uppercase; }
.policy-content p,
.policy-content li { max-width: 70ch; line-height: 1.65; }
.policy-content p + p { margin-top: 12px; }
.policy-content ul { display: grid; gap: 8px; margin: 12px 0 0; padding-left: 1.25rem; }
.policy-content a { color: var(--aqua-deep); font-weight: 700; text-underline-offset: 0.2em; }
.policy-content a:focus-visible { outline: 2px solid var(--cobalt); outline-offset: 4px; }
.policy-facts { display: grid; gap: 12px; margin-top: 16px; padding: var(--md); background: var(--paper); box-shadow: var(--label-depth-soft); }
.policy-facts div { display: grid; grid-template-columns: minmax(9rem, 0.45fr) 1fr; gap: var(--sm); }
.policy-facts dt { color: var(--aqua-deep); font-weight: 800; }
.policy-facts dd { margin: 0; }
.policy-note { padding: var(--md); background: var(--cobalt); color: var(--paper); line-height: 1.6; }
.policy-updated { color: var(--aqua-deep); font-size: 0.9rem; }

@media (max-width: 600px) {
  .respond__skip-link { max-width: 19rem; }
  .foot__links,
  .foot__business { align-items: center; flex-direction: column; }
  .foot__business span + span::before { display: none; }
  .policy-facts div { grid-template-columns: 1fr; gap: 2px; }
}

/* ---------------------------- Float CTA ---------------------------- */
.floatcta {
  position: fixed;
  right: clamp(14px, 3vw, 30px);
  bottom: clamp(14px, 3vw, 30px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--aqua);
  color: var(--ink);
  border: var(--edge) solid var(--ink);
  border-radius: 999px;
  padding: 12px 22px;
  font-family: var(--f-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.16s, background 0.16s;
}
.floatcta .icon { width: 1.2em; height: 1.2em; stroke-width: 2; }
.floatcta:hover { transform: translateY(-2px); background: var(--aqua-deep); color: var(--paper); }
.floatcta[hidden] { display: none; }

/* ------------------------------ Motion ----------------------------- */
/* Content is visible by default. Motion enhances from an already-visible
   state: one authored hero entrance, plus the pineapple's slow sway. */
@media (prefers-reduced-motion: no-preference) {
  .hero__kicker { animation: rise 0.65s cubic-bezier(0.16, 1, 0.3, 1) both; }
  .hero__title { animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both; }
  .hero__lede { animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both; }
  .hero .btn { animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both; }
  @keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

  .brand__pineapple, .foot__pineapple, .dress__pineapple {
    animation: sway 7s ease-in-out infinite;
    transform-origin: 50% 22%;
  }
  @keyframes sway {
    0%, 100% { transform: rotate(180deg); }
    50% { transform: rotate(174deg); }
  }
}

/* --------------------------- Responsive ---------------------------- */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero { min-height: min(84vh, 720px); }
  .hero__photo img { object-position: center 28%; }
  .hero__seal { top: clamp(76px, 10vh, 108px); right: clamp(14px, 4vw, 28px); }

  .twodays { grid-template-columns: 1fr; }
  .twodays__gold { border-left: 0; border-top: var(--edge) solid var(--ink); }
  .twodays__aqua .twoblock { max-width: none; margin-left: 0; }
  .twodays__gold .twoblock { max-width: none; }

  .essentials__row { grid-template-columns: 1fr 1fr; }
  .essentials__item:nth-child(2) { border-right: 0; }
  .essentials__item:nth-child(1), .essentials__item:nth-child(2) { border-bottom: 2px solid var(--sand); }

  .highlights { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .fare { grid-template-columns: 1fr; }
  .cost__grid { grid-template-columns: 1fr; justify-items: start; gap: var(--lg); }
}

@media (max-width: 560px) {
  :root { --xl: 64px; --lg: 36px; }
  .nav__toggle { margin-left: auto; }
  .brand { margin-right: 0; }
  .hero__seal { top: 100px; right: 12px; width: 88px; }
  .hero__panel { max-width: none; }
  .essentials__row { grid-template-columns: 1fr; }
  .essentials__item { border-right: 0; border-bottom: 2px solid var(--sand); }
  .essentials__item:last-child { border-bottom: 0; }
  .highlights { grid-template-columns: 1fr; }
  .dress__list { grid-template-columns: 1fr; }
  .dress__pineapple { opacity: 0.5; }
  .btn--big { font-size: 1.15rem; padding: 16px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* =====================================================================
   Retro matchbook art pass
   The supplied painted artwork and local FISH&CHIPS face now carry the
   personality. UI chrome stays flat, square and screen-printed.
   ===================================================================== */
@font-face {
  font-family: "Fish And Chips";
  src: url("/assets/FISH-AND-CHIPS-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --f-display: "Fish And Chips", "Bebas Neue", "Arial Narrow", sans-serif;
  --matchbook-cut: polygon(
    0.5% 2%, 13% 0.5%, 31% 2%, 48% 0.7%, 67% 2.2%, 84% 0.4%, 99.5% 2%,
    100% 28%, 99.4% 49%, 100% 73%, 99.3% 98%,
    81% 99.4%, 62% 98%, 43% 99.5%, 21% 98.2%, 0.5% 99%,
    0 76%, 0.6% 51%, 0 25%
  );
}

.display,
.hero__name,
.hero__tag,
.brand__text,
.allin__amount,
.guestbook__empty p,
.rform__done-title,
.foot__line {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.015em;
}

.display {
  line-height: 0.86;
  font-size: clamp(3rem, 1.7rem + 5.2vw, 5.8rem);
}

.display--xl {
  font-size: clamp(3.6rem, 1.45rem + 8vw, 6rem);
  line-height: 0.84;
}

.eyebrow {
  margin-bottom: 20px;
  padding: 5px 10px 4px;
  border: 2px solid currentColor;
  clip-path: var(--matchbook-cut);
  line-height: 1;
}

.eyebrow::before {
  width: 0.8em;
  height: 0.8em;
  background: transparent;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.btn {
  min-height: 48px;
  border-radius: 0;
  clip-path: var(--matchbook-cut);
  padding-inline: 32px;
  box-shadow: 4px 4px 0 var(--ink);
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 180ms ease,
    color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translate(-2px, -2px) rotate(-0.5deg);
  box-shadow: 7px 7px 0 var(--ink);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.nav {
  border-bottom-width: 4px;
}

.nav__inner {
  min-height: 72px;
}

.brand {
  gap: 12px;
  min-height: 48px;
}

.brand__pineapple {
  width: 30px;
  height: 48px;
  object-fit: contain;
  transform: rotate(180deg);
}

.brand__text {
  font-size: 1.85rem;
  line-height: 0.7;
}

.nav__links a,
.nav__mobile a {
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px;
  height: 3px;
  background: var(--aqua);
  transform: scaleX(0) rotate(-1deg);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav__toggle {
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}

.nav__links a:hover {
  border-color: transparent;
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  transform: scaleX(1) rotate(-1deg);
}

.hero {
  min-height: min(91vh, 850px);
  border-bottom-width: 5px;
}

.hero__wash {
  background: rgba(7, 31, 56, 0.42);
}

.hero__photo img {
  object-position: center 35%;
  filter: saturate(0.92) contrast(1.04);
}

.hero__inner {
  justify-content: flex-end;
  align-items: center;
  padding-top: clamp(64px, 9vh, 112px);
  padding-bottom: clamp(72px, 9vh, 112px);
}

.hero__panel {
  max-width: 36rem;
  gap: 18px;
  padding: clamp(24px, 3vw, 40px);
}

.hero__panel::before {
  inset: -12px -18px -14px -22px;
  border-width: 4px;
  clip-path: var(--matchbook-cut);
}

.hero__kicker {
  width: fit-content;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--aqua);
  font-size: clamp(1rem, 0.9rem + 0.45vw, 1.25rem);
}

.hero__name {
  font-size: clamp(5.4rem, 4rem + 7vw, 8rem);
  line-height: 0.72;
  letter-spacing: 0.01em;
}

.hero__50 {
  display: block;
  width: fit-content;
  color: var(--paper);
  text-shadow: 0.045em 0.045em 0 var(--aqua);
}

.hero__tag {
  color: var(--aqua);
  font-size: clamp(2.5rem, 1.8rem + 3.4vw, 4.4rem);
  line-height: 0.82;
  transform: rotate(-1deg);
  transform-origin: left;
}

.hero__lede {
  max-width: 31rem;
}

.hero__seal {
  z-index: 4;
  left: clamp(18px, 4vw, 64px);
  right: auto;
  top: auto;
  bottom: clamp(14px, 3vw, 40px);
  width: clamp(145px, 15vw, 215px);
  height: auto;
  transform: rotate(-5deg);
}

.essentials {
  position: relative;
}

.essentials::before,
.essentials::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  height: 7px;
  pointer-events: none;
  background: var(--cream);
  clip-path: polygon(0 50%, 4% 0, 9% 60%, 16% 18%, 25% 72%, 34% 16%, 44% 62%, 53% 8%, 63% 68%, 73% 15%, 84% 65%, 93% 12%, 100% 55%, 100% 100%, 0 100%);
}

.essentials::before { top: -6px; }
.essentials::after { bottom: -6px; transform: rotate(180deg); }

.essentials__row {
  max-width: 78rem;
}

.essentials__big {
  font-size: clamp(1.65rem, 1.35rem + 1.2vw, 2.35rem);
}

.twodays {
  grid-template-columns: 1.08fr 0.92fr;
  border-bottom: 5px solid var(--ink);
}

.twoblock {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

.twodays__aqua::before,
.twodays__gold::before {
  opacity: 0.2;
}

.twodays__gold .twoblock {
  max-width: 38rem;
}

.daychip {
  clip-path: var(--matchbook-cut);
}

.ship__inner,
.cost__inner,
.dress__inner,
.plan__inner,
.guestbook__inner,
.respond__inner,
.foot__inner {
  padding-top: clamp(80px, 9vw, 128px);
  padding-bottom: clamp(80px, 9vw, 128px);
}

.section-head {
  margin-bottom: clamp(48px, 6vw, 72px);
}

.highlights {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(40px, 6vw, 88px);
}

.highlight {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
  align-content: start;
  border-top: 2px solid rgba(47, 160, 166, 0.58);
  padding: 24px 0 28px;
}

.highlight .icon {
  grid-row: 1 / span 2;
  margin: 0;
}

.highlight__name,
.highlight p {
  grid-column: 2;
}

.allin {
  width: clamp(190px, 24vw, 250px);
  aspect-ratio: auto;
  padding: 32px 22px 28px;
  border-radius: 0;
  box-shadow: none;
  clip-path: var(--matchbook-cut);
  transform: rotate(-3deg);
}

.allin__amount {
  font-size: clamp(3.5rem, 2rem + 4vw, 5rem);
}

.dress__inner {
  min-height: 620px;
}

.dress__inner > :not(.dress__pineapple) {
  position: relative;
  z-index: 1;
}

.dress__pineapple {
  width: clamp(250px, 34vw, 440px);
  max-height: 78%;
  object-fit: contain;
  right: clamp(-60px, 1vw, 20px);
  top: 11%;
  opacity: 0.34;
  transform: rotate(180deg);
  filter: saturate(0.85);
}

.steps {
  gap: 0;
  border-top: 3px solid var(--aqua);
  border-bottom: 3px solid var(--aqua);
}

.step {
  border: 0;
  border-right: 2px solid rgba(47, 160, 166, 0.55);
  background: transparent;
  padding: 32px;
}

.step:last-child {
  border-right: 0;
}

.step__title {
  font-size: clamp(1.65rem, 1.25rem + 1.2vw, 2.2rem);
}

.plan__then {
  border-style: solid;
  clip-path: var(--matchbook-cut);
}

.gbcard {
  clip-path: var(--matchbook-cut);
  padding: 28px;
}

.guestbook__list > :nth-child(3n + 1) {
  transform: rotate(-0.7deg);
}

.guestbook__list > :nth-child(3n + 3) {
  transform: rotate(0.65deg);
}

.respond::before {
  opacity: 0.08;
  background-size: 16px 16px;
}

.rform {
  clip-path: var(--matchbook-cut);
  border-width: 4px;
}

.choice,
.field input[type="text"] {
  min-height: 48px;
}

.foot__pineapple {
  width: 68px;
  height: 104px;
  object-fit: contain;
  transform: rotate(180deg);
}

.floatcta {
  border-radius: 0;
  clip-path: var(--matchbook-cut);
}

@media (max-width: 900px) {
  .hero__inner {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .hero__panel {
    max-width: min(38rem, calc(100% - 104px));
  }

  .hero__seal {
    width: clamp(92px, 14vw, 128px);
    right: 18px;
    left: auto;
    bottom: 22px;
  }

  .twodays {
    grid-template-columns: 1fr;
  }

  .steps {
    border: 0;
  }

  .step {
    border-right: 0;
    border-top: 2px solid rgba(47, 160, 166, 0.55);
  }

  .step:last-child {
    border-bottom: 2px solid rgba(47, 160, 166, 0.55);
  }
}

@media (max-width: 560px) {
  .nav__inner {
    min-height: 64px;
  }

  .brand__pineapple {
    width: 25px;
    height: 42px;
  }

  .brand__text {
    font-size: 1.55rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero__photo img {
    object-position: 46% center;
  }

  .hero__wash {
    background: rgba(7, 31, 56, 0.5);
  }

  .hero__inner {
    align-items: flex-end;
    padding: 80px 16px 28px;
  }

  .hero__panel {
    max-width: none;
    margin-bottom: 128px;
    padding: 24px 20px 28px;
  }

  .hero__name {
    font-size: clamp(5rem, 27vw, 6.8rem);
  }

  .hero__tag {
    font-size: clamp(2.4rem, 13vw, 3.5rem);
  }

  .hero__seal {
    width: 82px;
    right: 18px;
    bottom: 18px;
  }

  .hero .btn {
    width: 100%;
    justify-content: center;
  }

  .display,
  .display--xl {
    font-size: clamp(3.35rem, 17vw, 5rem);
  }

  .highlights {
    grid-template-columns: 1fr;
  }

  .highlight {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .cost__grid {
    justify-items: center;
  }

  .dress__inner {
    min-height: auto;
    padding-bottom: 340px;
  }

  .dress__pineapple {
    width: 240px;
    max-height: 320px;
    top: auto;
    right: 50%;
    bottom: 20px;
    transform: translateX(50%) rotate(180deg);
    opacity: 0.42;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .brand__pineapple,
  .foot__pineapple,
  .dress__pineapple {
    animation: none;
  }
}

/* =====================================================================
   Dimensional matchbox pass
   Each major section is treated as a printed label fixed to a shallow
   cardboard box. Hard edges and compressed poster spacing do the work.
   ===================================================================== */
:root {
  --box-table: #9f8059;
  --box-table-dark: #735a3e;
  --box-cardboard: #c6a678;
  --box-cardboard-light: #dfc69f;
  --box-edge: #8b6945;
  --box-depth:
    0 9px 0 var(--box-edge),
    0 13px 0 var(--ink),
    0 26px 32px rgba(26, 18, 11, 0.34);
  --label-depth:
    6px 7px 0 var(--box-cardboard),
    9px 10px 0 var(--ink),
    0 18px 22px rgba(14, 27, 42, 0.24);
}

body {
  background: var(--box-table);
}

body::after {
  opacity: 0.11;
}

main {
  padding: 28px clamp(12px, 2.6vw, 40px) 72px;
  background-color: var(--box-table);
  background-image:
    repeating-linear-gradient(
      4deg,
      rgba(255, 247, 226, 0.045) 0,
      rgba(255, 247, 226, 0.045) 1px,
      transparent 1px,
      transparent 7px
    ),
    repeating-linear-gradient(
      93deg,
      rgba(52, 35, 20, 0.035) 0,
      rgba(52, 35, 20, 0.035) 1px,
      transparent 1px,
      transparent 11px
    );
}

main > section {
  width: min(100%, 88rem);
  margin: 0 auto 56px;
  border: 4px solid var(--ink);
  box-shadow:
    inset 0 0 0 6px rgba(255, 248, 231, 0.72),
    inset 0 0 0 9px rgba(14, 27, 42, 0.78),
    var(--box-depth);
}

main > section:last-child {
  margin-bottom: 0;
}

.nav {
  border-bottom: 3px solid var(--ink);
  box-shadow:
    0 5px 0 var(--box-cardboard),
    0 8px 0 var(--ink),
    0 15px 20px rgba(14, 27, 42, 0.24);
}

.nav__inner {
  min-height: 66px;
}

.brand {
  padding: 4px 10px 4px 6px;
  border: 2px solid rgba(235, 228, 220, 0.76);
  outline: 1px solid rgba(14, 27, 42, 0.86);
  background: rgba(14, 27, 42, 0.24);
  transform: rotate(-0.6deg);
}

.nav__links {
  gap: clamp(16px, 2vw, 28px);
}

.nav__links a {
  padding: 8px 0 5px;
}

.btn {
  border: 3px solid var(--ink);
  clip-path: none;
  box-shadow:
    0 5px 0 var(--aqua-deep),
    0 8px 0 var(--ink),
    0 12px 16px rgba(14, 27, 42, 0.24);
}

.btn--secondary {
  box-shadow:
    0 5px 0 #07101b,
    0 8px 0 var(--ink),
    0 12px 16px rgba(14, 27, 42, 0.28);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px) rotate(-0.35deg);
  box-shadow:
    0 7px 0 var(--aqua-deep),
    0 10px 0 var(--ink),
    0 16px 20px rgba(14, 27, 42, 0.28);
}

.btn:active {
  transform: translateY(5px);
  box-shadow:
    0 1px 0 var(--aqua-deep),
    0 3px 0 var(--ink),
    0 5px 7px rgba(14, 27, 42, 0.24);
}

.hero {
  min-height: min(86vh, 790px);
  border: 8px solid var(--cream);
  outline: 4px solid var(--ink);
  box-shadow:
    inset 0 0 0 3px var(--ink),
    inset 0 0 0 11px rgba(235, 228, 220, 0.34),
    var(--box-depth);
}

.hero__photo {
  inset: 11px;
}

.hero__photo img {
  filter: saturate(0.82) contrast(1.1) sepia(0.08);
}

.hero__wash {
  inset: 11px;
  background: rgba(7, 31, 56, 0.34);
}

.hero__inner {
  padding: clamp(64px, 7vw, 88px) clamp(32px, 5vw, 72px);
}

.hero__panel {
  max-width: 37rem;
  gap: 14px;
  padding: clamp(30px, 4vw, 48px);
  background: var(--cobalt);
  border: 4px solid var(--cream);
  outline: 3px solid var(--ink);
  box-shadow:
    7px 8px 0 var(--marigold),
    11px 12px 0 var(--ink),
    0 24px 30px rgba(7, 16, 27, 0.38);
  transform: rotate(-0.55deg);
}

.hero__panel::before {
  display: none;
}

.hero__kicker {
  margin-bottom: 2px;
}

.hero__lede {
  margin-top: 8px;
  line-height: 1.46;
}

.hero .btn {
  margin-top: 14px;
}

.hero__seal {
  filter:
    drop-shadow(5px 6px 0 var(--box-cardboard))
    drop-shadow(8px 9px 0 var(--ink))
    drop-shadow(0 14px 10px rgba(14, 27, 42, 0.36));
}

.essentials {
  padding: 18px;
  background: var(--box-cardboard-light);
}

.essentials::before,
.essentials::after {
  display: none;
}

.essentials__row {
  border: 3px solid var(--ink);
  outline: 3px solid var(--cream);
  outline-offset: -8px;
  background: var(--cream);
  box-shadow: var(--label-depth);
}

.essentials__item {
  min-height: 190px;
  padding: 28px 20px 24px;
  justify-content: center;
}

.essentials__big {
  margin-top: 2px;
}

.twodays {
  min-height: 620px;
  grid-template-columns: 1.05fr 0.95fr;
}

.twodays__aqua,
.twodays__gold {
  display: grid;
  align-items: center;
  box-shadow: inset 0 0 0 7px rgba(255, 248, 231, 0.22);
}

.twodays__gold {
  border-left: 0;
}

.twoblock {
  padding: clamp(56px, 6vw, 80px) clamp(32px, 5vw, 72px);
}

.twodays__body,
.callout__body {
  margin-top: 18px;
}

.twodays__days {
  margin-top: 32px;
}

.twodays__caption {
  margin-top: 20px;
}

.daychip {
  clip-path: none;
  border-width: 3px;
  box-shadow:
    0 4px 0 var(--box-cardboard),
    0 6px 0 var(--ink);
}

.callout__btn {
  margin-top: 28px;
}

.callout__dates {
  margin-top: 28px;
}

.ship__inner,
.cost__inner,
.dress__inner,
.plan__inner,
.guestbook__inner,
.respond__inner {
  padding: clamp(64px, 7vw, 88px) clamp(30px, 6vw, 80px);
}

.section-head {
  margin-bottom: clamp(36px, 4vw, 48px);
}

.section-head__lede {
  margin-top: 18px;
  line-height: 1.46;
}

.eyebrow {
  margin-bottom: 16px;
  padding: 7px 12px 5px;
  clip-path: none;
  border: 2px solid currentColor;
  outline: 2px solid currentColor;
  outline-offset: 3px;
  background: var(--cream);
  color: var(--ink);
  transform: rotate(-0.45deg);
}

.ship .eyebrow,
.plan .eyebrow,
.dress .eyebrow {
  color: var(--ink);
  background: var(--cream);
}

.display {
  line-height: 0.82;
}

.highlights {
  gap: 0 clamp(28px, 5vw, 64px);
}

.highlight {
  padding: 20px 0 22px;
  border-top-width: 3px;
}

.highlight .icon {
  padding: 6px;
  border: 2px solid currentColor;
  background: rgba(235, 228, 220, 0.06);
}

.ship__note {
  margin-top: 40px;
  padding: 24px;
  border: 3px solid var(--aqua);
  background: rgba(14, 27, 42, 0.22);
  box-shadow:
    6px 7px 0 var(--aqua-deep),
    9px 10px 0 var(--ink);
}

.pricetable,
.fare__col,
.gbcard,
.guestbook__empty,
.rform,
.rform__done {
  box-shadow: var(--label-depth);
}

.pricetable {
  border-width: 3px;
}

.pricetable th,
.pricetable td {
  padding-top: 14px;
  padding-bottom: 14px;
}

.cost__grid {
  gap: clamp(36px, 6vw, 72px);
}

.allin {
  clip-path: none;
  border: 4px solid var(--ink);
  outline: 3px double var(--cream);
  outline-offset: -10px;
  box-shadow:
    7px 8px 0 var(--marigold),
    11px 12px 0 var(--ink),
    0 20px 24px rgba(14, 27, 42, 0.24);
}

.cost__notes {
  margin-top: 36px;
  gap: 18px;
}

.cost__flag {
  border-width: 3px;
  box-shadow:
    5px 6px 0 var(--box-cardboard),
    8px 9px 0 var(--ink);
}

.fare {
  margin-top: 56px;
}

.fare__col {
  padding: 28px 28px 34px;
  border-width: 3px;
}

.dress__inner {
  min-height: 560px;
}

.dress__body {
  margin-top: 18px;
}

.dress__list {
  margin-top: 36px;
}

.dress__list li {
  padding: 12px 0;
  border-bottom-width: 3px;
}

.steps {
  gap: 18px;
  border: 0;
}

.step {
  padding: 28px;
  border: 3px solid var(--aqua);
  background: rgba(14, 27, 42, 0.18);
  box-shadow:
    6px 7px 0 var(--aqua-deep),
    9px 10px 0 var(--ink);
}

.step:last-child {
  border-right: 0;
}

.step__badge {
  margin-bottom: 18px;
}

.plan__then {
  margin-top: 40px;
  padding: 26px;
  clip-path: none;
  border-width: 3px;
  box-shadow:
    6px 7px 0 var(--aqua-deep),
    9px 10px 0 var(--ink);
}

.plan__nothing {
  margin-top: 40px;
}

.guestbook__list {
  gap: 24px;
}

.gbcard {
  clip-path: none;
  border-width: 3px;
  padding: 26px;
}

.guestbook__list > :nth-child(3n + 1),
.guestbook__list > :nth-child(3n + 3) {
  transform: none;
}

.respond::before {
  opacity: 0.14;
}

.rform {
  clip-path: none;
  padding: clamp(26px, 4vw, 44px);
  gap: 22px;
}

.field {
  gap: 7px;
}

.choices {
  gap: 12px;
}

.choice {
  border-width: 3px;
}

.foot {
  border-top: 4px solid var(--ink);
  box-shadow: inset 0 8px 0 var(--box-cardboard);
}

.foot__inner {
  padding-top: 72px;
  padding-bottom: 64px;
}

.floatcta {
  clip-path: none;
  border-width: 3px;
}

@media (max-width: 900px) {
  main {
    padding-inline: 16px;
  }

  main > section {
    margin-bottom: 44px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__panel {
    max-width: min(37rem, calc(100% - 96px));
  }

  .twodays {
    min-height: auto;
  }

  .twodays__gold {
    border-left: 0;
    border-top: 5px solid var(--ink);
  }

  .steps {
    gap: 20px;
  }

  .step,
  .step:last-child {
    border: 3px solid var(--aqua);
  }
}

@media (max-width: 560px) {
  main {
    padding: 18px 10px 48px;
  }

  main > section {
    margin-bottom: 38px;
    border-width: 3px;
    box-shadow:
      inset 0 0 0 4px rgba(255, 248, 231, 0.66),
      inset 0 0 0 7px rgba(14, 27, 42, 0.72),
      0 6px 0 var(--box-edge),
      0 9px 0 var(--ink),
      0 18px 22px rgba(26, 18, 11, 0.32);
  }

  .nav__inner {
    min-height: 62px;
  }

  .brand {
    border-width: 1px;
  }

  .hero {
    min-height: 760px;
    border-width: 6px;
  }

  .hero__photo,
  .hero__wash {
    inset: 8px;
  }

  .hero__inner {
    padding: 62px 20px 26px;
  }

  .hero__panel {
    max-width: none;
    margin-bottom: 116px;
    padding: 28px 22px 32px;
    border-width: 3px;
    box-shadow:
      5px 6px 0 var(--marigold),
      8px 9px 0 var(--ink),
      0 18px 20px rgba(7, 16, 27, 0.34);
  }

  .hero__name {
    font-size: clamp(4.8rem, 25vw, 6.3rem);
  }

  .hero__tag {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .essentials {
    padding: 12px;
  }

  .essentials__row {
    outline-offset: -6px;
  }

  .essentials__item {
    min-height: 160px;
    padding: 24px 16px 20px;
  }

  .twoblock {
    padding: 52px 24px;
  }

  .ship__inner,
  .cost__inner,
  .dress__inner,
  .plan__inner,
  .guestbook__inner,
  .respond__inner {
    padding: 56px 24px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .display,
  .display--xl {
    font-size: clamp(3.15rem, 16vw, 4.7rem);
  }

  .highlight {
    padding: 18px 0 20px;
  }

  .ship__note {
    margin-top: 30px;
  }

  .cost__grid {
    gap: 44px;
  }

  .fare {
    margin-top: 48px;
    gap: 30px;
  }

  .dress__inner {
    padding-bottom: 310px;
  }

  .steps {
    gap: 24px;
  }

  .step {
    padding: 24px;
  }

  .guestbook__list {
    gap: 26px;
  }

  .rform {
    padding: 26px 20px 30px;
  }
}

/* =====================================================================
   Shadow-led matchbox revision
   The photograph and colour fields stay open. Depth comes from the
   cardboard edge beneath each printed label, not a frame around it.
   ===================================================================== */
:root {
  --box-depth:
    0 8px 0 var(--box-cardboard),
    0 20px 34px rgba(26, 18, 11, 0.3);
  --label-depth:
    4px 5px 0 rgba(115, 90, 62, 0.46),
    0 14px 22px rgba(14, 27, 42, 0.18);
  --label-depth-soft:
    0 4px 0 rgba(115, 90, 62, 0.38),
    0 12px 24px rgba(14, 27, 42, 0.16);
}

main {
  padding-top: 34px;
}

main > section {
  border: 0;
  box-shadow: var(--box-depth);
}

.nav {
  border: 0;
  box-shadow:
    0 5px 0 var(--box-cardboard),
    0 12px 22px rgba(14, 27, 42, 0.28);
}

.brand {
  border: 0;
  outline: 0;
  background: transparent;
  filter: drop-shadow(2px 3px 0 rgba(7, 16, 27, 0.72));
}

.btn,
.btn--secondary {
  border: 0;
  box-shadow:
    0 5px 0 rgba(7, 16, 27, 0.78),
    0 12px 18px rgba(14, 27, 42, 0.25);
}

.btn:hover,
.btn:focus-visible {
  box-shadow:
    0 7px 0 rgba(7, 16, 27, 0.78),
    0 16px 22px rgba(14, 27, 42, 0.3);
}

.btn:active {
  box-shadow:
    0 2px 0 rgba(7, 16, 27, 0.78),
    0 5px 9px rgba(14, 27, 42, 0.25);
}

/* Open poster-style hero: type sits directly on the photograph. */
.hero {
  min-height: min(86vh, 800px);
  border: 0;
  outline: 0;
  box-shadow: var(--box-depth);
}

.hero__photo,
.hero__wash {
  inset: 0;
}

.hero__photo img {
  object-position: center 35%;
  filter: saturate(0.9) contrast(1.08);
}

.hero__wash {
  background:
    linear-gradient(
      90deg,
      rgba(7, 31, 56, 0.02) 0%,
      rgba(7, 31, 56, 0.12) 38%,
      rgba(7, 31, 56, 0.7) 70%,
      rgba(7, 31, 56, 0.9) 100%
    );
  mix-blend-mode: normal;
}

.hero__inner {
  justify-content: flex-end;
  padding: clamp(78px, 9vh, 112px) clamp(34px, 6vw, 92px)
    clamp(70px, 9vh, 108px);
}

.hero__panel {
  max-width: 35rem;
  padding: 0;
  gap: 13px;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.hero__kicker,
.hero__name,
.hero__tag,
.hero__lede {
  text-shadow:
    0 2px 1px rgba(7, 16, 27, 0.96),
    0 7px 18px rgba(7, 16, 27, 0.72);
}

.hero__kicker {
  border: 0;
  padding-bottom: 0;
}

.hero__lede {
  max-width: 29rem;
  line-height: 1.42;
}

.hero__seal {
  filter:
    drop-shadow(5px 6px 0 var(--box-cardboard))
    drop-shadow(0 15px 12px rgba(14, 27, 42, 0.42));
}

/* Four separate slips break up the repeated full-width box treatment. */
.essentials {
  padding: clamp(18px, 2.5vw, 34px);
  background: transparent;
  box-shadow: none;
}

.essentials__row {
  gap: clamp(14px, 2vw, 24px);
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
}

.essentials__item {
  min-height: 178px;
  padding: 26px 20px 24px;
  background: var(--cream);
  box-shadow: var(--label-depth);
}

.essentials__item:nth-child(2),
.essentials__item:nth-child(4) {
  transform: translateY(9px);
}

.twodays {
  box-shadow: var(--box-depth);
}

.twodays__aqua,
.twodays__gold {
  box-shadow: none;
}

.twodays__gold {
  border-left: 0;
  box-shadow: inset 14px 0 28px rgba(84, 55, 8, 0.13);
}

.eyebrow {
  margin-bottom: 24px;
  border: 0;
  outline: 0;
  padding: 8px 13px 6px;
  box-shadow:
    3px 4px 0 rgba(115, 90, 62, 0.42),
    0 9px 15px rgba(14, 27, 42, 0.14);
}

.eyebrow::before {
  display: none;
}

.daychip {
  border: 0;
  box-shadow:
    0 4px 0 rgba(7, 16, 27, 0.72),
    0 9px 13px rgba(14, 27, 42, 0.2);
}

.daychip--off::after {
  border: 0;
  box-shadow: 2px 3px 0 rgba(7, 16, 27, 0.6);
}

/* Editorial side-by-side rhythm instead of another centred card grid. */
.ship__inner {
  display: grid;
  grid-template-columns: minmax(15rem, 0.68fr) minmax(0, 1.32fr);
  column-gap: clamp(44px, 7vw, 100px);
  align-items: start;
}

.ship__inner > .section-head {
  grid-column: 1;
  margin-bottom: 0;
}

.ship__inner > .highlights {
  grid-column: 2;
  grid-template-columns: 1fr;
}

.ship__inner > .ship__note {
  grid-column: 1 / -1;
}

.highlight {
  grid-template-columns: 46px minmax(0, 1fr);
  padding: 18px 0 22px;
  border-top: 0;
  box-shadow: inset 0 1px 0 rgba(47, 160, 166, 0.42);
}

.highlight:first-child {
  box-shadow: none;
  padding-top: 4px;
}

.highlight .icon {
  padding: 0;
  border: 0;
  background: transparent;
  filter: drop-shadow(2px 3px 0 rgba(7, 16, 27, 0.55));
}

.ship__note {
  max-width: none;
  margin-top: 48px;
  padding: 22px 26px;
  border: 0;
  background: rgba(7, 16, 27, 0.28);
  box-shadow:
    0 6px 0 var(--aqua-deep),
    0 15px 24px rgba(7, 16, 27, 0.32);
}

/* Cost copy uses an offset editorial rail, then opens out for inclusions. */
.cost__inner {
  display: grid;
  grid-template-columns: minmax(14rem, 0.55fr) minmax(0, 1.45fr);
  column-gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.cost__inner > .section-head {
  grid-column: 1;
  grid-row: 1 / span 3;
  margin-bottom: 0;
}

.cost__grid,
.cost__notes {
  grid-column: 2;
}

.fare,
.fare__note {
  grid-column: 1 / -1;
}

.pricetable,
.fare__col,
.gbcard,
.guestbook__empty,
.rform,
.rform__done {
  border: 0;
  box-shadow: var(--label-depth-soft);
}

.pricetable {
  box-shadow:
    5px 6px 0 rgba(115, 90, 62, 0.42),
    0 18px 28px rgba(14, 27, 42, 0.18);
}

.allin {
  border: 0;
  outline: 0;
  box-shadow:
    6px 7px 0 var(--marigold-deep),
    0 18px 24px rgba(14, 27, 42, 0.24);
}

.cost__flag {
  border: 0;
  box-shadow:
    5px 6px 0 rgba(176, 120, 17, 0.7),
    0 14px 22px rgba(14, 27, 42, 0.16);
}

.fare {
  margin-top: 68px;
  gap: clamp(22px, 3vw, 38px);
}

.fare__col {
  border: 0;
}

.dress {
  box-shadow:
    0 9px 0 var(--marigold-deep),
    0 24px 34px rgba(26, 18, 11, 0.3);
}

.steps {
  gap: clamp(18px, 2vw, 28px);
  border: 0;
}

.step,
.step:last-child {
  border: 0;
  background: rgba(7, 16, 27, 0.22);
  box-shadow:
    0 6px 0 var(--aqua-deep),
    0 16px 24px rgba(7, 16, 27, 0.3);
}

.step:nth-child(2) {
  transform: translateY(12px);
}

.step__by {
  border: 0;
  box-shadow: 3px 4px 0 rgba(7, 16, 27, 0.6);
}

.plan__then {
  border: 0;
  box-shadow:
    0 5px 0 var(--aqua-deep),
    0 14px 20px rgba(7, 16, 27, 0.28);
}

.gbcard {
  clip-path: none;
}

.choice {
  border: 1px solid rgba(14, 27, 42, 0.3);
  box-shadow: 0 5px 10px rgba(14, 27, 42, 0.08);
}

.foot {
  border: 0;
  box-shadow: inset 0 8px 18px rgba(7, 16, 27, 0.28);
}

.floatcta {
  border: 0;
  box-shadow:
    0 5px 0 rgba(7, 16, 27, 0.72),
    0 14px 22px rgba(7, 16, 27, 0.3);
}

@media (max-width: 900px) {
  .hero__inner {
    justify-content: flex-end;
    align-items: center;
  }

  .hero__panel {
    max-width: min(34rem, 64%);
  }

  .ship__inner,
  .cost__inner {
    display: block;
  }

  .ship__inner > .section-head,
  .cost__inner > .section-head {
    margin-bottom: clamp(36px, 5vw, 52px);
  }

  .ship__inner > .highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
  }

  .highlight:first-child,
  .highlight:nth-child(2) {
    padding-top: 4px;
    box-shadow: none;
  }

  .twodays__gold {
    border-top: 0;
    box-shadow: inset 0 14px 28px rgba(84, 55, 8, 0.13);
  }
}

@media (max-width: 560px) {
  main {
    padding: 20px 10px 48px;
  }

  main > section {
    margin-bottom: 34px;
    border: 0;
    box-shadow:
      0 6px 0 var(--box-edge),
      0 15px 22px rgba(26, 18, 11, 0.28);
  }

  .brand {
    border: 0;
  }

  .hero {
    min-height: 780px;
    border: 0;
  }

  .hero__photo,
  .hero__wash {
    inset: 0;
  }

  .hero__photo img {
    object-position: 43% center;
  }

  .hero__wash {
    background:
      linear-gradient(
        180deg,
        rgba(7, 31, 56, 0.05) 0%,
        rgba(7, 31, 56, 0.08) 29%,
        rgba(7, 31, 56, 0.72) 58%,
        rgba(7, 31, 56, 0.96) 100%
      );
  }

  .hero__inner {
    align-items: flex-end;
    padding: 76px 20px 34px;
  }

  .hero__panel {
    max-width: none;
    margin-bottom: 106px;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .hero__name {
    font-size: clamp(4.8rem, 24vw, 6.1rem);
  }

  .hero__tag {
    font-size: clamp(2.25rem, 11.5vw, 3.1rem);
  }

  .essentials {
    padding: 2px 2px 11px;
    box-shadow: none;
  }

  .essentials__row {
    gap: 14px;
  }

  .essentials__item {
    min-height: 150px;
    padding: 22px 16px 19px;
  }

  .essentials__item:nth-child(2),
  .essentials__item:nth-child(4) {
    transform: none;
  }

  .ship__inner > .highlights {
    grid-template-columns: 1fr;
  }

  .highlight:nth-child(2) {
    padding-top: 18px;
    box-shadow: inset 0 1px 0 rgba(47, 160, 166, 0.42);
  }

  .ship__note {
    margin-top: 34px;
  }

  .cost__grid {
    gap: 42px;
  }

  .fare {
    margin-top: 54px;
  }

  .step:nth-child(2) {
    transform: none;
  }
}

/* =====================================================================
   Open illustrated invitation pass
   A full-bleed poster hero and an editorial host strip replace the last
   card-heavy areas while keeping live guest responses intact.
   ===================================================================== */
.hero {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  min-height: min(88vh, 850px);
  background: var(--cream);
  box-shadow: none;
}

.hero__photo img {
  object-position: center;
  filter: none;
}

.hero__wash {
  background: transparent;
}

.hero__inner {
  max-width: 82rem;
  justify-content: flex-start;
  align-items: center;
  padding: clamp(80px, 10vh, 120px) clamp(28px, 6vw, 96px);
}

.hero__panel {
  max-width: 34rem;
  color: var(--cobalt);
}

.hero__kicker,
.hero__name,
.hero__tag,
.hero__lede {
  text-shadow: none;
}

.hero__kicker {
  color: var(--aqua-deep);
}

.hero__50 {
  color: var(--aqua-deep);
  text-shadow: 0.045em 0.045em 0 var(--marigold);
}

.hero__tag {
  color: var(--cobalt);
}

.hero__seal {
  left: auto;
  right: clamp(16px, 3vw, 48px);
  bottom: clamp(12px, 2vw, 28px);
  width: clamp(104px, 11vw, 160px);
  filter: drop-shadow(3px 4px 0 rgba(115, 90, 62, 0.34));
}

.party-proof {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(390px, 58vw, 720px);
  overflow: hidden;
  background: var(--cobalt);
}

.party-proof picture,
.party-proof img {
  width: 100%;
  height: 100%;
}

.party-proof picture {
  position: absolute;
  inset: 0;
}

.party-proof img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.88) contrast(1.05);
}

.party-proof::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 31, 56, 0.84), rgba(7, 31, 56, 0) 52%);
  pointer-events: none;
}

.party-proof figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 6vw, 96px);
  bottom: clamp(24px, 6vw, 72px);
  color: var(--paper);
  max-width: 44rem;
}

.party-proof__kicker {
  display: block;
  margin-bottom: 8px;
  font-family: var(--f-label);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aqua);
}

.party-proof strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 0 4px 0 var(--cobalt);
}

.ship {
  background: var(--cream);
  color: var(--ink);
  box-shadow: none;
}

.ship__inner {
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
  row-gap: clamp(40px, 6vw, 72px);
}

.ship__inner > .section-head {
  grid-column: 1;
  align-self: center;
}

.ship__illustration {
  grid-column: 2;
  width: min(100%, 760px);
  height: auto;
  justify-self: end;
  mix-blend-mode: multiply;
}

.ship__inner > .highlights {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 56px);
}

.ship .highlight {
  box-shadow: inset 0 1px 0 rgba(26, 83, 97, 0.25);
}

.ship .highlight:first-child,
.ship .highlight:nth-child(2),
.ship .highlight:nth-child(3) {
  padding-top: 4px;
  box-shadow: none;
}

.ship .highlight .icon,
.ship .highlight__name {
  color: var(--aqua-deep);
}

.ship__note {
  background: var(--cobalt);
  color: var(--paper);
}

.guestbook__inner {
  max-width: 82rem;
}

.guestbook__hosts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  margin-top: -12px;
}

.host-entry {
  min-width: 0;
}

.host-entry__portrait {
  width: 116%;
  max-width: none;
  height: clamp(360px, 36vw, 500px);
  margin-inline: -8%;
  object-fit: cover;
  object-position: center 24%;
  mix-blend-mode: multiply;
}

.host-entry blockquote {
  position: relative;
  min-height: 3.9em;
  margin-top: -8px;
  padding-top: 18px;
  font-family: var(--f-display);
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  line-height: 0.95;
  color: var(--cobalt);
}

.host-entry blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 4px;
  background: var(--aqua);
  transform: rotate(-2deg);
}

.host-entry figcaption {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 16px;
}

.host-entry figcaption strong {
  font-family: var(--f-head);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cobalt);
}

.host-entry figcaption span {
  font-family: var(--f-label);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua-deep);
}

.guestbook__joining {
  margin: clamp(64px, 8vw, 104px) 0 28px;
  font-family: var(--f-label);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aqua-deep);
}

.guestbook__list {
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
}

.gbcard {
  background: transparent;
  box-shadow: none;
  padding: 22px 0;
  border-top: 2px solid var(--sand);
}

.guestbook__empty {
  padding: 48px 24px;
  background: transparent;
  box-shadow: none;
  border-top: 2px solid var(--sand);
}

@media (max-width: 900px) {
  .hero__panel {
    max-width: min(31rem, 52%);
  }

  .ship__inner {
    display: block;
  }

  .ship__illustration {
    width: 100%;
    margin: -18px 0 42px;
  }

  .ship__inner > .highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ship .highlight:nth-child(3) {
    padding-top: 18px;
    box-shadow: inset 0 1px 0 rgba(26, 83, 97, 0.25);
  }

  .guestbook__hosts {
    gap: 24px;
  }

  .host-entry blockquote {
    font-size: clamp(1.45rem, 3vw, 2rem);
  }
}

@media (max-width: 560px) {
  main > .hero,
  main > .party-proof {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-bottom: 34px;
    border: 0;
    box-shadow: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero__photo img {
    object-position: 42% center;
  }

  .hero__wash {
    background: linear-gradient(
      180deg,
      rgba(235, 228, 220, 0.02) 0%,
      rgba(235, 228, 220, 0.12) 42%,
      rgba(235, 228, 220, 0.96) 68%,
      var(--cream) 100%
    );
  }

  .hero__inner {
    align-items: flex-end;
    padding: 64px 22px 40px;
  }

  .hero__panel {
    max-width: none;
    margin: 0 0 80px;
  }

  .hero__name {
    font-size: clamp(4.7rem, 23vw, 6rem);
  }

  .hero__seal {
    width: 68px;
    right: 16px;
    bottom: 8px;
  }

  .party-proof {
    min-height: 500px;
  }

  .party-proof img {
    object-position: 46% center;
  }

  .ship__inner > .highlights {
    grid-template-columns: 1fr;
  }

  .ship .highlight:nth-child(2),
  .ship .highlight:nth-child(3) {
    padding-top: 18px;
    box-shadow: inset 0 1px 0 rgba(26, 83, 97, 0.25);
  }

  .guestbook__hosts {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .host-entry {
    max-width: 26rem;
    margin-inline: auto;
  }

  .host-entry__portrait {
    margin-inline: -4%;
  }

  .host-entry blockquote {
    min-height: 0;
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .guestbook__joining {
    margin-top: 72px;
  }
}

/* =====================================================================
   Browser feedback polish
   Separate the leave proposition from the decision, use the new artwork
   as open editorial illustration, and simplify functional markers.
   ===================================================================== */
main {
  padding-top: 0;
}

.twodays {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  background: var(--aqua);
}

.twodays::before,
.decision::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  color: var(--ink);
  background-image: radial-gradient(currentColor 1.1px, transparent 1.3px);
  background-size: 12px 12px;
}

.twodays__inner,
.decision__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 82rem);
  margin-inline: auto;
  padding: clamp(64px, 7vw, 96px) clamp(28px, 6vw, 80px);
  display: grid;
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
}

.twodays__inner {
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
}

.twodays .twoblock {
  max-width: 46rem;
  margin: 0;
  padding: 0;
}

.twodays__illustration {
  width: min(100%, 430px);
  height: auto;
  justify-self: end;
  mix-blend-mode: multiply;
  filter: saturate(0.92) contrast(1.04);
}

.decision {
  position: relative;
  overflow: hidden;
  background: var(--marigold);
  color: var(--ink);
}

.decision__inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
}

.decision__content {
  max-width: 34rem;
}

.decision .callout__body {
  margin-top: 20px;
}

.decision__illustration {
  width: min(100%, 540px);
  height: auto;
  justify-self: end;
  mix-blend-mode: multiply;
  filter: saturate(0.94) contrast(1.03);
}

.fare__col--in li {
  padding-left: 30px;
}

.fare__col--in li::before {
  content: "✓";
  top: -0.08em;
  width: auto;
  height: auto;
  background: none;
  color: var(--aqua-deep);
  font-family: var(--f-head);
  font-size: 1.35rem;
  line-height: 1;
}

.step__badge {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 16px;
  font-family: var(--f-display);
  font-size: clamp(3.4rem, 5vw, 5rem);
  line-height: 0.75;
  color: var(--aqua);
}

.dress__inner > :not(.dress__illustration) {
  position: relative;
  z-index: 1;
}

.dress__illustration {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: clamp(-64px, -2vw, -18px);
  width: clamp(330px, 42vw, 560px);
  height: auto;
  transform: translateY(-50%) rotate(2deg);
  opacity: 0.72;
  mix-blend-mode: multiply;
}

.respond {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border: 0;
  box-shadow: none;
}

.respond__inner {
  max-width: 64rem;
}

.respond .rform,
.respond .rform__done {
  border: 0;
  box-shadow: none;
}

.guestbook__hosts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .twodays__inner,
  .decision__inner {
    gap: 32px;
    padding-inline: clamp(26px, 5vw, 52px);
  }

  .twodays__inner {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.55fr);
  }

  .decision__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(250px, 1.1fr);
  }

  .guestbook__hosts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 56px;
  }
}

@media (max-width: 640px) {
  main {
    padding-top: 0;
  }

  .twodays__inner,
  .decision__inner {
    grid-template-columns: 1fr;
    padding: 56px 22px;
  }

  .twodays__illustration,
  .decision__illustration {
    width: min(82vw, 420px);
    justify-self: center;
  }

  .twodays__illustration {
    margin-top: -18px;
  }

  .decision__illustration {
    order: -1;
    margin-bottom: -24px;
  }

  .dress__inner {
    padding-bottom: 320px;
  }

  .dress__illustration {
    top: auto;
    right: 50%;
    bottom: -30px;
    width: min(88vw, 430px);
    transform: translateX(50%) rotate(2deg);
    opacity: 0.78;
  }

  .guestbook__hosts {
    grid-template-columns: 1fr;
  }
}

/* =====================================================================
   Tactile paper depth and personalised artwork
   Shadows describe stacked stock and lift. Borders remain internal rules.
   ===================================================================== */
:root {
  --box-table: #d5c7b1;
  --box-table-dark: #b6a388;
  --box-cardboard: #c7b599;
  --box-cardboard-light: #e4d9c7;
  --section-depth:
    0 5px 14px rgba(38, 25, 13, 0.14),
    0 24px 52px rgba(38, 25, 13, 0.24);
  --section-depth-left:
    -8px 8px 22px rgba(38, 25, 13, 0.13),
    -14px 28px 58px rgba(38, 25, 13, 0.22);
  --section-depth-right:
    8px 8px 22px rgba(38, 25, 13, 0.13),
    14px 28px 58px rgba(38, 25, 13, 0.22);
  --paper-depth:
    0 4px 12px rgba(14, 27, 42, 0.11),
    0 18px 38px rgba(14, 27, 42, 0.17);
  --control-depth:
    0 4px 10px rgba(7, 16, 27, 0.16),
    0 12px 24px rgba(7, 16, 27, 0.2);
  --control-depth-hover:
    0 7px 16px rgba(7, 16, 27, 0.16),
    0 18px 32px rgba(7, 16, 27, 0.24);
}

body::after {
  opacity: 0.075;
}

main {
  padding-top: 0;
  background-color: var(--box-table);
  background-image: none;
}

main > section {
  margin-bottom: clamp(56px, 7vw, 92px);
  border: 0;
  box-shadow: var(--section-depth);
}

main > .hero {
  margin-bottom: 0;
  box-shadow: var(--section-depth);
}

main > .intro {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
}

.hero {
  min-height: clamp(620px, 72vh, 760px);
}

main > .essentials {
  box-shadow: none;
}

main > .ship,
main > .guestbook {
  box-shadow: var(--section-depth-left);
}

main > .cost,
main > .plan,
main > .respond {
  box-shadow: var(--section-depth-right);
}

main > .dress {
  box-shadow: var(--section-depth);
}

.nav {
  box-shadow:
    0 4px 12px rgba(14, 27, 42, 0.2),
    0 12px 28px rgba(14, 27, 42, 0.2);
}

.brand {
  filter: drop-shadow(0 5px 9px rgba(7, 16, 27, 0.32));
}

.btn,
.btn--secondary,
.floatcta {
  box-shadow: var(--control-depth);
}

.btn:hover,
.btn:focus-visible,
.floatcta:hover,
.floatcta:focus-visible {
  box-shadow: var(--control-depth-hover);
}

.btn:active {
  box-shadow: 0 3px 9px rgba(7, 16, 27, 0.22);
}

.eyebrow,
.daychip,
.daychip--off::after,
.step__by {
  box-shadow:
    0 3px 8px rgba(14, 27, 42, 0.13),
    0 9px 18px rgba(14, 27, 42, 0.13);
}

.ship__note,
.cost__flag,
.allin,
.step,
.plan__then {
  box-shadow: var(--paper-depth);
}

/* A functional paper wash keeps the open poster legible without a panel. */
.hero__wash {
  background: linear-gradient(
    90deg,
    rgba(235, 228, 220, 0.99) 0%,
    rgba(235, 228, 220, 0.94) 25%,
    rgba(235, 228, 220, 0.65) 39%,
    rgba(235, 228, 220, 0.08) 58%,
    rgba(235, 228, 220, 0) 72%
  );
}

.hero__panel {
  max-width: 32rem;
}

.intro {
  position: relative;
  background: var(--cream);
  color: var(--cobalt);
}

.intro__inner {
  width: min(100%, var(--wrap));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) clamp(24px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.intro__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--md);
}

.intro__lede {
  max-width: 42rem;
  font-size: clamp(1.16rem, 1.04rem + 0.55vw, 1.5rem);
  line-height: 1.5;
}

.intro__seal {
  width: clamp(104px, 13vw, 164px);
  height: auto;
  transform: rotate(-3deg);
  filter:
    drop-shadow(0 5px 8px rgba(14, 27, 42, 0.2))
    drop-shadow(0 18px 24px rgba(14, 27, 42, 0.3));
}

.step__badge {
  display: inline-block;
  width: auto;
  height: auto;
  margin-bottom: var(--sm);
  color: var(--aqua);
}

.step__badge span {
  position: static;
  display: block;
  font-size: clamp(2.4rem, 2rem + 1vw, 3rem);
  line-height: 1;
  color: var(--aqua);
}

.essentials__item,
.essentials__item:nth-child(1),
.essentials__item:nth-child(2),
.essentials__item:nth-child(3),
.essentials__item:nth-child(4) {
  border: 0;
  box-shadow: var(--paper-depth);
}

.essentials__item:nth-child(1) {
  transform: rotate(-0.6deg);
}

.essentials__item:nth-child(2) {
  transform: translateY(9px) rotate(0.4deg);
}

.essentials__item:nth-child(3) {
  transform: rotate(0.55deg);
}

.essentials__item:nth-child(4) {
  transform: translateY(9px) rotate(-0.35deg);
}

.twodays {
  display: block;
  min-height: 0;
  overflow: visible;
  box-shadow: var(--section-depth);
}

.twodays__aqua {
  display: block;
  box-shadow: inset 0 -20px 38px rgba(14, 27, 42, 0.07);
}

.twodays__aqua .twoblock {
  max-width: var(--wrap);
  margin: 0 auto;
}

.decision {
  position: relative;
  overflow: hidden;
  background: var(--marigold);
  color: var(--ink);
}

.decision .twodays__gold {
  display: block;
  min-height: 0;
  border: 0;
  background: var(--marigold);
  box-shadow: inset 0 -22px 42px rgba(84, 55, 8, 0.1);
}

.decision .twoblock {
  width: 100%;
  max-width: var(--wrap);
  height: auto;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) clamp(32px, 6vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.decision__lead,
.decision__actions {
  min-width: 0;
}

.decision__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sm);
}

.decision .callout__body {
  margin-top: 0;
}

.decision .callout__btn,
.decision .callout__dates {
  margin-top: var(--sm);
}

.ship__illustration {
  filter:
    drop-shadow(0 5px 9px rgba(14, 27, 42, 0.13))
    drop-shadow(0 20px 28px rgba(14, 27, 42, 0.16));
}

.highlight .icon {
  filter: drop-shadow(0 5px 9px rgba(7, 16, 27, 0.26));
}

.ship__note,
.cost__flag,
.allin,
.step,
.plan__then {
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 340ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pricetable,
.fare__col,
.rform,
.rform__done {
  border: 0;
  box-shadow: var(--paper-depth);
}

.fare__col--out {
  transform: translateY(10px);
}

.dress__inner {
  min-height: 650px;
  padding-right: clamp(340px, 38vw, 520px);
}

.dress__inner > :not(.dress__portrait) {
  position: relative;
  z-index: 2;
}

.dress .dress__portrait {
  position: absolute;
  z-index: 1;
  right: clamp(26px, 5vw, 80px);
  bottom: clamp(34px, 5vw, 70px);
  width: clamp(270px, 28vw, 390px);
  height: auto;
  background: var(--cream);
  transform: rotate(2.2deg);
  box-shadow:
    0 6px 16px rgba(7, 16, 27, 0.18),
    0 28px 50px rgba(7, 16, 27, 0.3);
}

.party-proof {
  width: min(calc(100% - 48px), 78rem);
  min-height: 0;
  aspect-ratio: 5 / 3;
  margin: 0 auto clamp(80px, 9vw, 112px);
  overflow: visible;
  background: var(--cream);
  transform: rotate(-0.35deg);
  box-shadow: var(--section-depth-right);
}

.party-proof > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.94) contrast(1.04);
}

.party-proof::after {
  background: linear-gradient(
    0deg,
    rgba(7, 31, 56, 0.78) 0%,
    rgba(7, 31, 56, 0.12) 36%,
    rgba(7, 31, 56, 0) 58%
  );
}

.party-proof figcaption {
  left: clamp(22px, 5vw, 64px);
  bottom: clamp(-34px, -2vw, -22px);
  max-width: min(38rem, calc(100% - 44px));
  padding: 22px clamp(24px, 4vw, 44px) 18px;
  background: var(--cobalt);
  box-shadow:
    0 5px 14px rgba(7, 16, 27, 0.2),
    0 22px 38px rgba(7, 16, 27, 0.3);
}

.party-proof__kicker {
  margin-bottom: 10px;
}

.guestbook__hosts {
  align-items: start;
}

.host-entry__portrait {
  width: 100%;
  max-width: none;
  height: clamp(310px, 31vw, 420px);
  margin: 0;
  background: var(--cream);
  object-fit: cover;
  box-shadow:
    0 5px 14px rgba(14, 27, 42, 0.12),
    0 24px 42px rgba(14, 27, 42, 0.18);
}

.host-entry--melanie .host-entry__portrait {
  object-position: center 18%;
  transform: rotate(-1deg);
}

.host-entry--ben .host-entry__portrait {
  object-position: center 24%;
  transform: translateY(-10px) rotate(0.6deg);
}

.host-entry--claire .host-entry__portrait {
  object-position: center 18%;
  transform: rotate(1deg);
}

.host-entry blockquote {
  margin-top: 24px;
}

.rform {
  box-shadow:
    0 6px 16px rgba(14, 27, 42, 0.14),
    0 28px 52px rgba(14, 27, 42, 0.22);
}

.choice {
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 180ms ease;
}

.choice:hover,
.choice:has(input:focus-visible) {
  transform: translateY(-2px);
  background: var(--sand);
  box-shadow:
    0 5px 12px rgba(14, 27, 42, 0.11),
    0 16px 26px rgba(14, 27, 42, 0.15);
}

.choice:active {
  transform: translateY(2px);
  box-shadow: 0 3px 7px rgba(14, 27, 42, 0.14);
}

.choice:has(input:checked) {
  background: var(--aqua);
}

@media (max-width: 900px) {
  .hero {
    min-height: clamp(560px, 68vh, 620px);
  }

  .hero__wash {
    background: linear-gradient(
      90deg,
      rgba(235, 228, 220, 0.98) 0%,
      rgba(235, 228, 220, 0.88) 39%,
      rgba(235, 228, 220, 0.12) 67%,
      rgba(235, 228, 220, 0) 100%
    );
  }

  .hero__panel {
    max-width: min(31rem, 54%);
  }

  .decision .twoblock {
    grid-template-columns: 1fr;
    gap: var(--lg);
  }

  .decision__actions {
    max-width: 34rem;
  }

  .dress__inner {
    min-height: 620px;
    padding-right: clamp(290px, 38vw, 390px);
  }

  .dress .dress__portrait {
    right: 34px;
    width: clamp(250px, 32vw, 320px);
  }

  .host-entry__portrait {
    height: clamp(260px, 34vw, 340px);
  }
}

@media (max-width: 560px) {
  main {
    padding: 0 12px 56px;
  }

  main > section,
  main > .hero {
    margin-bottom: 52px;
    box-shadow:
      0 4px 12px rgba(38, 25, 13, 0.13),
      0 18px 36px rgba(38, 25, 13, 0.22);
  }

  main > .hero {
    margin-bottom: 0;
  }

  .hero {
    min-height: 600px;
  }

  .intro__inner {
    grid-template-columns: 1fr;
    gap: var(--sm);
    padding: 40px 24px 44px;
  }

  .intro__seal {
    width: 92px;
    justify-self: end;
    margin-top: -34px;
  }

  main > .essentials {
    box-shadow: none;
  }

  .hero__wash {
    background: linear-gradient(
      180deg,
      rgba(235, 228, 220, 0.02) 0%,
      rgba(235, 228, 220, 0.16) 40%,
      rgba(235, 228, 220, 0.94) 66%,
      var(--cream) 100%
    );
  }

  .hero__panel {
    max-width: none;
    margin: 0;
  }

  .essentials__item:nth-child(1),
  .essentials__item:nth-child(2),
  .essentials__item:nth-child(3),
  .essentials__item:nth-child(4) {
    transform: none;
  }

  .twodays__aqua {
    box-shadow: inset 0 -16px 26px rgba(14, 27, 42, 0.08);
  }

  .decision .twodays__gold {
    box-shadow: inset 0 16px 26px rgba(84, 55, 8, 0.12);
  }

  .decision .twoblock {
    padding: 56px 24px;
  }

  .fare__col--out {
    transform: none;
  }

  .dress__inner {
    min-height: auto;
    padding-right: 24px;
    padding-bottom: 470px;
  }

  .dress .dress__portrait {
    right: 50%;
    bottom: 48px;
    width: min(76%, 290px);
    transform: translateX(50%) rotate(1.6deg);
  }

  main > .party-proof {
    width: calc(100% - 4px);
    min-height: 0;
    aspect-ratio: 1 / 1;
    margin: 0 auto 82px;
    transform: rotate(-0.25deg);
    box-shadow:
      0 5px 14px rgba(38, 25, 13, 0.14),
      0 22px 38px rgba(38, 25, 13, 0.24);
  }

  .party-proof > img {
    object-position: center 42%;
  }

  .party-proof figcaption {
    left: 18px;
    right: 18px;
    bottom: -42px;
    max-width: none;
    padding: 18px 20px 16px;
  }

  .party-proof strong {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .host-entry__portrait {
    width: min(100%, 27rem);
    height: min(108vw, 430px);
    margin-inline: auto;
  }

  .host-entry--ben .host-entry__portrait {
    transform: rotate(0.6deg);
  }
}

/* Guest-book readability and control contrast. */
.gbcard::before {
  height: 0.25em;
  margin-block-end: calc(var(--xs) * -1);
}

.nav__mobile a.btn {
  color: var(--btn-fg);
}

/* A single comparison strip makes the three PDF-backed room choices scannable. */
.room-options {
  grid-column: 1 / -1;
  container-type: inline-size;
  margin-top: clamp(48px, 6vw, 72px);
  padding: clamp(24px, 4vw, 40px);
  background: var(--paper);
  box-shadow: var(--paper-depth);
}

.room-options__head {
  display: grid;
  grid-template-columns: minmax(13rem, 0.8fr) minmax(18rem, 1.2fr);
  gap: var(--lg);
  align-items: end;
}

.room-options__head > p {
  max-width: 38rem;
  opacity: 0.82;
}

.room-options__kicker,
.room-option__badge {
  font-family: var(--f-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.room-options__kicker {
  color: var(--aqua-deep);
  font-size: 0.82rem;
}

.room-options__title {
  margin-top: 4px;
  font-family: var(--f-head);
  font-size: clamp(2rem, 1.6rem + 1.4vw, 3rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.room-options__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: var(--lg);
  padding: 0;
  list-style: none;
}

.room-option {
  min-width: 0;
  padding: 22px 20px 20px;
  border-top: 3px solid var(--ink);
  background: var(--cream);
}

.room-option--estimate {
  background: var(--aqua);
  transform: translateY(-8px);
  box-shadow:
    5px 6px 0 var(--aqua-deep),
    0 16px 24px rgba(14, 27, 42, 0.18);
}

.room-option__badge {
  margin-bottom: 10px;
  color: var(--cobalt);
  font-size: 0.72rem;
}

.room-option__name {
  min-height: 3rem;
  font-family: var(--f-head);
  font-size: clamp(1.3rem, 1.1rem + 0.55vw, 1.65rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.room-option__price {
  margin-top: var(--sm);
  font-family: var(--f-display);
  font-size: clamp(2.7rem, 2.2rem + 1.7vw, 3.8rem);
  line-height: 0.9;
  color: var(--cobalt);
}

.room-option__price span {
  display: block;
  margin-top: 8px;
  font-family: var(--f-label);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-option__location {
  margin-top: var(--md);
  font-size: 0.9rem;
  opacity: 0.72;
}

@container (max-width: 46rem) {
  .room-options__head,
  .room-options__list {
    grid-template-columns: 1fr;
  }

  .room-options__head {
    gap: var(--sm);
  }

  .room-option--estimate {
    transform: none;
  }

  .room-option__name {
    min-height: 0;
  }
}
