/* =================================================================
   FRESH & FOREVER FLOWER INC. — "Endless Roses"
   Stylesheet — Botanical Luxe design system
   ================================================================= */

/* ----------  Design tokens  ---------- */
:root {
  /* Color — warm botanical luxury (no purple, no glow) */
  --ivory:      #FAF6F0;
  --cream:      #F2EADF;
  --sand:       #EADFD0;
  --ink:        #221D18;
  --ink-soft:   #5C534A;
  --ink-faint:  #8A8077;
  --green:      #2E3B2E;   /* deep botanical — primary brand */
  --green-2:    #415140;
  --green-soft: #E2E7DD;
  --rose:       #B06A5F;   /* muted terracotta-rose accent */
  --rose-deep:  #8F4E45;
  --blush:      #E9D5CB;
  --blush-2:    #F0E0D7;
  --brass:      #A2854F;   /* fine metallic accent, used sparingly */
  --white:      #FFFFFF;

  --line:       rgba(34,29,24,0.12);
  --line-soft:  rgba(34,29,24,0.07);
  --shadow-sm:  0 1px 2px rgba(34,29,24,0.05);
  --shadow-md:  0 18px 40px -24px rgba(34,29,24,0.35);
  --shadow-lg:  0 40px 80px -40px rgba(34,29,24,0.45);

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing / rhythm */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 4px;
  --radius-lg: 10px;

  --ease: cubic-bezier(0.4, 0.01, 0.16, 1);
}

/* ----------  Reset  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

/* ----------  Typography  ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-optical-sizing: auto;
}
.display {
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
em, .italic { font-style: italic; }

p { color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.6; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--rose);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--rose);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

/* ----------  Layout helpers  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 820px; }
.section { padding-block: var(--section-y); }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 1rem; }
.section-head p { margin-top: 1.1rem; }

.split { display: grid; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }

.bg-cream  { background: var(--cream); }
.bg-green  { background: var(--green); color: var(--blush-2); }
.bg-green h2, .bg-green h3 { color: var(--white); }
.bg-green p { color: rgba(255,255,255,0.78); }
.bg-green .eyebrow { color: var(--blush); }
.bg-green .eyebrow::before, .bg-green .eyebrow.center::after { background: var(--rose); }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.9rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.45s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
  border: 1px solid transparent;
  line-height: 1;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green); color: var(--ivory); }
.btn-primary:hover { background: var(--green-2); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-rose { background: var(--rose-deep); color: var(--ivory); }
.btn-rose:hover { background: var(--rose); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--ivory); border-color: rgba(255,255,255,0.3); }
.btn-ghost-light:hover { border-color: var(--ivory); background: rgba(255,255,255,0.06); }
.btn-light { background: var(--ivory); color: var(--green); }
.btn-light:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); padding-bottom: 3px; border-bottom: 1px solid var(--line);
  transition: border-color 0.3s var(--ease), gap 0.3s var(--ease), color 0.3s var(--ease);
}
.text-link:hover { border-color: var(--ink); gap: 0.85rem; }
.text-link .arrow { transition: transform 0.3s var(--ease); }
.text-link:hover .arrow { transform: translateX(3px); }
.bg-green .text-link { color: var(--white); border-color: rgba(255,255,255,0.3); }
.bg-green .text-link:hover { border-color: var(--white); }

/* ----------  Announcement bar  ---------- */
.announce {
  background: var(--green);
  color: var(--blush-2);
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  font-weight: 500;
}
.announce strong { color: var(--white); font-weight: 600; }

