/* ============================================================
   Biblelexical — Sub-page framework + component styles.
   Loaded alongside reusable.css on every sub-page.
   ============================================================ */

/* ───────── Tokens ───────── */
:root {
  --paper: #f5ede9;
  --paper-raised: #ffffff;
  --paper-deep: #edd9c4;
  --ink: #3f2a21;
  --ink-body: #4e3529;
  --ink-soft: #6a4939;
  --muted: #9a7462;
  --faint: #b99c8d;
  --espresso: #1d1310;
  --espresso-2: #33221b;
  --espresso-3: #3f2a21;
  --cream: #edd9c4;
  --gold: #6a412d;
  --gold-bright: #997360;
  --gold-pale: #b99c8d;
  --accent: #6a412d;
  --rubric: #6a412d;
  --rubric-soft: #997360;
  --line: #edd9c4;
  --line-soft: #edd9c4;
  --line-cream: rgba(221, 184, 119, 0.2);
  --display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --text: "Source Serif 4 Text", Georgia, serif;
  --sans: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  --greek: "Cardo", Georgia, serif;
  --gutter: clamp(20px, 5vw, 44px);
  --shadow-warm: 0 30px 70px -34px rgba(40, 26, 18, 0.55);
  --shadow-soft: 0 18px 44px -28px rgba(40, 26, 18, 0.42);
}

body {
  background: var(--paper);
  background-image:
    radial-gradient(
      1200px 680px at 78% -8%,
      rgba(106, 65, 45, 0.08),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at -6% 4%,
      rgba(106, 65, 45, 0.04),
      transparent 55%
    ),
    linear-gradient(180deg, #f5ede9 0%, #f0e6d8 100%);
  background-attachment: fixed;
  color: var(--ink-body);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.72;
  -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.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' 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(--gold-pale);
  color: var(--ink);
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

section {
  position: relative;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  /* padding-left: var(--gutter); */
  /* padding-right: var(--gutter); */
}
:where(section[id]) {
  scroll-margin-top: 84px;
}

/* ───────── Typography helpers ───────── */
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;
}

.kicker {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.lede {
  font-family: var(--sans);
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  line-height: 1.62;
  color: var(--ink-soft);
}
.prose {
  font-family: var(--sans);
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 62ch;
}

.section-head {
  max-width: 720px;
  margin: 0;
  /* margin: 0 0 clamp(40px, 6vw, 64px); */
}
.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  margin-top: 0 !important;
}
.section-head p {
  margin-top: 18px;
}

.diamond-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold);
  opacity: 0.8;
}
.diamond-rule::before,
.diamond-rule::after {
  content: "";
  height: 1px;
  width: min(120px, 22vw);
  background: currentColor;
  opacity: 0.4;
}
.diamond-rule i {
  width: 7px;
  height: 7px;
  background: currentColor;
  transform: rotate(45deg);
  display: block;
}

