/* ============ PLUGTRIPS — warm editorial on brand navy ============ */
/* Palette from the logo: navy field, gold rings, terracotta dot, cream lettering */
:root {
  --navy: #1f2a4f;        /* base canvas */
  --navy-deep: #16203f;   /* alternate sections */
  --navy-ink: #10182f;    /* darkest: footer, filmstrip */
  --navy-card: #27335c;   /* raised cards on navy */
  --paper: #faf3e7;       /* brand cream-white */
  --white: #fffdf7;
  --cream-70: rgba(250, 243, 231, 0.75);
  --cream-55: rgba(250, 243, 231, 0.55);
  --ink: #2b2118;         /* text on cream cards */
  --ink-soft: #5c4f42;
  --terra: #c4532d;       /* the red: CTAs & accents */
  --terra-deep: #a8431f;
  --gold: #c9a45c;        /* logo gold */
  --font-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-hand: "Caveat", cursive;
  --font-brand: "Cinzel", "Trajan Pro", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--navy-ink); }

/* subtle grain over everything */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2 { font-family: var(--font-serif); font-weight: 700; letter-spacing: -0.02em; color: var(--paper); }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.3rem); line-height: 1.06; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.12; }
h1 em, h2 em { color: var(--gold); font-weight: 700; }
em { font-style: normal; } /* professional look: emphasis via colour and weight, never italics */

.wrap { width: min(1150px, 91%); margin: 0 auto; }
.wrap-narrow { width: min(780px, 91%); margin: 0 auto; }

.kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.kicker.light { color: var(--gold); }
.light { color: var(--paper); }

