:root {
  --bg: #f4f1e8;
  --paper: #fdfaf3;
  --ink: #1f2b1f;
  --muted: #5d6859;
  --forest: #2f5d39;
  --forest-soft: #4f7c52;
  --clay: #b86b38;
  --moss: #7f9a45;
  --line: #d7cfbc;
  --shadow: 0 16px 40px rgba(20, 37, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(184, 107, 56, 0.14), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(127, 154, 69, 0.18), transparent 36%),
    linear-gradient(180deg, #efe9d8 0%, #f7f4ec 42%, #f1ede2 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 76px;
}

main {
  flex: 1 0 auto;
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 1;
}

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.text-link-inherit {
  color: inherit;
  text-decoration-color: currentColor;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  min-width: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(7px);
  background: rgba(253, 250, 243, 0.82);
  border-bottom: 1px solid rgba(79, 124, 82, 0.2);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  line-height: 1.1;
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  letter-spacing: 0.3px;
}

.brand span {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  align-items: center;
  gap: 0.5rem;
}

.hamburger-icon {
  display: inline-grid;
  gap: 4px;
}

.hamburger-icon span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 1.08rem;
}

nav a:hover,
nav a:focus-visible {
  color: var(--forest);
}

nav a.is-active {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  color: var(--forest);
}

.lang {
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  font-weight: 500;
  margin-left: 0.55rem;
}

.hero {
  position: relative;
  padding: 8rem 0 6rem;
  min-height: 72vh;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(14, 22, 14, 0.42) 0%, rgba(18, 28, 18, 0.34) 55%, rgba(12, 20, 12, 0.44) 100%);
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 1.5s ease, opacity 1.5s ease;
  will-change: transform, opacity;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide.to-right {
  transform: translateX(100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.kicker {
  margin: 0 0 0.75rem;
  color: #f4faef;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: clamp(0.86rem, 1.3vw, 1.05rem);
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.3rem, 8.8vw, 6.8rem);
  line-height: 1.06;
  color: #fff;
  text-shadow: 0 10px 28px rgba(6, 12, 7, 0.52);
}

.hero p {
  margin: 1.05rem 0 0;
  color: #f8fcf4;
  max-width: 72ch;
  font-size: clamp(1.06rem, 1.7vw, 1.34rem);
  line-height: 1.72;
  text-shadow: 0 6px 18px rgba(6, 12, 7, 0.5);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.7rem 1.05rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-main {
  background: linear-gradient(120deg, var(--forest) 0%, #3f794f 100%);
  color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(247, 255, 244, 0.24);
}

.btn-soft {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(15, 24, 16, 0.44);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 30px rgba(7, 13, 8, 0.28);
}

.landscape {
  display: none;
}

.landscape::before,
.landscape::after {
  display: none;
}

.landscape::before {
  display: none;
}

.landscape::after {
  display: none;
}

.hill {
  display: none;
}

.hill.h1 {
  display: none;
}

.hill.h2 {
  display: none;
}

section {
  padding: 4.2rem 0;
}

section[id] {
  scroll-margin-top: 110px;
}

section h2 {
  margin: 0 0 0.9rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.13;
}

.section-note {
  margin: 0 0 1.8rem;
  color: var(--muted);
  max-width: 70ch;
  font-size: 1.05rem;
}

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

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

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

.card {
  background: var(--paper);
  border: 0;
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: 0 10px 26px rgba(31, 43, 31, 0.10);
  min-width: 0;
  overflow-wrap: anywhere;
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.06rem;
}

.card p {
  margin: 0;
  color: #435043;
  font-size: 1.04rem;
}

.badge {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.highlight {
  border-left: 4px solid var(--clay);
  padding-left: 1rem;
}

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

.fact {
  background: #f8f4e8;
  border: 1px solid #ddd3b9;
  border-radius: 16px;
  padding: 0.9rem;
}

.fact strong {
  display: block;
  font-size: 1.4rem;
  color: var(--forest);
  line-height: 1.1;
}

.fact span {
  color: #4e5d4e;
  font-size: 0.95rem;
}

.path-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-list li {
  background: #f9f7ef;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem;
}

.path-list strong {
  display: block;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
}

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.gallery figcaption {
  font-size: 1rem;
  color: #4a584a;
  padding: 0.7rem 0.8rem 0.85rem;
}

.gallery-author {
  margin: 0.75rem 0 0;
  text-align: right;
  font-size: 0.95rem;
  color: #5b6758;
}

.gallery-author a {
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
}

.sources {
  font-size: 1rem;
  color: #475446;
}

.sources li + li {
  margin-top: 0.4rem;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
}

.faq details + details {
  margin-top: 0.6rem;
}

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

.footer {
  position: sticky;
  top: 0;
  z-index: 90;
  border-top: 1px solid rgba(79, 124, 82, 0.3);
  padding: 1rem 0 1.4rem;
  color: #4b574b;
  font-size: 1rem;
  background: rgba(253, 250, 243, 0.94);
  backdrop-filter: blur(6px);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer a {
  margin-right: 0.8rem;
  overflow-wrap: anywhere;
  font-size: 1rem;
}

.footer-note {
  margin: 0.5rem 0 0;
  color: #4f5c4e;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: start;
}

.about-photo {
  margin: 0;
  background: var(--paper);
  border-radius: 18px;
  aspect-ratio: fit-content;
  padding: 0.9rem;
  border: 1px solid #d8cfbb;
  box-shadow: 0 10px 26px rgba(31, 43, 31, 0.1);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f6f2e8;
  border-radius: 12px;
}

.img-cursor-tooltip {
  position: fixed;
  z-index: 1200;
  pointer-events: none;
  transform: translate(14px, 12px);
  background: rgba(24, 33, 24, 0.92);
  color: #f5f9ef;
  border: 1px solid rgba(228, 239, 220, 0.25);
  border-radius: 10px;
  padding: 0.42rem 0.58rem;
  font-size: 0.88rem;
  line-height: 1.25;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.img-cursor-tooltip.is-visible {
  opacity: 1;
}

@media (hover: none), (pointer: coarse) {
  .img-cursor-tooltip {
    display: none !important;
  }
}

p,
li,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .grid-2,
  .about-layout {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 760px) {
  .menu-btn {
    display: inline-flex;
    width: 56px;
    height: 48px;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .menu-btn .menu-label {
    display: none;
  }

  .menu-btn .hamburger-icon {
    gap: 6px;
  }

  .menu-btn .hamburger-icon span {
    width: 28px;
    height: 3px;
  }

  nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 0.85rem;
    box-shadow: var(--shadow);
    width: 100%;
    display: none;
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .hero {
    padding-top: 4.2rem;
    min-height: 64vh;
  }

  .hero .cta-row {
    margin-top: 2.1rem;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 16vw, 7.4rem);
    line-height: 1;
  }

  .grid-3,
  .facts,
  .gallery {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