/* ───────── 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-ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 20px;
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: 15px;
  transition:
    transform 0.18s ease,
    box-shadow 0.25s ease,
    background 0.2s ease;
}
.store:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-warm);
}
.store svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  flex: none;
}
.store span {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
  font-family: var(--sans);
}
.store b {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.store small {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.82;
  text-transform: uppercase;
}
.store--cream {
  background: var(--cream);
  color: var(--espresso);
}
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ───────── 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-inner {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}
.brand img {
  width: 100px;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links > a,
.nav-links > .nav-group > a {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink-soft);
  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(--gold);
  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.95rem;
  color: var(--ink-soft);
  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(--gold);
  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;
  background: var(--paper);
  z-index: 99;
  padding-bottom: 20px;
}
.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-soft);
}

/* ───────── Hero ───────── */
.hero {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-title {
  font-size: clamp(2.7rem, 7.4vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.hero-title em {
  color: var(--rubric);
  font-weight: 500;
}
.hero-copy .lede {
  margin-top: 26px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 28px;
}
.hero-meta span {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 15px;
  background: rgba(255, 253, 240, 0.6);
}
.hero-meta span::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 7px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960'%3E%3Cpath fill='%236a412d' d='M268-240 42-466l57-56 170 170 56 56-57 56Zm226 0L268-466l56-57 170 170 368-368 56 57-424 424Zm0-226-57-56 198-198 57 56-198 198Z'/%3E%3C/svg%3E")
    no-repeat center / contain;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ───────── Device mockups (landing page hero) ───────── */
.hero-stage {
  position: relative;
  min-height: 580px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 6% 4%;
  background: radial-gradient(
    1200px 680px at 78% -8%,
    rgba(106, 65, 45, 0.08),
    transparent 60%
  );
  filter: blur(8px);
  z-index: 0;
}
.device {
  position: relative;
  z-index: 1;
  width: 248px;
  flex: none;
  background: linear-gradient(160deg, #2a1a12, #160d08);
  border-radius: 40px;
  padding: 9px;
  box-shadow:
    var(--shadow-warm),
    inset 0 0 0 1px rgba(221, 184, 119, 0.12);
}
.device::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 6px;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
}
.screen {
  background: var(--paper);
  border-radius: 32px;
  overflow: hidden;
  height: 504px;
  padding: 30px 18px 20px;
  position: relative;
}
.sc-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--muted);
}
.sc-status .dots {
  width: 40px;
  height: 5px;
  border-radius: 3px;
  background: var(--paper-deep);
}
.sc-title {
  font-family: var(--display);
  font-size: 1.34rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.sc-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}

.card-votd {
  background: linear-gradient(155deg, #6a4939, #4e3529);
  color: var(--cream);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 30px -22px rgba(40, 26, 18, 0.7);
}
.card-votd .sc-label {
  color: var(--gold-pale);
}
.card-votd .verse {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.5;
}
.card-votd .ref {
  font-family: var(--sans);
  font-size: 0.8rem;
  margin-top: 12px;
  color: var(--gold-pale);
}

.card-streak {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
}

.streak-n {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
}
.streak-s {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
}

.reader-line {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--ink-body);
  margin-bottom: 9px;
}
.reader-line sup {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  margin-right: 4px;
  vertical-align: super;
}
.hl {
  background: #f4e3a6;
  border-radius: 4px;
  padding: 1px 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hl-rose {
  background: #f0cfc8;
}

.chip {
  display: inline-block;
  background: var(--ink-soft);
  color: var(--cream);
  padding: 2px 10px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  vertical-align: baseline;
}

.greek {
  font-family: var(--greek);
  font-size: 1.7rem;
  color: var(--ink);
  line-height: 1.2;
}
.greek small {
  font-family: var(--text);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  margin-left: 8px;
}
.sc-def {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 4px;
}
.xrefs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.xrefs span {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--gold);
  border: 1px solid var(--line-cream);
  background: rgba(168, 116, 42, 0.06);
  border-radius: 999px;
  padding: 4px 11px;
}
.sc-divider {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}

.hero-stage .device {
  position: absolute;
}
.hero-stage .device.back {
  transform: rotate(6deg) translate(46px, -10px) scale(0.94);
  opacity: 0.96;
  filter: saturate(0.96);
}
.hero-stage .device.front {
  transform: rotate(-3deg) translate(-44px, 26px);
}
.float-word {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 30px;
  transform: translateX(-118%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-soft);
}
.float-word .greek {
  font-size: 1.35rem;
}
.float-word .tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 3px;
}

/* ───────── Reassurance strip ───────── */
.strip {
  background: var(--espresso);
  color: var(--cream);
}
.strip .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 26px;
  padding: 18px var(--gutter);
}
.strip span {
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 26px;
}
.strip span::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960'%3E%3Cpath fill='%23997360' d='M268-240 42-466l57-56 170 170 56 56-57 56Zm226 0L268-466l56-57 170 170 368-368 56 57-424 424Zm0-226-57-56 198-198 57 56-198 198Z'/%3E%3C/svg%3E")
    no-repeat center / contain;
}
.strip span:last-child::after {
  display: none;
}

/* ───────── Promise ───────── */
.promise .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.promise h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
}
.promise-body {
  position: relative;
}
.promise-body .prose::first-letter {
  font-family: var(--display);
  float: left;
  font-size: 4.6rem;
  line-height: 0.78;
  font-weight: 600;
  color: var(--rubric);
  margin: 6px 14px 0 0;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink-body);
  border: 1px solid var(--line);
  background: var(--paper-raised);
  border-radius: 999px;
  padding: 9px 17px;
}
.badge .check {
  color: var(--gold);
  font-weight: 700;
}

