:root {
  --bg: #eee5d8;
  --panel: rgba(255, 250, 242, 0.82);
  --panel-strong: rgba(35, 28, 24, 0.92);
  --ink: #181411;
  --muted: #6a6057;
  --line: rgba(24, 20, 17, 0.1);
  --accent: #9f442b;
  --accent-deep: #7f2f1d;
  --forest: #30463b;
  --cream: #f8f1e8;
  --shadow: 0 28px 90px rgba(74, 49, 24, 0.16);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 16%, rgba(159, 68, 43, 0.16), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(48, 70, 59, 0.15), transparent 28%),
    linear-gradient(180deg, #efe5d8 0%, #f7f1e8 100%);
  overflow: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='%23000000' fill-opacity='.06'%3E%3Ccircle cx='14' cy='20' r='1'/%3E%3Ccircle cx='54' cy='46' r='1'/%3E%3Ccircle cx='96' cy='28' r='1'/%3E%3Ccircle cx='146' cy='42' r='1'/%3E%3Ccircle cx='28' cy='92' r='1'/%3E%3Ccircle cx='88' cy='102' r='1'/%3E%3Ccircle cx='132' cy='118' r='1'/%3E%3Ccircle cx='44' cy='154' r='1'/%3E%3Ccircle cx='108' cy='148' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.hero-panel {
  width: min(1220px, 100%);
  min-height: min(92vh, 860px);
  border-radius: var(--radius-xl);
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.52), rgba(255,250,242,0.7)),
    radial-gradient(circle at top right, rgba(180, 138, 80, 0.15), transparent 32%);
  border: 1px solid rgba(24, 20, 17, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
}

.topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.brand,
.status {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.48);
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 22px;
  margin-top: 18px;
}

.hero-copy,
.proof-card {
  border-radius: 30px;
}

.hero-copy {
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.proof-label,
.proof-index {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.hero-copy h1,
.proof-item h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin: 16px 0 0;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.92;
  max-width: 9ch;
}

.lede {
  margin: 22px 0 0;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
}

.cta-row {
  margin-top: 28px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: var(--cream);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 20px 36px rgba(127, 47, 29, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(127, 47, 29, 0.34);
}

.benefit-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.benefit-row span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
  color: var(--muted);
  font-size: 13px;
}

.proof-card {
  padding: 18px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(251,244,235,0.82)),
    radial-gradient(circle at top right, rgba(48, 70, 59, 0.12), transparent 36%);
  border: 1px solid rgba(24, 20, 17, 0.08);
}

.proof-block {
  border-radius: 24px;
  padding: 26px;
}

.proof-block.highlight {
  color: #f8f2ea;
  background: linear-gradient(145deg, #2a342f 0%, #3d4b42 46%, #916742 100%);
  position: relative;
  overflow: hidden;
}

.proof-block.highlight::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -24px;
  bottom: -40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.proof-metric {
  margin-top: 10px;
  font-size: clamp(48px, 6vw, 74px);
  font-weight: 800;
  line-height: 0.92;
}

.proof-copy {
  margin: 14px 0 0;
  max-width: 200px;
  color: rgba(248, 242, 234, 0.82);
  line-height: 1.75;
  font-size: 14px;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.54);
  border: 1px solid rgba(24, 20, 17, 0.08);
}

.proof-item h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1;
}

.proof-item p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 1040px) {
  body {
    overflow: auto;
  }

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

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

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .hero-shell {
    padding: 12px;
  }

  .hero-panel {
    padding: 16px;
    border-radius: 24px;
  }

  .topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy {
    padding: 18px 10px 6px;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .proof-card {
    padding: 12px;
  }

  .proof-item {
    grid-template-columns: 1fr;
  }
}
