:root {
  --ink: #14213d;
  --muted: #5f6f89;
  --sand: #f8efe0;
  --sand-2: #fff8ed;
  --gold: #f4a261;
  --gold-dark: #dc7d2e;
  --aqua: #24b7c8;
  --navy: #071a35;
  --white: #ffffff;
  --card: #ffffff;
  --line: #e9ddc9;
  --shadow: 0 24px 70px rgba(20,33,61,.12);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf2 0%, #fff 45%, #f8fbff 100%);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(255,250,242,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(233,221,201,.75);
}
.brand { flex: 0 0 auto; }
.main-nav { display: flex; gap: 24px; font-weight: 700; color: var(--muted); font-size: 14px; }
.main-nav a:hover, .main-nav a:focus { color: var(--gold-dark); }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta { background: var(--ink); color: var(--white); font-size: 14px; }
.nav-cta:hover, .btn:hover { transform: translateY(-2px); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 106px) clamp(18px, 4vw, 64px) 42px;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  color: var(--gold-dark);
  background: rgba(244,162,97,.13);
  border: 1px solid rgba(244,162,97,.28);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: -.035em; }
h1 { font-size: clamp(42px, 7vw, 82px); max-width: 900px; }
h2 { font-size: clamp(30px, 4vw, 54px); }
h3 { font-size: 22px; }
.lead { font-size: clamp(18px, 2vw, 22px); color: var(--muted); max-width: 720px; margin: 24px 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 22px; }
.btn.primary { background: linear-gradient(135deg, var(--gold), #f7c46a); color: #241505; box-shadow: 0 14px 35px rgba(244,162,97,.32); }
.btn.secondary { border: 1px solid var(--line); background: var(--white); color: var(--ink); }
.trust-list { display: flex; gap: 16px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; color: var(--muted); font-weight: 700; }
.trust-list li::before { content: "✓"; color: var(--aqua); margin-right: 8px; font-weight: 900; }
.hero-card {
  padding: 22px;
  border-radius: 36px;
  background: radial-gradient(circle at 30% 10%, rgba(36,183,200,.24), transparent 34%), linear-gradient(135deg, #071a35, #16406f 58%, #e99545);
  box-shadow: var(--shadow);
}
.quick-search, .section, .cta-section { margin: 0 clamp(18px, 4vw, 64px); }
.quick-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.quick-search h2 { font-size: clamp(24px, 3vw, 34px); margin-top: 12px; }
.chips { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.chips a { padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); font-weight: 800; background: var(--sand-2); }
.section { padding: clamp(64px, 8vw, 108px) 0; }
.section-head { max-width: 820px; margin-bottom: 34px; }
.section-head h2 { margin-top: 14px; }
.section-head p { color: var(--muted); font-size: 18px; }
.spot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.spot-card, .itinerary-grid article, .tips-grid div, .strategy-list div, details {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(20,33,61,.07);
}
.spot-card.featured { background: linear-gradient(160deg, #fff8ed, #ffffff); }
.spot-card img { width: 54px; height: 54px; margin-bottom: 18px; }
.spot-card p, .itinerary-grid p, .tips-grid p, .strategy-list p, details p { color: var(--muted); margin-bottom: 0; }
.spot-card a { display: inline-flex; margin-top: 18px; color: var(--gold-dark); font-weight: 900; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.check-list { padding: 0; margin: 26px 0 0; list-style: none; display: grid; gap: 12px; }
.check-list li { padding: 13px 16px; background: var(--sand-2); border: 1px solid var(--line); border-radius: 16px; font-weight: 800; }
.check-list li::before { content: "✦"; color: var(--gold-dark); margin-right: 10px; }
.panel { border-radius: 34px; padding: 28px; background: var(--sand-2); border: 1px solid var(--line); }
.image-panel { background: linear-gradient(160deg, #e7fbff, #fff4df); }
.alt { background: linear-gradient(180deg, rgba(248,239,224,.58), rgba(255,255,255,.3)); border-radius: 34px; padding-left: clamp(18px, 4vw, 48px); padding-right: clamp(18px, 4vw, 48px); }
.timeline { display: grid; gap: 16px; }
.timeline-item { display: grid; grid-template-columns: 230px 1fr; gap: 20px; border-left: 4px solid var(--gold); background: var(--white); padding: 20px; border-radius: 18px; box-shadow: 0 8px 26px rgba(20,33,61,.07); }
.timeline-item span { color: var(--muted); }
.itinerary-grid, .tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.itinerary-grid article span { color: var(--gold-dark); font-weight: 900; text-transform: uppercase; font-size: 13px; }
.dark-panel { background: linear-gradient(150deg, var(--navy), #13315c); color: var(--white); border: 0; }
.dark-panel p { color: rgba(255,255,255,.74); }
.strategy-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tips-grid { grid-template-columns: repeat(4, 1fr); }
.faq { max-width: 980px; }
details { margin-bottom: 12px; }
summary { cursor: pointer; font-size: 18px; font-weight: 900; }
.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(34px, 6vw, 62px);
  margin-bottom: 64px;
  border-radius: 36px;
  color: var(--white);
  background: radial-gradient(circle at 15% 20%, rgba(244,162,97,.42), transparent 28%), linear-gradient(135deg, #071a35, #173b68);
}
.cta-section p { color: rgba(255,255,255,.75); max-width: 820px; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 42px clamp(18px, 4vw, 64px);
  background: var(--navy);
  color: var(--white);
}
.site-footer p { color: rgba(255,255,255,.68); max-width: 520px; }
.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; align-content: flex-start; color: rgba(255,255,255,.78); font-weight: 800; }
@media (max-width: 980px) {
  .main-nav { display: none; }
  .hero, .split { grid-template-columns: 1fr; }
  .spot-grid, .itinerary-grid, .tips-grid { grid-template-columns: 1fr 1fr; }
  .quick-search, .cta-section, .site-footer { flex-direction: column; align-items: flex-start; }
  .chips { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .spot-grid, .itinerary-grid, .tips-grid, .strategy-list { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  h1 { font-size: 40px; }
}
