:root {
  --container-max-width: 1240px;
  --frame-padding: 28px;

  --color-dark-green: #1a2e1a;
  --color-deep-green: #2b4a2b;
  --color-forest-green: #3d6b3d;
  --color-light-sage: #9ab89a;
  --color-pale-green: #b8cbb0;
  --color-cream: #f2ede4;
  --color-off-white: #f8f6f2;
  --color-lime: #a8c44a;

  --color-text-dark: #1a2e1a;
  --color-text-body: #2f4130;
  --shadow-soft: 0 18px 40px rgba(26, 46, 26, 0.18);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 14px;

  --logo-w-desktop: 140px;
  --logo-h-desktop: 44px;
  --logo-w-mobile: 120px;
  --logo-h-mobile: 36px;
  --footer-logo-w-desktop: 114px;
  --footer-logo-h-desktop: 38px;
  --footer-logo-w-mobile: 96px;
  --footer-logo-h-mobile: 32px;

  --footer-links-align: center;
  --footer-links-indent: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text-body);
  background: linear-gradient(180deg, var(--color-pale-green), var(--color-light-sage));
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--color-lime);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--color-off-white);
  color: var(--color-text-dark);
  padding: 10px 14px;
  border-radius: 6px;
  z-index: 999;
}
.skip-link:focus { left: 12px; }

.page-frame { padding: var(--frame-padding); }
.container { max-width: var(--container-max-width); margin: 0 auto; padding: 0 20px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #fff;
  color: #1a2e1a;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
}
.btn:hover {
  background: var(--color-lime);
  color: #fff;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--color-cream);
  border-color: rgba(242, 237, 228, 0.32);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-cream);
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 13px;
  color: rgba(26, 46, 26, 0.72);
  margin-bottom: 10px;
}
.section-kicker--light { color: rgba(242, 237, 228, 0.78); }
.section-title {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-text-dark);
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 12px;
}
.section-title--light { color: var(--color-cream); }
.section-subtitle {
  max-width: 760px;
  margin: 0;
  color: rgba(26, 46, 26, 0.72);
  line-height: 1.7;
}

.hero__inner {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 82vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--color-deep-green);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__left { padding: 32px 56px 56px; background: var(--color-deep-green); }
.hero__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  position: relative;
}
.brand { display: inline-flex; align-items: center; }
.brand__logo {
  width: var(--logo-w-desktop);
  height: var(--logo-h-desktop);
  object-fit: contain;
}

.nav {
  justify-self: center;
  min-width: 0;
}
.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.3vw, 20px);
  white-space: nowrap;
}
.nav__link {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  color: rgba(242, 237, 228, 0.93);
  padding: 10px 0;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  height: 1px;
  width: 0;
  background: rgba(242, 237, 228, 0.72);
  transition: width 0.2s ease;
}
.nav__link:hover::after { width: 100%; }

.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}
.lang-switch { display: flex; gap: 6px; }
.lang-btn {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(242, 237, 228, 0.4);
  color: rgba(242, 237, 228, 0.92);
  padding: 7px 10px;
  border-radius: 8px;
  cursor: pointer;
}
.lang-btn.active {
  background: var(--color-lime);
  border-color: var(--color-lime);
  color: #fff;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(242, 237, 228, 0.26);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(242, 237, 228, 0.92);
  cursor: pointer;
}
.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
  position: relative;
}
.nav-toggle__icon::before { position: absolute; top: -6px; left: 0; }
.nav-toggle__icon::after { position: absolute; top: 6px; left: 0; }
.nav-toggle[aria-expanded='true'] .nav-toggle__icon { background: transparent; }
.nav-toggle[aria-expanded='true'] .nav-toggle__icon::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle__icon::after { top: 0; transform: rotate(-45deg); }

.nav.is-collapsible .nav__list {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 30;
  min-width: 230px;
  width: max-content;
  max-width: min(360px, calc(100vw - 24px));
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(26, 46, 26, 0.97);
  border: 1px solid rgba(242, 237, 228, 0.16);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}
.nav.is-collapsible.is-open .nav__list { display: flex; }
.nav.is-collapsible + .header-controls .nav-toggle { display: inline-flex; }