/* ───────── Features ───────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.feature {
  background: var(--paper);
  padding: 34px 30px;
  position: relative;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature:hover {
  background: var(--paper-raised);
}
.feature:hover::before {
  transform: scaleX(1);
}
.feature-num {
  font-family: var(--display);
  font-size: 0.9rem;
  color: var(--faint);
  letter-spacing: 0.04em;
}
.feature-icon {
  width: 44px;
  height: 44px;
  margin: 14px 0 16px;
  color: var(--gold);
  display: grid;
  place-items: center;
  border: 1px solid var(--line-cream);
  border-radius: 12px;
  background: rgba(168, 116, 42, 0.06);
}
.feature-icon svg {
  width: 23px;
  height: 23px;
}
.feature-icon .alpha {
  font-family: var(--greek);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.feature h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.feature p {
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--ink-soft);
}

/* ───────── Closer look ───────── */
.look .wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 9vw, 120px);
}
.look-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.look-row.rev .look-text {
  order: 2;
}
.look-index {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.look-text h3 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  margin-bottom: 16px;
}
.look-text p {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.look-stage {
  display: flex;
  justify-content: center;
  position: relative;
}
.look-stage::before {
  content: "";
  position: absolute;
  inset: 8% 12%;
  background: radial-gradient(
    1200px 680px at 78% -8%,
    rgba(106, 65, 45, 0.08),
    transparent 60%
  );
}
.look-row .device {
  transform: rotate(-2.5deg);
}
.look-row.rev .device {
  transform: rotate(2.5deg);
}

/* ───────── Audience ───────── */
.audience {
  background: var(--paper-raised);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.audience-grid {
  display: grid;
  gap: 26px;
}
.aud {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.aud:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.aud-mark {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 14px;
}
.aud h3 {
  font-size: 1.32rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.aud p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.72;
}

/* ───────── Dark feature band (Trust) ───────── */
.band-dark {
  background: var(--espresso);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.band-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      1200px 680px at 78% -8%,
      rgba(106, 65, 45, 0.08),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at -6% 4%,
      rgba(106, 65, 45, 0.04),
      transparent 55%
    );
}
.band-dark .kicker {
  color: var(--gold-bright);
}
.trust-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.trust-seal {
  width: 66px;
  height: 66px;
  margin: 0 auto 26px;
  border: 1px solid var(--line-cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
}
.trust-seal svg {
  width: 30px;
  height: 30px;
}
.trust-inner h2 {
  color: var(--cream);
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
}
.trust-inner .prose {
  color: rgba(253, 246, 230, 0.78);
  margin: 22px auto 0;
  max-width: 60ch;
}
.promises {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
  margin-top: 34px;
}
.promises li {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--cream);
  border: 1px solid var(--line-cream);
  border-radius: 999px;
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.promises li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: none;
  background-color: var(--gold-bright);
  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;
}

/* ───────── Library ───────── */

.library h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
}
.library .prose {
  margin: 20px auto 32px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.chips span {
  font-family: var(--sans);
  font-size: 0.94rem;
  color: var(--ink-body);
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 17px;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.chips span:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.lib-note {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 24px;
}

/* ───────── Compare ───────── */
.compare {
  border-top: 1px solid var(--line-soft);
}
.table-wrap {
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 4px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
th,
td {
  padding: 16px 20px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid var(--line-soft);
}
thead th {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
tbody td:first-child {
  font-family: var(--text);
  color: var(--ink-body);
}
td.us,
th.us {
  border-left: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
thead th.us {
  font-family: var(--display);
  font-size: 1.04rem;
  font-weight: 600;
  border-top: 1px solid var(--gold);
}
tbody td.us {
  background: rgba(168, 116, 42, 0.09);
  color: var(--ink);
  font-weight: 600;
}
tbody td:not(:first-child):not(.us) {
  color: var(--muted);
  font-size: 0.96rem;
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:last-of-type .us {
  border-bottom: 1px solid var(--gold);
}

tbody .first-column {
}

.compare-note {
  font-family: var(--sans);
  color: var(--muted);
  font-size: 0.96rem;
  margin-top: 24px;
}

/* ───────── FAQ ───────── */
.faq-inner {
  margin: 0 auto;
}
.faq-home {
  margin-top: 32px;
}
details {
  border-bottom: 1px solid var(--line);
}
details summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 4px;
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex: none;
}
details[open] summary::after {
  transform: rotate(45deg);
}
details p {
  padding: 0 4px 24px;
  color: var(--ink-soft);
  line-height: 1.78;
}

.cta-inner {
  margin: 0 auto;
  position: relative;
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta {
  margin-top: 120px;
  margin-bottom: -96px;
}
.cta h2 {
  color: var(--cream);
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
}
.cta p {
  color: rgba(253, 246, 230, 0.78);
  font-size: 1.16rem;
  margin: 20px auto 34px;
}
.cta .store-row {
  justify-content: flex-start;
}

/* ───────── Footer ───────── */
footer {
  background: #140c07;
  color: var(--faint);
  padding: clamp(54px, 7vw, 76px) var(--gutter);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
}
.footer-brand img {
  width: 100px;
  height: 100%;
}
.footer-brand span {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
  margin-bottom: 24px;
}
.footer-links a {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--gold-pale);
}
.footer-links a:hover {
  color: var(--cream);
}
.footer-print {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(185, 156, 141, 0.85);
}
.footer-warm {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--muted);
}

/* ───────── Motion ───────── */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.rise {
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.rise.r1 {
  animation-delay: 0.08s;
}
.rise.r2 {
  animation-delay: 0.2s;
}
.rise.r3 {
  animation-delay: 0.32s;
}
.rise.r4 {
  animation-delay: 0.44s;
}
.rise.r5 {
  animation-delay: 0.56s;
}
.hero-stage {
  animation: rise 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s both;
}
.float-word {
  animation: floatY 5.5s ease-in-out infinite;
}

/* ───────── 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(--gold);
  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-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy .lede,
  .hero-meta {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-meta,
  .hero-cta {
    justify-content: flex-start;
  }
  .hero-stage {
    margin-top: 24px;
    min-height: 560px;
  }
  .promise .wrap {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .look-row,
  .look-row.rev .look-text {
    grid-template-columns: 1fr;
    order: 0;
  }
  .look-row {
  }
  .look-text p {
    margin: 0 auto;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .showcase {
    flex-direction: column;
    text-align: center;
  }
  .showcase.rev .showcase-text {
    order: 0;
  }
}
@media (max-width: 820px) {
  .showcase {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .showcase .shot {
    max-width: 220px;
  }
  .showcase.rev .showcase-text {
    order: 0;
  }
}
@media (max-width: 860px) {
  body {
    font-size: 17px;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-mobile {
    display: block;
  }
  .btn-pill {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }
  .float-word {
    transform: translateX(-100%);
  }
}

/* ════════════════════════════════════════════════════════════
   PAGES.CSS — Shared sub-page component styles
   ════════════════════════════════════════════════════════════ */

/* ───────── Breadcrumb ───────── */
.breadcrumb {
  margin-top: 24px;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.breadcrumb li + li::before {
  content: "/";
  color: var(--faint);
}
.breadcrumb a {
  color: var(--muted);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb [aria-current] {
  color: var(--ink-soft);
}

/* ───────── Page hero (sub-page header) ───────── */
.page-hero {
  padding: clamp(44px, 7vw, 88px) 0 clamp(26px, 4vw, 44px);
}

.page-hero .kicker {
  justify-content: center;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  letter-spacing: -0.022em;
}
.page-hero h1 em {
  color: var(--rubric);
  font-weight: 500;
}
.page-hero .lede {
  font-size: clamp(1.12rem, 1.8vw, 1.34rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 24px;
}
.page-hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 30px;
}

/* ───────── Dark hero with background image ───────── */
.page-hero--dark {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 10, 5, 0.6) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}
.page-hero--dark > * {
  position: relative;
  z-index: 2;
}
.page-hero--dark .kicker {
  color: var(--paper);
  opacity: 0.85;
}
.page-hero--dark h1 {
  color: var(--paper);
}
.page-hero--dark h1 em {
  color: var(--paper);
}
.page-hero--dark .lede {
  color: var(--paper);
}
.page-hero--dark .hero-cta {
  justify-content: center;
}
.page-hero--dark .hero-bg {
  max-width: 72ch;
}

/* ───────── Generic content section ───────── */
.section-tight {
  margin-bottom: 96px;
  /* padding-top: 90px; */
}

/* ───────── Long-form document / article body ───────── */
.doc {
  margin: 0 auto;
}
.doc > * + * {
  margin-top: 1.15em;
}
.doc h2 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  letter-spacing: -0.012em;
  margin-top: 1.9em;
  line-height: 1.18;
}
.doc h2:first-child,
.doc h3:first-child {
  margin-top: 0;
}
.doc h3 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.3rem;
  margin-top: 1.5em;
}
.doc p,
.doc li {
  color: var(--ink-soft);
  line-height: 1.82;
  font-size: 1.08rem;
  list-style: none;
}

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

.doc li {
  margin-top: 0.55em;
}
.doc li::marker {
  color: var(--gold);
}
.doc a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.doc a:hover {
  color: var(--rubric);
}
.doc strong {
  color: var(--ink);
  font-weight: 600;
}
.doc em {
  font-style: italic;
}
.doc blockquote {
  border-left: 3px solid var(--gold);
  padding: 2px 0 2px 24px;
  margin: 1.6em 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.28rem;
  line-height: 1.5;
  color: var(--ink);
}
.doc blockquote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}
.doc hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 2.2em 0;
}
.doc .updated {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--muted);
}

.benefits {
  margin-top: 100px;
}

.callout {
  background: var(--paper-raised);
  border-left: 20px solid var(--gold);
  border-radius: 0;
  padding: 20px 24px;
  margin-top: 60px;
}
.callout p {
  margin: 0;
  font-size: 1.02rem;
}
.callout .callout-h {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ───────── Checklist ───────── */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  margin-top: 40px;
  padding-left: 28px;
}
.checklist li {
  position: relative;
  margin-top: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1.06rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 5px;
  width: 16px;
  height: 16px;
  background-color: var(--gold);
  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;
}

.checklist strong {
  color: var(--ink);
  font-weight: 600;
}

.notlist {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  margin-top: 40px;
  padding-left: 28px;
}
.notlist li {
  position: relative;
  margin-top: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1.06rem;
}
.notlist li::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%236a412d' d='M4.646 4.646a.5.5 0 0 1 .708 0L10 9.293l4.646-4.647a.5.5 0 0 1 .708.708L10.707 10l4.647 4.646a.5.5 0 0 1-.708.708L10 10.707l-4.646 4.647a.5.5 0 0 1-.708-.708L9.293 10 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: contain;
}
/* ───────── Key points grid ───────── */
.keypoints {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.keypoints--three {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
}

.keypoint .kp-ico {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--paper);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.keypoint .kp-ico svg {
  width: 22px;
  height: 22px;
}
.keypoint h3 {
  font-size: 1.18rem;
  margin-bottom: 9px;
}
.keypoint p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.66;
}
@media (max-width: 900px) {
  .keypoints {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .keypoints {
    grid-template-columns: 1fr;
  }
}

/* ───────── App screenshots ───────── */
.shot {
  width: 100%;
  max-width: 290px;
  height: auto;
}
.shot--tilt-l {
  transform: rotate(-2.4deg);
}
.shot--tilt-r {
  transform: rotate(2.4deg);
}

/* ───────── Showcase: text beside screenshot ───────── */
.showcase {
  display: flex;
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
  margin-top: clamp(44px, 7vw, 84px);
  justify-content: space-between;
}
.showcase.rev .showcase-text {
  order: 2;
}
.showcase-text .kicker {
  margin-bottom: 14px;
}
.showcase-text h2 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  font-size: clamp(1.55rem, 3.1vw, 2.25rem);
  letter-spacing: -0.012em;
  line-height: 1.16;
  margin-top: 0;
}
.showcase-text > p {
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-top: 14px;
}
.showcase-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.showcase-list li {
  position: relative;
  padding-left: 26px;
  margin-top: 11px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 1.02rem;
}
.showcase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960'%3E%3Cpath fill='%236a412d' d='M268-240 42-466l57-56 170 170 56 56-57 56Zm226 0L268-466l56-57 170 170 368-368 56 57-424 424Zm0-226-57-56 198-198 57 56-198 198Z'/%3E%3C/svg%3E")
    no-repeat center / contain;
}
.showcase-list strong {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 820px) {
  .showcase,
  .showcase.rev .showcase-text {
    grid-template-columns: 1fr;
    order: 0;
  }
  .showcase-text {
  }
  .showcase-text > p {
    margin-inline: auto;
  }
  .showcase-text .kicker {
    justify-content: center;
  }
  .showcase-list {
    display: inline-block;
    text-align: left;
  }
}

