:root {
  --bg: #fff8f4;
  --ink: #15110f;
  --muted: #72655f;
  --line: rgba(21, 17, 15, 0.14);
  --accent: #ec4438;
  --accent-dark: #c92d25;
  --cream: #fffdf9;
  --rose: #fff0ed;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 5vw, 58px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
body.policy-page .site-header {
  background: rgba(255, 248, 244, 0.92);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  font-weight: 800;
  font-size: 1.06rem;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-full {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 118px clamp(18px, 5vw, 64px) 62px;
  color: #fff;
}

.hero-full picture,
.hero-full img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-full img {
  object-fit: cover;
  animation: heroDrift 900ms ease both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 10, 8, 0.78), rgba(18, 10, 8, 0.26) 46%, rgba(18, 10, 8, 0.08)),
    linear-gradient(0deg, rgba(18, 10, 8, 0.72), transparent 46%);
}

.hero-copy {
  position: relative;
  width: min(640px, 100%);
  animation: liftIn 700ms ease 120ms both;
}

.kicker,
.section-label,
.feature-copy span {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-copy .kicker { color: #ffd8d2; }

h1,
h2 {
  margin: 0;
  font-weight: 800;
  line-height: 0.98;
}

h1 {
  font-size: clamp(4.2rem, 12vw, 10.8rem);
}

h2 {
  font-size: clamp(2.4rem, 6.4vw, 6rem);
}

.hero-line {
  width: min(510px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  font-weight: 600;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.intro-section,
.feature-strip,
.story-rail,
.safety-section,
.final-cta,
.policy-main {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.intro-section {
  padding: clamp(76px, 12vw, 142px) 0 clamp(42px, 8vw, 90px);
}

.intro-section p,
.feature-copy p,
.final-cta p,
.policy-lede,
.policy-section p,
.policy-section li,
.safety-list p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.intro-section p {
  width: min(680px, 100%);
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.feature-strip {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 7vw, 96px);
  padding: clamp(48px, 8vw, 88px) 0;
}

.feature-strip.reverse {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 0.86fr);
}

.feature-strip.reverse .feature-copy { order: 2; }

.feature-copy p {
  width: min(450px, 100%);
  margin: 22px 0 0;
  font-weight: 600;
}

.image-plane {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: var(--rose);
  transform: rotate(-1.2deg);
  box-shadow: 0 28px 80px rgba(75, 28, 19, 0.18);
}

.feature-strip.reverse .image-plane {
  transform: rotate(1.4deg);
}

.image-plane img {
  width: 100%;
  aspect-ratio: 0.46;
  object-fit: cover;
  transition: transform 420ms ease;
}

.image-plane:hover img {
  transform: scale(1.025);
}

.story-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 54px 0 96px;
}

.story-rail figure {
  margin: 0;
  min-width: 0;
}

.story-rail img {
  width: 100%;
  aspect-ratio: 0.58;
  object-fit: cover;
  border-radius: 22px;
}

.story-rail figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.safety-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(30px, 7vw, 90px);
  padding: clamp(60px, 9vw, 110px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.safety-list {
  display: grid;
  gap: 18px;
}

.safety-list p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.final-cta {
  padding: clamp(76px, 12vw, 140px) 0;
  text-align: center;
}

.final-cta p {
  width: min(560px, 100%);
  margin: 20px auto 0;
}

.final-cta .actions {
  justify-content: center;
}

.final-cta .button.secondary,
.policy-page .button.secondary {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 58px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.policy-page {
  background: var(--cream);
}

.policy-hero {
  padding: 152px clamp(18px, 5vw, 58px) 66px;
  background: var(--rose);
  border-bottom: 1px solid var(--line);
}

.policy-hero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.policy-hero h1 {
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 7.8rem);
}

.policy-lede {
  width: min(720px, 100%);
  margin: 22px 0 0;
  font-weight: 600;
}

.policy-main {
  padding: 54px 0 96px;
}

.policy-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 70px);
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.policy-section h2 {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.policy-section p:first-child {
  margin-top: 0;
}

.policy-section ul {
  margin: 0;
  padding-left: 20px;
}

.policy-section li + li {
  margin-top: 8px;
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes liftIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroDrift {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

@media (max-width: 860px) {
  .site-header {
    padding: 18px;
  }

  .site-header nav {
    gap: 12px;
    font-size: 0.78rem;
  }

  .hero-full {
    min-height: 92svh;
    padding: 112px 18px 42px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(18, 10, 8, 0.84), rgba(18, 10, 8, 0.18) 64%),
      linear-gradient(90deg, rgba(18, 10, 8, 0.58), transparent);
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5.6rem);
  }

  .feature-strip,
  .feature-strip.reverse,
  .safety-section,
  .policy-section {
    grid-template-columns: 1fr;
  }

  .feature-strip,
  .feature-strip.reverse {
    min-height: auto;
  }

  .feature-strip.reverse .feature-copy {
    order: 0;
  }

  .story-rail {
    grid-template-columns: 1fr;
  }

  .story-rail img {
    aspect-ratio: 0.72;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}