.hero__content { padding-top: 72px; }
.hero__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.08;
  margin: 0 0 18px;
  color: var(--color-cream);
}
.hero__subtitle {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(242, 237, 228, 0.82);
  max-width: 540px;
}

.hero__right { position: relative; }
.hero__image-wrap { position: absolute; inset: 0; }
.hero__image { width: 100%; height: 100%; object-fit: cover; }
.hero__image-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(43, 74, 43, 0.3), rgba(26, 46, 26, 0.08)); }

.features__inner {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--color-dark-green);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
}
.feature-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.feature-card__icon { width: 34px; height: 34px; }
.feature-card__title { margin: 0 0 6px; font-size: 16px; color: #fff; }
.feature-card__text { margin: 0; font-size: 14px; line-height: 1.5; color: rgba(242, 237, 228, 0.78); }

.section--light {
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26, 46, 26, 0.08);
  margin-top: 22px;
  overflow: hidden;
}

.about__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  padding: 60px 20px;
  align-items: center;
}
.about__image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(26, 46, 26, 0.12);
}
.about__content {
  max-width: 560px;
  padding: 18px 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(26, 46, 26, 0.08);
}
.about__content p {
  margin: 0 0 16px;
  line-height: 1.9;
  color: rgba(26, 46, 26, 0.84);
}
.about__content p:last-child { margin-bottom: 0; }
.ornament {
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, rgba(197, 165, 90, 0.9), rgba(168, 196, 74, 0.35));
  border-radius: 2px;
  margin: 14px 0 20px;
}

.mission {
  margin-top: 22px;
  border-radius: var(--radius-md);
  background: var(--color-forest-green);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.mission__inner { padding: 64px 20px; text-align: center; position: relative; }
.mission__mark {
  font-family: var(--font-heading);
  font-size: 96px;
  color: rgba(242, 237, 228, 0.35);
  position: absolute;
  top: 10px;
  left: 18px;
}
.mission__quote {
  margin: 0 auto;
  max-width: 860px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.25;
  color: var(--color-cream);
}
.mission__leaf { width: 120px; height: 2px; margin: 26px auto 0; background: rgba(242, 237, 228, 0.35); }

.stats {
  margin-top: 22px;
  border-radius: var(--radius-md);
  background: var(--color-deep-green);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.stats__inner { padding: 44px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.stat { padding: 22px 18px; text-align: center; border-right: 1px solid rgba(242, 237, 228, 0.12); }
.stat:last-child { border-right: none; }
.stat__value { font-family: var(--font-heading); font-weight: 500; font-size: 46px; color: var(--color-cream); }
.stat__label { margin-top: 8px; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: rgba(154, 184, 154, 0.9); }

.gallery { padding: 56px 0; }
.gallery__grid { margin-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery__item { position: relative; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid rgba(26, 46, 26, 0.1); background: #fff; }
.gallery__item img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.25s ease; }
.gallery__cap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 46, 26, 0);
  color: rgba(242, 237, 228, 0);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}
.gallery__item:hover img { transform: scale(1.03); }
.gallery__item:hover .gallery__cap { background: rgba(26, 46, 26, 0.35); color: rgba(242, 237, 228, 0.92); }

.contact {
  margin-top: 22px;
  border-radius: var(--radius-md);
  background: var(--color-forest-green);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.contact__inner { padding: 56px 20px; text-align: center; }
.contact__grid {
  margin: 26px auto 0;
  max-width: 940px;
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 280px));
  gap: 18px;
  justify-content: center;
  justify-items: center;
  align-items: stretch;
}
.contact__card {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  text-align: left;
}
.contact__title {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.88);
}
.contact__text { margin: 0; line-height: 1.7; color: rgba(242, 237, 228, 0.84); }

