/* Typography */
@font-face {
  font-family: "Sink";
  src: url("./Sink.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0E1428; /* deep indigo/navy */
  --earth: #D95D39; /* earthy orange */
  --sun: #F0A202; /* warm amber */
  --mist: #f7f5f0; /* soft off-white background */
  --cloud: #ffffff; /* white */
  --stone: #e6e1d9; /* light border */
  --shadow: 0 10px 30px rgba(14, 20, 40, 0.12), 0 2px 6px rgba(14, 20, 40, 0.06);
  --radius-card: 18px;
  --radius-pill: 999px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(140%) blur(8px); background: color-mix(in oklab, var(--mist) 80%, transparent); border-bottom: 1px solid rgba(14,20,40,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand-logo { height: 28px; filter: drop-shadow(0 1px 0 rgba(0,0,0,0.05)); }
.brand-logo.small { height: 22px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.brand-spark { color: var(--earth); display: inline-flex; }
.spark-svg { width: 28px; height: 28px; filter: drop-shadow(0 1px 0 rgba(0,0,0,0.05)); }
.spark-svg.small { width: 22px; height: 22px; }
.brand-wordmark { font-family: Sink, Georgia, serif; font-size: 1.7rem; letter-spacing: 0.5px; color: var(--earth); line-height: 1; }
.brand:hover .spark-svg { animation: wobble 900ms ease-out 1; }
@keyframes wobble {
  0% { transform: rotate(0deg) scale(1); }
  30% { transform: rotate(-6deg) scale(1.04); }
  60% { transform: rotate(4deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(1); }
}
.brand-wordmark.small { font-size: 1.1rem; }

/* Mobile nav */
.nav-toggle { display: none; background: transparent; border: 0; width: 42px; height: 42px; border-radius: 10px; align-items: center; justify-content: center; gap: 5px; flex-direction: column; }
.nav-toggle .bar { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; display: block; }
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav { position: fixed; inset: 60px 14px auto 14px; background: var(--cloud); border: 1px solid var(--stone); border-radius: 14px; box-shadow: var(--shadow); display: grid; gap: 10px; padding: 12px; transform: translateY(-10px); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { display: block; padding: 10px 10px; }
  .nav-cta { width: 100%; justify-self: stretch; }
}
.nav { display: flex; gap: 18px; align-items: center; z-index: 60; }
.nav-link { color: var(--ink); text-decoration: none; font-weight: 500; opacity: 0.8; transition: opacity .2s ease; }
.nav-link:hover { opacity: 1; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 10px 18px; border-radius: var(--radius-pill); text-decoration: none; font-weight: 600; border: 1px solid transparent; transition: transform .08s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--earth); color: var(--cloud); box-shadow: var(--shadow); }
.btn-primary:hover { background: color-mix(in oklab, var(--earth), black 8%); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(14,20,40,0.12); }
.btn-ghost:hover { background: rgba(14,20,40,0.04); }
.btn-lg { padding: 12px 22px; }
.btn-xl { padding: 14px 26px; font-size: 1.05rem; }

/* On dark background variants */
.hero .btn-ghost { color: #ffffff; border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.06); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.12); color: #ffffff; }

/* Hero */
.hero { position: relative; min-height: 82vh; display: grid; place-items: stretch; overflow: hidden; }
.hero-media { position: absolute; inset: 0; background: url('./luke-porter-NEqEC7qa9FM-unsplash.jpg') center/cover no-repeat; filter: saturate(92%) contrast(96%); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,20,40,0.55) 0%, rgba(14,20,40,0.35) 40%, rgba(247,245,240,0.0) 72%, rgba(247,245,240,0.85) 100%); }
.hero-content { position: relative; z-index: 1; padding: 18vh 24px 8vh; color: var(--cloud); }
.hero-title { font-family: Sink, "Times New Roman", Georgia, serif; font-weight: 400; font-size: clamp(2rem, 4.8vw, 4rem); line-height: 1.08; letter-spacing: 0.2px; margin: 8px 0 14px; text-shadow: 0 2px 22px rgba(0,0,0,0.28); }
.hero-subtitle { max-width: 740px; font-size: clamp(1.02rem, 1.6vw, 1.125rem); opacity: 0.94; text-shadow: 0 1px 10px rgba(0,0,0,0.25); }
.hero-actions { display: flex; gap: 12px; margin-top: 18px; }

.script-accent { font-family: 'Parisienne', cursive; font-size: clamp(1.2rem, 2.4vw, 1.6rem); color: var(--sun); text-shadow: 0 1px 10px rgba(0,0,0,0.2); }

/* removed scroll cue */

/* Sections */
.section { padding: 72px 0; }
.section-why { background: var(--mist); }
.section-trip { background: #fbfaf6; border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); }
.section-who { background: var(--mist); }
.section-details { background: #fffefb; border-top: 1px solid var(--stone); }
.section-reserve { background: linear-gradient(160deg, #f5f3ee 0%, #fff 60%); border-top: 1px solid var(--stone); }

.section-intro { text-align: center; margin-bottom: 18px; }
.section-title { font-family: Sink, Georgia, serif; font-weight: 400; font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin: 0 0 10px; }

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 18px; }
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

.card { background: var(--cloud); border: 1px solid var(--stone); border-radius: var(--radius-card); padding: 18px; box-shadow: var(--shadow); }
.card h3 { margin: 4px 0 6px; font-family: Sink, Georgia, serif; font-weight: 400; }
.card p { margin: 0; opacity: 0.85; }

.divider { color: rgba(14,20,40,0.18); padding: 10px 0; }
.divider-svg { display: block; width: 100%; height: 40px; }

/* Trip block */
.trip-header { text-align: center; max-width: 800px; margin: 0 auto 22px; }
.trip-subtitle { margin: 6px 0 0; opacity: 0.8; }

.trip-includes { text-align: center; margin: 16px auto 0; max-width: 720px; opacity: 0.9; }

/* Itinerary tiles */
.itinerary { margin-top: 8px; }
.itinerary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 980px) { .itinerary-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .itinerary-grid { grid-template-columns: 1fr; } }
.itinerary-day { background: var(--cloud); border: 1px solid var(--stone); border-radius: 18px; padding: 16px; box-shadow: var(--shadow); position: relative; }
.day-badge { display: inline-flex; align-items: center; justify-content: center; background: var(--earth); color: var(--cloud); border-radius: var(--radius-pill); font-weight: 700; font-size: 0.8rem; padding: 6px 10px; letter-spacing: 0.03em; }
.itinerary-day h3 { margin: 10px 0 8px; font-family: Sink, Georgia, serif; font-weight: 400; }
.itinerary-day ul { list-style: none; padding: 0; margin: 0; }
.itinerary-day li { position: relative; padding-left: 18px; margin: 6px 0; }
.itinerary-day li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sun); position: absolute; left: 0; top: 10px; box-shadow: 0 0 0 2px #fff; }
.itinerary-note { display: block; text-align: center; margin-top: 10px; opacity: 0.65; }

/* Who & Details */
.who-intro { text-align: center; margin-bottom: 10px; }
.persona-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 14px 0 8px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--radius-pill); background: #fff7e9; border: 1px solid #f4dcc1; color: #5b3a12; font-weight: 600; }
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 2px #fff; }
.who-panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
@media (max-width: 900px) { .who-panels { grid-template-columns: 1fr; } }
.who-panel { background: var(--cloud); border: 1px solid var(--stone); border-radius: 16px; padding: 16px; box-shadow: var(--shadow); display: grid; grid-template-columns: 46px 1fr; gap: 12px; align-items: start; }
.who-icon { width: 46px; height: 46px; border-radius: 12px; background: #fff7e9; border: 1px solid #f4dcc1; color: var(--earth); display: grid; place-items: center; grid-column: 1; grid-row: 1 / span 2; }
.who-panel h3 { margin: 0 0 4px; font-family: Sink, Georgia, serif; font-weight: 400; grid-column: 2; }
.who-panel p { margin: 0; opacity: 0.85; grid-column: 2; }

/* Ticket details */
.ticket { background: var(--cloud); border: 1px solid var(--stone); border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; }
.ticket-top { display: flex; align-items: center; justify-content: space-between; padding: 16px; background: #fff7e9; border-bottom: 1px solid #f0e2cf; }
.price { display: grid; align-items: baseline; grid-auto-flow: column; gap: 8px; }
.price-label { font-weight: 600; text-transform: uppercase; letter-spacing: .06em; opacity: .7; }
.price-amount { font-family: Sink, Georgia, serif; font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
.price-sub { opacity: .7; }
.badge { background: var(--earth); color: var(--cloud); border-radius: var(--radius-pill); padding: 8px 12px; font-weight: 700; }
.ticket-perf { height: 14px; background: radial-gradient(circle at 12px 7px, #fff 6px, transparent 7px) repeat-x left top / 24px 14px, linear-gradient(#f0e2cf, #f0e2cf) left calc(7px - 0.5px)/100% 1px no-repeat; border-bottom: 1px solid #f0e2cf; }
.ticket-body { padding: 16px; }
.ticket-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 720px) { .ticket-grid { grid-template-columns: 1fr; } }
.ticket-item { background: #fff; border: 1px solid var(--stone); border-radius: 14px; padding: 12px; }
.ti-label { font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem; opacity: 0.7; }
.ti-value { margin-top: 6px; }

/* Reserve */
.reserve-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
@media (max-width: 720px) { .reserve-inner { flex-direction: column; text-align: center; } }
.reserve-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Footer */
.site-footer { border-top: 1px solid var(--stone); background: var(--mist); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.muted { opacity: 0.7; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease; transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Mobile tweaks */
@media (max-width: 760px) {
  .header-inner { padding: 12px 0; }
  .brand-wordmark { font-size: 1.6rem; }
  .hero-content { padding: 22vh 24px 10vh; }
  @supports(padding: max(0px)) {
    .hero-content { padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); }
  }
  .hero-title { font-size: clamp(1.8rem, 7vw, 3rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions { flex-wrap: wrap; }
  .section { padding: 56px 0; }
  .section-title { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .itinerary-grid { gap: 12px; }
  .itinerary-day { padding: 14px; }
  .who-list { padding-left: 16px; }
  .ticket-grid { gap: 12px; }
  /* Force stacked nav in mobile */
  .site-header .nav { display: grid; grid-auto-flow: row; align-items: start; }
  .site-header .nav a { display: block; }
}


