@font-face {
  font-family: "Instrument Sans";
  src: url("fonts/instrument-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("fonts/instrument-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("fonts/newsreader-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --header-offset: 6.5rem;
  --bg: #f4efe8;
  --bg-strong: #ebe2d5;
  --surface: rgba(255, 252, 247, 0.94);
  --surface-solid: #fffdfa;
  --surface-soft: #f6f0e6;
  --surface-deep: #ecdfcf;
  --text: #1e1915;
  --muted: #685f55;
  --line: rgba(69, 53, 39, 0.14);
  --line-strong: rgba(53, 37, 23, 0.22);
  --accent: #28493f;
  --accent-strong: #183128;
  --accent-soft: #dbe7e0;
  --warm: #e8d2b4;
  --warm-strong: #b56f36;
  --shadow-soft: 0 20px 60px rgba(45, 30, 19, 0.08);
  --shadow-card: 0 14px 32px rgba(40, 27, 18, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(232, 210, 180, 0.5), transparent 34%),
    radial-gradient(circle at top right, rgba(219, 231, 224, 0.55), transparent 26%),
    linear-gradient(180deg, #fbf8f3 0%, var(--bg) 28%, #f2ebe2 100%);
  color: var(--text);
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(87, 68, 46, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 68, 46, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 72%);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(181, 111, 54, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 1.8rem 0;
}

.section[id] {
  scroll-margin-top: var(--header-offset);
}

.section-header {
  max-width: 46rem;
  margin-bottom: 1.15rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  color: var(--warm-strong);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: currentColor;
}

.section-title {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.85rem, 4.35vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.section-copy {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.2rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

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

.button--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 36px rgba(24, 49, 40, 0.16);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--accent-strong);
}

.button--secondary {
  background: rgba(255, 252, 247, 0.9);
  border-color: var(--line-strong);
  color: var(--text);
}

.button--quiet {
  background: rgba(255, 252, 247, 0.72);
  border-color: transparent;
  color: var(--muted);
}

.button--disabled,
.button--disabled:hover,
.button--disabled:focus-visible,
.button--disabled:active {
  background: rgba(255, 252, 247, 0.74);
  border-color: rgba(69, 53, 39, 0.12);
  color: var(--muted);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 0.7rem;
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  min-height: 4rem;
  padding: 0.62rem 0.82rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled .site-header__inner {
  background: rgba(255, 252, 247, 0.82);
  border-color: rgba(69, 53, 39, 0.09);
  box-shadow: 0 14px 30px rgba(31, 23, 16, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.8rem;
  box-shadow: 0 10px 18px rgba(53, 37, 23, 0.12);
}

.brand__lockup {
  min-width: 0;
}

.brand__name {
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  font-size: 1.42rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand__tag {
  display: block;
  margin-top: 0.14rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  order: 3;
  width: 100%;
  align-items: center;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  flex: 0 0 auto;
  color: var(--muted);
  padding: 0.52rem 0.85rem;
  border: 1px solid rgba(69, 53, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.78);
  font-size: 0.92rem;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="location"],
.site-nav a[aria-current="page"] {
  background: rgba(255, 252, 247, 0.96);
  border-color: rgba(69, 53, 39, 0.16);
  color: var(--text);
}

.site-header__cta {
  white-space: nowrap;
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}

.site-header__actions .button {
  width: auto;
}

.site-header__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.24rem;
  width: 2.8rem;
  height: 2.8rem;
  margin-left: auto;
  border: 1px solid rgba(69, 53, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.78);
  color: var(--text);
  box-shadow: 0 10px 18px rgba(31, 23, 16, 0.06);
}

.site-header__menu-toggle span {
  display: block;
  width: 1rem;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header__menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.34rem) rotate(45deg);
}

.site-header__menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header__menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.34rem) rotate(-45deg);
}

.site-header__coming-soon {
  min-height: 2.8rem;
  padding-inline: 0.9rem;
  font-size: 0.88rem;
}

.hero {
  padding-top: 0.95rem;
}

.hero__panel {
  display: grid;
  gap: 1.35rem;
  padding: 1.1rem;
  border: 1px solid rgba(53, 37, 23, 0.09);
  border-radius: calc(var(--radius-xl) + 6px);
  background:
    radial-gradient(circle at top left, rgba(232, 210, 180, 0.5), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 250, 0.94) 0%, rgba(251, 246, 240, 0.92) 100%);
  box-shadow: var(--shadow-soft);
}

.hero__copy {
  align-self: center;
}

.hero__title {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  max-width: 9.5ch;
  font-size: clamp(2.15rem, 5.2vw, 4.05rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero__copy p {
  max-width: 26rem;
}

.hero__lede {
  margin: 0.95rem 0 0;
  font-size: 1rem;
  color: var(--muted);
}

.hero__trust {
  margin: 0.85rem 0 0;
  color: #544b43;
  font-size: 0.93rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__visual {
  position: relative;
}

.device-showcase {
  position: relative;
  padding: 1.25rem;
  border: 1px solid rgba(69, 53, 39, 0.1);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 252, 247, 0.86), rgba(244, 236, 226, 0.84)),
    rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.device-showcase::before,
.device-showcase::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.device-showcase::before {
  top: -2rem;
  right: -2rem;
  width: 10rem;
  height: 10rem;
  background: rgba(232, 210, 180, 0.56);
}

.device-showcase::after {
  left: -2rem;
  bottom: -2rem;
  width: 9rem;
  height: 9rem;
  background: rgba(219, 231, 224, 0.62);
}

.device-frame {
  position: relative;
  z-index: 1;
  max-width: 23rem;
  margin: 0 auto;
  padding: 0.65rem;
  border-radius: 2.2rem;
  background: linear-gradient(180deg, #2d2723, #0f0d0c);
  box-shadow: 0 32px 54px rgba(22, 14, 10, 0.28);
}

.device-frame::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.52rem;
  transform: translateX(-50%);
  width: 36%;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.device-screen {
  position: relative;
  overflow: hidden;
  border-radius: 1.7rem;
  background: #ebe2d5;
  aspect-ratio: 1280 / 2856;
}

.device-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.device-showcase__card {
  position: absolute;
  right: 0.7rem;
  bottom: 1.2rem;
  z-index: 2;
  max-width: 13rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(69, 53, 39, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.device-showcase__card strong {
  display: block;
  margin-bottom: 0.32rem;
  font-size: 0.96rem;
}

.device-showcase__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.ritual-grid {
  display: grid;
  gap: 1rem;
}

.ritual-card {
  padding: 1.15rem;
  border: 1px solid rgba(69, 53, 39, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 247, 0.8);
  box-shadow: 0 10px 22px rgba(40, 27, 18, 0.05);
}

.ritual-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--warm);
  color: #72461d;
  font-size: 0.9rem;
  font-weight: 700;
}

.ritual-card h3,
.story-card h3,
.faq details summary,
.policy-article h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ritual-card h3 {
  font-size: 1.55rem;
}

.ritual-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.story-grid {
  display: grid;
  gap: 1rem;
}

.story-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(69, 53, 39, 0.1);
  border-radius: calc(var(--radius-lg) + 2px);
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--shadow-card);
}

.story-card__intro {
  display: grid;
  align-content: start;
  margin-bottom: 0.95rem;
}

.story-card__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.6rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: rgba(232, 210, 180, 0.72);
  color: #7c511f;
  font-size: 0.78rem;
  font-weight: 600;
}

.story-card h3 {
  max-width: 13ch;
  font-size: clamp(1.55rem, 2.45vw, 1.95rem);
}

.story-card p {
  margin: 0.55rem 0 0;
  max-width: 28rem;
  color: var(--muted);
}

.story-card--lead {
  padding: 1.25rem;
}

.story-card__stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
}

.story-card__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.story-card__points li {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.38rem 0.68rem;
  border: 1px solid rgba(69, 53, 39, 0.11);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.78);
  color: #5f4f3d;
  font-size: 0.84rem;
  font-weight: 600;
}

