@font-face {
  font-family: "Manrope";
  src: url("/fonts/Manrope-wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/fonts/PlayfairDisplay-wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --phi: 1.618;
  --bg: #0f0d0b;
  --bg-soft: #191511;
  --panel: #1b1612;
  --panel-soft: #241d18;
  --text: #efe8de;
  --muted: #cabfae;
  --line: #3a2f26;
  --accent: #d8b070;
  --accent-strong: #f0cb8f;
  --accent-soft: rgba(216, 176, 112, 0.14);
  --space-1: 0.62rem;
  --space-2: 1rem;
  --space-3: 1.62rem;
  --space-4: 2.62rem;
  --space-5: 4.24rem;
  --measure: 68ch;
  --page-shell: 64rem;
  --radius: 1.1rem;
  --radius-lg: 1.4rem;
  --shadow: 0 20px 42px rgba(0, 0, 0, 0.36);
  --max: 74rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.75;
  background:
    radial-gradient(circle at 6% 4%, rgba(216, 176, 112, 0.18), transparent 36%),
    radial-gradient(circle at 94% 0%, rgba(255, 232, 196, 0.09), transparent 42%),
    linear-gradient(180deg, #100e0c 0%, #16120e 44%, #0f0d0b 100%);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", "Iowan Old Style", "Times New Roman", serif;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-top: 0;
}

p {
  margin-top: 0;
}

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  margin: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.45rem;
  border: 1px solid var(--accent);
  background: #120f0c;
  color: var(--accent-strong);
  z-index: 100;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 10, 8, 0.86);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2);
  align-items: center;
  padding: 0.8rem 0;
}

.brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  max-width: 38rem;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-mark {
  width: 2.45rem;
  height: 2.45rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(216, 176, 112, 0.22));
}

.brand-kicker {
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-title {
  font-family: "Playfair Display", "Iowan Old Style", serif;
  font-size: clamp(1.02rem, 3.5vw, 1.32rem);
  font-weight: 700;
  line-height: 1.15;
}

.brand-subtitle {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.35;
}

.nav-toggle {
  display: none;
  min-height: 2.35rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  font-weight: 700;
}

.site-nav {
  display: grid;
  gap: 0.45rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(20, 16, 12, 0.72);
  box-shadow: var(--shadow);
}

.js .nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.js .site-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  left: 0;
  display: none;
  background: rgba(20, 16, 12, 0.98);
}

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

.nav-link {
  padding: 0.56rem 0.62rem;
  border-radius: 0.55rem;
  color: var(--muted);
  font-size: 0.93rem;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.nav-link.is-active {
  background: var(--accent-soft);
  color: var(--accent-strong);
  box-shadow: inset 0 -2px 0 rgba(240, 203, 143, 0.58);
}

.nav-cta {
  width: 100%;
  margin-top: 0.3rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.3rem, 4.5vw, 3.3rem) 0 clamp(1.8rem, 3.5vw, 2.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-home::after,
.hero-page::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: var(--space-3);
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 11vw, 4.6rem);
}

.subtitle {
  margin: 0.85rem 0 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1rem, 4.2vw, 1.42rem);
}

.hero-note,
.launch-line,
.section-copy {
  margin: 1rem 0 0;
  max-width: 46rem;
  color: var(--muted);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-top: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.64rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: #17120d;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(180deg, #f5d39e, #e0b87d);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.01);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.launch-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 176, 112, 0.28);
  background: rgba(216, 176, 112, 0.12);
  font-size: 0.83rem;
  font-weight: 700;
}

.hero-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.book-frame {
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(216, 176, 112, 0.1), transparent);
  border: 1px solid rgba(216, 176, 112, 0.2);
}

.author-chip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(0, 0, 0, 0.22);
}

.author-chip img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.78rem;
}

