:root {
  --bg: #f7f4eb;
  --white: #ffffff;
  --green-dark: #10392f;
  --green: #1b5a49;
  --gold: #c8a24a;
  --gold-soft: #e7d19a;
  --text: #24332f;
  --muted: #68746f;
  --line: rgba(16, 57, 47, 0.1);
  --shadow: 0 20px 45px rgba(16, 57, 47, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.hero {
  background:
    radial-gradient(circle at top right, rgba(231, 209, 154, 0.35), transparent 30%),
    linear-gradient(135deg, #f8f5ed 0%, #f1ecdf 100%);
  padding-bottom: 56px;
}

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

.brand-mini {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  padding: 32px 0 24px;
}

.eyebrow, .section-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 18px;
  color: var(--green-dark);
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.02;
}

h2 { font-size: clamp(1.9rem, 3vw, 3rem); line-height: 1.15; }
h3 { font-size: 1.35rem; }

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 60ch;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-secondary, .btn-outline {
  color: var(--green-dark);
  border: 1px solid rgba(16, 57, 47, 0.16);
  background: rgba(255,255,255,0.7);
}

.hero-card {
  background: linear-gradient(180deg, #173f34 0%, #0f2f27 100%);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: min(100%, 460px);
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.28));
}

.section { padding: 88px 0; }
.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
}
.band {
  background: linear-gradient(180deg, #10392f 0%, #134437 100%);
  color: rgba(255,255,255,0.88);
}
.band h2, .band h3, .band .section-label { color: #fff; }
.center { text-align: center; }
.narrow { max-width: 760px; margin-inline: auto; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}
.card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(4px);
}

.split-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.highlight-box,
.quote-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.feature-list {
  padding-left: 20px;
  margin: 0;
}
.feature-list li { margin-bottom: 12px; }
blockquote {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.35;
  color: var(--green-dark);
}

.footer {
  background: #0f2f27;
  color: rgba(255,255,255,0.82);
  padding: 42px 0;
}
.footer h3 { color: #fff; font-size: 1.6rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .cards,
  .split-highlight,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card { min-height: auto; }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  border: 1px solid rgba(16, 57, 47, 0.14);
  background: rgba(255,255,255,0.58);
  color: var(--green-dark);
  border-radius: 999px;
  height: 40px;
  min-width: 40px;
  padding: 0 12px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.lang-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.82);
  border-color: rgba(16, 57, 47, 0.22);
}
