/* ===========================================================
   AquaRhea — Modern Editorial / Asymmetric Layout
   =========================================================== */

:root {
  --ink: #1a2421;
  --ink-soft: #3d4f49;
  --muted: #6b7c75;
  --sand: #f0ebe3;
  --sand-light: #f7f4ef;
  --paper: #fffcf8;
  --forest: #2d4a42;
  --forest-light: #dce8e3;
  --forest-dark: #1e332d;
  --sage: #7a9e8e;
  --coral: #d4634a;
  --coral-soft: #faeae6;
  --gold: #b8956a;
  --line: #ddd6cb;
  --line-dark: #c9bfb2;
  --white: #ffffff;
  --shadow-sm: 0 4px 16px rgba(26, 36, 33, 0.06);
  --shadow-md: 0 20px 48px rgba(26, 36, 33, 0.1);
  --shadow-lg: 0 32px 72px rgba(26, 36, 33, 0.14);
  --radius-s: 8px;
  --radius: 16px;
  --radius-l: 28px;
  --radius-xl: 40px;
  --maxw: 1180px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Sora", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand-light);
  line-height: 1.72;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: min(100% - 36px, var(--maxw)); margin-inline: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
}

/* ---------- Disclosure & promo ---------- */
.disclosure {
  background: var(--forest-dark);
  color: #b8c9c2;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.disclosure b { color: #fff; }

.promo {
  background: linear-gradient(90deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: #c8dbd4;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 10px 16px;
  border-bottom: 3px solid var(--coral);
}
.promo b { color: #fff; font-weight: 700; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--line);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
}
.brand .logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--forest);
  display: grid;
  place-items: center;
  transform: rotate(-4deg);
}
.brand .logo svg { width: 20px; height: 20px; }
.brand em { font-style: normal; color: var(--coral); }

.nav-links {
  display: flex;
  gap: 4px;
  margin-inline: auto;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 16px;
  border-radius: 999px;
  transition: 0.2s;
}
.nav-links a:hover { color: var(--forest); background: var(--forest-light); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.25s, background 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 24px rgba(212, 99, 74, 0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212, 99, 74, 0.42);
  background: #c0553e;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line-dark);
}
.btn-outline:hover {
  border-color: var(--forest);
  color: var(--forest);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 0.96rem; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}