/* ----------  Header  ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250,246,240,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header.scrolled { border-color: var(--line-soft); box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 78px;
}
.brand { display: flex; flex-direction: column; line-height: 1; gap: 3px; z-index: 70; }
.brand .brand-main {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand .brand-main b { font-weight: 500; font-style: italic; color: var(--rose-deep); }
.brand .brand-sub {
  font-size: 0.56rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
.nav-links { display: none; align-items: center; gap: 2.1rem; }
.nav-links a {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--rose-deep); transition: width 0.35s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1.1rem; z-index: 70; }
.icon-btn { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 500; }
.cart-count {
  display: inline-grid; place-items: center;
  min-width: 1.15rem; height: 1.15rem; padding: 0 0.3rem;
  background: var(--rose-deep); color: var(--ivory);
  font-size: 0.62rem; font-weight: 700; border-radius: 999px;
}
.nav .btn { padding: 0.7rem 1.3rem; }
.hide-mobile { display: none; }

.menu-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 30px; height: 30px;
}
.menu-toggle span { display: block; height: 1.5px; width: 24px; background: var(--ink); transition: transform 0.4s var(--ease), opacity 0.3s var(--ease); }
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; top: 0;
  background: var(--ivory);
  z-index: 65;
  padding: 7rem var(--gutter) 3rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.9rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
.mobile-menu .btn { margin-top: 2rem; }
.mobile-menu .mm-contact { margin-top: auto; padding-top: 2rem; font-size: 0.85rem; color: var(--ink-soft); }

/* ----------  Hero  ---------- */
.hero { position: relative; padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; } }
.hero-copy { max-width: 600px; }
.hero h1 { margin: 1.4rem 0 1.6rem; }
.hero h1 .accent { font-style: italic; color: var(--rose-deep); }
.hero .lead { max-width: 32ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero-meta {
  margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 2.2rem;
}
.hero-meta .stat .num { font-family: var(--serif); font-size: 1.9rem; color: var(--green); line-height: 1; }
.hero-meta .stat .lbl { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-top: 0.4rem; }

/* Hero media — layered botanical composition */
.hero-media { position: relative; aspect-ratio: 4 / 4.4; }
.hero-media .frame {
  position: absolute; border-radius: var(--radius-lg); overflow: hidden;
}
.hero-media .frame-a { inset: 0 22% 28% 0; box-shadow: var(--shadow-lg); }
.hero-media .frame-b { width: 46%; aspect-ratio: 3/3.6; right: 0; bottom: 0; box-shadow: var(--shadow-lg); }
.hero-media .badge {
  position: absolute; top: -1.2rem; right: 14%;
  width: 116px; height: 116px; border-radius: 999px;
  background: var(--ivory); border: 1px solid var(--line);
  display: grid; place-items: center; text-align: center;
  box-shadow: var(--shadow-md); z-index: 3; rotate: -6deg;
}
.hero-media .badge .seal {
  font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: var(--green); line-height: 1.15;
}
.hero-media .badge small { display:block; font-family: var(--sans); font-size: 0.54rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-deep); margin-top: 3px; font-weight:600;}

