/* =====================================================
   LUMORA ABOUT PAGE
   Theme: Premium Editorial Bookstore
   Fonts: DM Serif Display + Manrope
===================================================== */

/* ================= ROOT VARIABLES ================= */

:root {
  --bg: #f7f7f3;
  --surface: #ffffff;
  --surface-soft: #f1f3ed;

  --ink: #1d2a25;
  --ink-soft: #69756f;
  --ink-muted: #8b948e;

  --green: #214d3d;
  --green-dark: #17372c;
  --green-light: #dfece2;

  --orange: #c9864a;
  --orange-light: #f2e4d1;

  --cream: #eee0c4;
  --lilac: #e5e2f1;
  --rose: #f0e2dc;

  --border: rgba(29, 42, 37, 0.12);
  --border-light: rgba(255, 255, 255, 0.18);

  --shadow-sm: 0 8px 24px rgba(28, 42, 35, 0.05);
  --shadow-md: 0 20px 55px rgba(28, 42, 35, 0.09);
  --shadow-lg: 0 30px 80px rgba(28, 42, 35, 0.15);

  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;

  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 32px;

  --container: 1240px;
  --transition: 0.35s ease;
}

[data-theme="dark"] {
  --bg: #0f1410;
  --surface: #1a2420;
  --surface-soft: #222e28;
  --ink: #e4ebe6;
  --ink-soft: #9aa8a0;
  --ink-muted: #b0bbb3;
  --green: #5cb88a;
  --green-dark: #4a9a72;
  --green-light: #1e2d24;
  --orange: #e8b06a;
  --orange-light: #f0c98a;
  --cream: #2e2518;
  --lilac: #222e28;
  --rose: #2e2520;
  --border: rgba(228, 235, 230, 0.08);
  --border-light: rgba(228, 235, 230, 0.06);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 20px 55px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] body {
  background: var(--bg);
}

[data-theme="dark"] .site-header {
  background: rgba(15, 20, 16, 0.86);
  border-bottom-color: rgba(228, 235, 230, 0.06);
}

[data-theme="dark"] .nav-icon:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

[data-theme="dark"] .primary-button {
  background: var(--orange);
  color: #fff;
}

[data-theme="dark"] .primary-button:hover {
  box-shadow: 0 14px 28px rgba(232, 176, 106, 0.15);
}

[data-theme="dark"] .value-card {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .value-card:hover {
  border-color: var(--green);
}

[data-theme="dark"] .value-green {
  background: #1e2d24;
}

[data-theme="dark"] .value-cream {
  background: #2e2518;
}

[data-theme="dark"] .value-lilac {
  background: #222e28;
}

[data-theme="dark"] .stats-window {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .journal-window {
  background:
    radial-gradient(circle at 85% 50%, rgba(92, 184, 138, 0.1), transparent 30%),
    #1a2420;
  color: #e4ebe6;
}

[data-theme="dark"] .faq-question {
  color: var(--ink);
}

[data-theme="dark"] .final-cta {
  background:
    radial-gradient(circle at 10% 20%, rgba(30, 45, 36, 0.8), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(46, 37, 24, 0.7), transparent 35%),
    var(--surface);
}

[data-theme="dark"] .site-footer {
  background: #0a0f0b;
  border-top-color: var(--border);
}

/* ================= RESET ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 5% 15%, rgba(223, 236, 226, 0.5), transparent 24%),
    radial-gradient(circle at 96% 55%, rgba(242, 228, 209, 0.4), transparent 25%),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  z-index: -1;
  background-image:
    linear-gradient(rgba(29, 42, 37, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 42, 37, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(var(--container), calc(100% - 112px));
  margin-inline: auto;
}

/* ================= TYPOGRAPHY ================= */

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h1 em,
h2 em,
h3 em {
  color: var(--orange);
  font-style: italic;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--orange);
}

/* ================= HEADER ================= */

.site-header {
  height: 85px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(29, 42, 37, 0.08);
  background: rgba(247, 247, 243, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 11px;
  transform: rotate(-4deg);
  box-shadow: 0 8px 18px rgba(33, 77, 61, 0.16);
}

.brand-icon i {
  font-size: 17px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: -0.04em;
}

.brand-name span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 30px;
}

.nav-links a {
  position: relative;
  color: #6b756f;
  font-size: 13px;
  font-weight: 700;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 23px;
}

.nav-icon {
  position: relative;
  color: var(--ink);
  font-size: 17px;
  transition: transform var(--transition), color var(--transition);
}

.nav-icon:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

/* Theme Toggle */
.theme-toggle {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: transform var(--transition), color var(--transition);
}

.theme-toggle:hover {
  color: var(--orange);
  border-color: var(--border);
  background: var(--paper);
  transform: translateY(-2px);
}

.theme-toggle i {
  font-size: 1rem;
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.theme-toggle:active i {
  transform: rotate(30deg) scale(0.85);
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 50px;
  color: #fff;
  background: var(--orange);
  font-size: 9px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
}

/* ================= HERO ================= */

.about-hero {
  padding: 58px 0 90px;
}

.hero-window {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 50%, rgba(109, 143, 99, 0.22), transparent 34%),
    linear-gradient(120deg, #183b2e, #274d3c 65%, #40573b);
  color: #f7f1e5;
  box-shadow: var(--shadow-lg);
}

.hero-window::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.window-topbar {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  position: relative;
  z-index: 2;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
}

.window-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.window-topbar > i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.hero-content {
  min-height: 512px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 30px;
  padding: 70px 68px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 510px;
}

.hero-copy .eyebrow {
  color: #dba56e;
}

.hero-copy h1 {
  margin: 25px 0 25px;
  max-width: 520px;
  font-size: clamp(55px, 5.3vw, 84px);
  color: #f8f1e4;
}

.hero-copy h1 em {
  color: #dca272;
}

.hero-copy p {
  max-width: 470px;
  color: rgba(248, 241, 228, 0.68);
  font-size: 15px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 35px;
}

.primary-button,
.light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 49px;
  padding: 0 23px;
  border-radius: 50px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition);
}

