/* =================================================================
   SEERAHKEY — "Daily Returning"
   An editorial devotional. Parchment & manuscript ink.
   ================================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Ink & paper */
  --ink: #1A1812;
  --ink-soft: #3D372E;
  --ink-mute: #85786A;
  --ink-faint: #B8AE9F;

  --paper: #F7F1E4;
  --paper-2: #FCF9F1;
  --paper-3: #EDE3CE;
  --paper-deep: #E4D7BC;

  /* Accents */
  --gold: #B8863C;
  --gold-soft: #D4A752;
  --gold-deep: #8B6428;

  --terra: #B5562F;
  --terra-deep: #8A3F1F;

  --forest: #4A5C3E;

  /* Night */
  --night: #161627;
  --night-2: #202038;
  --night-3: #2A2C4A;
  --night-ink: #EDEAE0;
  --night-mute: #8C8DA8;

  /* Rules */
  --rule: rgba(26, 24, 18, 0.12);
  --rule-soft: rgba(26, 24, 18, 0.06);
  --rule-strong: rgba(26, 24, 18, 0.22);

  /* Typography */
  --f-display: 'Fraunces', 'Iowan Old Style', 'Hoefler Text', Georgia, serif;
  --f-body: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Motion */
  --ease: cubic-bezier(.22, .8, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  /* subtle paper texture via layered gradients */
  background-image:
    radial-gradient(ellipse at top, rgba(212, 167, 82, 0.035), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(181, 86, 47, 0.025), transparent 50%);
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea { font: inherit; color: inherit; }

/* ---------- UTILITIES ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }

.saw {
  font-family: var(--f-body);
  font-size: 0.9em;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0;
  margin: 0 2px;
  display: inline-block;
  vertical-align: baseline;
  transform: translateY(-1px);
}

/* Kicker — small all-caps section intro */
.kicker {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-mute);
  margin-bottom: 28px;
  font-feature-settings: "ss01";
}
.kicker-gold { color: var(--gold-soft); }

/* Section title — the big serif */
.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.section-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-top: 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 1px 0 rgba(26, 24, 18, 0.4), 0 4px 16px rgba(26, 24, 18, 0.1);
}
.btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 2px 0 rgba(26, 24, 18, 0.5), 0 8px 24px rgba(26, 24, 18, 0.18);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary svg { transition: transform .25s var(--ease); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-large {
  padding: 20px 36px;
  font-size: 16px;
}

/* ---------- ANNOUNCEMENT BAR ---------- */
.announce {
  background: var(--ink);
  color: var(--paper-3);
  padding: 11px 0;
  border-bottom: 1px solid rgba(247, 241, 228, 0.06);
}
.announce-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
}
.announce-item { font-feature-settings: "ss01"; }
.announce-sep { color: var(--gold-soft); opacity: 0.7; }
@media (max-width: 680px) {
  .announce-row { font-size: 11px; gap: 10px; }
  .announce-item:nth-child(5) { display: none; }
  .announce-sep:nth-child(4) { display: none; }
}

/* ---------- HEADER ---------- */
.site-head {
  background: var(--paper);
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-soft);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(6px);
  background: rgba(247, 241, 228, 0.9);
}
.head-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.head-date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 8px;
}
.head-date-divider { color: var(--gold); }
.head-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) saturate(100%);
  opacity: 0.92;
}
.head-cart {
  justify-self: end;
  position: relative;
  padding: 8px;
  color: var(--ink);
  transition: opacity .2s var(--ease);
}
.head-cart:hover { opacity: 0.6; }
.cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  background: var(--terra);
  color: var(--paper);
  font-size: 10px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 680px) {
  .head-date { font-size: 10px; gap: 6px; }
  [data-hijri-date] { display: none; }
  .head-date-divider { display: none; }
  .head-logo img { height: 30px; }
}

/* ---------- HERO ---------- */
.hero {
  padding: 56px 0 80px;
  position: relative;
}
@media (min-width: 900px) { .hero { padding: 80px 0 120px; } }

.hero-inner {
  position: relative;
}