/* handwritten notes — gold ink on navy */
.scribble {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  transform: rotate(-2deg);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.scribble svg { width: 30px; height: 26px; color: inherit; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.9rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translate(-1px, -2px); }
.btn:active { transform: translate(0, 0); }
.btn-solid {
  background: var(--terra);
  color: var(--paper);
  box-shadow: 3px 4px 0 rgba(9, 13, 28, 0.85);
}
.btn-solid:hover { background: var(--terra-deep); box-shadow: 4px 6px 0 rgba(9, 13, 28, 0.85); }
.btn-line {
  background: transparent;
  color: var(--paper);
  border: 2px solid rgba(250, 243, 231, 0.65);
  box-shadow: 3px 4px 0 rgba(9, 13, 28, 0.45);
}
.btn-line:hover { background: var(--paper); color: var(--navy-deep); border-color: var(--paper); }
.btn-wa {
  background: #1faa53;
  color: #fff;
  box-shadow: 3px 4px 0 rgba(9, 13, 28, 0.55);
  margin: 1.3rem 0 1.5rem;
}
.btn-wa:hover { background: #178a43; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(16, 24, 47, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(201, 164, 92, 0.28);
  padding: 0.6rem 0;
}
.nav-inner {
  width: min(1150px, 91%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--paper);
}
.wordmark .mark { width: 46px; height: 29px; flex-shrink: 0; }
.wordmark-name {
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  translate: 0 1px;
}
.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a {
  font-weight: 600;
  font-size: 0.93rem;
  color: rgba(250, 243, 231, 0.82);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-book {
  background: var(--terra);
  color: var(--paper) !important;
  padding: 0.5rem 1.15rem;
  border-radius: 8px;
  transition: background 0.2s !important;
}
.nav-book:hover { background: var(--terra-deep); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span { width: 25px; height: 2.5px; background: var(--paper); border-radius: 2px; transition: 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { padding: clamp(7rem, 13vh, 9.5rem) 0 clamp(2.5rem, 5vw, 4.5rem); }
.hero-grid {
  width: min(1150px, 91%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-text h1 { position: relative; }
.hero-text .underline {
  display: block;
  width: min(230px, 55%);
  color: var(--gold);
  margin-top: 0.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--cream-70);
  max-width: 520px;
  margin: 1.4rem 0 1.9rem;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-note { margin-top: 1.5rem; font-size: 0.92rem; color: var(--cream-55); }
.hero-note strong { color: var(--gold); }

.hero-media { position: relative; padding: 1.5rem 2.2rem 2.8rem 0; }
.blob {
  position: absolute;
  inset: 6% -4% 2% 8%;
  background: var(--navy-card);
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  z-index: 0;
}
.arch {
  position: relative;
  z-index: 1;
  border-radius: 999px 999px 26px 26px;
  overflow: hidden;
  aspect-ratio: 4 / 5.1;
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.65);
  background: var(--navy-deep);
  border: 3px solid rgba(201, 164, 92, 0.45);
}
.arch .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.arch .slide.on { opacity: 1; }
.arch .scribble {
  position: absolute;
  left: 1.1rem;
  bottom: 0.9rem;
  z-index: 2;
  color: var(--paper);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
  transform: rotate(-3deg);
}
.polaroid {
  position: absolute;
  z-index: 2;
  background: var(--white);
  padding: 0.55rem 0.55rem 0.4rem;
  box-shadow: 0 16px 32px -10px rgba(0, 0, 0, 0.6);
  width: clamp(120px, 34%, 175px);
}
.polaroid::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 62px;
  height: 22px;
  background: rgba(201, 164, 92, 0.6);
  border-left: 1px dashed rgba(16, 24, 47, 0.2);
  border-right: 1px dashed rgba(16, 24, 47, 0.2);
}
.polaroid img { aspect-ratio: 1; object-fit: cover; }
.polaroid figcaption {
  font-family: var(--font-hand);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
  padding-top: 0.25rem;
}
.pol-a { right: -0.4rem; top: 0; transform: rotate(4deg); }
.pol-b { left: -0.8rem; bottom: 0; transform: rotate(-5deg); }
@keyframes floaty-a { 0%,100% { translate: 0 0; } 50% { translate: 0 -9px; } }
@keyframes floaty-b { 0%,100% { translate: 0 0; } 50% { translate: 0 8px; } }
.float-a { animation: floaty-a 7s ease-in-out infinite; }
.float-b { animation: floaty-b 8s ease-in-out infinite; }

/* ---------- filmstrip ---------- */
.strip {
  background: var(--navy-ink);
  border-top: 1px solid rgba(201, 164, 92, 0.4);
  border-bottom: 1px solid rgba(201, 164, 92, 0.4);
  padding: 1.6rem 0;
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  margin: 1.8rem 0;
}
.strip-track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  animation: strip-roll 60s linear infinite;
}
.strip:hover .strip-track { animation-play-state: paused; }
@keyframes strip-roll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.strip figure {
  width: 195px;
  flex-shrink: 0;
  transform: rotate(1.2deg);
}
.strip img {
  width: 100%;
  height: 138px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid rgba(250, 243, 231, 0.92);
}
.strip figcaption {
  font-family: var(--font-hand);
  font-size: 1.05rem;
  color: var(--cream-70);
  text-align: center;
  padding-top: 0.3rem;
}

/* ---------- intro ---------- */
.intro { padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem); }
.intro-lede {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.5;
  text-align: center;
  color: var(--paper);
}
.intro-lede em { color: var(--gold); }
.intro-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2.6rem;
  flex-wrap: wrap;
  text-align: center;
}
.intro-row strong {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.intro-row span { font-size: 0.88rem; color: var(--cream-55); font-weight: 600; }
.dotline { width: 70px; border-top: 2px dashed rgba(250, 243, 231, 0.3); }

/* ---------- chapters ---------- */
.chapters { padding: clamp(1rem, 3vw, 2.5rem) 0; }
.chapter {
  width: min(1080px, 91%);
  margin: 0 auto;
  padding: clamp(2.6rem, 6vw, 4.5rem) 0;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
}
.chapter.flip .ch-media { order: 2; }
.chapter.flip .ch-text { order: 1; }
.ch-media { position: relative; padding-bottom: 2rem; }
.ch-media .arch { aspect-ratio: 4 / 4.7; }
.pol-corner {
  right: -1rem;
  bottom: 0;
  transform: rotate(5deg);
  width: clamp(120px, 38%, 170px);
}
.chapter.flip .pol-corner { right: auto; left: -1rem; transform: rotate(-5deg); }
.ch-no {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.ch-text h2 { margin-bottom: 1.1rem; }
.ch-text > p:not(.ch-no):not(.ch-note) { color: var(--cream-70); font-size: 1.05rem; max-width: 460px; }
.ch-note { margin-top: 1.2rem; }

/* ---------- lookbook ---------- */
.lookbook { background: var(--navy-ink); padding: clamp(4rem, 8vw, 6.5rem) 0; overflow: hidden; }
.lb-sub { color: var(--cream-70); max-width: 540px; margin-top: 0.9rem; }
.lb-stage {
  position: relative;
  display: flex;
  justify-content: center;
  margin: clamp(2.2rem, 5vw, 3.2rem) 0 1.4rem;
}
/* The book itself is a FLAT stacking context (no preserve-3d): Safari only
   honours z-index between the leaves when they are not in a shared 3D space.
   Each leaf carries its own perspective() inside its transform instead. */
.flipbook {
  position: relative;
  width: min(1000px, 96%);
  aspect-ratio: 10 / 7;
  transition: transform 1s cubic-bezier(0.35, 0.1, 0.25, 1);
}
.flipbook.closed { transform: translateX(-25%); }
.flipbook.ended { transform: translateX(25%); }
.leaf {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  transform-origin: left center;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.35, 0.1, 0.25, 1);
  cursor: pointer;
  /* identical function lists in both states → clean angular interpolation */
  transform: perspective(2600px) rotateY(0deg);
}
.leaf.flipped { transform: perspective(2600px) rotateY(-180deg); }
/* Safari: backface-visibility isn't honoured on descendants of the flipped
   element, so hide backfaces all the way down */
.leaf, .leaf * { backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.face {
  position: absolute;
  inset: 0;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* nudge each face off the shared plane so Safari can't z-fight them */
  transform: translateZ(0.4px);
}
.face.front {
  border-radius: 0 14px 14px 0;
  box-shadow: inset 14px 0 26px -16px rgba(16, 24, 47, 0.5), 2px 3px 14px rgba(0, 0, 0, 0.35);
}
.face.back {
  transform: rotateY(180deg) translateZ(0.4px);
  border-radius: 14px 0 0 14px;
  box-shadow: inset -14px 0 26px -16px rgba(16, 24, 47, 0.5), -2px 3px 14px rgba(0, 0, 0, 0.35);
}
/* full-bleed photo pages: the picture IS the page, text rides a gradient scrim */
.lb-photo { position: absolute; inset: 0; background-size: cover; background-position: center; }
.lb-real {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(16, 24, 47, 0.78);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border-radius: 999px;
}
.lb-credits {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(250, 243, 231, 0.4);
  margin-top: 0.9rem;
}
.lb-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 3.2rem 7% 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(16, 24, 47, 0.55) 38%, rgba(16, 24, 47, 0.94) 100%);
}
.lb-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.lb-title { font-weight: 700; font-size: clamp(1.1rem, 2.8vw, 1.6rem); margin: 0.22em 0 0.18em; line-height: 1.15; color: var(--paper); }
.lb-blurb { font-size: clamp(0.75rem, 1.65vw, 0.98rem); color: rgba(250, 243, 231, 0.82); line-height: 1.45; }
.lb-num {
  position: absolute;
  bottom: 3.5%;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(250, 243, 231, 0.65);
}
.face.front .lb-num { right: 7%; }
.face.back .lb-num { left: 7%; }
.face.cover, .face.endcover {
  background: linear-gradient(155deg, var(--navy-card) 0%, var(--navy-deep) 90%);
  color: var(--paper);
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8%;
  border: 1px solid rgba(201, 164, 92, 0.55);
}
.lb-cover-mark { width: 64px; height: 40px; margin-bottom: 0.9rem; }
.lb-cover-title {
  font-family: var(--font-brand);
  font-size: clamp(1.05rem, 2.6vw, 1.5rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.35;
}
.lb-cover-rule { display: flex; align-items: center; gap: 0.5rem; color: var(--gold); margin: 0.9rem 0; }
.lb-cover-rule i { display: block; width: 44px; border-top: 1px solid var(--gold); }
.lb-cover-rule b { font-size: 0.5rem; line-height: 1; }
.lb-cover-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.face.endcover .lb-blurb { color: var(--cream-70); margin: 0.6rem 0 1.1rem; font-size: clamp(0.75rem, 1.6vw, 0.95rem); }
.lb-cta {
  display: inline-block;
  background: var(--terra);
  color: var(--paper);
  font-weight: 700;
  font-size: clamp(0.72rem, 1.5vw, 0.9rem);
  padding: 0.55em 1.4em;
  border-radius: 8px;
  transition: background 0.2s;
}
.lb-cta:hover { background: var(--terra-deep); }
.lb-controls { display: flex; align-items: center; justify-content: center; }
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 164, 92, 0.65);
  background: rgba(16, 24, 47, 0.72);
  backdrop-filter: blur(4px);
  color: var(--gold);
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
#lbPrev { left: clamp(0.1rem, 1.5vw, 1rem); }
#lbNext { right: clamp(0.1rem, 1.5vw, 1rem); }
.lb-btn:hover { background: var(--gold); color: var(--navy-ink); }
.lb-btn:disabled { opacity: 0.25; pointer-events: none; }
.lb-counter { color: var(--cream-70); font-weight: 600; font-size: 0.92rem; min-width: 110px; text-align: center; }
.lb-note { display: table; margin: 1.4rem auto 0; }
@media (prefers-reduced-motion: reduce) {
  .leaf, .flipbook { transition: none; }
}

/* ---------- itinerary ---------- */
.days { background: var(--navy-deep); padding: clamp(4rem, 8vw, 6.5rem) 0; }
.days-head { max-width: 620px; }
.days-sub { color: var(--cream-70); margin-top: 0.9rem; }
.acts { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 2.1rem 0 2.3rem; }
.act {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--cream-70);
  background: transparent;
  border: 2px solid rgba(250, 243, 231, 0.28);
  border-radius: 999px;
  padding: 0.6rem 1.35rem;
  cursor: pointer;
  transition: 0.22s;
}
.act:hover { border-color: var(--gold); color: var(--gold); }
.act.on { background: var(--gold); border-color: var(--gold); color: var(--navy-ink); }
.timeline {
  position: relative;
  margin-left: 0.4rem;
  padding-left: 2rem;
  border-left: 2px dashed rgba(250, 243, 231, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.tl-day {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid transparent;
  border-radius: 14px;
  transition: box-shadow 0.25s ease;
}
.tl-day::before {
  content: "";
  position: absolute;
  left: calc(-2rem - 8px);
  top: 1.45rem;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 3px solid var(--terra);
}
.tl-day[open] { box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.55); }
.tl-day[open]::before { background: var(--terra); }
.tl-day summary {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  cursor: pointer;
  list-style: none;
}
.tl-day summary::-webkit-details-marker { display: none; }
.tl-num {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--terra);
  font-size: 1.05rem;
  white-space: nowrap;
}
.tl-title { font-weight: 700; font-size: 1.06rem; flex: 1; }
.tl-plus {
  font-family: var(--font-serif);
  color: var(--ink-soft);
  transition: transform 0.3s;
  font-size: 1.3rem;
  line-height: 1;
}
.tl-day[open] .tl-plus { transform: rotate(45deg); color: var(--terra); }
.tl-body { padding: 0 1.3rem 1.2rem; }
.tl-body p { color: var(--ink-soft); font-size: 0.99rem; max-width: 640px; }
.tl-tag {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--font-hand);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- hosts ---------- */
.hosts { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.hosts-sub { color: var(--cream-70); margin-top: 0.8rem; max-width: 480px; }
.host-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  margin-top: 2.8rem;
}
.host img {
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: 999px 999px 18px 18px;
  border: 3px solid rgba(201, 164, 92, 0.75);
}
.host:nth-child(2) { transform: translateY(1.4rem); }
.host figcaption { padding: 1rem 0.3rem 0; color: var(--paper); }
.host strong { font-family: var(--font-serif); font-size: 1.35rem; display: block; }
.host span { font-size: 0.92rem; color: var(--cream-70); }
.hosts-note { margin-top: 2.8rem; }

