/* ============================================================
   Biblelexical — Homepage
   Editorial · refined · premium.
   Loaded alongside reusable.css on the homepage only.
   ============================================================ */

/* ───────── Tokens ───────── */
:root {
  --paper: #f5ede9;
  --ink: #3f2a21;
  --ink-body: #4e3529;
  --muted: #9a7462;
  --faint: #b99c8d;
  --line: #edd9c4;
  --line-strong: #cbb69b;
  --accent: #6a412d;
  --accent-ink: #5d3f31;
  --accent-tint: rgba(106, 65, 45, 0.08);

  --display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --greek: "Cardo", Georgia, serif;

  --measure: 760px;
  --gutter: clamp(22px, 5vw, 56px);
  --section-y: clamp(80px, 11vw, 156px);

  --shadow-card: 0 34px 64px -42px rgba(42, 38, 32, 0.46);
  --shadow-soft: 0 18px 40px -30px rgba(42, 38, 32, 0.4);
}

body {
  background: var(--paper-panel);
  background-image:
    radial-gradient(
      1100px 640px at 84% -8%,
      rgba(106, 65, 45, 0.05),
      transparent 62%
    ),
    linear-gradient(180deg, #f5ede9 0%, #f0e6d8 100%);
  background-attachment: fixed;
  color: var(--ink-body);
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.028;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection {
  background: var(--accent-tint);
  color: var(--ink);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.018em;
}
em {
  font-style: italic;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.section {
  padding-block: var(--section-y);
  position: relative;
}

:where(section[id]) {
  scroll-margin-top: 90px;
}

/* ───────── Typographic helpers ───────── */
.kicker {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 13px;
}
.lede {
  font-family: var(--sans);
  font-size: clamp(1.08rem, 1.5vw, 1.26rem);
  line-height: 1.62;
  color: var(--ink-body);
}
.prose {
  font-family: var(--sans);
  font-size: 1.1rem;
  line-height: 1.78;
  color: var(--ink-body);
}

.faq-home {
  margin-top: 32px;
}

.faq {
  padding-bottom: 0;
}

.section-head {
  max-width: var(--measure);
}
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin-top: 20px;
}
.section-head p {
  margin-top: 18px;
  color: var(--ink-body);
}
.section-lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-body);
  margin-top: clamp(14px, 2vw, 22px);
}

/* ───────── Buttons ───────── */
.btn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  transition: opacity 0.2s ease;
}
.btn:hover {
  opacity: 0.8;
}
.btn-line {
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-line:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: none;
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.9rem;
}

.tlink {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tlink svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}
.tlink:hover {
  color: var(--accent-ink);
}
.tlink:hover svg {
  transform: translateX(4px);
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--paper-card);
  padding: 12px 22px;
  border-radius: 9px;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background 0.2s ease;
}
.store:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -20px rgba(42, 38, 32, 0.65);
  background: #37312a;
}
.store svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: none;
}
.store span {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
  font-family: var(--sans);
}
.store b {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.store small {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.82;
  text-transform: uppercase;
}
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

/* ───────── Nav ───────── */
.nav {
  background-color: var(--paper);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transform: translateY(-100%);
  transition:
    transform 0.35s cubic-bezier(0.16,1,0.3,1),
    border-color 0.3s ease,
    background 0.3s ease;
}
.nav.nav-visible {
  transform: translateY(0);
}
.nav.scrolled {
  border-bottom-color: var(--line);
}
.nav-inner {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 28px;
  background-color: var(--paper);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}
.brand img {
  width: 100px;
  height: 100%;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links > a,
.nav-links > .nav-group > a {
  font-family: var(--sans);
  font-size: 0.94rem;
  color: var(--ink-body);
  position: relative;
  padding: 4px 0;
}
.nav-links > a::after,
.nav-links > .nav-group > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1.5px;
  width: 0;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links > a:hover,
.nav-links > .nav-group > a:hover {
  color: var(--ink);
}
.nav-links > a:hover::after,
.nav-links > .nav-group > a:hover::after {
  width: 100%;
}

/* ───────── Nav dropdown ───────── */
.nav-group {
  display: inline-flex;
}
.nav-trigger {
  font-family: var(--sans);
  font-size: 0.94rem;
  color: var(--ink-body);
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1.5px;
  width: 0;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-trigger:hover {
  color: var(--ink);
}
.nav-trigger:hover::after {
  width: 100%;
}
.nav-trigger .arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 1px;
  transition: transform 0.25s ease;
}
.nav-group.open .nav-trigger .arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: block;
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--paper);
}
.nav-group.open .nav-dropdown {
  visibility: visible;
  opacity: 1;
  height: auto;
  overflow: visible;
}
.dropdown-inner {
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.dropdown-card {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.dropdown-card:hover {
  transform: translateY(-1px);
}
.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: var(--accent);
  color: var(--paper);
  display: grid;
  place-items: center;
  flex: none;
}
.card-icon svg {
  width: 22px;
  height: 22px;
}
.dropdown-card span {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-body);
}