/* ───────── Blog ───────── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.post-card {
  display: flex;
  flex-direction: column;
  transition: opacity 0.22s ease;
}
.post-card:hover {
  opacity: 0.75;
  cursor: pointer;
}
.post-card .cat {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 13px;
}
.post-card h2,
.post-card h3 {
  font-size: 1.34rem;
  line-height: 1.22;
  margin-bottom: 11px;
  color: var(--ink);
}
.post-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  flex: 1 0 auto;
}
.post-card .meta {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 16px;
}
.post-card .more {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.post-card:hover .more {
  gap: 10px;
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ───────── Article ───────── */
.article-head {
  margin-top: 64px;
}
.article-head .cat {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.article-head h1 {
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.article-meta {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 20px;
  display: flex;
  gap: 8px 16px;
}
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ───────── Related links ───────── */
.related {
  margin: 0 auto;
  padding-top: 0;
}
.related h2 {
  font-size: 1.22rem;
  margin-bottom: 14px;
}
.related ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.related a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  padding: 7px 0;
  font-size: 1.06rem;
}
.related a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960'%3E%3Cpath fill='%23b99c8d' d='M268-240 42-466l57-56 170 170 56 56-57 56Zm226 0L268-466l56-57 170 170 368-368 56 57-424 424Zm0-226-57-56 198-198 57 56-198 198Z'/%3E%3C/svg%3E")
    no-repeat center / contain;
}
.related a:hover {
  color: var(--rubric);
}