.hero-meta {
  margin-bottom: 40px;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-chapter {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  font-variation-settings: "opsz" 14, "SOFT" 100;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
  }
}

.hero-image {
  position: relative;
  order: 1;
}
@media (min-width: 900px) { .hero-image { order: 0; } }

.hero-image-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--paper-3);
  background-image:
    linear-gradient(135deg, var(--paper-3) 0%, var(--paper-deep) 100%);
  overflow: hidden;
  border: 1px solid var(--rule);
}
.hero-image-frame::before,
.hero-image-frame::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
  opacity: 0.35;
}
.hero-image-frame::before {
  top: 12px; left: 12px;
  border-right: none; border-bottom: none;
}
.hero-image-frame::after {
  bottom: 12px; right: 12px;
  border-left: none; border-top: none;
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-caption {
  margin-top: 14px;
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-feature-settings: "tnum";
}
.caption-num { color: var(--gold); font-weight: 600; }

.hero-copy { order: 0; }
@media (min-width: 900px) { .hero-copy { order: 1; padding-left: 12px; } }

.hero-title {
  font-family: var(--f-display);
  font-weight: 350;
  font-size: clamp(42px, 7.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: 28px;
}
.hero-title-em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 350;
}
.hero-title-prophet {
  white-space: nowrap;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 44ch;
  font-weight: 400;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-price { display: flex; align-items: baseline; gap: 8px; }
.price-now {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  font-variation-settings: "opsz" 48;
}
.price-was {
  font-size: 15px;
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--ink-mute);
}
.price-save {
  font-size: 13px;
  color: var(--terra);
  font-style: italic;
  font-family: var(--f-display);
  font-variation-settings: "opsz" 14, "SOFT" 100;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-mute);
  padding-top: 20px;
  border-top: 1px solid var(--rule-soft);
}
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}

/* ---------- AS SEEN ON ---------- */
.as-seen {
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
}
.as-seen-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.as-seen-label {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 18, "SOFT" 100;
}
.as-seen-logos { display: flex; gap: 24px; align-items: center; }
.as-seen-logo {
  color: var(--ink);
  opacity: 0.7;
  transition: opacity .2s var(--ease);
}
.as-seen-logo:hover { opacity: 1; }
.as-seen-note {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .as-seen-note { display: none; }
  .as-seen-row { gap: 20px; }
}

/* ---------- PREMISE ---------- */
.premise {
  padding: 120px 0;
  text-align: center;
}
@media (max-width: 768px) { .premise { padding: 80px 0; } }

.premise-inner {
  max-width: 720px;
  margin: 0 auto;
}

.premise-lead {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  margin: 0 0 48px;
  font-weight: 350;
}
.premise-lead em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.premise-body {
  max-width: 56ch;
  margin: 0 auto;
  text-align: left;
}
.premise-body p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-weight: 400;
}
.premise-close {
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  margin-top: 32px !important;
  font-family: var(--f-display) !important;
  font-size: 22px !important;
  font-style: italic;
  color: var(--ink) !important;
  font-variation-settings: "opsz" 22, "SOFT" 100;
  line-height: 1.5 !important;
}
.premise-close em {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

/* ---------- EXPERIENCE ---------- */
.experience {
  padding: 100px 0;
  border-top: 1px solid var(--rule);
  background: var(--paper-2);
}
.experience-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 900px) {
  .experience-inner {
    grid-template-columns: 1fr 1fr;
    gap: 96px;
  }
}