/* ---------- Hero — asymmetric overlap ---------- */
.hero {
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(122, 158, 142, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(212, 99, 74, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--sand-light) 100%);
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.hero-copy::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 32px;
  right: 32px;
  height: 12px;
  background: var(--forest);
  border-radius: 0 0 var(--radius-l) var(--radius-l);
  opacity: 0.12;
  z-index: -1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: #dce8e3;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  margin-bottom: 20px;
  max-width: 13ch;
}
.hero h1 span { color: var(--coral); font-style: italic; }
.hero .lead {
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 26px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.hero-meta span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--sand);
  border-radius: var(--radius);
  padding: 14px 8px;
  border: 1px solid var(--line);
}
.hero-meta svg { width: 20px; height: 20px; color: var(--sage); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-visual { position: relative; }
.hero-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--paper);
  aspect-ratio: 4/5;
  background: var(--sand);
  transform: rotate(2deg);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-caption {
  position: absolute;
  top: 24px;
  left: -20px;
  max-width: 240px;
  background: var(--coral);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  line-height: 1.5;
  box-shadow: var(--shadow-md);
  transform: rotate(-3deg);
}
.hero-caption b { color: #fff; font-weight: 700; }

/* ---------- Story blocks ---------- */
.story-block {
  padding: 80px 0;
  position: relative;
}
.story-block + .story-block { border-top: 1px solid var(--line); }
.story-block--paper { background: var(--paper); }
.story-block--dark {
  background: var(--forest-dark);
  color: #b8c9c2;
  border-color: #2a4038;
}
.story-block--dark h2, .story-block--dark h3 { color: #f0f5f3; }
.story-block--dark p { color: #8fa89c; }
.story-block--dark .eyebrow { color: var(--gold); }

.story-header {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  align-items: flex-start;
}
.story-header__num {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--coral-soft);
  border: 2px solid var(--coral);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--coral);
}
.story-block--dark .story-header__num {
  background: rgba(184, 149, 106, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}
.story-header__num--dash {
  font-size: 1.4rem;
  background: var(--forest-light);
  border-color: var(--sage);
  color: var(--forest);
}

.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.story-split--reverse { direction: rtl; }
.story-split--reverse > * { direction: ltr; }

.story-prose p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 62ch;
}
.story-prose p:first-of-type {
  font-size: 1.06rem;
  color: var(--ink);
}

.pullquote {
  position: relative;
  padding: 28px 32px 28px 48px;
  margin: 32px 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  max-width: 58ch;
  box-shadow: var(--shadow-sm);
}
.pullquote::before {
  content: "\201C";
  position: absolute;
  left: 16px;
  top: 8px;
  font-size: 3rem;
  color: var(--coral);
  opacity: 0.4;
  line-height: 1;
}

.notice {
  background: var(--forest-light);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 22px;
  font-size: 0.88rem;
  color: var(--forest);
  margin: 24px 0;
  max-width: 68ch;
}
.notice.warn {
  background: var(--coral-soft);
  border-color: var(--coral);
  color: #8b3a28;
}

/* ---------- Media layouts ---------- */
.media-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.media-masonry .media-card:first-child {
  grid-row: span 2;
}
.media-masonry .media-card:first-child img { aspect-ratio: 3/4; }

.media-row {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.media-row .media-card {
  flex: 0 0 min(280px, 80vw);
  scroll-snap-align: start;
}

.media-card {
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.media-card:hover { transform: translateY(-6px); }
.media-card img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.media-card figcaption {
  padding: 12px 16px;
  font-size: 0.76rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--sand-light);
}

/* ---------- Bento features ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 40px;
}
.bento .feature:first-child {
  grid-column: span 2;
  grid-row: span 1;
}
.bento .feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-l);
  padding: 32px 28px;
  transition: 0.25s;
}
.bento .feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.bento .feature .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 14px;
}
.bento .feature h3 { margin-bottom: 10px; color: #f0f5f3; }
.bento .feature p { color: #8fa89c; font-size: 0.92rem; }

/* ---------- Benefit pills ---------- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.benefit-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 24px 26px;
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--coral), var(--sage));
}
.benefit-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.benefit-card .num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--forest-light);
  color: var(--forest);
  font-weight: 800;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
}
.benefit-card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.benefit-card p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Steps — horizontal flow ---------- */
.steps-flow {
  display: flex;
  gap: 0;
  margin-top: 44px;
  position: relative;
}
.steps-flow::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--sage));
  border-radius: 2px;
  z-index: 0;
}
.step-flow-card {
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}
.step-flow-card .step-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 4px solid var(--paper);
  box-shadow: var(--shadow-sm);
}
.step-flow-card .img-wrap {
  aspect-ratio: 4/3;
  border-radius: var(--radius-l);
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid var(--line);
  position: relative;
}
.step-flow-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.step-flow-card h3 { margin-bottom: 8px; text-align: center; }
.step-flow-card p { color: var(--muted); font-size: 0.92rem; text-align: center; }