.footer {
  margin-top: 22px;
  border-radius: var(--radius-md);
  background: var(--color-dark-green);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.footer__inner {
  padding: 28px 20px 22px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 14px;
  align-items: center;
}
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer__logo {
  width: var(--footer-logo-w-desktop);
  height: var(--footer-logo-h-desktop);
  object-fit: contain;
  border-radius: 10px;
}
.footer__place { font-size: 13px; letter-spacing: 0.4px; text-transform: none; color: rgba(242, 237, 228, 0.78); }
.footer__links {
  display: flex;
  gap: 18px;
  justify-content: var(--footer-links-align);
  flex-wrap: wrap;
  padding-left: var(--footer-links-indent);
}
.footer__link { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: rgba(242, 237, 228, 0.78); padding: 8px 0; }
.footer__copy { text-align: right; color: rgba(242, 237, 228, 0.7); }
.footer__line { height: 1px; width: 100%; background: rgba(255, 255, 255, 0.1); margin-bottom: 8px; }
.back-to-top {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(242, 237, 228, 0.92);
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 90;
  border-radius: 12px;
  border: 1px solid rgba(242, 237, 228, 0.22);
  background: rgba(26, 46, 26, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  padding: 16px 18px;
  color: var(--color-cream);
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner__title {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.cookie-banner__text {
  margin: 0;
  color: rgba(242, 237, 228, 0.88);
  line-height: 1.6;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.cookie-btn { min-height: 42px; }

.cookie-settings-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 88;
  border: 1px solid rgba(242, 237, 228, 0.24);
  background: rgba(26, 46, 26, 0.96);
  color: var(--color-cream);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: none;
  cursor: pointer;
}
.cookie-settings-btn.is-visible { display: inline-flex; }

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 94;
  background: rgba(0, 0, 0, 0.35);
  display: none;
}
.cookie-overlay.is-open { display: block; }

.cookie-panel {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100vw - 32px));
  z-index: 95;
  border-radius: 12px;
  border: 1px solid rgba(242, 237, 228, 0.2);
  background: rgba(26, 46, 26, 0.99);
  color: var(--color-cream);
  padding: 18px;
  display: none;
}
.cookie-panel.is-open { display: block; }
.cookie-panel__title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.2;
}
.cookie-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: rgba(242, 237, 228, 0.9);
}
.cookie-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

@media (max-width: 1024px) {
  :root { --frame-padding: 18px; }
  .hero__inner { grid-template-columns: 1fr; min-height: 0; }
  .hero__right { height: 50vh; }
  .hero__image-wrap { position: relative; height: 100%; }
  .hero__left { padding: 24px 26px 40px; }
  .hero__content { padding-top: 30px; }
  .hero__title { font-size: 54px; }

  .about__inner { grid-template-columns: 1fr; padding: 44px 20px; }
  .about__image { height: 420px; }
  .about__content { max-width: none; padding: 16px; }

  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(242, 237, 228, 0.12); }
  .stat:nth-last-child(-n + 2) { border-bottom: none; }

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

  .footer__inner { grid-template-columns: 1fr; text-align: left; }
  .footer__copy { text-align: left; }
  .footer__links { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .brand__logo {
    width: var(--logo-w-mobile);
    height: var(--logo-h-mobile);
  }

  .nav {
    justify-self: end;
  }
  .nav .nav__list {
    display: none;
  }
  .nav.is-collapsible .nav__list,
  .nav.is-collapsible.is-open .nav__list {
    right: 0;
    left: auto;
    width: 33vw;
    min-width: 160px;
    max-width: 280px;
  }
  .nav.is-collapsible + .header-controls .nav-toggle {
    display: inline-flex;
  }

  .lang-btn {
    padding: 6px 9px;
    font-size: 10px;
  }

  .hero__title { font-size: 42px; }
  .features__inner { grid-template-columns: 1fr; }
  .mission__quote { font-size: 34px; }
  .gallery__grid { grid-template-columns: 1fr; }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 620px;
    justify-items: center;
  }
  .contact__card { max-width: 560px; padding: 16px; }

  .footer__inner {
    text-align: center;
  }
  .footer__brand {
    align-items: center;
    justify-content: center;
  }
  .footer__meta {
    text-align: center;
  }
  .footer__links {
    justify-content: center !important;
    padding-left: 0;
  }
  .footer__copy {
    text-align: center;
  }
  .footer__logo {
    width: var(--footer-logo-w-mobile);
    height: var(--footer-logo-h-mobile);
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 14px;
  }
  .cookie-banner__title { font-size: 22px; }
  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cookie-settings-btn {
    right: 10px;
    bottom: 10px;
  }
}
