:root {
  --bg: #f7f1e8;
  --bg-soft: #efe6d8;
  --surface: #fffdf9;
  --text: #2c2416;
  --muted: #6b5e4e;
  --accent: #c45c26;
  --accent-dark: #9a4318;
  --line: #e4d5c3;
  --shadow: 0 12px 40px rgba(44, 36, 22, 0.08);
  --radius: 18px;
  --max: 1080px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(196, 92, 38, 0.08), transparent 28%),
    linear-gradient(180deg, #fbf7f0 0%, var(--bg) 40%, #f3ebe0 100%);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247, 241, 232, 0.88);
  border-bottom: 1px solid rgba(228, 213, 195, 0.9);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--accent), #e08a4f);
  color: white;
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  box-shadow: 0 8px 20px rgba(196, 92, 38, 0.28);
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.nav a {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
  background: rgba(196, 92, 38, 0.12);
  color: var(--accent-dark);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

.hero-card,
.panel,
.place-card,
.food-card,
.tip-card,
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2.4rem;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 92, 38, 0.16), transparent 70%);
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.lead,
.muted {
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
  max-width: 38rem;
  margin-bottom: 1.5rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 24px rgba(196, 92, 38, 0.28);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.hero-side {
  display: grid;
  gap: 1rem;
}

.weather-card,
.quick-card {
  padding: 1.4rem;
}

.weather-card {
  background:
    linear-gradient(160deg, rgba(196, 92, 38, 0.12), transparent 55%),
    var(--surface);
}

.weather-temp {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  margin: 0.4rem 0;
}

.chip-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chip, .tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 0.85rem;
  border: 1px solid var(--line);
}

.tag {
  background: rgba(196, 92, 38, 0.1);
  color: var(--accent-dark);
  border-color: transparent;
}

.section {
  margin-top: 2.5rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-head p {
  color: var(--muted);
  max-width: 28rem;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
}

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

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

.stat,
.place-card,
.food-card,
.tip-card,
.panel {
  padding: 1.35rem;
}

.stat strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  color: var(--accent-dark);
  margin-bottom: 0.25rem;
}

.place-card,
.food-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.place-card:hover,
.food-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(44, 36, 22, 0.12);
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: start;
}

.icon-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(196, 92, 38, 0.12);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.list li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.55rem;
  color: var(--muted);
}

.list li::before {
  content: "●";
  color: var(--accent);
  font-size: 0.7rem;
  line-height: 1.7;
}

.route {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.route-step {
  padding: 1rem;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px dashed #d8c5ae;
  min-height: 140px;
}

.route-step .num {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.page-hero {
  padding: 2rem;
  margin-bottom: 1.5rem;
  background:
    linear-gradient(135deg, rgba(196, 92, 38, 0.1), transparent 50%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: none;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.note {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.1rem;
  background: rgba(196, 92, 38, 0.08);
  border-radius: 0 14px 14px 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 0;
  position: relative;
  padding-left: 0.25rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  position: relative;
  padding: 0 0 1.25rem 1.25rem;
}

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

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.35rem;
  bottom: -0.15rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(196, 92, 38, 0.15));
}

.timeline-item:last-child::before {
  bottom: 1.2rem;
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #f7f1e8;
  box-shadow: 0 0 0 2px rgba(196, 92, 38, 0.25);
}

.timeline-year {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--accent-dark);
  padding-top: 1.05rem;
  font-size: 1.05rem;
  line-height: 1.2;
}

.timeline-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.35rem;
}

.timeline-card h3 {
  margin-top: 0.35rem;
}

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero,
  .grid-3,
  .grid-2,
  .route,
  .split {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .timeline-year {
    padding-top: 0.2rem;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    max-width: none;
  }
}
