:root {
  --bg: #fffaf6;
  --paper: rgba(255,255,255,0.92);
  --ink: #261d17;
  --muted: #6f6259;
  --line: #eadfd7;
  --accent: #e37b6d;
  --accent-2: #ffcf99;
  --accent-3: #8bb8a8;
  --shadow: 0 20px 50px rgba(58, 33, 17, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans TC", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, #ffe2d8 0, transparent 28%),
    radial-gradient(circle at top right, #fff0c9 0, transparent 25%),
    linear-gradient(180deg, #fff8f1 0%, #fffdfb 100%);
  line-height: 1.7;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 72px 0 40px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(227,123,109,0.25);
  color: var(--muted);
  font-size: 14px;
}

h1 {
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.03em;
}

.subtitle {
  font-size: clamp(17px, 2.5vw, 22px);
  color: var(--muted);
  max-width: 760px;
  margin: 16px 0 0;
}

.hero-grid {
  margin-top: 28px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--paper);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.flight-card, .hotel-card {
  padding: 24px;
}

.flight-card h2, .hotel-card h2, .section-card h2, .day h3 {
  margin-top: 0;
}

.flight-card ul {
  margin: 0;
  padding-left: 18px;
}

.hotel-card a {
  color: #a74c40;
  text-decoration: none;
  font-weight: 700;
}

main {
  padding-bottom: 56px;
}

.section-card {
  padding: 28px;
  margin-bottom: 22px;
}

.section-title {
  margin: 44px 0 20px;
}

.section-title h2 {
  font-size: 34px;
  margin-bottom: 6px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 18px;
}

.tags span {
  padding: 8px 12px;
  background: #fff1e7;
  border: 1px solid #ffd6bf;
  border-radius: 999px;
  font-size: 14px;
}

.two-col, .three-col {
  display: grid;
  gap: 18px;
}

.two-col { grid-template-columns: repeat(2, 1fr); }
.three-col { grid-template-columns: repeat(3, 1fr); }

.day {
  padding: 28px;
  margin-bottom: 22px;
  overflow: hidden;
}

.day.highlight {
  background: linear-gradient(180deg, rgba(255,246,240,0.95), rgba(255,255,255,0.92));
  border: 1px solid rgba(227,123,109,0.22);
}

.day-head {
  margin-bottom: 20px;
}

.day-kicker {
  margin: 0 0 8px;
  color: #bb5c4d;
  font-weight: 700;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}

.item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.time {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffe1cf, #fff0df);
  color: #8a4639;
  font-weight: 700;
  padding: 8px 10px;
  text-align: center;
}

.item h4 {
  margin: 0 0 6px;
}

.item p, .item ul {
  margin: 0;
  color: var(--muted);
}

.food-box {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,230,208,0.65), rgba(255,245,223,0.85));
  border: 1px solid rgba(255,210,170,0.75);
}

.food-box h4 {
  margin: 0 0 8px;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.tips ul, ol, .section-card ul {
  margin-top: 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: #f3ece6;
}

.photo-card figcaption {
  padding: 14px 16px 16px;
  display: grid;
  gap: 6px;
}

.photo-card figcaption strong {
  font-size: 17px;
}

.photo-card figcaption span {
  color: var(--muted);
  font-size: 14px;
}

.practical-box {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(228,242,238,0.85), rgba(255,255,255,0.92));
  border: 1px solid rgba(139,184,168,0.45);
}

.practical-box h4 {
  margin: 0 0 8px;
}

.practical-box ul {
  margin: 0;
}

.mini-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.photo-card.small img {
  height: 170px;
}

@media (max-width: 960px) {
  .hero-grid, .three-col, .two-col, .photo-grid, .mini-photo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 40px;
  }

  .day, .section-card, .flight-card, .hotel-card {
    padding: 20px;
    border-radius: 20px;
  }

  .item {
    grid-template-columns: 1fr;
  }

  .time {
    justify-self: start;
    min-width: 88px;
  }
}
