:root {
  --bg: #faf6ee;
  --bg-alt: #efe8d8;
  --ink: #1e1b16;
  --muted: #6b6358;
  --line: #d9d1c1;
  --accent: #7a2a2f;
  --accent-2: #4a6b3e;
  --gold: #b8923a;
  --shadow: 0 10px 40px rgba(30, 27, 22, 0.08);

  --day1: #efe4cf;
  --day1-ink: #6d4a1f;
  --day2: #dde6e8;
  --day2-ink: #2a5a6b;
  --day3: #e9ddd6;
  --day3-ink: #7a2a2f;
  --day4: #e3e2d0;
  --day4-ink: #5a5a28;
  --day5: #e2d9cd;
  --day5-ink: #5a4a38;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }

/* ---------- Scroll progress ---------- */

.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  z-index: 100;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.1s linear;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  color: #f9f5ec;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0 6vw;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,12,8,0.5) 0%, rgba(15,12,8,0.85) 100%),
    radial-gradient(1400px 900px at 70% 30%, #3b4a2a 0%, #1a1f12 55%, #0d0f08 100%);
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(184, 146, 58, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(122, 42, 47, 0.2) 0%, transparent 50%);
}

.hero-brand {
  position: relative; z-index: 2;
  padding: 32px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-style: italic;
  opacity: 0.92;
}

.hero-content {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 0;
  max-width: 1100px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.lede {
  max-width: 640px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  opacity: 0.88;
  margin-bottom: 44px;
}

.cta {
  display: inline-block;
  width: fit-content;
  padding: 14px 32px;
  border: 1px solid rgba(249, 245, 236, 0.5);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: all 0.25s;
}
.cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1e1b16;
}

.hero-meta {
  position: relative; z-index: 2;
  padding: 32px 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  border-top: 1px solid rgba(249, 245, 236, 0.15);
  max-width: 1000px;
}
.hero-meta > div span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  opacity: 0.9;
}
.hero-meta > div strong {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: #f9f5ec;
}

/* ---------- Day sections ---------- */

.day-section {
  padding: 120px 6vw;
  position: relative;
  overflow: hidden;
}
.day-1 { background: var(--day1); }
.day-2 { background: var(--day2); }
.day-3 { background: var(--day3); }
.day-4 { background: var(--day4); }
.day-5 { background: var(--day5); }

.day-marker {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-bottom: 1px solid rgba(30, 27, 22, 0.12);
  padding-bottom: 28px;
}
.day-marker .day-num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  font-style: italic;
}
.day-marker .day-name {
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
}
.day-1 .day-marker .day-num { color: var(--day1-ink); }
.day-2 .day-marker .day-num { color: var(--day2-ink); }
.day-3 .day-marker .day-num { color: var(--day3-ink); }
.day-4 .day-marker .day-num { color: var(--day4-ink); }
.day-5 .day-marker .day-num { color: var(--day5-ink); }

.day-body {
  max-width: 1100px;
  margin: 0 auto;
}

.day-body > h2 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-bottom: 16px;
}
.day-1 .day-body > h2 { color: var(--day1-ink); }
.day-2 .day-body > h2 { color: var(--day2-ink); }
.day-3 .day-body > h2 { color: var(--day3-ink); }
.day-4 .day-body > h2 { color: var(--day4-ink); }
.day-5 .day-body > h2 { color: var(--day5-ink); }

.day-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  max-width: 680px;
  margin-bottom: 72px;
  color: var(--muted);
  line-height: 1.55;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

/* ---------- Timeline ---------- */

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 900px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 85px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(30, 27, 22, 0.18);
}

.moment {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 28px 0;
  align-items: start;
  position: relative;
}

.moment .time {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  position: relative;
}
.moment .time::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  z-index: 2;
}
.day-1 .moment .time { color: var(--day1-ink); }
.day-1 .moment .time::after { border-color: var(--day1-ink); }
.day-2 .moment .time { color: var(--day2-ink); }
.day-2 .moment .time::after { border-color: var(--day2-ink); }
.day-3 .moment .time { color: var(--day3-ink); }
.day-3 .moment .time::after { border-color: var(--day3-ink); }
.day-4 .moment .time { color: var(--day4-ink); }
.day-4 .moment .time::after { border-color: var(--day4-ink); }
.day-5 .moment .time { color: var(--day5-ink); }
.day-5 .moment .time::after { border-color: var(--day5-ink); }

