@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --cream: #F5EFE4;
  --ink: #1a1a1a;
  --mint: #4CAF82;
  --gold: #FAC775;
}

html, body {
  margin: 0;
  padding: 0;
  width: 1080px;
  height: 1350px;
  overflow: hidden;
  background: #111;
  font-family: 'Inter', sans-serif;
}

.card {
  width: 1080px;
  height: 1350px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}
.card--dark { background: var(--ink); }

/* Full-bleed photo background */
.bg-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.bg-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.35) 45%, rgba(10,10,10,0.88) 100%);
}

/* Header strip */
.head {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 44px 64px 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.head .handle em { color: var(--mint); font-style: normal; }
.head .counter { font-weight: 600; opacity: 0.55; letter-spacing: 2px; }
.card .head { color: var(--ink); }
.card.card--dark .head { color: var(--cream); }
.card.card--dark .head .handle em { color: var(--gold); }

/* Body area */
.body {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px;
}
.body--bottom { justify-content: flex-end; padding-bottom: 80px; }

.kicker {
  display: inline-block;
  align-self: flex-start;
  background: var(--mint);
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding: 12px 24px;
  margin-bottom: 36px;
}
.kicker--gold { background: var(--gold); color: var(--ink); }

.headline {
  font-family: 'DM Serif Display', serif;
  font-size: 104px;
  line-height: 1.02;
  letter-spacing: -2px;
  color: var(--ink);
}
.card--dark .headline, .bg .headline { color: var(--cream); }
.headline em { font-style: italic; color: var(--mint); }
.card--dark .headline em, .bg .headline em { color: var(--gold); }

.sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 46px;
  line-height: 1.3;
  margin-top: 34px;
  color: rgba(26,26,26,0.8);
}
.card--dark .sub, .bg .sub { color: rgba(245,239,228,0.88); }

/* Check / itinerary lists */
.list { margin-top: 56px; }
.list .item {
  display: flex;
  align-items: baseline;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1.5px solid rgba(26,26,26,0.14);
}
.list .item:last-child { border-bottom: none; }
.card--dark .list .item { border-color: rgba(245,239,228,0.16); }
.list .ico { font-size: 40px; flex-shrink: 0; transform: translateY(4px); }
.list .txt {
  font-size: 38px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.card--dark .list .txt { color: var(--cream); }
.list .txt small {
  display: block;
  font-size: 26px;
  font-weight: 500;
  color: rgba(26,26,26,0.55);
  margin-top: 6px;
}
.card--dark .list .txt small { color: rgba(245,239,228,0.55); }

/* Timeline */
.timeline { margin-top: 50px; }
.tl-item {
  display: flex;
  gap: 30px;
  padding: 21px 0;
}
.tl-time {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 34px;
  color: var(--mint);
  width: 150px;
  flex-shrink: 0;
  text-align: right;
}
.tl-txt { font-size: 35px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.tl-txt small { display: block; font-size: 25px; font-weight: 500; color: rgba(26,26,26,0.55); margin-top: 4px; }

/* Photo band at the bottom of light cards */
.band {
  position: relative;
  height: 290px;
  overflow: hidden;
  flex-shrink: 0;
}
.band img { width: 100%; height: 100%; object-fit: cover; display: block; }
.band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.18), transparent 35%);
}

/* Footer strip */
.foot {
  position: relative;
  z-index: 5;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 64px;
  height: 96px;
  border-top: 1.5px solid rgba(26,26,26,0.7);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream);
}
.foot .mint { color: var(--mint); }

/* Top + bottom accent bars */
.bar { height: 10px; flex-shrink: 0; background: linear-gradient(90deg, var(--mint), var(--gold)); position: relative; z-index: 6; }

/* Big number chip for step cards */
.steps { margin-top: 60px; }
.step {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 30px 0;
}
.step .n {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 64px;
  color: var(--gold);
  width: 70px;
  flex-shrink: 0;
  text-align: center;
}
.step .t { font-size: 40px; font-weight: 600; color: var(--cream); line-height: 1.25; }
.step .t small { display: block; font-size: 26px; font-weight: 500; color: rgba(245,239,228,0.55); margin-top: 6px; }

/* ── Destination cards (photo grid + text) ── */
.dest-kicker {
  display: inline-block;
  align-self: flex-start;
  background: #4CAF82;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 10px 20px;
  margin-bottom: 26px;
}
.dest-name {
  font-family: 'DM Serif Display', serif;
  font-size: 78px;
  line-height: 1.0;
  letter-spacing: -1.5px;
  color: var(--ink);
}
.dest-korean {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 38px;
  color: rgba(26,26,26,0.6);
  margin-top: 14px;
}
.dgrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 430px 200px;
  gap: 14px;
  margin-top: 38px;
}
.dgrid--single { grid-template-rows: 630px; }
.dgrid .ph { overflow: hidden; background: #1a1a1a; }
.dgrid .ph--main { grid-column: 1 / -1; }
.dgrid img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dest-desc {
  font-size: 29px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(26,26,26,0.78);
  margin-top: 34px;
}