.shot-media {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 100%;
  overflow: hidden;
  margin-top: 1rem;
  padding: 0.56rem;
  border-radius: 2.1rem;
  background: linear-gradient(180deg, #2d2723, #0f0d0c);
  box-shadow: 0 28px 48px rgba(22, 14, 10, 0.18);
  aspect-ratio: 1280 / 2856;
}

.shot-media::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.48rem;
  z-index: 2;
  width: 36%;
  height: 0.36rem;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.12);
}

.story-card--lead .shot-media {
  margin-top: 1.25rem;
}

.story-card:not(.story-card--lead) .shot-media {
  width: 100%;
  max-width: 21.25rem;
  margin-inline: auto;
}

.shot-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: #66594d;
  font-size: 0.95rem;
  text-align: center;
}

.shot-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  background: #efe5d8;
  object-fit: contain;
  object-position: top center;
}

.shot-media.is-missing .shot-image {
  visibility: hidden;
}

.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(69, 53, 39, 0.12);
}

.faq details {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(69, 53, 39, 0.12);
  background: transparent;
  box-shadow: none;
}

.faq details[open] {
  background: transparent;
}

.faq details summary {
  cursor: pointer;
  list-style: none;
  padding-right: 1.75rem;
  font-size: 1.28rem;
  position: relative;
}