.primary-button:hover,
.light-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(201, 134, 74, 0.25);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  transition: color var(--transition);
}

.text-button:hover {
  color: #fff;
}

.text-button i {
  font-size: 11px;
}

/* ================= HERO VISUAL ================= */

.hero-visual {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: orbitPulse 6s ease-in-out infinite;
}

.orbit-one {
  width: 410px;
  height: 410px;
}

.orbit-two {
  width: 320px;
  height: 320px;
  animation-delay: -2s;
}

.floating-book {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 18px 24px 45px rgba(0, 0, 0, 0.22);
  transition: transform 0.5s ease;
}

.book-back {
  width: 205px;
  height: 310px;
  padding: 25px 20px;
  left: 18%;
  top: 18%;
  color: #f6ead8;
  background: #bc8061;
  transform: rotate(-12deg);
  z-index: 1;
}

.book-back span {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 0.9;
}

.book-back strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 0.9;
}

.book-back small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.book-front {
  width: 245px;
  height: 350px;
  padding: 28px 24px;
  right: 15%;
  top: 10%;
  color: #f6ead8;
  background: #245442;
  transform: rotate(2deg);
  z-index: 2;
}

.book-front:hover {
  transform: rotate(0deg) translateY(-10px);
}

.book-front small,
.book-front span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.book-front h2 {
  font-size: 37px;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.visual-note {
  position: absolute;
  right: 2%;
  bottom: 6%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(15px);
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  font-weight: 800;
}

.visual-note i {
  color: #dca272;
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.65;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* ================= GENERAL SECTIONS ================= */

.intro-section,
.values-section,
.stats-section,
.journal-section,
.faq-section,
.final-cta-section {
  padding: 95px 0;
}

.section-heading {
  max-width: 650px;
}

.section-heading h2 {
  margin-top: 22px;
  font-size: clamp(43px, 4.3vw, 68px);
}

.section-heading.centered {
  max-width: 700px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered .eyebrow::before {
  display: none;
}

/* ================= INTRO ================= */

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.intro-large-card {
  min-height: 390px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--green);
  color: #f5eee1;
  box-shadow: var(--shadow-md);
}

.intro-large-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -80px;
  bottom: -100px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.intro-large-card::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -120px;
  bottom: -140px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.card-number {
  color: #dca272;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.card-icon {
  display: block;
  margin-top: 65px;
  color: #dca272;
  font-size: 32px;
}

.intro-large-card h3 {
  margin-top: 25px;
  font-size: 34px;
}

.intro-large-card p {
  max-width: 320px;
  margin-top: 18px;
  color: rgba(245, 238, 225, 0.65);
  font-size: 13px;
  line-height: 1.9;
}

.card-line {
  display: block;
  width: 55px;
  height: 2px;
  margin-top: 30px;
  background: #dca272;
}

.intro-text {
  max-width: 560px;
}

.intro-text .large-text {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 39px);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.intro-text > p:not(.large-text) {
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  border-bottom: 1px solid var(--green);
  padding-bottom: 7px;
  transition: gap var(--transition), color var(--transition);
}

.inline-link:hover {
  gap: 18px;
  color: var(--orange);
}

/* ================= VALUES ================= */

.values-section {
  background:
    radial-gradient(circle at 15% 50%, rgba(223, 236, 226, 0.55), transparent 28%),
    rgba(255, 255, 255, 0.3);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  min-height: 355px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-md);
}

.value-green {
  background: #e3eee4;
}

.value-cream {
  background: #f0e5d2;
}

.value-lilac {
  background: #e7e5f1;
}

.value-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.value-index {
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.value-top i {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  color: var(--green);
  font-size: 17px;
}

.value-card h3 {
  margin-top: 85px;
  font-size: 32px;
}

.value-card p {
  max-width: 290px;
  margin-top: 17px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.value-shape {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  bottom: -80px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}

/* ================= STATS ================= */

.stats-window {
  padding: 65px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stats-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--border);
}

.stats-heading h2 {
  max-width: 570px;
  margin-top: 20px;
  font-size: clamp(38px, 3.8vw, 58px);
}

.stats-heading h2 em {
  color: var(--orange);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 45px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-item strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.stat-item strong::after {
  content: "+";
  color: var(--orange);
  font-family: var(--sans);
  font-size: 24px;
  margin-left: 4px;
}

.stat-item span {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

/* ================= JOURNAL ================= */

.journal-window {
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 70px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 50%, rgba(105, 132, 82, 0.2), transparent 30%),
    #1d4435;
  color: #f8f0e1;
}

.journal-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.35;
}

.journal-copy,
.journal-card-wrap {
  position: relative;
  z-index: 1;
}

.journal-copy {
  max-width: 500px;
}

.journal-copy .eyebrow {
  color: #dca272;
}

.journal-copy h2 {
  margin-top: 25px;
  font-size: clamp(43px, 4vw, 65px);
  color: #f8f0e1;
}

.journal-copy h2 em {
  color: #dca272;
}

.journal-copy p {
  max-width: 430px;
  margin-top: 25px;
  color: rgba(248, 240, 225, 0.65);
  font-size: 14px;
  line-height: 1.9;
}

.light-button {
  margin-top: 30px;
  background: #f8f0e1;
  color: var(--green);
}

.light-button:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.journal-card-wrap {
  min-height: 400px;
  display: grid;
  place-items: center;
}

.journal-circle {
  position: absolute;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.journal-circle::after {
  content: "";
  position: absolute;
  inset: 35px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.journal-card {
  width: 315px;
  height: 375px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  position: relative;
  z-index: 2;
  color: var(--green);
  background: #ead9b8;
  border: 1px solid rgba(29, 42, 37, 0.2);
  box-shadow: 18px 25px 50px rgba(0, 0, 0, 0.18);
  transform: rotate(3deg);
  transition: transform 0.5s ease;
}

.journal-card:hover {
  transform: rotate(0deg) translateY(-10px);
}

.journal-card-top,
.journal-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.journal-card-top {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.journal-card-top i {
  font-size: 11px;
}

.journal-card-divider {
  height: 1px;
  margin-top: 23px;
  background: rgba(29, 42, 37, 0.2);
}

.journal-card h3 {
  margin-top: 30px;
  font-size: 39px;
  line-height: 1.05;
}

.journal-card h3 em {
  color: #b26d4c;
}

.journal-card p {
  margin-top: 25px;
  color: #758178;
  font-size: 12px;
}

.journal-card-bottom {
  margin-top: auto;
  color: #758178;
  font-size: 9px;
  font-weight: 700;
}

/* ================= FAQ ================= */

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.faq-heading h2 {
  margin-top: 23px;
  font-size: clamp(45px, 4.2vw, 65px);
}

.faq-heading p {
  max-width: 350px;
  margin-top: 25px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 14px;
  font-weight: 800;
}

.faq-question i {
  color: var(--orange);
  font-size: 14px;
  transition: transform var(--transition);
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  max-width: 620px;
  padding: 0 35px 25px 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.9;
}

/* ================= FINAL CTA ================= */

.final-cta-section {
  padding-top: 30px;
  padding-bottom: 110px;
}

.final-cta {
  padding: 80px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 20%, rgba(223, 236, 226, 0.8), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(242, 228, 209, 0.7), transparent 35%),
    #fff;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta .eyebrow::before {
  display: none;
}

.final-cta h2 {
  max-width: 700px;
  margin: 23px auto 0;
  font-size: clamp(45px, 4.7vw, 72px);
}

.final-cta p {
  margin-top: 23px;
  color: var(--ink-soft);
  font-size: 14px;
}

.final-cta .primary-button {
  margin-top: 30px;
}

/* ================= FOOTER ================= */

.site-footer {
  padding: 75px 0 25px;
  background: #e9ede6;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 60px;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-column h3 {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: var(--ink-soft);
  font-size: 12px;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
  color: var(--ink-muted);
  font-size: 11px;
}

/* ================= REVEAL ANIMATION ================= */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .container {
    width: min(var(--container), calc(100% - 70px));
  }

  .nav-links {
    gap: 22px;
    margin-right: 15px;
  }

  .hero-content {
    padding: 60px 45px;
  }

  .hero-copy h1 {
    font-size: 62px;
  }

  .book-front {
    right: 8%;
  }

  .book-back {
    left: 5%;
  }

  .intro-grid {
    gap: 45px;
  }

  .journal-window {
    padding: 55px;
  }

  .faq-layout {
    gap: 55px;
  }
}

@media (max-width: 850px) {
  .site-header {
    height: 75px;
  }

  .container {
    width: min(var(--container), calc(100% - 40px));
  }

  .nav-links {
    position: absolute;
    top: 75px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background: var(--surface-soft);
  }

  .nav-links a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 60px 40px 30px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 600px;
    font-size: 65px;
  }

  .hero-copy p {
    max-width: 560px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .intro-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .intro-large-card {
    max-width: 500px;
  }

  .intro-text {
    max-width: 650px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 290px;
  }

  .value-card h3 {
    margin-top: 55px;
  }

  .stats-window {
    padding: 45px 35px;
  }

  .stats-heading {
    display: block;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .journal-window {
    grid-template-columns: 1fr;
    padding: 55px 40px;
  }

  .journal-copy {
    max-width: 600px;
  }

  .journal-card-wrap {
    min-height: 440px;
  }

  .faq-heading {
    max-width: 600px;
  }

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

@media (max-width: 560px) {
  .container {
    width: calc(100% - 32px);
  }

  .brand-name {
    font-size: 24px;
  }

  .nav-actions {
    gap: 17px;
  }

  .about-hero {
    padding: 25px 0 55px;
  }

  .hero-window {
    border-radius: 22px;
  }

  .window-topbar {
    padding: 0 20px;
  }

  .window-label {
    font-size: 8px;
  }

  .hero-content {
    padding: 45px 24px 15px;
  }

  .hero-copy h1 {
    margin-top: 22px;
    font-size: 48px;
  }

  .hero-copy p {
    font-size: 13px;
    line-height: 1.8;
  }

  .hero-buttons {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-visual {
    min-height: 350px;
    transform: scale(0.85);
    margin: -20px 0 -25px;
  }

  .orbit-one {
    width: 330px;
    height: 330px;
  }

  .orbit-two {
    width: 260px;
    height: 260px;
  }

  .book-front {
    width: 190px;
    height: 285px;
    right: 4%;
    padding: 22px 18px;
  }

  .book-front h2 {
    font-size: 29px;
  }

  .book-back {
    width: 165px;
    height: 255px;
    left: 2%;
  }

  .book-back span,
  .book-back strong {
    font-size: 19px;
  }

  .visual-note {
    right: 0;
    bottom: 0;
    font-size: 9px;
  }

  .intro-section,
  .values-section,
  .stats-section,
  .journal-section,
  .faq-section {
    padding: 65px 0;
  }

  .section-heading h2 {
    font-size: 43px;
  }

  .intro-grid {
    margin-top: 38px;
  }

  .intro-large-card {
    min-height: 350px;
    padding: 25px;
  }

  .card-icon {
    margin-top: 50px;
  }

  .intro-text .large-text {
    font-size: 29px;
  }

  .value-card {
    min-height: 300px;
    padding: 25px;
  }

  .stats-window {
    padding: 35px 23px;
    border-radius: 22px;
  }

  .stats-heading h2 {
    font-size: 40px;
  }

  .stats-grid {
    gap: 28px 15px;
    padding-top: 35px;
  }

  .stat-item strong {
    font-size: 40px;
  }

  .stat-item span {
    font-size: 10px;
  }

  .journal-window {
    padding: 45px 24px;
    border-radius: 22px;
  }

  .journal-copy h2 {
    font-size: 45px;
  }

  .journal-card-wrap {
    min-height: 360px;
    transform: scale(0.85);
    margin: -25px 0;
  }

  .journal-circle {
    width: 340px;
    height: 340px;
  }

  .journal-card {
    width: 275px;
    height: 335px;
  }

  .journal-card h3 {
    font-size: 33px;
  }

  .faq-question {
    min-height: 72px;
    font-size: 13px;
  }

  .faq-answer p {
    font-size: 12px;
  }

  .final-cta {
    padding: 60px 20px;
    border-radius: 22px;
  }

  .final-cta h2 {
    font-size: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* ================= REDUCED MOTION ================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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