:root {
  --bg: #f6f2e9;
  --surface: #fffdf8;
  --surface-muted: #efe8d9;
  --text: #1f2b1f;
  --muted: #667062;
  --accent: #5f7040;
  --line: #ded5c4;
  --shadow: 0 10px 26px rgba(33, 44, 33, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  background: rgba(20, 26, 20, 0.56);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-row {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.main-nav {
  display: inline-flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.main-nav a:hover { color: #fff; }

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.lang-switcher {
  display: inline-flex;
  gap: 6px;
}

.lang-switcher button {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.lang-switcher button.is-active {
  background: rgba(255, 255, 255, 0.24);
}

.hero {
  margin-top: 0;
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  background: #0f170f;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 1.6s ease;
  background-size: cover;
  background-position: center;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 20, 14, 0.72), rgba(14, 20, 14, 0.28));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  min-height: 90vh;
  display: grid;
  align-content: center;
  max-width: 760px;
  padding-top: 88px;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.hero-content p {
  margin: 14px 0 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.92);
}

.btn {
  margin-top: 20px;
  display: inline-flex;
  width: fit-content;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
}

.btn:hover { background: rgba(255, 255, 255, 0.18); }

.hero-control {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  cursor: pointer;
}

.hero-control.prev { left: 18px; }
.hero-control.next { right: 18px; }

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 8px;
  z-index: 5;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
}

.hero-dot.is-active { background: #fff; }

.section {
  padding: 80px 0;
}

.section-muted {
  background: var(--surface-muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 64ch;
}

.story-line {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.story-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #e8dfcc;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.story-text {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
}

.story-text h3 { margin: 0 0 8px; font-weight: 600; }
.story-text p { margin: 0; color: #3f4d3f; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

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

.card h3 { margin: 0 0 8px; font-weight: 600; }
.card p { margin: 0; color: #435143; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.gallery-item {
  margin: 0;
}

.gallery-loading {
  margin: 0;
  grid-column: 1 / -1;
  color: var(--muted);
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #e6e0cf;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.photo-grid img:hover { transform: translateY(-2px); }


.video-wrap video {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
}

.contact-card h3 { margin: 0 0 8px; font-weight: 600; }
.contact-card p { margin: 0; color: #435143; }

.site-footer {
  background: #121912;
  color: rgba(255, 255, 255, 0.9);
  padding: 22px 0;
  text-align: center;
}

.site-footer p { margin: 0; }

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(17, 20, 15, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1000;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1200px, 95vw);
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

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

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

@media (max-width: 900px) {
  .nav-row {
    min-height: 64px;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(18, 25, 18, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 6px 0;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  .lang-switcher {
    margin-left: auto;
  }

  .hero-content { min-height: 84vh; }
  .lang-switcher button {
    padding: 6px 8px;
    font-size: 0.68rem;
  }

  .hero-control {
    width: 36px;
    height: 36px;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1120px, 94vw);
  }

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    min-height: 80vh;
    padding-top: 74px;
  }

  .hero-content h1 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
    line-height: 1.12;
  }

  .hero-content p {
    margin-top: 10px;
    font-size: 0.96rem;
  }

  .btn {
    margin-top: 14px;
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .story-line { grid-template-columns: 1fr; }
  .story-line.reverse .story-photo { order: 1; }
  .story-line.reverse .story-text { order: 2; }

  .story-photo {
    height: 230px;
  }

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

  .photo-grid img {
    height: 160px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .lang-switcher {
    gap: 4px;
  }

  .lang-switcher button {
    padding: 5px 6px;
    font-size: 0.62rem;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid img {
    height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal.is-visible,
  .hero-slide,
  .photo-grid img {
    transition: none;
    transform: none;
  }
}

