:root {
  --warm-ivory: #F7F3EC;
  --ivory: #F7F3EC;
  --oat: #E7DDD0;
  --muted-sage: #A7B39A;
  --sage: #A7B39A;
  --deep-sage: #49523F;
  --forest: #49523F;
  --dusty-terracotta: #C46E52;
  --terracotta: #C46E52;
  --soft-terracotta: #D99A82;
  --charcoal-brown: #3B322B;
  --charcoal: #3B322B;
  --taupe: #746B61;
  --line: rgba(73, 82, 63, 0.18);
  --shadow: 0 18px 50px rgba(46, 41, 37, 0.10);
  --shadow-soft: 0 24px 80px rgba(59, 50, 43, 0.10);
  --font-serif: "Caledonia", "Libre Baskerville", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Sohne", "Inter", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: var(--font-serif);
  --font-body: var(--font-sans);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-card: 24px;
  --radius-button: 999px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(73, 82, 63, 0.035) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(73, 82, 63, 0.03) 0 1px, transparent 1px 100%),
    var(--ivory);
  background-size: 44px 44px, 44px 44px, auto;
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.nav-shell {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-link img {
  width: 250px;
  max-height: 62px;
  height: auto;
  object-fit: contain;
  display: block;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--warm-ivory);
  color: var(--forest);
  border-radius: var(--radius-button);
  padding: 10px 14px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--taupe);
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--forest);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(73, 82, 63, 0.22);
  border-radius: var(--radius-button);
  color: var(--forest);
  background: rgba(168, 181, 162, 0.16);
}

.hero {
  position: relative;
  min-height: 640px;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(247, 243, 236, 0.18)),
    var(--ivory);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(73, 82, 63, 0.06) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(73, 82, 63, 0.05) 0 1px, transparent 1px 100%);
  background-size: 44px 44px;
  opacity: 0.32;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(247, 243, 236, 0.96), rgba(247, 243, 236, 0.58));
}

.hero-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--deep-sage);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--terracotta);
}

.hero-copy {
  max-width: 690px;
}

.hero-art {
  position: relative;
  min-height: 470px;
}

.hero-page {
  display: block;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--warm-ivory);
  box-shadow: 0 24px 55px rgba(46, 41, 37, 0.16);
}

.hero-page-main {
  width: min(360px, 74%);
  margin-left: auto;
}

.hero-page-support {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: min(245px, 48%);
}

.hero-art.compact .hero-page-main,
.hero-art.editorial-stack .hero-page-main {
  width: min(330px, 70%);
}

.hero-art.compact .hero-page-support {
  width: min(190px, 42%);
  object-fit: contain;
}

.editorial-stack {
  display: grid;
  align-items: center;
  justify-items: end;
}

.editorial-stack .hero-page-main {
  margin-right: 0;
  transform: rotate(0.6deg);
}

.mini-brand-card {
  position: absolute;
  left: 6%;
  bottom: 44px;
  width: min(230px, 48%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 252, 246, 0.92);
  box-shadow: var(--shadow-soft);
}

.mini-brand-card img {
  width: 92px;
  display: block;
  margin-bottom: 12px;
}

.mini-brand-card span {
  display: block;
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: 1.18rem;
  line-height: 1.08;
}

.brand-hero-card {
  min-height: 470px;
  display: grid;
  place-items: center;
}

.brand-hero-card::before {
  content: "";
  position: absolute;
  inset: 58px 22px 42px 70px;
  border: 1px solid rgba(73, 82, 63, 0.14);
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.88), rgba(167, 179, 154, 0.16));
  box-shadow: var(--shadow-soft);
}

.brand-hero-logo {
  position: relative;
  z-index: 1;
  width: min(410px, 82%);
  display: block;
  filter: drop-shadow(0 22px 38px rgba(59, 50, 43, 0.12));
}

.brand-hero-note {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 36px;
  width: min(270px, 52%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 252, 246, 0.94);
  box-shadow: var(--shadow-soft);
}

.brand-hero-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-hero-note p {
  margin: 0;
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.12;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.02;
  color: var(--forest);
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 5.7vw, 5.1rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2.2rem, 4.7vw, 4.8rem);
}

h3 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.hero-copy p {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--charcoal);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  background: var(--terracotta);
  color: #fff;
  font-weight: 760;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(201, 130, 100, 0.22);
}

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

.button.secondary {
  background: rgba(251, 247, 239, 0.68);
  border-color: rgba(73, 82, 63, 0.22);
  color: var(--forest);
  box-shadow: none;
}

.button.forest {
  background: var(--forest);
  box-shadow: 0 14px 34px rgba(15, 61, 50, 0.18);
}

.section {
  padding: 88px 0;
}

.section.tight {
  padding: 58px 0;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--taupe);
  font-size: 1.06rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.panel {
  background: rgba(251, 247, 239, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow-soft);
}

.soft-panel {
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(24px, 4vw, 44px);
}

.visual-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--warm-ivory);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.visual-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-story-card {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 252, 246, 0.78);
  box-shadow: var(--shadow-soft);
}

.brand-story-card img {
  width: min(260px, 62%);
  justify-self: center;
  display: block;
}

.brand-story-card h3 {
  max-width: 520px;
}

.brand-story-card p:last-child {
  margin-bottom: 0;
  color: var(--taupe);
}