/* ───────── Hero ───────── */
.hero {
  padding-top: clamp(48px, 7vw, 104px);
  padding-bottom: clamp(56px, 8vw, 120px);
}
.hero-copy {
  /* max-width: 74ch; */
}
.hero-grid {
  display: flex;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  justify-content: space-between;
}
.hero .kicker {
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(3rem, 7.2vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.034em;
  color: var(--ink);
}
.hero h1 em {
  color: var(--accent);
  font-weight: 500;
}
.hero .lede {
  margin-top: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: 20px;
}
.hero-note {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 26px;
}
.hero-rows {
  display: flex;
  gap: 12px;
  color: var(--accent);
  opacity: 0.5;
}

.shot {
  width: auto;
  max-width: 280px;
  max-height: 560px;
  height: auto;
}

.hero-homepage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-homepage.page-hero--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 10, 5, 0.55) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
}

.hero-homepage.page-hero--dark > * {
  position: relative;
  z-index: 2;
}

.hero-homepage.page-hero--dark h1 {
  color: var(--paper);
}

.hero-homepage.page-hero--dark .lede {
  color: var(--paper);
  opacity: 0.9;
}

.hero-homepage.page-hero--dark .hero-rows {
  color: var(--paper);
  opacity: 0.7;
}

.hero-homepage.page-hero--dark .hero-note {
  color: var(--paper);
}

.text-header {
  display: flex;
  gap: 20px;
  align-items: start;
}

/* ───────── Features (carousel) ───────── */
.f-rows {
  margin-top: clamp(40px, 5vw, 64px);
}
.f-rows-pagination {
  margin-top: clamp(36px, 5vw, 56px);
  display: flex;
  justify-content: center;
  gap: 8px;
}
.f-rows-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--line-strong);
  opacity: 0.5;
  transition:
    width 0.35s ease,
    opacity 0.35s ease;
  cursor: pointer;
}
.f-rows-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--accent);
  opacity: 1;
}
.f-rows .swiper-wrapper {
  will-change: transform;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
.f-rows .swiper-slide {
  height: auto;
  backface-visibility: hidden;
  opacity: 0.25;
}
.f-rows .swiper-slide-active {
  opacity: 1;
}
.f-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
  height: 100%;

  padding: 40px;
  background: var(--accent);
  border-radius: 12px;
}

.f-slide .fr-text,
.f-slide .fr-text > * {
  color: white !important;
}

.f-slide {
  background-color: #6a412d;
  position: relative;
  overflow: hidden;
}
.f-slide::before {
  content: "";
  position: absolute;
  inset: -10px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  opacity: 0.35;
  z-index: 0;
}
.f-slide > * {
  position: relative;
  z-index: 1;
}

.fr-points li::before {
  background-color: white !important;
}

