
:root {
  --bg: #fbfaf5;
  --paper: #ffffff;
  --ink: #202418;
  --muted: #66705c;
  --line: #e8e1d2;
  --green: #2f3f1d;
  --green-2: #465b2b;
  --sand: #e8dcc4;
  --gold: #b59b5b;
  --cream: #f3ead8;
  --shadow: 0 18px 50px rgba(35, 37, 25, .10);
  --radius: 22px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 245, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 225, 210, .85);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border: 1.8px solid var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 23px;
}
.brand span small {
  display: block;
  font-size: 11px;
  letter-spacing: .20em;
  color: var(--muted);
  margin-top: -4px;
}
.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 650;
  font-size: 14px;
}
.menu a { opacity: .88; }
.menu a:hover { opacity: 1; color: var(--green-2); }
.lang {
  display: flex;
  gap: 10px;
  font-size: 13px;
}
.lang a {
  padding: 7px 9px;
  border-radius: 999px;
}
.lang a.active {
  background: var(--sand);
  color: var(--green);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: 9px;
  background: var(--green);
  color: white;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: 0 12px 28px rgba(47, 63, 29, .18);
}
.btn:hover { background: var(--green-2); transform: translateY(-1px); }
.btn.secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
  box-shadow: none;
}

.hero {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  background: #ddd;
}
.hero img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251,250,245,.95) 0%, rgba(251,250,245,.70) 31%, rgba(251,250,245,.10) 60%, rgba(0,0,0,.08) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}
.hero-text {
  max-width: 520px;
}
.kicker {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: .16em;
  font-size: 12px;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  margin: 0;
}
h1 {
  font-size: clamp(48px, 8vw, 88px);
  letter-spacing: -.055em;
}
h2 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -.035em;
}
h3 {
  font-size: 27px;
  letter-spacing: -.02em;
}
.lead {
  font-size: 19px;
  max-width: 520px;
  color: #303526;
  margin: 22px 0 30px;
}

.fact-strip {
  background: linear-gradient(180deg, #fff, #f7f1e6);
  border-bottom: 1px solid var(--line);
}
.facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding: 24px 0;
}
.fact {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 800;
}
.fact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: rgba(255,255,255,.6);
}

.section { padding: 84px 0; }
.split {
  display: grid;
  grid-template-columns: .92fr 1.38fr;
  gap: 64px;
  align-items: center;
}
.text-block p {
  color: #4d5543;
  font-size: 17px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.gallery-side {
  display: grid;
  gap: 14px;
}
.gallery-grid .large { min-height: 420px; }
.gallery-side img { min-height: 203px; }

.benefits {
  background: #f7f1e6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.benefit {
  text-align: center;
}
.benefit .icon {
  font-size: 31px;
  margin-bottom: 10px;
}
.benefit strong {
  display: block;
  margin-bottom: 8px;
}
.benefit p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: .85fr 1.45fr;
  gap: 28px;
  align-items: stretch;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(35,37,25,.06);
}
.quick-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.quick-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(232,225,210,.85);
}
.quick-list li:last-child { border-bottom: 0; }

.cta-card {
  position: relative;
  overflow: hidden;
  color: white;
  min-height: 360px;
  display: flex;
  align-items: center;
}
.cta-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(32,36,24,.85), rgba(32,36,24,.25));
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}
.cta-content p { font-size: 18px; opacity: .92; }

.equipment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.equipment div {
  background: white;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 16px;
  font-weight: 750;
}
.equipment span {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.faq {
  display: grid;
  gap: 12px;
}
details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}
summary {
  cursor: pointer;
  font-weight: 850;
}
details p {
  margin-bottom: 0;
  color: var(--muted);
}

.footer {
  padding: 46px 0;
  background: #202418;
  color: #f9f5ea;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.footer a { color: #f5d98f; }

@media (max-width: 980px) {
  .menu { display: none; }
  .hero, .hero img { min-height: 610px; height: 610px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .split, .cards { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 650px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav { min-height: 68px; }
  .brand span { font-size: 14px; }
  .brand span small { font-size: 9px; }
  .logo-mark { width: 38px; height: 38px; }
  .header .btn { display: none; }
  .hero, .hero img { min-height: 640px; height: 640px; }
  .hero::after { background: linear-gradient(180deg, rgba(251,250,245,.95) 0%, rgba(251,250,245,.80) 43%, rgba(251,250,245,.08) 100%); }
  .hero-content { align-items: flex-start; padding-top: 80px; }
  .lead { font-size: 17px; }
  .facts { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .large, .gallery-side img { min-height: 260px; }
  .benefit-grid, .equipment { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
}