.experience-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.experience-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.exp-num {
  font-family: var(--f-display);
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 20, "SOFT" 100;
}
.experience-list h4 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.experience-list p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.phone-frame {
  position: relative;
  background: linear-gradient(145deg, var(--paper-3), var(--paper-deep));
  padding: 40px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
}
.phone-frame::before, .phone-frame::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
  opacity: 0.4;
}
.phone-frame::before {
  top: 12px; left: 12px;
  border-right: none; border-bottom: none;
}
.phone-frame::after {
  bottom: 12px; right: 12px;
  border-left: none; border-top: none;
}
.phone-frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.phone-caption {
  margin-top: 14px;
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- HOW IT WORKS ---------- */
.how {
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}
.how-header { text-align: center; margin-bottom: 80px; }
.how-header .kicker { margin-bottom: 20px; }

.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.how-step {
  position: relative;
  padding: 32px 0;
  border-top: 1px solid var(--ink);
}
.how-step-num {
  font-family: var(--f-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-feature-settings: "tnum";
  font-style: italic;
}
.how-step-title {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.how-step-body p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 36ch;
}
.how-step-illo {
  margin-top: 32px;
  color: var(--ink-soft);
  opacity: 0.55;
}
.how-step-illo svg { width: 100%; max-width: 200px; height: auto; }

/* ---------- NIGHT SECTION (DARK INTERMISSION) ---------- */
.night {
  background: var(--night);
  color: var(--night-ink);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Geometric pattern bg */
.night-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 167, 82, 0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(181, 86, 47, 0.05), transparent 50%);
  pointer-events: none;
}
.night::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(237, 234, 224, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 234, 224, 0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.night-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.night .kicker { color: var(--gold-soft); margin-bottom: 48px; }

.night-card {
  background: linear-gradient(180deg, var(--night-2), var(--night));
  border: 1px solid rgba(212, 167, 82, 0.18);
  padding: 48px 40px;
  text-align: left;
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  box-shadow:
    0 1px 0 rgba(212, 167, 82, 0.1) inset,
    0 40px 80px rgba(0, 0, 0, 0.3);
}
@media (max-width: 600px) { .night-card { padding: 32px 24px; } }

.night-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.night-card-head {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212, 167, 82, 0.2);
}

.night-card-title {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--night-ink);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.night-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(237, 234, 224, 0.85);
  margin-bottom: 16px;
}
.night-card-context {
  padding: 16px 20px;
  background: rgba(212, 167, 82, 0.06);
  border-left: 2px solid var(--gold-soft);
  margin-bottom: 24px !important;
  font-size: 14px !important;
}
.night-card-context strong {
  color: var(--gold-soft);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 11px;
}

.night-card-quote {
  font-family: var(--f-display);
  font-size: 18px;
  font-style: italic;
  color: var(--night-ink);
  line-height: 1.55;
  margin: 24px 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  font-variation-settings: "opsz" 18, "SOFT" 100;
}

.night-card-reflection {
  font-style: italic;
  color: rgba(237, 234, 224, 0.75) !important;
  font-size: 14px !important;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 167, 82, 0.2);
}

.night-card-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 167, 82, 0.2);
  display: flex;
  gap: 10px;
  font-size: 11px;
  color: var(--night-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.night-coda {
  margin-top: 48px;
  font-family: var(--f-display);
  font-size: 18px;
  color: rgba(237, 234, 224, 0.7);
  font-style: italic;
  line-height: 1.55;
  font-variation-settings: "opsz" 18, "SOFT" 80;
}
.night-coda em { color: var(--gold-soft); }

/* ---------- INSIDE THE KEY ---------- */
.inside { padding: 120px 0; }
.inside-header { text-align: center; margin-bottom: 72px; }

.inside-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 680px) { .inside-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .inside-grid { grid-template-columns: repeat(4, 1fr); } }

.inside-card {
  padding: 40px 28px;
  background: var(--paper);
  transition: background .3s var(--ease);
}
.inside-card:hover { background: var(--paper-2); }
.inside-card-wide {
  grid-column: 1 / -1;
  background: var(--paper-3);
}
.inside-card-wide:hover { background: var(--paper-deep); }

.inside-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  font-variation-settings: "opsz" 20, "SOFT" 100;
  display: block;
  margin-bottom: 16px;
}
.inside-card h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.inside-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ---------- REVIEWS ---------- */
.reviews {
  padding: 120px 0;
  background: var(--paper-3);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.reviews-header {
  text-align: center;
  margin-bottom: 80px;
}
.reviews-header .section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.reviews-rating {
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 96px);
  color: var(--gold);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  line-height: 1;
}
.reviews-stars { display: flex; gap: 4px; color: var(--gold); }
.reviews-from {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 500;
  margin-left: 8px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
  }
}

