:root {
  --ink: #17211f;
  --muted: #5a6763;
  --paper: #f7f4ec;
  --surface: #ffffff;
  --line: rgba(23, 33, 31, 0.14);
  --green: #0e6f58;
  --green-2: #0b5847;
  --gold: #c8912b;
  --red: #b64a3c;
  --blue: #235b7c;
  --shadow: 0 18px 46px rgba(23, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.gate-open,
body.is-denied {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 244, 236, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 0.82rem;
}

.main-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.main-nav a,
.footer-links a {
  text-decoration: none;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--green);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 58px));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero img,
.hero::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero::after {
  content: "";
  background: linear-gradient(90deg, rgba(14, 28, 25, 0.82), rgba(14, 28, 25, 0.48) 52%, rgba(14, 28, 25, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  padding: clamp(70px, 11vw, 150px) clamp(20px, 6vw, 74px) clamp(50px, 7vw, 90px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 11px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3c365;
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.45rem, 5.4vw, 5.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.1vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
}

.hero-actions,
.age-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(14, 111, 88, 0.22);
}

.btn.primary:hover {
  background: var(--green-2);
}

.btn.light {
  color: var(--ink);
  background: #fff;
}

.btn.ghost {
  color: var(--ink);
  background: #ece5d7;
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.section-narrow {
  max-width: 920px;
  margin: 0 auto;
}

.section-head {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-strip,
.comparison-grid,
.preview-grid,
.method-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.feature-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.comparison-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.method-grid,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-tile,
.review-card,
.preview-card,
.method-card,
.faq-card,
.notice,
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(23, 33, 31, 0.08);
}

.info-tile,
.method-card,
.faq-card,
.notice,
.contact-panel {
  padding: 22px;
}

.info-tile strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-2);
}

.review-card {
  padding: 24px;
}

.score {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--green-2);
  font-weight: 900;
}

.score span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
}

.review-card ul,
.method-card ul,
.notice ul,
.legal-list {
  padding-left: 20px;
  margin: 16px 0 0;
  color: var(--muted);
}

.preview-card {
  overflow: hidden;
}

.preview-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.preview-body {
  padding: 18px;
}

.preview-body p,
.review-card p,
.method-card p,
.faq-card p,
.notice p {
  color: var(--muted);
}

.band {
  background: #e8efe8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.site-footer {
  padding: 34px clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  color: #d8e4df;
  background: #17211f;
}

.site-footer p {
  max-width: 760px;
  margin: 8px 0 0;
  color: #aebbb7;
}

.footer-links {
  color: #d8e4df;
  justify-content: flex-end;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 22, 20, 0.74);
}

.age-card {
  width: min(520px, 100%);
  padding: clamp(26px, 5vw, 42px);
  background: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.age-card p {
  color: var(--muted);
}

.denied-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background: #17211f;
  color: #fff;
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 980px) {
  .feature-strip,
  .comparison-grid,
  .preview-grid,
  .method-grid,
  .faq-grid,
  .split,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 680px;
  }

  .feature-strip,
  .comparison-grid,
  .preview-grid,
  .method-grid,
  .faq-grid,
  .split,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