#download {
  position: relative;
}

#download .store-row {
  justify-content: center;
}

#download .image-overlay-cta {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  z-index: -1;
  opacity: 0.06;
}

.fr-index {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.fr-text .kicker {
  margin: 16px 0 0;
}
.fr-text h3 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  margin-top: 14px;
}
.fr-text > p {
  margin-top: 18px;
  color: var(--ink-body);
  font-size: 1.1rem;
  line-height: 1.76;
}
.fr-points {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 11px;
  padding-left: 24px;
}
.fr-points li {
  opacity: 0.75;
  position: relative;
}
.fr-points li::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 5px;
  width: 15px;
  height: 15px;
  background-color: var(--accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/%3E%3C/svg%3E")
    no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

.fr-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fr-media::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(
    1100px 640px at 84% -8%,
    rgba(106, 65, 45, 0.05),
    transparent 62%
  );
  filter: blur(12px);
  z-index: 0;
}
.f-slide .shot {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 262px;
  max-height: 540px;
  height: auto;
  transform: translateY(120px);
}

/* ───────── How it works ───────── */
.how {
}
.how-rows {
  display: flex;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 90px);
  margin-top: clamp(36px, 5vw, 56px);
}
.h-texts {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}
.h-text {
  padding: clamp(20px, 2.4vw, 28px) 0;
  /* border-bottom: 1px solid var(--line); */
  cursor: pointer;
  transition: opacity 0.25s ease;
}
.h-text:first-child {
  padding-top: 0;
}
.h-text:last-child {
  border-bottom: none;
}
.h-text {
  opacity: 0.5;
}
.h-text.is-active {
  opacity: 1;
}
.h-text:hover {
  opacity: 0.75;
}
.h-text.is-active:hover {
  opacity: 1;
}
.h-index {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.h-text h3 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.15;
  transition: color 0.25s ease;
}
.h-text p {
  margin-top: 12px;
  color: var(--ink-body);
  font-size: 1.02rem;
  line-height: 1.7;
}
.h-shots {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(200px, 26vw, 280px);
  position: relative;
}
.h-shots .shot {
  position: absolute;
  width: auto;
  max-width: 100%;
  max-height: 500px;
  height: auto;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.h-shots .shot.is-active {
  opacity: 1;
  position: relative;
}

/* ───────── Privacy ───────── */
.privacy h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin-top: 20px;
}
.privacy .prose {
  margin: 22px 0 0;
}
.facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(40px, 5vw, 64px);
  border-radius: 16px;
  overflow: hidden;
}
.facts .fact-k {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
}
.facts .fact-v {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ───────── Library line ───────── */
.library h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin-top: 20px;
}
.library .prose {
  margin: 22px 0 0;
}
.lang-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--ink);
  margin-top: 34px;
  line-height: 1.6;
}
.lang-line span {
  white-space: nowrap;
}
.lang-line span:not(:last-child)::after {
  content: "/";
  color: var(--accent);
  margin: 0 0.5em;
  font-style: normal;
}
.lib-note {
  font-family: var(--sans);
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 18px;
  letter-spacing: 0.02em;
}

/* ───────── FAQ ───────── */
.faq-content {
  overflow: hidden;
}
details {
  border-bottom: 1px solid var(--line);
}
details summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 2px;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.25s ease;
  flex: none;
}
details[open] summary::after {
  transform: rotate(45deg);
}
details p {
  padding: 0 2px 26px;
  color: var(--ink-body);
  line-height: 1.76;
}

/* ───────── Final CTA ───────── */
.final .panel {
  padding: clamp(56px, 8vw, 104px) 0;
  background: var(--accent);
  border-radius: 8px;
}
.final {
  text-align: center;
}
.final h2 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  color: var(--paper);
}
.final p {
  font-family: var(--sans);
  color: var(--paper);
  font-size: 1.14rem;
  margin: 22px auto 36px;
  line-height: 1.6;
}
.final .store-row {
  justify-content: flex-start;
}