.review {
  background: var(--paper);
  padding: 36px 32px;
  border: 1px solid var(--rule);
  position: relative;
  display: flex;
  flex-direction: column;
}
.review-large { grid-column: span 4; }
.review-medium { grid-column: span 2; }
.review-small { grid-column: span 3; }
@media (max-width: 899px) {
  .review-large, .review-medium, .review-small { grid-column: span 1; }
}

.review blockquote {
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-weight: 350;
  margin-bottom: 24px;
  flex: 1;
  position: relative;
}
.review-small blockquote { font-size: 17px; }

.quote-mark {
  position: absolute;
  top: -8px;
  left: -8px;
  font-family: var(--f-display);
  font-size: 72px;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.review figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.review-author {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  font-variation-settings: "opsz" 18, "SOFT" 100;
}
.review-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.review-image {
  margin-top: 20px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper-3);
}
.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.review:hover .review-image img { transform: scale(1.03); }

/* ---------- BOX ---------- */
.box { padding: 120px 0; }
.box-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 900px) {
  .box-inner { grid-template-columns: 1fr 1fr; gap: 96px; }
}
.box-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-3);
  border: 1px solid var(--rule);
}
.box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.box-list li {
  display: flex;
  gap: 16px;
  font-size: 16px;
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.box-list li span {
  color: var(--gold);
  font-family: var(--f-display);
  font-style: italic;
}

.box-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--paper-2);
  border-left: 2px solid var(--gold);
  font-size: 15px;
  color: var(--ink-soft);
}
.box-note em {
  font-family: var(--f-display);
  color: var(--ink);
  font-weight: 500;
  font-variation-settings: "opsz" 15, "SOFT" 100;
}

/* ---------- DAY WITH ---------- */
.day {
  padding: 120px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.day-header { text-align: center; margin-bottom: 80px; }

.day-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 680px) { .day-grid { grid-template-columns: 1fr 1fr; } }

.day-moment {
  padding: 40px 32px;
  background: var(--paper);
  position: relative;
}
.day-moment:nth-child(even) { background: var(--paper-2); }

