:root {
  --ink: #314338;
  --heading: #314338;
  --text: #354038;
  --muted: #6e756f;
  --paper: #fbf8ef;
  --panel: #fffdf7;
  --line: #ddd6c9;
  --coral: #df5f49;
  --coral-deep: #c74f3c;
  --sage: #5d735d;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(49, 67, 56, 0.035) 0 1px, transparent 1px 100%),
    var(--paper);
  background-size: 100% 100%;
  font-family: var(--sans);
  line-height: 1.45;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.promo-disclosure {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 7px 22px;
  color: #fff;
  background: var(--sage);
  font-size: 12px;
  font-weight: 700;
}

.promo-disclosure a {
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 250px 1fr 190px;
  align-items: center;
  height: 72px;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 239, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  width: max-content;
  color: var(--heading);
  text-decoration: none;
}

.brand span {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  font-size: 14px;
  font-weight: 600;
}

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

.nav a:hover,
.footer a:hover,
.legal a:hover {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 8px 20px rgba(199, 79, 60, 0.18);
  font: 800 14px var(--sans);
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.header-cta {
  justify-self: end;
  width: 176px;
}

.button {
  width: 286px;
}

.header-cta:hover,
.button:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--heading);
}

.split {
  display: grid;
  grid-template-columns: 42.3% 57.7%;
  border-bottom: 1px solid var(--line);
}

.hero {
  height: calc(100vh - 103px);
  min-height: 760px;
  max-height: 940px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 74px) clamp(38px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--heading);
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h1 strong {
  display: block;
  margin-top: 12px;
  color: var(--coral);
  font-family: var(--sans);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 26px;
  color: var(--heading);
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: 0;
}

.lead {
  max-width: 470px;
  margin-bottom: 38px;
  font-size: 20px;
}

.leaf-divider {
  width: 58px;
  height: 18px;
  margin-bottom: 22px;
  background:
    radial-gradient(ellipse at 18% 50%, transparent 0 6px, var(--sage) 6px 7px, transparent 8px),
    radial-gradient(ellipse at 50% 48%, transparent 0 7px, var(--sage) 7px 8px, transparent 9px),
    radial-gradient(ellipse at 82% 50%, transparent 0 6px, var(--sage) 6px 7px, transparent 8px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(54px, 1fr));
  gap: 18px;
  max-width: 530px;
  padding: 0;
  margin: 0 0 44px;
  list-style: none;
}

.hero-stats li,
.details-grid div {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-stats strong,
.details-grid strong {
  margin-top: 8px;
  font-size: 13px;
}

.hero-stats small,
.details-grid small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.line-icon {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  color: var(--sage);
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
}

.paw::before {
  inset: 11px 7px 4px;
  border: 2px solid currentColor;
  border-radius: 45% 45% 52% 52%;
}

.paw::after {
  inset: 2px 3px auto;
  height: 13px;
  background:
    radial-gradient(circle at 12% 65%, currentColor 0 3px, transparent 4px),
    radial-gradient(circle at 38% 20%, currentColor 0 3px, transparent 4px),
    radial-gradient(circle at 64% 20%, currentColor 0 3px, transparent 4px),
    radial-gradient(circle at 88% 65%, currentColor 0 3px, transparent 4px);
}

.book::before,
.page::before,
.ruler::before,
.open::before,
.bag::before {
  inset: 3px 7px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.book::after {
  top: 5px;
  bottom: 5px;
  left: 11px;
  width: 2px;
  background: currentColor;
}

.page::after {
  top: 3px;
  right: 7px;
  width: 9px;
  height: 9px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.ruler::before {
  inset: 3px 10px;
}

.ruler::after {
  top: 7px;
  bottom: 7px;
  left: 15px;
  width: 7px;
  background: repeating-linear-gradient(to bottom, currentColor 0 1px, transparent 1px 6px);
}

.open::before {
  inset: 7px 3px 4px;
  border-radius: 8px 8px 2px 2px;
}

.open::after {
  top: 8px;
  bottom: 4px;
  left: 14px;
  width: 2px;
  background: currentColor;
}

.bag::before {
  inset: 8px 7px 4px;
}

.bag::after {
  top: 3px;
  left: 10px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.secure {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.secure span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--sage);
}

.hero-image {
  height: 100%;
  min-height: 650px;
  border-left: 1px solid var(--line);
}

.hero-image img,
.row-image img,
.sample-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image img {
  object-position: center center;
}

.content-row {
  display: grid;
  grid-template-columns: 42.3% 57.7%;
  min-height: 460px;
  border-bottom: 1px solid var(--line);
}

.content-row.reverse {
  grid-template-columns: 42.3% 57.7%;
}

.row-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(38px, 5vw, 72px);
}

.icon-label::before {
  content: "⌁";
  display: block;
  margin-bottom: 14px;
  color: var(--sage);
  font-size: 20px;
  letter-spacing: 0;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--sage);
  content: "✓";
  font-size: 12px;
  font-weight: 800;
}

.row-image {
  min-height: 420px;
  margin: 0;
  border-left: 1px solid var(--line);
}

.row-image.framed {
  display: grid;
  align-items: center;
  padding: clamp(24px, 4vw, 58px);
  background: var(--panel);
}

.row-image.framed img {
  height: auto;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  object-fit: cover;
}

.use-list {
  display: grid;
  gap: 26px;
  margin-top: 10px;
}

.use-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
}

