:root {
  --ink: #0e1f1c;
  --cream: #faf6ef;
  --sand: #e8dcc8;
  --teal: #0d5c63;
  --teal-light: #4a9c93;
  --coral: #e8825a;
  --sunset: #f2a65a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: 900px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 640px; }

h1, h2 { font-family: 'Cormorant Garamond', serif; font-weight: 600; letter-spacing: -0.01em; text-wrap: balance; color: var(--ink); }

.eyebrow {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin: 0 0 16px;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

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

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,31,28,0.35) 0%, rgba(14,31,28,0.55) 60%, rgba(14,31,28,0.8) 100%); }
.hero-inner { position: relative; z-index: 1; max-width: 760px; padding: 24px; color: #fff; }
.hero-inner .eyebrow { color: var(--sunset); }
.hero h1 { font-size: clamp(48px, 9vw, 92px); line-height: 1.02; margin-bottom: 22px; color: #fff; font-style: italic; }
.hero-sub { font-size: 19px; color: rgba(255,255,255,0.88); max-width: 46ch; margin: 0 auto; font-weight: 400; }

/* ---------- Polaroid (contained real photos, nothing cropped) ---------- */

.polaroid {
  display: inline-block; background: #fff; padding: 10px 10px 0; border-radius: 3px;
  box-shadow: 0 24px 50px -18px rgba(0,0,0,0.5); transform: rotate(-3deg); margin-bottom: 28px;
}
.polaroid img { display: block; border-radius: 1px; }
.polaroid-landscape { padding-bottom: 34px; }
.polaroid-landscape img { width: min(78vw, 300px); height: auto; }
.polaroid-portrait { transform: rotate(2.5deg); padding-bottom: 40px; }
.polaroid-portrait img { width: min(62vw, 230px); height: auto; }

.scroll-cue { margin: 56px auto 0; width: 24px; height: 38px; border: 1.5px solid rgba(255,255,255,0.5); border-radius: 14px; position: relative; }
.scroll-cue span { position: absolute; top: 7px; left: 50%; width: 3px; height: 8px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: cue 1.8s infinite; }
@keyframes cue { 0% { opacity: 1; transform: translate(-50%,0); } 70% { opacity: 0; transform: translate(-50%,10px); } 100% { opacity:0; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue span { animation: none; } }

/* ---------- Sections ---------- */

.section { padding: 110px 0; }
.section h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; }
.lede { font-size: 18px; color: #4a5a56; max-width: 56ch; }

/* ---------- Marta note ---------- */

.marta-note { padding: 40px 0 100px; text-align: center; }
.marta-note .eyebrow { color: var(--coral); }
.marta-text {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: clamp(22px, 3.2vw, 30px); color: var(--ink); line-height: 1.5; text-wrap: balance;
}

/* ---------- Roadmap ---------- */

.roadmap-section { padding: 100px 0 60px; background: var(--sand); }
.roadmap-section h2 { margin-bottom: 60px; }
.roadmap-track { position: relative; padding-left: 56px; }
.roadmap-line { position: absolute; left: 15px; top: 6px; bottom: 6px; width: 2px; background: rgba(13,92,99,0.25); }
.rstep { position: relative; margin-bottom: 44px; }
.rstep:last-child { margin-bottom: 0; }
.rstep-dot {
  position: absolute; left: -56px; top: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--teal); color: var(--teal);
  display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px;
  font-family: 'Inter', sans-serif;
}
.rstep-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.rstep-body p { font-size: 15.5px; color: #5c6b66; max-width: 52ch; }
@media (max-width: 640px) { .roadmap-track { padding-left: 44px; } .roadmap-line { left: 11px; } .rstep-dot { left: -44px; width: 26px; height: 26px; font-size: 12px; } }

/* ---------- Gallery ---------- */

.gallery-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 1000px; margin: 0 auto; padding: 0 28px 100px; }
.gallery-item { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 8px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cap {
  position: absolute; left: 16px; bottom: 16px; color: #fff; font-size: 13px; font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
@media (max-width: 760px) { .gallery-row { grid-template-columns: 1fr; } }

/* ---------- Moment (framed real photo + line) ---------- */

.moment { padding: 90px 0; background: var(--sand); text-align: center; }
.moment-line {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: clamp(26px, 4.5vw, 42px); color: var(--ink); text-wrap: balance;
}

/* ---------- Split ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media img { width: 100%; border-radius: 6px; aspect-ratio: 4/5; object-fit: cover; box-shadow: 0 40px 80px -30px rgba(14,31,28,0.35); }
.split-copy p { font-size: 16.5px; color: #46534f; }
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.plan-list li { font-size: 16px; color: #46534f; padding-left: 22px; position: relative; }
.plan-list li::before { content: '—'; position: absolute; left: 0; color: var(--coral); }
.plan-list strong { color: var(--ink); font-weight: 600; }

@media (max-width: 800px) {
  .split, .split.reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* ---------- Logistics ---------- */

.logi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.logi-card {
  background: #fff; border: 1px solid var(--sand); border-radius: 10px; padding: 30px 20px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
}
.logi-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 600; color: var(--teal); }
.logi-label { font-size: 13.5px; color: #5c6b66; }
@media (max-width: 640px) { .logi-grid { grid-template-columns: 1fr; } }

/* ---------- Closing ---------- */

.closing { position: relative; min-height: 70svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.closing-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.closing-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,31,28,0.55), rgba(14,31,28,0.75)); }
.closing-inner { position: relative; z-index: 1; color: #fff; }
.closing-inner h2 { color: #fff; font-size: clamp(36px, 6vw, 60px); font-style: italic; margin-bottom: 14px; }
.closing-inner p { font-size: 18px; color: rgba(255,255,255,0.85); }
.closing-note { margin-top: 26px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 20px; color: rgba(255,255,255,0.75); }
