:root {
  --bg: #f7f4ef;
  --ink: #1f2421;
  --muted: #5a625d;
  --primary: #9a3412;
  --primary-soft: #f2c7a4;
  --surface: #fffdf8;
  --surface-alt: #efe5d8;
  --line: #e4d7c5;
  --shadow: 0 18px 40px rgba(58, 33, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: radial-gradient(circle at 15% 20%, #fff3e7 0%, var(--bg) 42%),
    linear-gradient(180deg, #fbf8f2 0%, #f3eee4 100%);
  color: var(--ink);
  line-height: 1.65;
}

h1,
h2,
h3 {
  font-family: "Noto Serif SC", "Songti SC", serif;
  letter-spacing: 0.01em;
  margin: 0;
}

p {
  margin: 0;
}

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

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.hero {
  min-height: 92vh;
  color: #fff7ed;
  background: linear-gradient(120deg, rgba(64, 30, 8, 0.86), rgba(115, 44, 11, 0.72)),
    radial-gradient(circle at 75% 35%, rgba(255, 191, 120, 0.2), transparent 50%),
    linear-gradient(180deg, #70310f 0%, #4b2109 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -130px;
  height: 260px;
  background: linear-gradient(180deg, rgba(255, 205, 153, 0.18), rgba(255, 247, 237, 0));
  transform: rotate(-4deg);
}

.nav {
  width: min(1080px, 92vw);
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.menu {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.menu a {
  padding: 8px 10px;
  border-radius: 999px;
  transition: background-color 220ms ease;
}

.menu a:hover,
.menu a:focus-visible {
  background-color: rgba(255, 237, 213, 0.2);
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 237, 213, 0.5);
  color: #fff7ed;
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 0 120px;
  animation: rise 700ms ease;
}

.tag {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid rgba(255, 233, 206, 0.42);
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.hero h1 {
  max-width: 16ch;
  font-size: clamp(2rem, 4.8vw, 3.7rem);
  line-height: 1.16;
  margin-bottom: 18px;
}

.hero p {
  max-width: 58ch;
  color: #ffedd5;
  font-size: 1.02rem;
}

.cta {
  margin-top: 28px;
  display: inline-block;
  background: #ffe0c1;
  color: #5f2405;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(21, 11, 4, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(21, 11, 4, 0.34);
}

.section {
  padding: 76px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(241, 228, 210, 0.56), rgba(245, 236, 224, 0.76));
}

.section h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
}

.scenic {
  position: relative;
  overflow: hidden;
}

.scenic::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -48px;
  top: -44px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 174, 118, 0.52) 0%, rgba(243, 174, 118, 0) 68%);
}

.timeline {
  display: grid;
  gap: 20px;
  border-left: 3px solid #d5be9f;
  padding-left: 20px;
}

.timeline article {
  position: relative;
  background: #fffdf9;
  border: 1px solid #eadcc8;
  border-radius: 14px;
  padding: 16px 18px;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b45309;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.chips span {
  border: 1px solid #d4b793;
  background: #fff8ee;
  color: #6b2f08;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.92rem;
}

.food-note {
  color: #4d4338;
  max-width: 68ch;
}

.footer {
  border-top: 1px solid #ead8c2;
  background: #f6ecde;
}

.footer-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.92rem;
  color: #574c40;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .grid.three {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-flex;
  }

  .menu {
    position: absolute;
    right: 4vw;
    top: 68px;
    width: min(240px, 86vw);
    flex-direction: column;
    gap: 4px;
    background: rgba(61, 27, 8, 0.96);
    border: 1px solid rgba(255, 236, 214, 0.2);
    border-radius: 14px;
    padding: 10px;
    display: none;
    z-index: 10;
  }

  .menu.open {
    display: flex;
  }

  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 76px 0 96px;
  }

  .section {
    padding: 62px 0;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
  }
}