.faq details summary::-webkit-details-marker {
  display: none;
}

.faq details summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -0.02rem;
  color: var(--warm-strong);
  font-size: 1.35rem;
  font-family: "Instrument Sans", sans-serif;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: 0.8rem 0 0;
  max-width: 48rem;
  color: var(--muted);
}

.site-footer {
  padding: 1rem 0 1.5rem;
}

.site-footer__panel {
  display: grid;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(69, 53, 39, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 247, 0.82);
  box-shadow: var(--shadow-card);
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.site-footer__title {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.site-footer__links,
.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  color: var(--muted);
}

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

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--text);
}

.site-footer__meta {
  font-size: 0.94rem;
}

.site-footer__meta span + span::before {
  content: "•";
  margin-right: 1.15rem;
  color: rgba(104, 95, 85, 0.65);
}

.policy-page .site-header {
  margin-bottom: 0;
}

.policy-main {
  padding-bottom: 1.4rem;
}

.policy-section {
  padding-top: 0.95rem;
}

.policy-article {
  padding: 1.25rem;
  border: 1px solid rgba(69, 53, 39, 0.11);
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    radial-gradient(circle at top right, rgba(232, 210, 180, 0.34), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.94) 0%, rgba(251, 246, 240, 0.9) 100%);
  box-shadow: var(--shadow-soft);
}

.policy-hero {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(69, 53, 39, 0.1);
}

.policy-hero__copy {
  min-width: 0;
}