/* ───────── Contact ───────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 0 auto;
}
.contact-card .ci {
  width: 40px;
  height: 40px;
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  padding: 4px;
  background-color: var(--accent);
  border-radius: 4px;
}
.contact-card .ci svg {
  width: 23px;
  height: 23px;
}
.contact-card h2 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.contact-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.contact-card a {
  color: var(--gold);
  font-weight: 600;
  font-family: var(--sans);
  word-break: break-word;
}
.contact-card a:hover {
  color: var(--rubric);
}

/* ───────── Site footer (column layout) ───────── */
.site-footer {
  background: #140c07;
  color: var(--faint);
  padding: clamp(54px, 7vw, 80px) var(--gutter) clamp(32px, 4vw, 44px);
  margin-top: 96px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(221, 184, 119, 0.14);
}
.footer-tagline {
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(185, 156, 141, 0.9);
  max-width: 32ch;
  margin: 16px 0 20px;
}
.footer-store {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-store .store {
  padding: 9px 15px;
  border-radius: 12px;
  background: rgba(253, 246, 230, 0.06);
  border: 1px solid rgba(221, 184, 119, 0.18);
}
.footer-store .store:hover {
  background: rgba(253, 246, 230, 0.1);
  transform: translateY(-2px);
  box-shadow: none;
}
.footer-store .store svg {
  width: 19px;
  height: 19px;
}
.footer-store .store b {
  font-size: 0.98rem;
}
.footer-store .store small {
  font-size: 0.58rem;
}
.footer-col h2 {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-family: var(--sans);
  font-size: 0.96rem;
  color: var(--gold-pale);
  padding: 5px 0;
}
.footer-col a:hover {
  color: var(--cream);
}
.footer-base {
  padding-top: 30px;
}
.footer-base .footer-print {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--faint);
}
.footer-base .footer-warm {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--faint);
}
@media (max-width: 760px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 460px) {
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

/* ───────── Hero dark — mobile min-height override ───────── */
@media (max-width: 860px) {
  .page-hero--dark {
    min-height: auto;
    padding-top: clamp(80px, 16vw, 120px);
    padding-bottom: clamp(60px, 10vw, 90px);
    align-items: flex-start;
  }
  .page-hero--dark .hero-grid {
    grid-template-columns: 1fr;
  }
}