.day-time {
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-feature-settings: "tnum";
}
.day-where {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.day-moment p {
  font-family: var(--f-display);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 350;
  max-width: 38ch;
  letter-spacing: -0.01em;
}

/* ---------- LANDSCAPE BREAK ---------- */
.landscape {
  position: relative;
  height: 70vh;
  min-height: 420px;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.landscape-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.landscape-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 48px 0;
  background: linear-gradient(to bottom, transparent, rgba(26, 24, 18, 0.7));
  color: var(--paper);
}
.landscape-quote {
  font-family: var(--f-display);
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.1;
  font-weight: 350;
  letter-spacing: -0.02em;
  color: var(--paper);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.landscape-quote em {
  font-style: italic;
  color: var(--gold-soft);
}

/* ---------- MISSION ---------- */
.mission {
  padding: 120px 0;
  text-align: center;
  background: var(--paper);
  border-top: 1px solid var(--rule);
}
.mission-inner { max-width: 720px; margin: 0 auto; }
.mission-stamp {
  color: var(--gold);
  margin: 0 auto 32px;
  display: flex;
  justify-content: center;
}
.mission-title {
  font-family: var(--f-display);
  font-size: clamp(34px, 5.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 32px;
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.mission-title em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.mission-body {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 56px;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  max-width: 720px;
  margin: 0 auto;
}
.mission-stat {
  padding: 32px 16px;
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mission-stat-num {
  font-family: var(--f-display);
  font-size: clamp(24px, 4vw, 36px);
  color: var(--gold);
  font-weight: 500;
  font-feature-settings: "tnum";
}
.mission-stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- FAQ ---------- */
.faq {
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}
.faq-header { text-align: center; margin-bottom: 72px; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid var(--rule);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-icon {
  font-size: 20px;
  color: var(--gold);
  font-family: var(--f-display);
  font-weight: 300;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-item p {
  margin-top: 20px;
  padding-right: 40px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-item p em {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--ink);
  font-variation-settings: "opsz" 16, "SOFT" 100;
}

/* ---------- CLOSING CTA ---------- */
.closing {
  padding: 120px 0 140px;
  text-align: center;
  background: var(--paper-3);
  border-top: 1px solid var(--rule);
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-stars {
  display: block;
  font-family: var(--f-display);
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.5em;
  margin-bottom: 40px;
}
.closing-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-weight: 350;
  margin-bottom: 28px;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.closing-title em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.closing-sub {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 40px;
  line-height: 1.55;
}
.closing-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 28px;
}
.closing-price .price-now { font-size: 36px; }

.closing-trust {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.site-foot {
  background: var(--ink);
  color: var(--paper-3);
  padding: 80px 0 40px;
}

.foot-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247, 241, 228, 0.1);
}
@media (min-width: 900px) {
  .foot-top { grid-template-columns: 1.3fr 2fr; gap: 64px; }
}

.foot-logo {
  height: 48px;
  width: auto;
  filter: invert(1) brightness(1.2);
  opacity: 0.95;
  margin-bottom: 20px;
}
.foot-tag {
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 1.4;
  color: var(--paper-3);
  font-weight: 350;
  font-variation-settings: "opsz" 20, "SOFT" 60;
  font-style: italic;
  max-width: 30ch;
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (min-width: 700px) { .foot-cols { grid-template-columns: repeat(4, 1fr); } }

.foot-col h4 {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 20px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 12px; }
.foot-col li a {
  font-size: 14px;
  color: var(--paper-3);
  opacity: 0.8;
  transition: opacity .2s var(--ease);
}
.foot-col li a:hover { opacity: 1; }
.foot-col li a[aria-disabled="true"] { opacity: 0.4; cursor: not-allowed; font-style: italic; }

.foot-col-news {
  grid-column: span 2;
}
@media (min-width: 700px) { .foot-col-news { grid-column: span 1; } }

.foot-col-news p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--paper-3);
  opacity: 0.7;
  margin-bottom: 16px;
}
.foot-news {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(247, 241, 228, 0.2);
  padding-bottom: 2px;
}
.foot-news input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 0;
  font-size: 14px;
  color: var(--paper);
  outline: none;
}
.foot-news input::placeholder { color: rgba(247, 241, 228, 0.3); }
.foot-news button {
  padding: 0 12px;
  color: var(--gold-soft);
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.foot-news button:hover { color: var(--paper); transform: translateX(2px); }

.foot-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--paper-3);
  opacity: 0.5;
  letter-spacing: 0.04em;
}
.foot-mission { font-style: italic; }

/* ---------- STICKY BUY BAR ---------- */
.sticky-buy {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(247, 241, 228, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--rule);
  transform: translateY(110%);
  transition: transform .45s var(--ease);
  z-index: 50;
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 32px rgba(26, 24, 18, 0.06);
}
.sticky-buy.visible { transform: translateY(0); }

.sticky-buy-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.sticky-buy-product {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.sticky-buy-thumb {
  width: 52px; height: 52px;
  object-fit: cover;
  background: var(--paper-3);
}
.sticky-buy-name {
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.sticky-buy-price {
  display: flex;
  gap: 6px;
  align-items: baseline;
  font-size: 13px;
}
.sticky-buy-price .price-now {
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--ink);
}
.sticky-buy-price .price-was { font-size: 12px; }
.sticky-buy-btn {
  padding: 12px 22px;
  font-size: 14px;
  flex-shrink: 0;
}
@media (max-width: 500px) {
  .sticky-buy-name { font-size: 14px; }
  .sticky-buy-price .price-now { font-size: 14px; }
}

/* ---------- ANIMATIONS ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero-title,
  .hero-sub,
  .hero-cta-row,
  .hero-trust,
  .hero-image-frame {
    animation: rise 0.9s var(--ease-out) backwards;
  }
  .hero-image-frame { animation-delay: 0.05s; }
  .hero-title { animation-delay: 0.15s; }
  .hero-sub { animation-delay: 0.3s; }
  .hero-cta-row { animation-delay: 0.4s; }
  .hero-trust { animation-delay: 0.5s; }

  @keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ---------- FOCUS STATES ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