.use-icon {
  color: var(--sage);
  font-size: 28px;
}

.use-list strong {
  display: block;
  margin-bottom: 4px;
}

.use-list p,
.disclaimer-inline {
  margin: 0;
  color: var(--muted);
}

.disclaimer-inline {
  max-width: 420px;
  margin-top: 28px;
  font-size: 12px;
}

.sample-section {
  padding: 34px clamp(32px, 5vw, 64px) 26px;
  border-bottom: 1px solid var(--line);
}

.sample-section .eyebrow {
  margin-bottom: 16px;
}

.sample-strip {
  display: block;
  width: 100%;
  height: clamp(170px, 22vw, 276px);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.sample-strip img {
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.sample-strip:hover img {
  transform: scale(1.015);
}

.hint {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.details-bar {
  padding: 24px clamp(32px, 5vw, 64px) 30px;
  border-bottom: 1px solid var(--line);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.details-grid div {
  min-height: 58px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.details-grid div:last-child {
  border-right: 0;
}

.faq-section {
  padding: 26px clamp(32px, 5vw, 64px) 36px;
  border-bottom: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
}

details {
  border: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(255, 253, 247, 0.5);
}

details:nth-child(3),
details:nth-child(6) {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  font-size: 13px;
  cursor: pointer;
}

summary::after {
  color: var(--sage);
  content: "⌄";
  font-size: 18px;
}

details[open] summary::after {
  transform: rotate(180deg);
}

details p {
  margin: 0;
  padding: 0 22px 16px;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(220px, 0.7fr) 220px;
  gap: 38px;
  align-items: center;
  padding: 26px clamp(32px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.footer strong {
  display: block;
  margin-bottom: 7px;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-button {
  width: 210px;
  justify-self: end;
}

.legal {
  display: flex;
  gap: 38px;
  padding: 16px clamp(32px, 5vw, 64px);
  color: var(--muted);
  font-size: 11px;
}

.policy-page {
  padding: clamp(54px, 7vw, 88px) clamp(20px, 6vw, 96px);
  border-bottom: 1px solid var(--line);
}

.policy-content {
  max-width: 860px;
}

.policy-content h1 {
  margin-bottom: 10px;
  font-size: clamp(46px, 6vw, 72px);
}

.policy-content h2 {
  margin: 38px 0 12px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.policy-content p {
  color: var(--muted);
  font-size: 17px;
}

.policy-content a {
  color: var(--coral-deep);
  font-weight: 700;
}

.updated {
  margin-bottom: 34px;
  font-size: 14px;
}

.cookie-notice {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(640px, calc(100vw - 44px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 253, 247, 0.98);
  box-shadow: 0 18px 56px rgba(49, 67, 56, 0.18);
}

.cookie-notice strong {
  display: block;
  margin-bottom: 5px;
  color: var(--heading);
}

.cookie-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cookie-links {
  margin-top: 7px !important;
}

.cookie-links a {
  color: var(--coral-deep);
  font-weight: 700;
  text-decoration: none;
}

.cookie-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-accept {
  min-width: 104px;
  min-height: 42px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--coral);
  font: 800 13px var(--sans);
  cursor: pointer;
}

.cookie-accept:hover {
  background: var(--coral-deep);
}

:focus-visible {
  outline: 3px solid rgba(223, 95, 73, 0.5);
  outline-offset: 3px;
}

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

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.menu-open .nav {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: 0 18px 44px rgba(49, 67, 56, 0.12);
  }

  .site-header.menu-open .nav a {
    padding: 14px 12px;
  }

  .split,
  .content-row,
  .content-row.reverse {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
    height: auto;
    min-height: 420px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .row-image {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .details-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 0;
  }

  .details-grid div:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 700px) {
  .promo-disclosure {
    justify-content: space-between;
    gap: 12px;
  }

  .brand span {
    font-size: 19px;
  }

  .brand small {
    font-size: 8px;
  }

  .hero-image {
    min-height: 310px;
  }

  .hero-copy,
  .row-copy,
  .sample-section,
  .details-bar,
  .faq-section,
  .footer,
  .legal {
    padding-right: 20px;
    padding-left: 20px;
  }

  h1 {
    font-size: 46px;
  }

  h1 strong {
    font-size: 23px;
  }

  .lead {
    font-size: 18px;
  }

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

  .hero-stats li {
    min-height: 96px;
  }

  .button {
    width: 100%;
  }

  .row-image.framed {
    padding: 20px;
  }

  .sample-strip {
    height: 170px;
  }

  .details-grid,
  .faq-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .details-grid div {
    grid-template-columns: 42px 1fr;
    justify-items: start;
    align-items: center;
    min-height: 64px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .details-grid div .line-icon {
    grid-row: span 2;
  }

  .faq-grid {
    gap: 0;
  }

  details,
  details:nth-child(3) {
    border-bottom: 0;
  }

  details:last-child {
    border-bottom: 1px solid var(--line);
  }

  .footer-button {
    width: 100%;
    justify-self: stretch;
  }

  .legal {
    flex-wrap: wrap;
    gap: 12px 22px;
  }

  .cookie-notice {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100vw - 24px);
  }

  .cookie-accept {
    width: 100%;
  }
}