/* ----------  Media panels (botanical art instead of stock photos)  ---------- */
.media {
  position: relative; width: 100%; height: 100%;
  background: var(--blush); overflow: hidden;
}
.media::after { /* soft vignette + petal sheen */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 30% 15%, rgba(255,255,255,0.35), transparent 55%),
              radial-gradient(90% 80% at 85% 95%, rgba(34,29,24,0.18), transparent 60%);
  mix-blend-mode: multiply;
}
.media .leaf-mark {
  position: absolute; inset: 0; margin: auto; width: 62%; opacity: 0.9;
  z-index: 1;
}
.m-red    { background: linear-gradient(150deg, #7d2b29 0%, #a8413a 45%, #c66258 100%); }
.m-blush  { background: linear-gradient(150deg, #d99e8e 0%, #e9c2b4 50%, #f3dccf 100%); }
.m-white  { background: linear-gradient(150deg, #d7d2c4 0%, #ece8de 45%, #f7f4ec 100%); }
.m-green  { background: linear-gradient(150deg, #2c3a2d 0%, #46583f 55%, #6d7d5f 100%); }
.m-amber  { background: linear-gradient(150deg, #b07b3c 0%, #d0a565 55%, #e7cd9c 100%); }
.m-rose   { background: linear-gradient(150deg, #9a4f49 0%, #bd7167 55%, #dca197 100%); }
.m-dusk   { background: linear-gradient(150deg, #7a4a45 0%, #a06a5c 50%, #c79a86 100%); }

/* ----------  Value strip  ---------- */
.values { border-block: 1px solid var(--line); background: var(--ivory); }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); }
@media (min-width: 760px) { .values-grid { grid-template-columns: repeat(4,1fr); } }
.value {
  padding: clamp(1.8rem,3vw,2.6rem) clamp(1.1rem,2vw,1.8rem);
  border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 0.6rem;
}
@media (min-width: 760px){ .value { border-bottom: 0; } .value:last-child { border-right: 0; } }
.value .ico { color: var(--rose-deep); }
.value h4 { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em; }
.value p { font-size: 0.85rem; line-height: 1.5; }

/* ----------  Collections  ---------- */
.collections-grid { display: grid; gap: 1.4rem; }
@media (min-width: 640px) { .collections-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px) { .collections-grid { grid-template-columns: repeat(4,1fr); } }
.collection {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; display: flex; align-items: flex-end;
  text-decoration: none; box-shadow: var(--shadow-sm);
}
.collection .media { position: absolute; inset: 0; transition: transform 0.9s var(--ease); }
.collection:hover .media { transform: scale(1.06); }
.collection .veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,16,13,0.7) 0%, rgba(20,16,13,0.1) 55%, transparent 80%); z-index: 2; }
.collection .label { position: relative; z-index: 3; padding: 1.5rem; color: var(--ivory); width: 100%; }
.collection .label .k { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blush); }
.collection .label h3 { color: var(--white); margin-top: 0.3rem; font-size: 1.45rem; }
.collection .label .go {
  margin-top: 0.8rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; gap: 0.4rem; opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.collection:hover .label .go { opacity: 1; transform: translateY(0); }

/* ----------  Products  ---------- */
.products-grid { display: grid; gap: clamp(1.4rem, 3vw, 2.2rem) 1.4rem; }
@media (min-width: 560px) { .products-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 920px) { .products-grid { grid-template-columns: repeat(3,1fr); } }
.product { display: flex; flex-direction: column; }
.product .pic {
  position: relative; aspect-ratio: 1/1.08; border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 1.1rem; box-shadow: var(--shadow-sm);
}
.product .pic .media { position: absolute; inset: 0; transition: transform 0.9s var(--ease); }
.product:hover .pic .media { transform: scale(1.05); }
.product .tag {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 4;
  background: var(--ivory); color: var(--ink); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 0.6rem; border-radius: 999px;
}
.product .tag.forever { background: var(--green); color: var(--blush-2); }
.product .quick {
  position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.9rem; z-index: 4;
  opacity: 0; transform: translateY(10px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.product:hover .quick { opacity: 1; transform: translateY(0); }
.product .quick .btn { background: var(--ivory); color: var(--ink); font-size: 0.72rem; padding: 0.8rem; }
.product .quick .btn:hover { background: var(--green); color: var(--ivory); }
.product .pname { font-family: var(--serif); font-size: 1.2rem; }
.product .pdesc { font-size: 0.85rem; color: var(--ink-faint); margin-top: 0.2rem; }
.product .prow { display: flex; align-items: center; justify-content: space-between; margin-top: 0.7rem; }
.product .price { font-size: 0.98rem; font-weight: 600; color: var(--ink); }
.product .stars { color: var(--brass); font-size: 0.8rem; letter-spacing: 0.1em; }
.products-foot { margin-top: clamp(2.5rem,5vw,3.5rem); text-align: center; }

/* ----------  Forever feature  ---------- */
.forever-media { position: relative; aspect-ratio: 4/4.6; }
.forever-media .frame { position: absolute; inset: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.forever-media .chip {
  position: absolute; bottom: 1.4rem; left: 1.4rem; z-index: 4;
  background: var(--ivory); padding: 0.9rem 1.2rem; border-radius: var(--radius);
  box-shadow: var(--shadow-md); display: flex; gap: 0.8rem; align-items: center;
}
.forever-media .chip .big { font-family: var(--serif); font-size: 1.7rem; color: var(--green); line-height: 1; }
.forever-media .chip small { font-size: 0.72rem; color: var(--ink-soft); letter-spacing: 0.04em; }
.feature-list { margin-top: 2rem; display: grid; gap: 1.4rem; }
.feature-list li { display: flex; gap: 1rem; align-items: flex-start; }
.feature-list .n {
  flex: none; width: 2.1rem; height: 2.1rem; border-radius: 999px; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--rose-deep);
}
.bg-green .feature-list .n { border-color: rgba(255,255,255,0.25); color: var(--blush); }
.feature-list h4 { font-family: var(--sans); font-size: 1rem; font-weight: 600; }
.feature-list p { font-size: 0.9rem; margin-top: 0.15rem; }

/* ----------  Our story  ---------- */
.story-media { position: relative; }
.story-media .frame { aspect-ratio: 4 / 4.3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.story-media .seal {
  position: absolute; right: -0.6rem; bottom: -1.1rem;
  width: 142px; height: 142px; border-radius: 999px; padding: 0.6rem;
  background: var(--green); box-shadow: var(--shadow-md); rotate: -5deg;
  display: grid; place-items: center; gap: 0.35rem; text-align: center;
}
.story-media .seal .mk { width: 30px; height: 30px; opacity: 0.9; }
.story-media .seal span { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; line-height: 1.45; color: var(--blush); }
.signature { font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--rose-deep); margin-top: 1.6rem; }

/* ----------  Process  ---------- */
.process-grid { display: grid; gap: clamp(2rem,4vw,2.5rem); counter-reset: step; }
@media (min-width: 760px){ .process-grid { grid-template-columns: repeat(4,1fr); } }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: 0; left: 0;
  font-family: var(--serif); font-size: 2.6rem; color: var(--rose); opacity: 0.5; line-height: 1;
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; }
.step .bar { width: 2.4rem; height: 2px; background: var(--rose); margin-bottom: 1rem; }

/* ----------  Occasions  ---------- */
.occasions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.occasions a {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.3rem; border: 1px solid var(--line); border-radius: 999px;
  font-size: 0.9rem; font-weight: 500; color: var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.occasions a:hover { background: var(--green); color: var(--ivory); border-color: var(--green); transform: translateY(-2px); }
.occasions a .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--rose); }
.occasions a:hover .dot { background: var(--blush); }

/* ----------  Testimonials  ---------- */
.rating-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; margin-bottom: 3rem; }
.rating-summary .score { font-family: var(--serif); font-size: 3rem; color: var(--green); line-height: 1; }
.rating-summary .stars { color: var(--brass); font-size: 1.1rem; letter-spacing: 0.12em; }
.rating-summary .meta { font-size: 0.85rem; color: var(--ink-soft); }
.testi-grid { display: grid; gap: 1.4rem; }
@media (min-width: 760px){ .testi-grid { grid-template-columns: repeat(3,1fr); } }
.testi {
  background: var(--ivory); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem;
}
.bg-cream .testi { background: var(--white); }
.testi .stars { color: var(--brass); letter-spacing: 0.1em; font-size: 0.85rem; }
.testi blockquote { font-family: var(--serif); font-size: 1.18rem; line-height: 1.45; color: var(--ink); }
.testi .who { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; padding-top: 0.5rem; }
.testi .who .av { width: 2.4rem; height: 2.4rem; border-radius: 999px; display: grid; place-items: center; font-family: var(--serif); color: var(--ivory); font-size: 0.95rem; }
.testi .who .nm { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.testi .who .rl { font-size: 0.76rem; color: var(--ink-faint); }

/* ----------  Subscription / CTA band  ---------- */
.band { position: relative; overflow: hidden; }
.band .deco-leaf { position: absolute; opacity: 0.1; color: var(--blush); pointer-events: none; }
.band .deco-leaf.tl { top: -40px; left: -30px; width: 220px; rotate: 20deg; }
.band .deco-leaf.br { bottom: -50px; right: -30px; width: 260px; rotate: -160deg; }
.sub-card { position: relative; z-index: 2; max-width: 720px; }
.plan-row { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 620px){ .plan-row { grid-template-columns: repeat(3,1fr); } }
.plan {
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-lg); padding: 1.3rem;
  text-align: center; transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.plan:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }
.plan .freq { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blush); }
.plan .amt { font-family: var(--serif); font-size: 1.8rem; color: var(--white); margin-top: 0.4rem; }
.plan .amt small { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ----------  FAQ  ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; text-align: left; font-family: var(--serif); font-size: clamp(1.1rem,1.8vw,1.35rem); color: var(--ink);
}
.faq-q .sign { flex: none; width: 1.5rem; height: 1.5rem; position: relative; }
.faq-q .sign::before, .faq-q .sign::after {
  content: ""; position: absolute; background: var(--rose-deep); transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.faq-q .sign::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-q .sign::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .faq-q .sign::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.5s var(--ease); }
.faq-a-inner { padding: 0 0 1.6rem; color: var(--ink-soft); max-width: 70ch; font-size: 0.96rem; }
.faq-item.open .faq-a { max-height: 360px; }

/* ----------  Newsletter  ---------- */
.newsletter-form { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.6rem; max-width: 460px; }
.newsletter-form input {
  flex: 1 1 200px; padding: 0.95rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--ivory); color: var(--ink);
}
.bg-green .newsletter-form input { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.25); color: var(--white); }
.bg-green .newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--rose); }
.form-note { font-size: 0.76rem; color: var(--ink-faint); margin-top: 0.8rem; }
.bg-green .form-note { color: rgba(255,255,255,0.55); }

/* ----------  Final CTA  ---------- */
.final-cta { text-align: center; }
.final-cta .display { margin: 1.2rem auto 1.6rem; max-width: 16ch; }
.final-cta .cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ----------  Footer  ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-top: clamp(3.5rem,6vw,5rem); }
.footer-top { display: grid; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 760px){ .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer .brand .brand-main { color: var(--white); }
.footer .brand .brand-sub { color: rgba(255,255,255,0.45); }
.footer-about { margin-top: 1.2rem; font-size: 0.9rem; max-width: 34ch; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer-social a {
  width: 2.4rem; height: 2.4rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center; transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer-social a:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.footer h5 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.1rem; }
.footer-links a { display: block; padding: 0.4rem 0; font-size: 0.9rem; color: rgba(255,255,255,0.72); transition: color 0.3s var(--ease); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  padding: 1.8rem 0; font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.footer-bottom .pay { display: flex; gap: 0.5rem; align-items: center; }
.footer-bottom .pay span { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.2); padding: 0.3rem 0.5rem; border-radius: 3px; }

/* ----------  Legal pages  ---------- */
.legal-hero { padding-top: clamp(3rem,6vw,5rem); padding-bottom: clamp(2rem,4vw,3rem); border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: clamp(2.4rem,5vw,3.6rem); margin-top: 1rem; }
.legal-hero p { margin-top: 1rem; }
.legal-body { padding-block: clamp(3rem,6vw,5rem); }
.legal-body .container { max-width: 820px; }
.legal-body h2 { font-size: clamp(1.4rem,2.6vw,1.9rem); margin: 2.6rem 0 1rem; }
.legal-body h3 { font-size: 1.15rem; margin: 1.8rem 0 0.6rem; font-family: var(--sans); font-weight: 700; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.75; }
.legal-body p { margin-bottom: 1rem; }
.legal-body ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1.2rem; }
.legal-body li { margin-bottom: 0.5rem; }
.legal-body a { color: var(--rose-deep); border-bottom: 1px solid var(--line); }
.legal-body a:hover { border-color: var(--rose-deep); }
.legal-toc {
  background: var(--cream); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem; margin-bottom: 2.5rem;
}
.legal-toc h4 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.8rem; }
.legal-toc ol { padding-left: 1.2rem; columns: 2; column-gap: 2rem; }
.legal-toc li { margin-bottom: 0.4rem; font-size: 0.9rem; }
@media (max-width: 600px){ .legal-toc ol { columns: 1; } }
.notice {
  background: var(--green-soft); border-left: 3px solid var(--green); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.4rem; margin: 1.5rem 0 2.5rem; font-size: 0.9rem; color: var(--green-2);
}
.notice strong { color: var(--green); }

/* ----------  Scroll reveal (progressive enhancement: only hide when JS is active)  ---------- */
.reveal { transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(26px); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ----------  Responsive: show desktop nav  ---------- */
@media (min-width: 980px) {
  .nav-links { display: flex; }
  .hide-mobile { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* ----------  Misc  ---------- */
.divider-rule { display: flex; align-items: center; gap: 1rem; color: var(--rose); }
.divider-rule::before, .divider-rule::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--green); color: var(--ivory); }
