:root {
  --bg: #f5efe6;
  --bg-soft: #ede1cf;
  --surface: rgba(255, 250, 242, 0.84);
  --ink: #241914;
  --muted: #645247;
  --line: rgba(36, 25, 20, 0.12);
  --accent: #8a5a36;
  --accent-dark: #5f3920;
  --forest: #27352f;
  --shadow: 0 20px 60px rgba(25, 16, 12, 0.16);
  --radius: 24px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(20, 14, 10, 0.62), rgba(20, 14, 10, 0));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: grid;
  gap: 2px;
  color: #fff8f1;
}

.brand-kicker,
.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: rgba(255, 248, 241, 0.92);
  font-size: 0.95rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
}

.language-switcher select {
  appearance: none;
  border: 1px solid rgba(255, 248, 241, 0.28);
  background: rgba(255, 248, 241, 0.12);
  color: #fff8f1;
  border-radius: 999px;
  padding: 10px 38px 10px 14px;
  font: inherit;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.language-switcher::after {
  content: "▾";
  color: #fff8f1;
  margin-left: -28px;
  pointer-events: none;
  font-size: 0.85rem;
}

.language-switcher option {
  color: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end start;
  overflow: hidden;
  background: #1f1712;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(17, 11, 8, 0.3) 0%, rgba(17, 11, 8, 0.5) 46%, rgba(17, 11, 8, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff8f1;
  padding: 140px 0 96px;
  max-width: 760px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 6.7rem);
  margin-top: 14px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  font-size: 1.8rem;
}

p {
  margin: 0;
}

.hero-text {
  margin-top: 20px;
  max-width: 620px;
  font-size: 1.1rem;
  color: rgba(255, 248, 241, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: #fff8f1;
  color: var(--accent-dark);
}

.button-secondary {
  border-color: rgba(255, 248, 241, 0.35);
  color: #fff8f1;
  background: rgba(255, 248, 241, 0.08);
  backdrop-filter: blur(10px);
}

.section {
  padding: 96px 0;
}

.section-warm {
  background: linear-gradient(180deg, var(--bg-soft), #efe5d7);
}

.section-dark {
  background: var(--forest);
  color: #f4ecdf;
}

.intro-grid,
.split,
.scenic-grid,
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
}

.intro-grid p + p,
.stack p + p {
  margin-top: 16px;
}

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

.facts {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.facts div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.facts strong {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card-image img {
  height: 100%;
  object-fit: cover;
}

.framed {
  border: 10px solid rgba(255, 248, 241, 0.58);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section-heading.light,
.light .section-kicker {
  color: #f4ecdf;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.experience-card {
  background: var(--surface);
  border: 1px solid rgba(36, 25, 20, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.experience-card img {
  aspect-ratio: 1.1 / 0.9;
  object-fit: cover;
}

.experience-card div {
  padding: 22px;
}

.experience-card p {
  margin-top: 10px;
  color: var(--muted);
}

.scenic-band {
  background: linear-gradient(180deg, #efe7da 0%, #f7f1e8 100%);
}

.tall {
  min-height: 560px;
}

.scenic-copy {
  max-width: 560px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid img {
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  border-radius: 20px;
}

.visit-card,
.visit-note {
  background: rgba(255, 250, 242, 0.76);
  border: 1px solid rgba(36, 25, 20, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.visit-note {
  background: #e9dcc8;
}

.visit-card p + p,
.visit-note p {
  margin-top: 14px;
}

@media (max-width: 980px) {
  .intro-grid,
  .split,
  .scenic-grid,
  .visit-grid,
  .experience-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-group {
    margin-left: auto;
  }

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

  .tall {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .nav {
    padding: 16px 0;
    align-items: flex-start;
  }

  .nav-group {
    flex-direction: column;
    align-items: flex-end;
  }

  .language-switcher select {
    font-size: 0.9rem;
    padding: 9px 34px 9px 12px;
  }

  .hero-content {
    padding-top: 120px;
  }

  .brand-name {
    font-size: 1.4rem;
  }

  .visit-card,
  .visit-note,
  .experience-card div {
    padding: 22px;
  }
}