/* ---------- Vertical week timeline ---------- */
.week-track {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  margin-top: 40px;
  max-width: 640px;
  margin-inline: auto;
  position: relative;
}
.week-track::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--coral), var(--sage));
}
.week-node {
  display: contents;
}
.week-node .day-dot {
  grid-column: 1;
  justify-self: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--coral);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--coral);
  position: relative;
  z-index: 1;
}
.week-node:nth-child(even) .day-dot {
  border-color: var(--sage);
  color: var(--forest);
}
.week-node .day-content {
  grid-column: 2;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 22px;
  margin: 8px 0 8px 16px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

/* ---------- Comparison cards ---------- */
.compare-cards {
  display: grid;
  gap: 12px;
  margin-top: 40px;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 10px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: 0.2s;
}
.compare-row:hover { box-shadow: var(--shadow-sm); }
.compare-row--head {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c8dbd4;
}
.compare-row--head .col-hl { color: #fff; background: var(--forest); border-radius: var(--radius-s); padding: 6px 10px; text-align: center; }
.compare-row .label { font-weight: 600; font-size: 0.92rem; }
.compare-row .cell { text-align: center; font-size: 0.92rem; }
.compare-row .col-hl { background: var(--forest-light); border-radius: var(--radius-s); padding: 6px 10px; font-weight: 700; }
.compare-row .yes { color: var(--forest); font-weight: 800; font-size: 1.1rem; }
.compare-row .no { color: #ccc; }

/* ---------- Story moments — overlap ---------- */
.moments-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 44px;
  align-items: center;
}
.moment-panel {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.moment-panel:nth-child(2) { transform: translateY(32px); }
.moment-panel .media { aspect-ratio: 5/4; overflow: hidden; position: relative; }
.moment-panel .media img { width: 100%; height: 100%; object-fit: cover; }
.media-disclaimer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 8px 12px;
  font-size: 0.68rem;
  line-height: 1.4;
  color: #fff;
  background: rgba(20, 35, 30, 0.78);
  text-align: center;
}
.moment-panel .info {
  padding: 24px 28px;
  background: var(--paper);
  border-top: 3px solid var(--coral);
}
.moment-panel:nth-child(2) .info { border-color: var(--sage); }
.moment-panel .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.moment-panel .tag.a { background: var(--sand); color: var(--muted); }
.moment-panel .tag.b { background: var(--forest-light); color: var(--forest); }
.moment-panel p { color: var(--muted); font-size: 0.92rem; margin-top: 6px; }

/* ---------- Price — centered stack ---------- */
.price-stack {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
}
.price-stack__header {
  background: var(--forest-dark);
  color: #c8dbd4;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 40px 36px 32px;
}
.price-stack__header h2 { color: #f0f5f3; margin: 12px 0 14px; }
.price-stack__header p { color: #8fa89c; max-width: 44ch; margin-inline: auto; }
.price-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
  text-align: left;
  max-width: 400px;
  margin-inline: auto;
}
.price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #c8dbd4;
}
.price-list svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.price-stack__box {
  background: var(--paper);
  border: 2px solid var(--line);
  border-top: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 36px 40px 40px;
  box-shadow: var(--shadow-md);
}
.price-stack__box .badge {
  display: inline-block;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.price-stack__box .old { color: var(--muted); text-decoration: line-through; font-size: 1.1rem; }
.price-stack__box .amount {
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 1;
  margin: 8px 0;
  color: var(--forest);
}
.price-stack__box .amount small { font-size: 1rem; color: var(--muted); font-family: var(--font-body); }
.price-stack__box .note { font-size: 0.86rem; color: var(--sage); font-weight: 600; display: block; margin-bottom: 20px; }
.price-stack__box .btn { min-width: 260px; }
.price-stack__box .guarantee { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 14px; }

/* ---------- Order section — new form design ---------- */
.order-section {
  background: linear-gradient(180deg, var(--sand) 0%, var(--paper) 40%);
  padding: 80px 0;
  border-top: 3px solid var(--forest);
}

.section-intro {
  max-width: 580px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-intro p { color: var(--muted); margin-top: 12px; }

.order-ticket {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  background: var(--forest-dark);
  color: #c8dbd4;
  border-radius: var(--radius-xl);
  padding: 24px 32px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.order-ticket::before,
.order-ticket::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--sand-light);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.order-ticket::before { left: -12px; }
.order-ticket::after { right: -12px; }

.order-ticket__product {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 200px;
}
.order-ticket__product img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.15);
}
.order-ticket__product b { display: block; color: #fff; font-size: 1rem; }
.order-ticket__product small { color: #8fa89c; font-size: 0.82rem; display: block; }
.order-ticket__price {
  margin-left: auto;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.order-ticket__lines {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.order-ticket__line {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.order-ticket__line:first-child { border-left: none; }
.order-ticket__line b { display: block; color: #fff; font-size: 0.95rem; }
.order-ticket__line small { display: block; color: #8fa89c; font-size: 0.78rem; }
.order-ticket__line strong.free { color: var(--sage); font-size: 1.1rem; }

.order-ticket__total {
  text-align: center;
  padding: 12px 24px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  min-width: 140px;
}
.order-ticket__total span { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: #8fa89c; }
.order-ticket__total .big {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--coral);
  line-height: 1.1;
}

.order-form-wrap {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.shop-cta,
.amazon-cta {
  padding: 48px 36px;
  text-align: center;
}
.shop-cta h3,
.amazon-cta h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: var(--forest-dark);
}
.shop-cta > p,
.amazon-cta > p {
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 28px;
  font-size: 0.96rem;
}
.shop-cta .btn,
.amazon-cta .btn { margin-bottom: 16px; }
.shop-cta .shop-note,
.amazon-cta .amazon-note {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 58ch;
  margin: 0 auto;
  line-height: 1.6;
}
.shop-cta .shop-badge,
.amazon-cta .amazon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 16px;
  background: var(--forest-light);
  color: var(--forest-dark);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.order-form {
  padding: 0;
}

.form-panel {
  padding: 32px 36px;
  border-bottom: 1px dashed var(--line);
  position: relative;
}
.form-panel--step2,
.form-panel--step3 {
  padding-top: 36px;
}
.form-panel--step2::before,
.form-panel--step3::before {
  position: absolute;
  top: 20px;
  left: 36px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--forest-light);
  color: var(--forest);
  font-weight: 800;
  font-size: 0.82rem;
  display: grid;
  place-items: center;
  opacity: 0.6;
}
.form-panel--step2::before { content: "2"; }
.form-panel--step3::before { content: "3"; }
.form-panel:last-of-type { border-bottom: none; }

.form-panel-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.form-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--forest);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: grid;
  place-items: center;
}
.form-panel-head h3 { margin: 0; font-size: 1.2rem; }
.form-panel-head .sub { color: var(--muted); font-size: 0.84rem; margin: 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { margin-bottom: 18px; position: relative; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--forest);
}
.field label .req { color: var(--coral); }

.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  padding: 0 16px;
  height: 52px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand-light);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}
.field textarea {
  height: auto;
  padding: 14px 16px;
  resize: vertical;
  min-height: 80px;
}
.field input:focus, .field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(45, 74, 66, 0.1);
  background: #fff;
}
.field input.with-prefix { padding-left: 58px; }

.input-prefix { position: relative; }
.input-prefix .pfx {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 52px;
  display: grid;
  place-items: center;
  background: var(--forest-light);
  color: var(--forest);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius) 0 0 var(--radius);
  border-right: 2px solid var(--line);
  pointer-events: none;
}
.input-prefix input { border-radius: 0 var(--radius) var(--radius) 0; padding-left: 16px; }

.field .hint { font-size: 0.74rem; color: var(--muted); margin-top: 6px; }
.field .err-msg { display: none; font-size: 0.74rem; color: #c0392b; margin-top: 6px; font-weight: 500; }
.field.invalid input, .field.invalid textarea { border-color: #e57373; background: #fef5f5; }
.field.invalid .err-msg { display: block; }
.field.valid input, .field.valid textarea { border-color: var(--sage); }

.qty-segment {
  display: inline-flex;
  background: var(--sand);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-segment button {
  width: 48px;
  height: 52px;
  border: none;
  background: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--forest);
  transition: background 0.2s;
}
.qty-segment button:hover { background: var(--forest-light); }
.qty-segment input {
  width: 56px;
  text-align: center;
  border: none;
  border-left: 2px solid var(--line);
  border-right: 2px solid var(--line);
  background: var(--paper);
  font-weight: 800;
  font-size: 1.1rem;
  height: 52px;
  padding: 0;
}

.consent {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--sand-light);
  border-radius: var(--radius);
  margin-bottom: 0;
}
.consent input {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: var(--forest);
  cursor: pointer;
  flex-shrink: 0;
}
.consent label { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.55; }
.consent a { color: var(--coral); text-decoration: underline; font-weight: 600; }
.consent.invalid { background: #fef5f5; border: 1px solid #e57373; }
.consent.invalid label { color: #c0392b; }

.form-submit-bar {
  padding: 28px 36px;
  background: var(--forest-light);
  border-top: 2px solid var(--line);
}
.form-submit-bar .btn {
  width: 100%;
  font-size: 1.02rem;
  padding: 18px 32px;
  letter-spacing: 0.02em;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 36px;
  background: var(--forest-light);
}
.form-success.show { display: block; animation: pop 0.4s ease; }
.form-success .check {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--forest);
  display: grid;
  place-items: center;
}
.form-success .check svg { width: 32px; height: 32px; color: #fff; }
.form-success h4 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; color: var(--forest); }
.form-success p { color: var(--muted); font-size: 0.92rem; }
@keyframes pop { from { transform: scale(0.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
}
.trust-strip li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-strip svg { width: 20px; height: 20px; color: var(--sage); flex-shrink: 0; }

/* ---------- FAQ — two columns ---------- */
.faq-section {
  padding: 80px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}
.faq-item {
  background: var(--sand-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: 0.25s;
}
.faq-item.open {
  border-color: var(--forest);
  box-shadow: var(--shadow-sm);
  background: var(--paper);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 22px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.faq-q .icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--forest-light);
  position: relative;
}
.faq-q .icon::before, .faq-q .icon::after {
  content: "";
  position: absolute;
  background: var(--forest);
  border-radius: 2px;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-q .icon::before { width: 12px; height: 2px; }
.faq-q .icon::after { width: 2px; height: 12px; }
.faq-item.open .icon { background: var(--forest); }
.faq-item.open .icon::before, .faq-item.open .icon::after { background: #fff; }
.faq-item.open .icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

/* ---------- Disclaimer & CTA ---------- */
.disclaimer-box {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius-l);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 820px;
  margin: 0 auto;
}
.disclaimer-box svg { width: 24px; height: 24px; color: var(--coral); flex-shrink: 0; margin-top: 2px; }
.disclaimer-box p { font-size: 0.86rem; color: var(--ink-soft); }

.cta-final {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 56px 44px;
  text-align: center;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,99,74,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final h2 { color: #fff; margin-bottom: 14px; position: relative; }
.cta-final p { color: #b8c9c2; max-width: 48ch; margin: 0 auto 28px; position: relative; }
.cta-final .btn { background: var(--coral); color: #fff; position: relative; }
.cta-final .btn:hover { background: #c0553e; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #8fa89c;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 36px;
}
.footer .brand { color: #f0f5f3; margin-bottom: 14px; }
.footer .brand .logo { transform: none; border-radius: 10px; }
.footer .brand em { color: var(--coral); }
.footer p { font-size: 0.84rem; max-width: 36ch; line-height: 1.65; }
.footer h4 {
  color: #f0f5f3;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer ul { display: grid; gap: 9px; }
.footer ul a { font-size: 0.86rem; color: #8fa89c; transition: 0.2s; }
.footer ul a:hover { color: #fff; }
.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.86rem;
  margin-bottom: 10px;
}
.contact-item svg { width: 16px; height: 16px; color: var(--coral); flex-shrink: 0; margin-top: 3px; }
.contact-item a { color: #c8dbd4; }
.contact-item a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #2a4038;
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.76rem; color: #6b7c75; }
.footer-note { font-size: 0.74rem; color: #6b7c75; margin-top: 16px; line-height: 1.6; max-width: 100%; }

/* ---------- Legal pages ---------- */
.legal-page { padding: 52px 0 36px; }
.legal-page .wrap { max-width: 820px; }
.legal-page h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.legal-page .updated { color: var(--muted); font-size: 0.84rem; margin-bottom: 36px; }
.legal-body h2 { font-size: 1.35rem; margin: 32px 0 12px; }
.legal-body h3 { font-size: 1.08rem; margin: 22px 0 8px; font-family: var(--font-body); font-weight: 700; }
.legal-body p, .legal-body li { color: var(--ink-soft); margin-bottom: 12px; font-size: 0.96rem; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin-bottom: 16px; }
.legal-body ul { list-style: disc; }
.legal-body ol { list-style: decimal; }
.legal-body li { margin-bottom: 7px; }
.legal-body a { color: var(--coral); text-decoration: underline; }
.contact-card {
  background: var(--forest-light);
  border: 1px solid #b8cfc4;
  border-radius: var(--radius-l);
  padding: 22px 26px;
  margin: 18px 0;
}
.contact-card p { margin-bottom: 6px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-weight: 600;
  color: var(--coral);
  font-size: 0.92rem;
}
.back-link svg { width: 17px; height: 17px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner, .story-split, .moments-stack { grid-template-columns: 1fr; }
  .story-split--reverse { direction: ltr; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-caption { position: static; transform: none; max-width: none; margin-top: 16px; }
  .hero-frame { transform: none; }
  .bento { grid-template-columns: 1fr; }
  .bento .feature:first-child { grid-column: span 1; }
  .benefit-grid, .faq-grid { grid-template-columns: 1fr; }
  .steps-flow { flex-direction: column; gap: 32px; }
  .steps-flow::before { display: none; }
  .compare-row { grid-template-columns: 1fr 1fr 1fr 1fr; font-size: 0.82rem; }
  .compare-row .label { grid-column: 1 / -1; margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .moment-panel:nth-child(2) { transform: none; }
  .media-masonry { grid-template-columns: 1fr; }
  .media-masonry .media-card:first-child { grid-row: span 1; }
}

@media (max-width: 780px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 12px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .burger { display: block; }
  .nav .btn-primary { display: none; }
  .story-header { flex-direction: column; gap: 16px; }
  .order-ticket { flex-direction: column; text-align: center; }
  .order-ticket__lines { flex-direction: column; gap: 12px; }
  .order-ticket__line { border-left: none; padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.1); }
  .order-ticket__line:first-child { border-top: none; }
}

@media (max-width: 540px) {
  body { font-size: 15px; }
  .form-row { grid-template-columns: 1fr; }
  .form-panel { padding: 24px 20px; }
  .form-submit-bar { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 28px 24px; }
  .compare-row { grid-template-columns: 1fr 1fr 1fr; }
  .compare-row--head { display: none; }
  .compare-row .label { font-size: 0.88rem; }
}
