:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --ink: #20211f;
  --muted: #666961;
  --line: #ded8ca;
  --green: #214a3b;
  --green-soft: #e5eee9;
  --wine: #7c2f34;
  --gold: #b98a42;
  --shadow: 0 14px 36px rgba(32, 33, 31, 0.08);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

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

a:hover {
  color: var(--wine);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner,
.section,
.footer-inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.brand {
  display: grid;
  gap: 0;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand span {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.site-nav {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: block;
}

.site-nav ul {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 14px 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a[aria-current="page"] {
  color: var(--green);
  font-weight: 700;
}

.site-nav .language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav .language-switcher a {
  padding: 4px 0;
}

.site-nav .language-switcher [aria-current="true"] {
  color: var(--green);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #121513;
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  opacity: 0.7;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 21, 19, 0.24), rgba(18, 21, 19, 0.78));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 120px 0 56px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 9vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 5vw, 2.45rem);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.88);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  font-weight: 700;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: var(--green);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.section {
  padding: 64px 0;
}

.section.compact {
  padding-top: 28px;
}

.page-hero {
  background: var(--green);
  color: #fff;
}

.page-hero .section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.86);
}

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

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

.panel {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.panel.featured {
  border-color: rgba(33, 74, 59, 0.28);
  box-shadow: var(--shadow);
}

.kicker {
  color: var(--wine);
  font-size: 0.84rem;
  font-weight: 800;
}

.list {
  padding-left: 1.1rem;
  margin: 0;
}

.list li + li {
  margin-top: 8px;
}

.band {
  background: var(--green-soft);
  border-block: 1px solid #d1e0d8;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 48px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.faq details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-strip {
  background: var(--ink);
  color: #fff;
}

.contact-strip .lead,
.contact-strip p {
  color: rgba(255, 255, 255, 0.78);
}

.map-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 24px;
  border: 1px dashed #9b927f;
  border-radius: var(--radius);
  background: #f1eee7;
  color: var(--muted);
  text-align: center;
}

.media-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

.media-item {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.media-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-item picture {
  display: block;
}

.media-item figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  background: #141615;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
  color: #fff;
}

@media (min-width: 760px) {
  .grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 1180px) {
  .header-inner {
    width: min(100% - 32px, 1320px);
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    position: static;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    width: auto;
    padding: 0;
  }

  .site-nav a {
    padding: 6px 0;
    font-size: 0.84rem;
  }

  .site-nav .language-switcher {
    gap: 6px;
    margin-top: 0;
    padding-top: 0;
    padding-left: 12px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }
}

@media (min-width: 1020px) {
  .section {
    padding: 82px 0;
  }

  .hero-content {
    padding-bottom: 74px;
  }

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