/* ───────── Footer ───────── */
.site-footer {
  background: #140c07;
  padding: clamp(56px, 7vw, 84px) var(--gutter) clamp(34px, 4vw, 48px);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(221, 184, 119, 0.14);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.footer-brand img {
  width: 100px;
  height: 100%;
}
.footer-brand span {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--cream);
}
.footer-tagline {
  font-family: var(--sans);
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--faint);
  max-width: 34ch;
  margin: 16px 0 22px;
}
.footer-store {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.footer-col h2 {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--faint);
  padding: 5px 0;
}
.footer-col a:hover {
  color: var(--cream);
}
.footer-base {
  padding-top: 30px;
}
.footer-print {
  font-family: var(--sans);
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--faint);
}
.footer-print a {
  color: var(--cream);
}
.footer-warm {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--faint);
}

/* ───────── Motion ───────── */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}
.js .hero-anim {
  opacity: 0;
}

/* ───────── btn-pill ───────── */
.btn-pill {
  background: var(--accent);
  color: #fffdf0;
  padding: 9px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  transition:
    background 0.2s ease,
    transform 0.18s ease;
}
.btn-pill:hover {
  background: var(--accent-ink);
  transform: translateY(-1px);
}

/* ───────── Mobile nav hamburger ───────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.18s ease;
  transform-origin: center;
}
.nav.mobile-open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.mobile-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav.mobile-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ───────── Mobile nav panel ───────── */
.nav-mobile {
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100dvh - 80px);
  transition:
    height 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.22s ease;
  border-top: 1px solid var(--line);
  background: var(--paper);
  -webkit-overflow-scrolling: touch;
}
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  padding: 20px 0 28px;
  gap: 4px;
}
.nav-mobile-links a {
  font-family: var(--sans);
  font-size: 1.06rem;
  color: var(--ink-body);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: block;
}
.nav-mobile-links a:last-child {
  border-bottom: none;
}
.nav-mobile-links a:hover {
  color: var(--accent);
}

/* ───────── Responsive ───────── */
@media (max-width: 1280px) {
  .container {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .hero-homepage {
    min-height: auto;
    padding: clamp(80px, 14vw, 120px) 0 clamp(56px, 10vw, 80px);
    text-align: left;
  }
  .hero-grid {
    flex-direction: column;
    gap: 40px;
  }
  .hero .kicker {
    justify-content: center;
  }
  .hero .lede {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stage {
    order: -1;
  }
  .f-slide {
    flex-direction: column;

    gap: 30px;
  }
  .f-slide--alt {
    flex-direction: column;
  }
  .fr-text .kicker {
    justify-content: center;
  }
  .fr-text > p {
    margin-inline: auto;
  }
  .fr-points {
    display: inline-grid;
    text-align: left;
  }
  .fr-media {
    order: -1;
  }
  .f-slide .shot {
    max-width: 220px;
    max-height: 460px;
  }
  .how-rows {
    flex-direction: column-reverse;
    align-items: center;
  }
  .h-texts {
    width: 100%;
  }
  .h-text {
  }
  .h-text p {
    margin-inline: auto;
  }
  .h-shots {
    width: clamp(180px, 40vw, 240px);
  }
  .h-shots .shot {
    max-height: 420px;
  }
  .h-index {
    margin-bottom: 12px;
  }
  .facts {
    grid-template-columns: 1fr 1fr;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 860px) {
  body {
    font-size: 17px;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-mobile {
    display: block;
  }
  .btn-pill {
    display: none;
  }
  .hero-homepage {
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }
  .hero-grid {
    flex-direction: column;
  }
  .hero-images {
    display: none;
  }
  .shot {
    max-width: 230px;
  }
  .f-slide {
    padding: 28px 22px;
  }
  .how-rows .shot {
    display: none;
  }
  .facts {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