.moment .content {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  padding: 24px 28px;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(30, 27, 22, 0.06);
  overflow: hidden;
}
.moment-image {
  margin: -24px -28px 20px;
  position: relative;
}
.moment-image img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
}
.moment-image figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(20, 17, 12, 0.55);
  color: #e8dfcf;
  font-size: 11px;
  padding: 4px 10px;
  letter-spacing: 0.04em;
  font-style: italic;
}
.moment-image figcaption a {
  color: #e8dfcf;
  border-bottom: 1px dotted rgba(232, 223, 207, 0.5);
}
.moment-image figcaption a:hover { color: #fff; }

/* Side-image variant: portrait image on the right of a moment */
.content--with-side-image {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 24px;
  align-items: stretch;
}
.moment-image--side {
  margin: -24px -28px -24px 0;
  height: auto;
  min-height: 100%;
}
.moment-image--side img {
  height: 100%;
  min-height: 380px;
}
@media (max-width: 780px) {
  .content--with-side-image {
    grid-template-columns: 1fr;
  }
  .moment-image--side {
    margin: -18px -22px 16px;
    min-height: 0;
  }
  .moment-image--side img {
    min-height: 0;
    height: 240px;
  }
}
.moment .content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.moment .content p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.moment .content p:last-child { margin-bottom: 0; }
.moment .content p strong { color: var(--ink); font-weight: 500; }
.moment .content p em { color: var(--ink); font-style: italic; font-weight: 400; }

/* inline source links */
.moment .content a,
.stay-opt a,
.lede a,
.note a {
  color: inherit;
  border-bottom: 1px dotted var(--gold);
  transition: color 0.15s, border-bottom-color 0.15s;
}
.moment .content a:hover,
.stay-opt a:hover,
.lede a:hover,
.note a:hover {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.lede a { border-bottom-color: rgba(184, 146, 58, 0.7); }
.lede a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.meta-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 12px;
  padding: 12px 0 0;
  border-top: 1px dashed rgba(30, 27, 22, 0.15);
  font-size: 0.9rem;
}
.meta-row span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-right: 6px;
}
.meta-row strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
}

/* ---------- Stay cards (Day 1) ---------- */

.stay-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(30, 27, 22, 0.15);
}

.stay-card {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  padding: 18px 20px;
  cursor: default;
  transition: background 0.2s, box-shadow 0.2s;
}

.stay-imgs {
  display: flex;
  gap: 3px;
  margin: -18px -20px 14px;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.stay-imgs img {
  flex: 1;
  width: 0;
  height: 110px;
  object-fit: cover;
  display: block;
}

.stay-platform {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.stay-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}

.stay-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.stay-total {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--day1-ink);
}

.stay-pppn {
  font-size: 0.8rem;
  color: var(--muted);
}

.stay-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.stay-detail-inner {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px dashed rgba(30, 27, 22, 0.15);
}

.stay-detail-inner p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.stay-book {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--day1-ink);
  border-bottom: 1px solid var(--day1-ink);
  transition: opacity 0.15s;
}
.stay-book:hover { opacity: 0.7; }

@media (hover: hover) {
  .stay-card:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 16px rgba(30, 27, 22, 0.1);
  }
  .stay-card:hover .stay-detail {
    max-height: 140px;
  }
}

.stay-card.is-open {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(30, 27, 22, 0.1);
}
.stay-card.is-open .stay-detail {
  max-height: 140px;
}

@media (max-width: 640px) {
  .stay-cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- Souvenirs (Day 4) ---------- */

.souvenirs {
  margin-top: 60px;
  padding: 32px 36px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  max-width: 640px;
}
.souvenirs h4 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--day4-ink);
}
.souvenirs ul {
  list-style: none;
}
.souvenirs li {
  padding: 8px 0 8px 20px;
  position: relative;
  color: var(--muted);
  font-size: 0.97rem;
}
.souvenirs li::before {
  content: "◦";
  position: absolute; left: 0; top: 6px;
  color: var(--gold);
  font-size: 1.2rem;
}
.souvenirs li em { color: var(--ink); font-style: italic; font-weight: 400; }

/* ---------- Budget & Next sections ---------- */

.section {
  padding: 120px 6vw;
  max-width: 1400px;
  margin: 0 auto;
}

.budget-section { background: #1e1b16; color: #f9f5ec; max-width: none; margin: 0; padding: 120px 6vw; }
.budget-section > * { max-width: 1400px; margin-left: auto; margin-right: auto; }
.budget-section .section-head h2 { color: #f9f5ec; }
.budget-section .section-head p { color: #9c9488; }
.budget-section .section-num { color: var(--gold); }

.section-head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 780px;
  margin-left: auto; margin-right: auto;
}

.section-num {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* Budget table */
.budget {
  max-width: 860px;
  margin: 0 auto;
}
.budget table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.97rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.budget th, .budget td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.budget th {
  background: rgba(255, 255, 255, 0.05);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #f9f5ec;
  letter-spacing: 0.02em;
  text-transform: none;
}
.budget td { color: #c9bfb0; }
.budget td:first-child { color: #f9f5ec; font-weight: 500; }
.budget .right { text-align: right; font-variant-numeric: tabular-nums; }
.budget tr.total td {
  background: rgba(184, 146, 58, 0.12);
  border-bottom: none;
  font-size: 1.1rem;
}
.budget tr.total td strong {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.budget .note { color: #9c9488; }

/* Next grid */
.next-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.next-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}
.next-card:hover { background: #fff; transform: translateY(-2px); }
.next-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 10px;
}
.next-card p { color: var(--muted); font-size: 0.97rem; line-height: 1.55; }
.next-card p em { color: var(--ink); font-style: italic; }

.note {
  margin-top: 32px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

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

.foot {
  text-align: center;
  padding: 50px 6vw;
  background: #14110c;
  color: #7a7468;
  font-size: 13px;
  letter-spacing: 0.08em;
}

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

@media (max-width: 780px) {
  .hero { padding: 0 5vw; }
  .day-section { padding: 80px 5vw; }
  .section { padding: 80px 5vw; }
  .timeline::before { left: 0; }
  .moment {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0 20px 20px;
    border-left: 1px solid rgba(30, 27, 22, 0.15);
  }
  .moment .time::after { display: none; }
  .moment .content { padding: 18px 22px; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
}