.benefit-grid,
.category-grid,
.bonus-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card,
.category-card,
.bonus-card,
.faq-card,
.inside-card {
  background: rgba(251, 247, 239, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(167, 179, 154, 0.16);
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.benefit-card p,
.category-card p,
.bonus-card p,
.faq-card p,
.inside-card p {
  color: var(--taupe);
  margin: 10px 0 0;
}

.numbered-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.numbered-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(251, 247, 239, 0.64);
}

.numbered-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 130, 100, 0.16);
  color: var(--terracotta);
  font-weight: 900;
}

.feature-band {
  background: var(--forest);
  color: var(--warm-ivory);
}

.feature-band h2,
.feature-band h3 {
  color: var(--warm-ivory);
}

.feature-band p,
.feature-band li {
  color: rgba(251, 247, 239, 0.78);
}

.feature-band .button.secondary {
  background: rgba(251, 247, 239, 0.08);
  border-color: rgba(251, 247, 239, 0.24);
  color: var(--warm-ivory);
}

.signup-band {
  background: rgba(255, 252, 246, 0.62);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 252, 246, 0.82);
  box-shadow: var(--shadow-soft);
}

.signup-form label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signup-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-button);
  background: var(--warm-ivory);
  color: var(--charcoal);
  font: inherit;
  padding: 12px 16px;
}

.signup-form input:focus {
  outline: 2px solid rgba(196, 110, 82, 0.28);
  border-color: rgba(196, 110, 82, 0.72);
}

.signup-form p {
  margin: 0;
  color: var(--taupe);
  font-size: 0.92rem;
}

.direct-download-panel .button {
  width: 100%;
  justify-content: center;
}

.legal-content {
  max-width: 840px;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.legal-content p,
.legal-content li {
  color: var(--taupe);
}

.legal-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

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

.category-card {
  min-height: 265px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: attr(data-index);
  position: absolute;
  right: 20px;
  top: 18px;
  color: rgba(73, 82, 63, 0.42);
  font-family: var(--font-serif);
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: 0;
}

.category-icon {
  width: 108px;
  height: 108px;
  margin-bottom: 24px;
  border-radius: 22px;
  object-fit: cover;
  display: block;
  box-shadow: 0 12px 28px rgba(59, 50, 43, 0.08);
}

.category-card a {
  margin-top: auto;
  color: var(--forest);
  font-weight: 850;
  text-decoration: none;
}

.microcopy {
  color: var(--taupe);
  font-size: 0.9rem;
}

.notice {
  border-left: 4px solid var(--terracotta);
  background: rgba(251, 247, 239, 0.76);
  padding: 18px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--taupe);
}

.kicker-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.kicker {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(251, 247, 239, 0.56);
  color: var(--forest);
  font-weight: 850;
}

.mockup-stack {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.mockup-stack::before {
  content: "";
  position: absolute;
  width: 76%;
  height: 76%;
  border: 1px solid rgba(73, 82, 63, 0.16);
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(167, 179, 154, 0.24), rgba(247, 243, 236, 0.72));
}

.mockup-stack img {
  position: relative;
  width: min(360px, 78%);
  border: 1px solid var(--line);
  border-radius: 18px;
  filter: drop-shadow(0 26px 40px rgba(46, 41, 37, 0.18));
}

.price-placeholder {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(168, 181, 162, 0.22);
  color: var(--forest);
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--taupe);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: inset 0 0 0 3px var(--warm-ivory);
}

.site-footer {
  background: var(--charcoal-brown);
  color: rgba(251, 247, 239, 0.78);
  padding: 54px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-grid img {
  width: 220px;
  filter: brightness(1.22);
}

.footer-grid a {
  display: block;
  color: rgba(251, 247, 239, 0.78);
  text-decoration: none;
  margin: 8px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(251, 247, 239, 0.16);
  margin-top: 34px;
  padding-top: 22px;
  font-size: 0.88rem;
}

.footer-bottom a {
  color: rgba(251, 247, 239, 0.86);
  text-decoration: none;
}

.placeholder-message {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 30;
  max-width: min(520px, calc(100% - 32px));
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--warm-ivory);
  box-shadow: var(--shadow);
  transition: 180ms ease;
}

.placeholder-message.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 920px) {
  .nav-shell {
    min-height: 70px;
  }

  .brand-link img {
    width: 220px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--warm-ivory);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(247, 241, 232, 0.94), rgba(247, 241, 232, 0.64));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .two-column,
  .split-reverse,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .category-grid,
  .bonus-grid,
  .faq-grid,
  .kicker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .nav-shell,
  .container,
  .hero-inner {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: clamp(2.25rem, 11.5vw, 3.1rem);
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .section {
    padding: 64px 0;
  }

  .benefit-grid,
  .category-grid,
  .bonus-grid,
  .faq-grid,
  .kicker-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy p {
    font-size: 1.1rem;
  }

  .mockup-stack {
    min-height: 360px;
  }

  .hero-art {
    min-height: 360px;
  }

  .brand-hero-card,
  .editorial-stack {
    min-height: 360px;
  }

  .brand-hero-card::before {
    inset: 24px 0 24px 0;
  }

  .brand-hero-note,
  .mini-brand-card {
    width: min(230px, 58%);
  }

  .hero-page-main {
    width: min(280px, 72%);
  }

  .hero-page-support {
    width: min(190px, 50%);
    bottom: 0;
  }
}
