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

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

:root {
  --cream: #FAF8F5;
  --warm-white: #FFFFFF;
  --sand: #F0EDE8;
  --sand-dark: #E5E0D8;
  --stone: #C8C0B4;
  --text: #2C2826;
  --text-light: #6B6560;
  --text-muted: #9B9590;
  --accent: #B8936A;
  --accent-dark: #9A7B58;
  --accent-light: #D4B896;
  --green: #5A8A6A;
  --green-light: #E8F0EA;
  --blue: #5A7A9A;
  --blue-light: #E8EFF5;
  --red-light: #F5E8E8;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.05) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 60px;
  color: white;
}
.hero-content .eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 12px;
}
.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero-content .subtitle {
  font-size: 16px;
  font-weight: 300;
  opacity: 0.9;
  letter-spacing: 0.5px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}
.hero-badges span {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sand);
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-inner {
  display: flex;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}
.nav a {
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}
.nav a:hover, .nav a.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

/* ── Container ── */
.container { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Section Titles ── */
section { padding: 48px 0; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 15px;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.6;
}

/* ── Cards ── */
.card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.card-accent {
  border-left: 3px solid var(--accent);
}
.card-green {
  border-left: 3px solid var(--green);
  background: var(--green-light);
}
.card-blue {
  background: var(--blue-light);
  border-left: 3px solid var(--blue);
}

.card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.card p {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}
.card p strong { color: var(--text); }

/* ── Time badges ── */
.time-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-right: 8px;
  margin-bottom: 8px;
}
.time-badge.time { background: var(--sand); color: var(--text); }
.time-badge.free { background: var(--green-light); color: var(--green); }
.time-badge.paid { background: #FFF3E0; color: #BF6C00; }
.time-badge.food { background: #FFF0F0; color: #C44; }
.time-badge.transit { background: var(--blue-light); color: var(--blue); }
.time-badge.warn { background: #FFF3E0; color: #BF6C00; }
.time-badge.confirmed { background: var(--green-light); color: var(--green); border: 1px solid var(--green); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  margin-top: 10px;
  margin-right: 8px;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: white;
  border: 1px solid var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); color: white; }
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--sand-dark);
}
.btn-outline:hover { background: var(--sand); color: var(--text); }

/* ── Photo Layouts ── */
.photo-full {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin: 20px 0;
}
.photo-full img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.photo-grid.triple { grid-template-columns: 1fr 1fr 1fr; }
.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
.photo-caption {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
  font-style: italic;
}

/* ── Hotel Feature Grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--cream);
  border-radius: 8px;
}
.feature-item .icon { font-size: 20px; flex-shrink: 0; }
.feature-item .label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.feature-item .detail {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Day Overview Cards ── */
.day-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.day-card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}
.day-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  color: var(--text);
}
.day-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.day-card-info {
  padding: 16px;
}
.day-card-info .day-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.day-card-info h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}
.day-card-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Budget Table ── */
.budget-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.budget-table th {
  background: var(--text);
  color: white;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.budget-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--sand);
}
.budget-table tr:nth-child(even) td { background: var(--cream); }
.budget-table .price { text-align: right; font-weight: 600; }
.budget-table .total td {
  background: var(--sand);
  font-weight: 700;
  font-size: 15px;
  border-top: 2px solid var(--stone);
}
.budget-table .remaining td {
  background: var(--green-light);
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
}

/* ── Day Spend Summary ── */
.day-total {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 20px;
}
.day-total .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.day-total .row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
  padding: 4px 0;
}
.day-total .total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  border-top: 1px solid var(--sand-dark);
  padding-top: 10px;
  margin-top: 8px;
}

/* ── Restaurant Cards ── */
.resto-card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 12px;
}
.resto-card h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.resto-card .address { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.resto-card .details { font-size: 13px; color: var(--text-light); }
.resto-card .rating {
  display: inline-block;
  background: var(--sand);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-dark);
}

/* ── Checklist ── */
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 10px;
  margin-bottom: 10px;
}
.checklist-item .num {
  background: var(--text);
  color: white;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.checklist-item h4 { font-size: 14px; font-weight: 600; color: var(--text); }
.checklist-item .links { font-size: 12px; margin-top: 4px; }
.checklist-item .cost {
  margin-left: auto;
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
  white-space: nowrap;
}

/* ── Tip/Note ── */
.note {
  background: var(--cream);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-size: 14px;
  color: var(--text-light);
}
.note strong { color: var(--text); }

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid var(--sand);
  margin: 40px 0;
}

/* ── Back Link ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 12px 0;
  text-decoration: none;
}
.back-link:hover { color: var(--text); }

/* ── Footer ── */
footer {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
  font-size: 12px;
  border-top: 1px solid var(--sand);
  background: var(--warm-white);
}
footer .logo {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid.triple { grid-template-columns: 1fr; }
  .photo-grid img { height: 200px; }
  .feature-grid { grid-template-columns: 1fr; }
  .day-cards { grid-template-columns: 1fr; }
  .day-card img { height: 200px; }
  .hero { height: 70vh; min-height: 400px; }
  section { padding: 32px 0; }
}