.author-chip-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.author-chip-role {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-status {
  margin: 0;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-status-line {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-page-shell {
  max-width: var(--page-shell);
  margin-inline: auto;
}

.about-hero-layout {
  display: grid;
  gap: 0.9rem;
  align-items: start;
}

.about-hero-main {
  min-width: 0;
}

.about-hero-main .subtitle {
  max-width: 44rem;
}

.about-hero-lead {
  margin-top: 1rem;
  max-width: 47rem;
  color: rgba(239, 232, 222, 0.94);
}

.about-hero-points {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  max-width: 47rem;
}

.about-hero-points li {
  margin: 0;
  padding: 0.55rem 0.72rem;
  border: 1px solid rgba(216, 176, 112, 0.24);
  border-radius: 0.72rem;
  background: rgba(216, 176, 112, 0.08);
  color: rgba(239, 232, 222, 0.96);
  font-size: 0.94rem;
  line-height: 1.45;
}

.about-hero-card {
  margin: 0.7rem 0 0;
  max-width: 12.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.55rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.about-hero-card img {
  width: 100%;
  border-radius: 0.8rem;
}

.about-hero-card figcaption {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.section {
  padding: clamp(2.25rem, 3.8vw, 3.2rem) 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.section-accent {
  background: linear-gradient(180deg, rgba(216, 176, 112, 0.11), rgba(216, 176, 112, 0.05));
  border-top: 1px solid rgba(216, 176, 112, 0.25);
  border-bottom: 1px solid rgba(216, 176, 112, 0.22);
}

.section-header {
  margin-bottom: var(--space-3);
  max-width: 60ch;
}

.section-header h2,
.cta-band h2,
.newsletter-band h2,
.success-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 7vw, 2.95rem);
}

.card-grid,
.retailer-grid,
.endorsement-grid,
.download-grid,
.footer-grid,
.newsletter-band,
.cta-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}

.card,
.check-item,
.quote-card,
.download-card,
.retailer-button,
.retailer-button-disabled,
.newsletter-form,
.success-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.card,
.check-item,
.quote-card,
.download-card,
.retailer-button-disabled,
.success-card {
  padding: 1rem;
}

.card p,
.check-item p,
.footer-grid p,
.footer-bottom p,
.quote-role,
.download-meta,
.form-note {
  color: var(--muted);
}

.check-grid {
  display: grid;
  gap: 0.7rem;
}

.check-item {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.68rem;
  align-items: start;
}

.check-mark {
  color: var(--accent);
  margin-top: 0.12rem;
}

.prose {
  max-width: var(--page-shell);
  margin-inline: auto;
  font-size: clamp(1.02rem, 1.15vw, 1.12rem);
  line-height: 1.82;
}

.prose > p,
.prose > ul,
.prose > ol,
.prose > blockquote,
.prose > h2,
.prose > h3,
.prose > h4 {
  max-width: 72ch;
}

.prose p,
.prose li {
  color: rgba(239, 232, 222, 0.94);
}

.prose p + p {
  margin-top: 1rem;
}

.prose h2 {
  margin-top: 2.65rem;
  margin-bottom: 0.85rem;
  font-size: clamp(1.45rem, 5vw, 2.1rem);
  line-height: 1.2;
}

.prose h3 {
  margin-top: 1.95rem;
  margin-bottom: 0.65rem;
  font-size: clamp(1.15rem, 4vw, 1.42rem);
  line-height: 1.25;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  margin-top: 0.95rem;
  margin-bottom: 1.05rem;
}

.prose li + li {
  margin-top: 0.48rem;
}

.prose strong {
  color: var(--text);
}

.prose a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.prose a:hover,
.prose a:focus-visible {
  color: #f8d9a8;
}

.prose blockquote {
  margin: 1rem 0;
  padding: 0.95rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 0.65rem 0.65rem 0;
  color: rgba(239, 232, 222, 0.9);
}

.prose table {
  width: 100%;
  display: block;
  overflow-x: auto;
  margin: 1rem 0 1.3rem;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.2);
}

.prose th,
.prose td {
  min-width: 11.5rem;
  padding: 0.65rem 0.74rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.prose th {
  color: var(--accent-strong);
  font-weight: 700;
  background: rgba(216, 176, 112, 0.12);
}

.prose td {
  color: rgba(239, 232, 222, 0.9);
}

.prose tr:last-child td {
  border-bottom: 0;
}

.about-glance {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 1.25rem;
}

.about-glance-item {
  padding: 0.85rem 0.9rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.about-glance-label {
  margin: 0;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
}

.about-glance-value {
  margin: 0.3rem 0 0;
  color: var(--text);
}

.retailer-button {
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.65rem 0.8rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(180deg, rgba(216, 176, 112, 0.18), rgba(216, 176, 112, 0.1));
  border-color: rgba(216, 176, 112, 0.36);
  transition: transform 0.2s ease, background 0.2s ease;
}

.retailer-button:hover,
.retailer-button:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(216, 176, 112, 0.26), rgba(216, 176, 112, 0.15));
}

.retailer-button-disabled {
  display: grid;
  align-content: center;
  gap: 0.25rem;
}

.retailer-button-disabled span {
  font-weight: 700;
}

.retailer-button-disabled small {
  color: var(--muted);
}

.quote-card blockquote {
  margin: 0;
  position: relative;
  padding: 0.2rem 1.5rem 0.35rem 1.1rem;
  color: var(--text);
}

.quote-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.quote-card blockquote::before {
  content: "“";
  position: absolute;
  top: -0.12rem;
  left: 0;
  color: var(--accent);
  font-size: 2rem;
  line-height: 1;
}

.quote-card blockquote::after {
  content: "”";
  position: absolute;
  right: 0.1rem;
  bottom: -0.5rem;
  color: var(--accent);
  font-size: 1.9rem;
  line-height: 1;
}

.quote-card blockquote p {
  margin: 0;
}

.quote-card figcaption {
  margin-top: auto;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-attribution {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.quote-headshot {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(216, 176, 112, 0.33);
}

.quote-name {
  margin: 0;
  display: block;
  font-weight: 700;
  font-style: normal;
}

.quote-role {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
}

.quote-org {
  margin: 0.18rem 0 0;
  font-size: 0.82rem;
  color: rgba(202, 191, 174, 0.86);
}

.cover-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.cover-card {
  display: grid;
  gap: 0.65rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.cover-card img {
  width: 100%;
  border-radius: 0.72rem;
  border: 1px solid rgba(216, 176, 112, 0.28);
}

.cover-label {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.download-card {
  display: grid;
  gap: 0.3rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.download-card:hover,
.download-card:focus-visible {
  border-color: rgba(216, 176, 112, 0.6);
  transform: translateY(-2px);
}

.download-label {
  font-weight: 700;
}

.download-meta {
  font-size: 0.92rem;
}

.newsletter-form {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.contact-form-shell {
  max-width: 52rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

.contact-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.newsletter-form input[type="email"] {
  width: 100%;
  min-height: 2.95rem;
  padding: 0.78rem 0.9rem;
  border-radius: 0.78rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(202, 191, 174, 0.86);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 2.95rem;
  padding: 0.78rem 0.9rem;
  border-radius: 0.78rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(202, 191, 174, 0.86);
}

.contact-turnstile-wrap {
  display: grid;
  gap: 0.45rem;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
}

.form-note-muted {
  opacity: 0.88;
}

.success-card {
  max-width: 40rem;
}

.site-footer {
  margin-top: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(11, 9, 7, 0.7), #0e0c0a);
}

.footer-grid {
  padding-bottom: var(--space-4);
}

.footer-title {
  margin: 0 0 0.7rem;
  color: var(--text);
  font-weight: 700;
}

.footer-links {
  margin: 0;
  padding-left: 1rem;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-legal-links a:hover,
.footer-legal-links a:focus-visible,
.brand:hover,
.brand:focus-visible {
  color: var(--accent-strong);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.footer-bottom {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

code {
  padding: 0.08rem 0.3rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.07);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (min-width: 42rem) {
  .section {
    padding: clamp(2.6rem, 4vw, 3.7rem) 0;
  }

  .about-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(10rem, 12.5rem);
    gap: 1.25rem;
  }

  .about-hero-card {
    margin-top: 0;
    justify-self: end;
  }

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

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

  .card-grid,
  .retailer-grid,
  .endorsement-grid,
  .download-grid,
  .check-grid,
  .cover-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
  }
}

@media (min-width: 62rem) {
  .header-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 0.95rem 0;
  }

  .nav-toggle,
  .js .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.25rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .brand {
    max-width: 31rem;
  }

  .brand-subtitle {
    display: none;
  }

  .js .site-nav {
    display: flex;
  }

  .nav-link {
    padding: 0.38rem 0.54rem;
    font-size: 0.88rem;
  }

  .nav-cta {
    width: auto;
    margin: 0 0 0 0.2rem;
    min-height: 2.45rem;
    padding-inline: 1rem;
  }

  .hero {
    padding: clamp(3rem, 5vw, 4.4rem) 0 clamp(2.2rem, 3.7vw, 3.2rem);
  }

  body[data-page-slug="about"] .hero {
    padding-top: 3.1rem;
    padding-bottom: 2.35rem;
  }

  body[data-page-slug="about"] .hero-page-shell {
    max-width: var(--page-shell);
  }

  body[data-page-slug="about"] .about-hero-layout {
    grid-template-columns: minmax(0, 1fr) 13.2rem;
    gap: 1.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr);
    gap: 1.6rem;
    align-items: stretch;
  }

  .hero-card {
    padding: 1.2rem;
  }

  .brand-mark {
    width: 2.8rem;
    height: 2.8rem;
  }

  .newsletter-band {
    grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr);
    gap: 1.2rem;
    align-items: center;
  }

  .cta-band {
    grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr);
    gap: 1.3rem;
    align-items: center;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.35fr 1fr 0.85fr 1fr;
    gap: 1.4rem;
  }
}

@media (min-width: 78rem) {
  .brand-subtitle {
    display: block;
  }
}

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

  .reveal,
  .button,
  .retailer-button,
  .download-card {
    transition: none;
    transform: none;
  }

  .reveal {
    opacity: 1;
  }
}