.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.policy-summary {
  margin: 0.95rem 0 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.policy-article h1 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  max-width: 11ch;
  font-size: clamp(2.55rem, 6.5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.policy-meta {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.policy-card {
  align-self: start;
  padding: 1rem;
  border: 1px solid rgba(69, 53, 39, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 247, 0.82);
  box-shadow: 0 10px 22px rgba(40, 27, 18, 0.05);
}

.policy-card__title {
  margin: 0 0 0.7rem;
  color: var(--warm-strong);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-card__list {
  margin: 0;
  padding-left: 1.1rem;
  color: #433a33;
}

.policy-card__list li + li {
  margin-top: 0.45rem;
}

.policy-card__link {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.policy-card__link:hover,
.policy-card__link:focus-visible {
  color: var(--accent-strong);
}

.policy-prose {
  max-width: 58rem;
}

.policy-prose > :first-child {
  margin-top: 0;
}

.policy-article h2 {
  margin-top: 1.5rem;
  font-size: clamp(1.65rem, 3vw, 2rem);
}

.policy-article p,
.policy-article li {
  color: #433a33;
  font-size: 1rem;
}

.policy-article ul {
  margin: 0.7rem 0 1rem;
  padding-left: 1.25rem;
}

.policy-article li + li {
  margin-top: 0.35rem;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 700px) {
  .section {
    padding: 2.45rem 0;
  }

  .site-footer__panel,
  .policy-article,
  .hero__panel {
    padding: 1.45rem;
  }

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

  .site-footer__panel {
    grid-template-columns: 1.3fr auto;
    align-items: end;
  }

  .policy-hero {
    grid-template-columns: minmax(0, 1.12fr) minmax(15rem, 0.58fr);
    align-items: start;
    column-gap: 1.35rem;
  }

  .site-footer__top {
    max-width: 36rem;
  }
}

@media (min-width: 960px) {
  .section-header {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(17rem, 0.72fr);
    column-gap: 1.4rem;
    align-items: end;
    max-width: none;
  }

  .section-header .section-kicker,
  .section-header .section-title {
    grid-column: 1;
  }

  .section-header .section-copy {
    grid-column: 2;
    margin: 0;
    max-width: 24rem;
  }

  .section-header--compact {
    display: block;
    max-width: 38rem;
  }

  .site-header__inner {
    flex-wrap: nowrap;
  }

  .site-nav {
    order: 0;
    width: auto;
    gap: 1rem;
    margin-left: auto;
    margin-right: 0.5rem;
    overflow: visible;
    padding-bottom: 0;
  }

  .site-header__actions {
    margin-left: 0;
  }

  .site-header__menu-toggle {
    display: none !important;
  }

  .site-nav a {
    padding: 0;
    border: none;
    background: none;
    font-size: 0.95rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="location"],
  .site-nav a[aria-current="page"] {
    background: none;
    border-color: transparent;
    color: var(--text);
  }

  .hero__panel {
    grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
    align-items: center;
    padding: 1.65rem;
  }

  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "lead lead"
      "reader editor"
      "library settings";
    align-items: stretch;
  }

  .story-card--lead {
    grid-area: lead;
  }

  .story-card--reader {
    grid-area: reader;
  }

  .story-card--editor {
    grid-area: editor;
  }

  .story-card--library {
    grid-area: library;
  }

  .story-card--settings {
    grid-area: settings;
  }

  .story-card--lead {
    display: grid;
    grid-template-columns: minmax(16rem, 0.72fr) minmax(19rem, 0.92fr);
    gap: 1.15rem;
    align-items: start;
  }

  .story-card--lead .shot-media {
    margin-top: 0;
    align-self: start;
    max-width: 23rem;
    width: 100%;
    justify-self: center;
  }

  .story-card:not(.story-card--lead) {
    display: grid;
    grid-template-rows: minmax(8rem, auto) auto;
    align-content: start;
  }

  .story-card:not(.story-card--lead) .shot-media {
    max-width: 22rem;
  }
}

@media (min-width: 1200px) {
  .hero__panel {
    padding: 1.8rem;
  }

  .hero__title {
    max-width: 9ch;
  }

  .device-frame {
    max-width: 24.5rem;
  }
}

@media (max-width: 959px) {
  .site-header__inner {
    gap: 0.75rem;
  }

  .site-header__actions {
    margin-left: auto;
  }

  .site-header__cta {
    padding-inline: 0.95rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 699px) {
  .site-header {
    padding-top: 0.55rem;
  }

  .site-header__inner {
    padding-inline: 0.7rem;
    gap: 0.6rem;
    border-radius: 1.35rem;
    background: rgba(255, 252, 247, 0.94);
    border-color: rgba(69, 53, 39, 0.08);
    box-shadow: 0 10px 24px rgba(31, 23, 16, 0.07);
    backdrop-filter: none;
  }

  .brand__tag {
    display: none;
  }

  .site-header.is-scrolled .site-header__inner {
    background: rgba(255, 252, 247, 0.96);
    border-color: rgba(69, 53, 39, 0.09);
    box-shadow: 0 12px 26px rgba(31, 23, 16, 0.08);
    backdrop-filter: none;
  }

  .site-header__menu-toggle {
    display: inline-flex;
  }

  .js .site-header--menu .site-nav {
    display: none;
  }

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

  .site-header__actions {
    width: 100%;
    justify-content: space-between;
    gap: 0.45rem;
  }

  .site-header__actions .button {
    min-width: 0;
  }

  .site-header--menu .site-nav {
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding-top: 0.15rem;
  }

  .site-header--menu .site-nav a {
    padding: 0.72rem 0.9rem;
    font-size: 0.92rem;
    text-align: left;
  }

  .site-header__cta {
    min-height: 2.7rem;
    padding-inline: 0.88rem;
    font-size: 0.9rem;
  }

  .site-header__coming-soon {
    min-height: 2.7rem;
    padding-inline: 0.72rem;
    font-size: 0.82rem;
  }

  .section-header--compact {
    margin-bottom: 0.8rem;
  }

  .section-header--compact .section-title {
    font-size: clamp(1.55rem, 8.2vw, 2.25rem);
    line-height: 1.06;
  }

  .policy-section {
    padding-top: 0.75rem;
  }

  .policy-article {
    padding: 1rem;
    border-radius: calc(var(--radius-lg) + 2px);
  }

  .policy-hero {
    gap: 0.85rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }

  .policy-back {
    margin-bottom: 0.7rem;
    font-size: 0.88rem;
  }

  .policy-article h1 {
    max-width: 8ch;
    font-size: clamp(2.2rem, 13.5vw, 3.45rem);
  }

  .policy-summary,
  .policy-article p,
  .policy-article li {
    font-size: 0.98rem;
  }

  .policy-card {
    padding: 0.9rem;
    border-radius: var(--radius-md);
  }

  .policy-card__title {
    margin-bottom: 0.55rem;
  }

  .faq details {
    padding: 0.82rem 0;
  }

  .faq details summary {
    padding-right: 1.5rem;
    font-size: 1.08rem;
    line-height: 1.15;
  }

  .faq details summary::after {
    top: 0.02rem;
    font-size: 1.2rem;
  }

  .faq details p {
    margin-top: 0.6rem;
    font-size: 0.95rem;
  }

  .story-card--lead .shot-media {
    order: -1;
    margin-top: 0;
    margin-bottom: 0.85rem;
    max-width: min(17rem, 100%);
    width: 100%;
    min-height: 22rem;
    margin-inline: auto;
  }

  .story-card__stack {
    gap: 0.75rem;
  }

  .hero__title {
    max-width: 8.5ch;
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .device-showcase__card {
    position: static;
    max-width: none;
    margin-top: 0.8rem;
  }

  .story-card .shot-media {
    max-width: 22rem;
    margin-inline: auto;
  }

  .site-footer__meta span + span::before {
    display: none;
  }

  .site-footer {
    padding: 0.8rem 0 1.15rem;
  }

  .site-footer__panel {
    gap: 0.8rem;
    padding: 0.95rem 1rem;
  }

  .site-footer__title {
    font-size: clamp(1.2rem, 9vw, 2rem);
    line-height: 1.08;
    max-width: 12ch;
  }

  .site-footer__links,
  .site-footer__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .site-footer__meta {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(69, 53, 39, 0.1);
    font-size: 0.98rem;
  }
}

@media (max-width: 420px) {
  .site-header__actions {
    gap: 0.35rem;
  }

  .site-header__coming-soon {
    padding-inline: 0.62rem;
    font-size: 0.79rem;
  }

  .site-header__cta {
    padding-inline: 0.8rem;
    font-size: 0.88rem;
  }

  .site-header--menu .site-nav a {
    padding: 0.68rem 0.82rem;
    font-size: 0.89rem;
  }

  .site-footer__title {
    max-width: 10ch;
  }

  .site-footer__links,
  .site-footer__meta {
    font-size: 0.95rem;
  }
}

@media (orientation: landscape) and (max-height: 640px) {
  .site-header {
    padding-top: 0.55rem;
  }

  .hero {
    padding-top: 0.6rem;
  }

  .hero__panel {
    gap: 1rem;
  }

  .hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
  }

  .device-frame {
    max-width: 17rem;
  }

  .section {
    padding: 1.55rem 0;
  }

  .story-card:not(.story-card--lead) .shot-media {
    max-height: 22rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