/* ---------- packages ---------- */
.packages { background: var(--navy-deep); padding: clamp(4rem, 8vw, 6.5rem) 0; }
.pack-included {
  max-width: 560px;
  color: var(--cream-70);
  margin-top: 0.9rem;
  padding: 0.9rem 1.1rem;
  background: rgba(250, 243, 231, 0.06);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  font-size: 0.98rem;
}
.pack-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.6rem;
  align-items: start;
}
.pack {
  position: relative;
  background: var(--navy-card);
  border: 1px solid rgba(201, 164, 92, 0.42);
  border-radius: 18px;
  padding: 2rem 1.8rem;
  color: var(--paper);
  box-shadow: 5px 6px 0 rgba(9, 13, 28, 0.5);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pack:hover { transform: translate(-2px, -5px); box-shadow: 8px 11px 0 rgba(9, 13, 28, 0.55); border-color: var(--gold); }
.pack.pick {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 6px 7px 0 rgba(9, 13, 28, 0.65);
}
.pick-note {
  position: absolute;
  top: -2.4rem;
  right: 0.4rem;
  transform: rotate(2deg);
}
.pack h3 { font-family: var(--font-serif); font-size: 1.45rem; }
.pack-price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.4rem 0 1rem;
  color: var(--gold);
}
.pack.pick .pack-price { color: var(--terra); }
.pack-price span { font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600; color: var(--cream-55); }
.pack.pick .pack-price span { color: var(--ink-soft); }
.pack ul { list-style: none; flex: 1; margin-bottom: 1.6rem; }
.pack li {
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  font-size: 0.97rem;
  border-bottom: 1px dashed rgba(250, 243, 231, 0.2);
}
.pack.pick li { border-bottom-color: rgba(92, 79, 66, 0.3); }
.pack li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.pack.pick li::before { color: var(--terra); }
.pack-fine { margin-top: 1.8rem; font-size: 0.88rem; color: var(--cream-55); }

