* {
  box-sizing: border-box;
}

:root {
  --bg: #0e2a20;
  --bg-deep: #081912;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(210, 188, 137, 0.22);
  --gold: #d5b87a;
  --gold-soft: #f0dfb0;
  --text: #f8f4ea;
  --muted: rgba(248, 244, 234, 0.76);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.30);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(80, 130, 94, 0.35), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(213, 184, 122, 0.10), transparent 18%),
    linear-gradient(180deg, #16392d 0%, #0f2b21 42%, #081912 100%);
  min-height: 100vh;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}

.page-shell::before {
  width: 320px;
  height: 320px;
  background: rgba(213, 184, 122, 0.08);
  top: 80px;
  right: -60px;
}

.page-shell::after {
  width: 280px;
  height: 280px;
  background: rgba(102, 170, 124, 0.10);
  bottom: 160px;
  left: -80px;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8, 25, 18, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gold-soft);
}

.menu {
  display: flex;
  gap: 28px;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.96rem;
}

.menu a:hover {
  color: var(--gold-soft);
}

.hero {
  padding: 88px 0 72px;
}

.hero-inner {
  max-width: 920px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid rgba(213, 184, 122, 0.24);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3, .statement p {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
}

h1 {
  margin-top: 24px;
  font-size: clamp(3.3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.lead {
  width: min(760px, 100%);
  margin: 26px auto 0;
  font-size: 1.22rem;
  line-height: 1.75;
  color: var(--muted);
  text-wrap: pretty;
}

.hero-points {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.point {
  padding: 20px 20px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: left;
}

.point-title {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 1rem;
}

.point span:last-child {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 34px;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 18px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8bd86 0%, #f3e1b6 100%);
  color: #102318;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 18px 40px rgba(213, 184, 122, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(213, 184, 122, 0.34);
}

.benefits {
  padding: 34px 0 36px;
}

.section-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 34px;
}

h2 {
  margin-top: 20px;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.05;
  text-wrap: balance;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  min-height: 300px;
  padding: 28px 26px 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.035));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card-index {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: 0.16em;
  margin-bottom: 52px;
}

.card h3 {
  font-size: 2rem;
  line-height: 1.02;
  margin-bottom: 16px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.statement {
  padding: 40px 0 90px;
}

.statement-box {
  padding: 42px 34px;
  border-radius: 30px;
  border: 1px solid rgba(213, 184, 122, 0.24);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  text-align: center;
}

.statement p {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1;
  color: var(--text);
}

@media (max-width: 920px) {
  .hero-points,
  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .menu {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 72px;
  }

  .brand {
    font-size: 1.7rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  .lead {
    font-size: 1.04rem;
    line-height: 1.65;
  }

  .button-primary {
    width: 100%;
    min-width: 0;
  }

  .statement p {
    line-height: 1.08;
  }
}
