@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,500;0,6..72,650;1,6..72,500&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --ink: #241c16;
  --ink-soft: #5e5248;
  --line: #e6d8c8;
  --paper: #f6f1e8;
  --white: #fffdf9;
  --sand: #efe4d4;
  --accent: #8d3b2c;
  --accent-dark: #6b2a1f;
  --font-display: 'Newsreader', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --max: 1080px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.site-header::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #c47a4a 70%, var(--sand));
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.4rem;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo span {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.menu {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.menu a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.menu a:hover,
.menu a.is-active {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.05rem;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(36, 28, 22, 0.55) 0%, rgba(36, 28, 22, 0.18) 55%, rgba(36, 28, 22, 0.35) 100%);
}

.hero__copy {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, 34rem);
  margin: 4.5rem 6vw;
  padding: 2.2rem 2rem 2rem;
  background: rgba(255, 253, 249, 0.94);
  border-radius: 0 1.4rem 1.4rem 0;
  border-left: 5px solid var(--accent);
  box-shadow: 0 24px 50px rgba(36, 28, 22, 0.16);
  color: var(--ink);
  animation: rise 0.8s var(--ease) both;
}

.hero__brand {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.hero__text {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: 1.4rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline {
  background: var(--white);
  color: var(--accent);
  border-color: var(--line);
}

.block {
  padding: 4.5rem 0;
}

.block--alt {
  background: var(--white);
}

.block--sky {
  background: var(--sand);
}

.eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.9rem;
  max-width: 16ch;
}

.heading--wide {
  max-width: 22ch;
}

.lede {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 42rem;
  margin-bottom: 0.8rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.75rem;
  align-items: center;
}

.split--flip {
  grid-template-columns: 0.95fr 1.05fr;
}

.media-frame {
  overflow: hidden;
  border-radius: 1.2rem 0.2rem 1.2rem 0.2rem;
  box-shadow: 0 16px 36px rgba(36, 28, 22, 0.1);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.4rem;
}

.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.35rem 1.25rem;
}

.feature h3,
.grid-3 h3,
.panel h3,
.stack-item h3 {
  font-family: var(--font-display);
  font-weight: 650;
}

.feature h3,
.grid-3 h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.feature p,
.grid-3 p,
.panel p,
.stack-item p {
  color: var(--ink-soft);
}

.stack {
  margin-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.stack-item {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: 1.1rem;
  padding: 1.35rem 0 1.35rem 1rem;
  border-bottom: 1px solid var(--line);
  border-left: 2px solid transparent;
}

.stack-item:hover {
  border-left-color: var(--accent);
}

.stack-item h3 {
  font-size: 1.2rem;
  color: var(--accent-dark);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.8rem;
}

.grid-3 article {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--line);
}

.block--alt .grid-3 article {
  background: var(--paper);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin-top: 1.8rem;
}

.panel {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.3rem 1.25rem;
  border: 1px solid var(--line);
}

.panel h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.cta-band {
  text-align: center;
  padding: 4.25rem 0;
}

.cta-band .heading,
.cta-band .lede {
  margin-inline: auto;
}

.page-hero {
  padding: 4.2rem 0 2.4rem;
  background:
    radial-gradient(ellipse at top right, rgba(141, 59, 44, 0.1), transparent 50%),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero .heading {
  max-width: 18ch;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 650;
  margin: 2rem 0 0.6rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.help-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

.form {
  display: grid;
  gap: 0.85rem;
  max-width: 34rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 600;
}

.form input,
.form textarea,
.form select {
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 0.75rem 0.85rem;
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-note {
  display: none;
  color: var(--accent-dark);
  font-weight: 500;
}

.form-note.is-visible {
  display: block;
}

.site-footer {
  background: #2a211b;
  color: #f3eadf;
  padding: 2.4rem 0 1.6rem;
}

.rg-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.1rem;
  margin-bottom: 1.6rem;
  border: 1px solid rgba(243, 234, 223, 0.18);
  border-radius: 0.85rem;
  background: rgba(255, 253, 249, 0.05);
}

.rg-bar strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.rg-bar p {
  color: #e7d8c8;
  font-size: 0.92rem;
}

.rg-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.4rem 2rem;
  align-items: start;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(243, 234, 223, 0.14);
}

.site-footer .logo {
  color: #fffdf9;
  display: inline-block;
  margin-bottom: 0.45rem;
}

.site-footer .logo span {
  color: #e7b4a4;
}

.site-footer p {
  color: #cbbbaa;
  font-size: 0.9rem;
  max-width: 28rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.15rem;
  max-width: 28rem;
}

.footer-links a {
  font-size: 0.86rem;
  color: #f3eadf;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-copy {
  margin-top: 1rem;
  font-size: 0.8rem !important;
}

.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(36, 28, 22, 0.5);
  backdrop-filter: blur(5px);
}

.age-overlay[hidden] {
  display: none;
}

.age-box {
  width: min(100%, 420px);
  background: var(--white);
  border-radius: 1.1rem;
  padding: 2rem 1.7rem;
  text-align: center;
  border-top: 5px solid var(--accent);
  box-shadow: 0 24px 60px rgba(36, 28, 22, 0.2);
}

.age-box h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.6rem;
}

.age-box p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.age-box .btn {
  width: 100%;
  margin-bottom: 0.5rem;
}

.age-denied {
  display: none;
  color: #8d3b2c;
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

.age-denied.is-visible {
  display: block;
}

body.age-locked {
  overflow: hidden;
}

body.age-locked .page-shell {
  filter: blur(3px);
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .split,
  .split--flip,
  .feature-row,
  .grid-3,
  .grid-2,
  .help-cards {
    grid-template-columns: 1fr;
  }

  .stack-item {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.4rem 1.25rem 0.9rem;
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
    align-items: end;
  }

  .hero__copy {
    margin: 7rem 1rem 1.25rem;
    width: auto;
  }

  .rg-bar {
    grid-template-columns: 1fr;
  }
}