/* ---------- notes ---------- */
.notes { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.note-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 2.6rem;
}
.note {
  background: var(--white);
  color: var(--ink);
  padding: 1.8rem 1.6rem 1.5rem;
  box-shadow: 0 18px 36px -14px rgba(0, 0, 0, 0.6);
  position: relative;
}
.note:nth-child(1) { transform: rotate(-1.6deg); }
.note:nth-child(2) { transform: rotate(1.2deg) translateY(0.8rem); }
.note:nth-child(3) { transform: rotate(-0.8deg); }
.note::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 78px;
  height: 24px;
  background: rgba(201, 164, 92, 0.55);
}
.note p {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  line-height: 1.5;
}
.note p em { color: var(--terra); }
.note footer { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.3rem; }
.note footer img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.note footer span { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.3; }
.note footer strong { color: var(--ink); }
.notes-note { margin-top: 2.2rem; }

/* ---------- faq ---------- */
.faq { background: var(--navy-deep); padding: clamp(4rem, 8vw, 6.5rem) 0; }
.faq-list { margin-top: 2.2rem; }
.faq-list details { border-bottom: 1.5px solid rgba(250, 243, 231, 0.22); }
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0.2rem;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--paper);
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
  line-height: 1;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 0.2rem 1.3rem; color: var(--cream-70); max-width: 660px; }

/* ---------- book ---------- */
.book { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.book-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.book-text > p:not(.kicker) { color: var(--cream-70); margin-top: 1rem; max-width: 440px; }
.book-details { color: var(--cream-70); font-weight: 600; line-height: 2; }
.book-form {
  background: var(--paper);
  color: var(--ink);
  border-radius: 18px;
  border: 1px solid rgba(201, 164, 92, 0.5);
  padding: 2.1rem 2rem;
  box-shadow: 0 32px 64px -20px rgba(0, 0, 0, 0.7);
}
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.book-form label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.book-form input, .book-form select, .book-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1.5px solid rgba(43, 33, 24, 0.22);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.book-form input:focus, .book-form select:focus, .book-form textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(196, 83, 45, 0.16);
}
.bf-send { width: 100%; margin-top: 0.3rem; }
.form-status { margin-top: 0.8rem; font-weight: 700; font-size: 0.92rem; color: var(--navy); }

/* ---------- letters ---------- */
.letters { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.letters-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(201, 164, 92, 0.55);
  border-radius: 22px;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  box-shadow: 6px 7px 0 rgba(9, 13, 28, 0.5);
}
.letters h2 { color: var(--ink); }
.letters h2 em { color: var(--terra); }
.letters-note { margin-bottom: 0.4rem; color: var(--terra-deep); }
.letters p:not(.letters-note) { color: var(--ink-soft); margin-top: 0.7rem; max-width: 460px; }
.letters-form { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.letters-form input {
  flex: 1 1 200px;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(43, 33, 24, 0.3);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.98rem;
}
.letters-form input:focus { outline: none; border-color: var(--terra); }
.letters-form .form-status { flex-basis: 100%; margin-top: 0.2rem; }

/* ---------- footer ---------- */
.footer { background: var(--navy-ink); color: var(--paper); padding: 3.2rem 0 1.8rem; border-top: 1px solid rgba(201, 164, 92, 0.35); }
.lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin: 0 auto 2.4rem;
  width: fit-content;
  text-align: center;
}
.lockup-mark { width: 84px; height: 53px; }
.lockup-name {
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--paper);
  margin-left: 0.34em; /* optically recenter the letterspaced text */
}
.lockup-rule { display: flex; align-items: center; gap: 0.6rem; color: var(--gold); }
.lockup-rule i { display: block; width: 74px; border-top: 1px solid var(--gold); }
.lockup-rule b { font-size: 0.55rem; line-height: 1; }
.lockup-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 0.32em;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(250, 243, 231, 0.14);
}
.footer-links, .footer-social { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-grid a { font-weight: 600; font-size: 0.9rem; color: rgba(250, 243, 231, 0.72); }
.footer-grid a:hover { color: var(--gold); }
.footer-line { text-align: center; font-size: 0.85rem; color: rgba(250, 243, 231, 0.45); margin-top: 1.6rem; }

/* ---------- whatsapp float ---------- */
.wa-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 90;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #1faa53;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.22s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip-track { animation: none; }
  .float-a, .float-b { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { width: min(460px, 100%); margin: 2.2rem auto 0; }
  .book-grid, .letters-grid { grid-template-columns: 1fr; }
  .chapter { grid-template-columns: 1fr; gap: 2.4rem; }
  .chapter.flip .ch-media { order: 0; }
  .chapter.flip .ch-text { order: 1; }
  .ch-media { width: min(440px, 100%); margin: 0 auto; }
  .host-row { grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
}
@media (max-width: 720px) {
  .nav-burger { display: flex; }
  .nav { background: rgba(16, 24, 47, 0.92); backdrop-filter: blur(10px); padding: 0.7rem 0; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(76vw, 300px);
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2.4rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    box-shadow: -18px 0 50px rgba(0, 0, 0, 0.6);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; }
  .host-row { grid-template-columns: 1fr; max-width: 320px; margin: 2.4rem auto 0; }
  .host:nth-child(2) { transform: none; }
  .bf-row { grid-template-columns: 1fr; }
  .intro-row .dotline { display: none; }
  .intro-row { gap: 2.2rem; }
  .pick-note { top: -2.2rem; right: 0.2rem; }
  .strip figure { width: 160px; }
  .strip img { height: 114px; }
  .flipbook { aspect-ratio: 10 / 8.4; }
  .lb-text { padding: 2.4rem 7% 1.1rem; }
}
