/* NourishDaily — Main Stylesheet
   Palette: warm sand #f4ede0, terracotta #b05a3a,
            forest #3a6b4a, espresso #231a12
   Fonts: Cormorant Garamond + Source Sans 3
   ================================================ */

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

:root {
  --terra:       #b05a3a;
  --terra-dark:  #8a3d22;
  --terra-light: #f7ece5;
  --terra-pale:  #fdf7f4;
  --forest:      #3a6b4a;
  --forest-dark: #274d34;
  --forest-light:#eaf1ec;
  --espresso:    #231a12;
  --espresso-mid:#3d2f22;
  --sand:        #f4ede0;
  --sand-dark:   #e8dccb;
  --sand-mid:    #d4c4a8;
  --warm-white:  #fdfaf6;
  --text:        #231a12;
  --text-mid:    #4a3728;
  --text-soft:   #8a7060;
  --border:      #ddd0bc;
  --gold:        #c9973a;
  --gold-light:  #fef6e4;
  --check:       #2d6b42;
  --radius:      6px;
  --radius-lg:   16px;
  --radius-xl:   28px;
  --shadow-sm:   0 1px 6px rgba(35,26,18,0.07);
  --shadow:      0 4px 20px rgba(35,26,18,0.10);
  --shadow-lg:   0 12px 44px rgba(35,26,18,0.15);
  --trans:       0.22s ease;
  --font-head:   'Cormorant Garamond', serif;
  --font-body:   'Source Sans 3', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--warm-white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--terra); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--terra-dark); }
ul { list-style: none; }
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* ── TYPE ────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; color: var(--text); font-weight: 600; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.65rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.01em; }

.label {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.28rem 0.9rem; border-radius: 2px;
}
.label-terra  { background: var(--terra-light); color: var(--terra-dark); }
.label-forest { background: var(--forest-light); color: var(--forest-dark); }
.label-gold   { background: var(--gold-light); color: #7a5c1a; }
.label-sand   { background: var(--sand); color: var(--text-mid); border: 1px solid var(--border); }
.label-espresso { background: var(--espresso); color: rgba(255,255,255,0.7); }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 0.9rem 2.2rem; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; transition: all var(--trans); text-align: center;
}
.btn-terra { background: var(--terra); color: #fff; box-shadow: 0 3px 12px rgba(176,90,58,0.3); }
.btn-terra:hover { background: var(--terra-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(176,90,58,0.38); }
.btn-espresso { background: var(--espresso); color: #fff; box-shadow: var(--shadow-sm); }
.btn-espresso:hover { background: var(--espresso-mid); color: #fff; transform: translateY(-2px); }
.btn-outline-terra { background: transparent; color: var(--terra); border-color: var(--terra); }
.btn-outline-terra:hover { background: var(--terra); color: #fff; }
.btn-outline-sand { background: transparent; color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.4); }
.btn-outline-sand:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-gold { background: var(--gold); color: var(--espresso); box-shadow: 0 3px 12px rgba(201,151,58,0.35); }
.btn-gold:hover { background: #a87c2e; color: #fff; transform: translateY(-2px); }
.btn-lg   { padding: 1.1rem 2.8rem; font-size: 1.1rem; }
.btn-xl   { padding: 1.2rem 3.2rem; font-size: 1.15rem; border-radius: var(--radius-lg); }
.btn-full { width: 100%; }

/* ── DISCLOSURE BAR ──────────────────────────── */
.disc-bar {
  background: var(--espresso); border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.5rem 1.25rem; text-align: center;
  font-size: 0.77rem; color: rgba(255,255,255,0.5); font-family: var(--font-body);
}
.disc-bar strong { color: rgba(255,255,255,0.8); }
.disc-bar a { color: var(--gold); font-weight: 600; text-decoration: underline; }

/* ── HEADER ──────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(253,250,246,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: all var(--trans); }
.site-header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 64px; }

.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px; background: var(--espresso); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; }
.logo-name { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--espresso); letter-spacing: 0.01em; }
.logo-name span { color: var(--terra); }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 0; }
.main-nav a { font-size: 0.88rem; font-weight: 500; color: var(--text-mid); padding: 0.4rem 0.85rem; border-radius: 4px; transition: all var(--trans); }
.main-nav a:hover, .main-nav a.active { color: var(--terra); background: var(--terra-light); }
.header-cta { display: none; }
.burger { background: none; border: none; cursor: pointer; padding: 0.4rem; display: flex; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--trans); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-nav { display: none; position: fixed; inset: 0; background: var(--espresso); z-index: 999; padding: 5rem 2rem 2rem; flex-direction: column; gap: 0.4rem; }
.mob-nav.open { display: flex; }
.mob-nav a { color: rgba(255,255,255,0.75); font-size: 1.2rem; font-family: var(--font-head); padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mob-nav a:hover { color: var(--gold); }

@media (min-width: 860px) { .main-nav { display: block; } .header-cta { display: inline-flex; } .burger { display: none; } }

/* ── HERO — editorial magazine split ─────────── */
.hero { background: var(--sand); overflow: hidden; position: relative; }
.hero-decoration {
  position: absolute; right: -2%; top: -5%;
  font-family: var(--font-head); font-size: clamp(14rem, 28vw, 22rem);
  font-weight: 700; color: rgba(176,90,58,0.06); line-height: 1;
  pointer-events: none; user-select: none; letter-spacing: -0.05em;
}
.hero-grid { display: grid; min-height: 86vh; position: relative; z-index: 1; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1fr 480px; } }

.hero-content { padding: 4rem 0 4rem; display: flex; flex-direction: column; justify-content: center; }
.hero-eyeline { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem; }
.hero-rule { flex: 1; height: 1px; background: var(--sand-mid); max-width: 40px; }
.hero-issue { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra); }
.hero h1 { margin-bottom: 1.25rem; max-width: 560px; }
.hero h1 em { font-style: italic; color: var(--terra); }
.hero-standfirst { font-size: 1.1rem; color: var(--text-mid); max-width: 500px; margin-bottom: 2rem; line-height: 1.72; }
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-data-row { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--sand-mid); padding-top: 1.5rem; max-width: 500px; }
.hero-datum { flex: 1; min-width: 110px; padding: 0 1.25rem 0 0; border-right: 1px solid var(--sand-mid); margin-right: 1.25rem; }
.hero-datum:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-datum-val { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--terra); line-height: 1; }
.hero-datum-lbl { font-size: 0.72rem; color: var(--text-soft); margin-top: 0.2rem; line-height: 1.3; }

.hero-visual { display: flex; align-items: flex-end; justify-content: center; padding: 2rem 0 0; position: relative; }
.hero-visual::before { content: ''; position: absolute; bottom: 0; left: 10%; right: 10%; height: 60%; background: var(--espresso); border-radius: var(--radius-xl) var(--radius-xl) 0 0; z-index: 0; }
.hero-img-wrap { position: relative; z-index: 1; padding: 0 2rem; }
.hero-img-wrap img { max-height: 420px; filter: drop-shadow(0 -6px 32px rgba(35,26,18,0.35)); margin: 0 auto; }
.hero-float-tag {
  position: absolute; top: 15%; right: 0; z-index: 2;
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow); max-width: 140px; text-align: center;
}
.hero-float-tag .val { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--terra); line-height: 1; }
.hero-float-tag .lbl { font-size: 0.68rem; color: var(--text-soft); margin-top: 0.2rem; line-height: 1.3; }

/* ── TRUST BAND ──────────────────────────────── */
.trust-band { background: var(--espresso); padding: 1rem 0; }
.trust-band-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.5rem 2rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.55); font-size: 0.8rem; }
.trust-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.trust-sep { color: rgba(255,255,255,0.15); }
@media (max-width: 480px) { .trust-sep { display: none; } }

/* ── MAGAZINE COLUMNS ────────────────────────── */
.mag-section { padding: 5rem 0; background: var(--warm-white); }
.mag-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 960px) { .mag-grid { grid-template-columns: 1fr 300px; } }

.mag-main {}
.mag-main h2 { margin-bottom: 1.5rem; }
.mag-main p { color: var(--text-mid); line-height: 1.82; margin-bottom: 1.15rem; font-size: 0.97rem; }
.mag-main h3 { margin: 2.2rem 0 0.8rem; color: var(--espresso); }
.drop-cap::first-letter {
  font-family: var(--font-head); font-size: 4.5rem; font-weight: 700;
  float: left; line-height: 0.75; margin: 0.1em 0.12em 0 0;
  color: var(--terra); padding-top: 0.05em;
}
.pull-stat {
  display: flex; align-items: flex-start; gap: 1.25rem;
  border-left: 3px solid var(--terra); padding: 1rem 1.5rem;
  background: var(--terra-pale); border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 2rem 0;
}
.pull-stat .ps-num { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--terra); line-height: 1; flex-shrink: 0; }
.pull-stat .ps-text { font-size: 0.93rem; color: var(--text-mid); line-height: 1.6; padding-top: 0.3rem; }
.pull-stat .ps-text strong { color: var(--text); display: block; margin-bottom: 0.2rem; font-size: 1rem; }

.mechanism-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.mech-item { display: grid; grid-template-columns: 40px 1fr; gap: 0.85rem; align-items: start; padding: 0.85rem 1rem; background: var(--sand); border-radius: var(--radius-lg); border: 1px solid var(--sand-dark); transition: all var(--trans); }
.mech-item:hover { border-color: var(--terra); box-shadow: var(--shadow-sm); }
.mech-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--terra-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.mech-body h4 { color: var(--espresso); margin-bottom: 0.2rem; font-size: 0.93rem; }
.mech-body p  { color: var(--text-soft); font-size: 0.84rem; margin: 0; line-height: 1.55; }

.article-note { background: var(--sand); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.1rem 1.35rem; margin-top: 2rem; font-size: 0.81rem; color: var(--text-soft); line-height: 1.6; }

/* Sidebar */
.mag-sidebar {}
.sidebar-box { background: var(--warm-white); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 1.25rem; position: sticky; top: 80px; }
.sidebar-box-head { background: var(--espresso); padding: 1.25rem 1.5rem; }
.sidebar-box-head img { max-width: 150px; margin: 0 auto 1rem; filter: drop-shadow(0 4px 12px rgba(201,151,58,0.25)); }
.sidebar-box-head h4 { color: #fff; font-family: var(--font-head); font-size: 1.05rem; font-weight: 500; text-align: center; margin-bottom: 0.3rem; }
.sidebar-box-head p { color: rgba(255,255,255,0.45); font-size: 0.78rem; text-align: center; }
.sidebar-box-body { padding: 1.25rem 1.5rem; }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid var(--sand-dark); font-size: 0.83rem; }
.spec-row:last-child { border: none; }
.spec-row .k { color: var(--text-soft); }
.spec-row .v { font-weight: 600; color: var(--text); }

/* ── PROCESS STEPS — horizontal ──────────────── */
.process-section { padding: 4rem 0; background: var(--sand); }
.steps-row { display: grid; gap: 0; position: relative; }
@media (min-width: 640px) { .steps-row { grid-template-columns: repeat(3, 1fr); } }
.steps-row::before {
  content: ''; position: absolute; top: 28px; left: calc(100% / 6); right: calc(100% / 6);
  height: 1px; background: var(--sand-mid); z-index: 0;
  display: none;
}
@media (min-width: 640px) { .steps-row::before { display: block; } }

.step-card { text-align: center; padding: 1.75rem 1.5rem; position: relative; z-index: 1; }
.step-bubble {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--warm-white); border: 2px solid var(--sand-mid);
  margin: 0 auto 1.1rem; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--terra);
  position: relative; z-index: 2;
}
.step-card h4 { color: var(--espresso); margin-bottom: 0.4rem; font-size: 0.95rem; }
.step-card p  { color: var(--text-soft); font-size: 0.86rem; line-height: 1.6; margin: 0; }

/* ── PACKAGES ────────────────────────────────── */
.packages-section { padding: 5rem 0; background: var(--warm-white); }
.pkg-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.25rem; flex-wrap: wrap; gap: 1rem; }
.pkg-header h2 { margin: 0; }

.pkg-cards { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .pkg-cards { grid-template-columns: repeat(3, 1fr); } }

.pkg-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-xl);
  overflow: hidden; position: relative; transition: all var(--trans); background: var(--warm-white);
}
.pkg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pkg-card.featured { border-color: var(--terra); }

.pkg-top { padding: 1.5rem; border-bottom: 1px solid var(--sand-dark); text-align: center; }
.pkg-card.featured .pkg-top { background: var(--espresso); }
.pkg-ribbon {
  position: absolute; top: 14px; right: -28px;
  background: var(--terra); color: #fff;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 2.5rem; transform: rotate(35deg); width: 130px; text-align: center;
}
.pkg-ribbon.gold { background: var(--gold); color: var(--espresso); }
.pkg-photo { height: 110px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.pkg-photo img { max-height: 100%; object-fit: contain; }
.pkg-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.2rem; }
.pkg-card.featured .pkg-name { color: #fff; }
.pkg-bottles-lbl { font-size: 0.78rem; color: var(--text-soft); }
.pkg-card.featured .pkg-bottles-lbl { color: rgba(255,255,255,0.45); }

.pkg-body { padding: 1.5rem; }
.pkg-price-big { display: flex; align-items: flex-start; justify-content: center; margin-bottom: 0.3rem; }
.pkg-price-big .currency { font-family: var(--font-head); font-size: 1.3rem; color: var(--terra); margin-top: 0.3rem; }
.pkg-price-big .amount  { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--terra); line-height: 1; }
.pkg-price-big .period  { font-size: 0.75rem; color: var(--text-soft); align-self: flex-end; margin-bottom: 0.4rem; margin-left: 0.2rem; }
.pkg-total-row { text-align: center; font-size: 0.8rem; color: var(--text-soft); margin-bottom: 1.1rem; }
.pkg-total-row s { color: var(--sand-mid); }
.pkg-features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.pkg-feature { display: flex; align-items: center; gap: 0.55rem; font-size: 0.84rem; color: var(--text-mid); }
.pkg-feature .chk { color: var(--check); font-weight: 700; flex-shrink: 0; }
.pkg-feature .star { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.pkg-shipping-note { text-align: center; font-size: 0.73rem; color: var(--text-soft); margin-top: 0.65rem; }
.pkg-shipping-note.free { color: var(--check); font-weight: 600; }

.pkg-footer { font-size: 0.73rem; color: var(--text-soft); text-align: center; margin-top: 1.5rem; padding: 0 1.5rem 1.5rem; }

/* ── GUARANTEE ───────────────────────────────── */
.guarantee-section { padding: 4rem 0; background: var(--espresso); }
.guarantee-layout { display: grid; gap: 3.5rem; align-items: center; }
@media (min-width: 860px) { .guarantee-layout { grid-template-columns: 1fr 1fr; } }

.guarantee-left { text-align: center; }
.guarantee-medallion {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 180px; height: 180px; border-radius: 50%;
  border: 2px solid var(--gold); background: rgba(201,151,58,0.08);
  margin-bottom: 1.75rem;
}
.guarantee-medallion .big { font-family: var(--font-head); font-size: 3.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.guarantee-medallion .sub { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.guarantee-points { display: flex; flex-direction: column; gap: 0.65rem; }
.gp-row { display: flex; align-items: center; gap: 0.65rem; color: rgba(255,255,255,0.55); font-size: 0.86rem; }
.gp-row::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.guarantee-right h2 { color: #fff; margin-bottom: 0.85rem; }
.guarantee-right p  { color: rgba(255,255,255,0.6); font-size: 0.97rem; line-height: 1.78; margin-bottom: 1rem; }
.guarantee-right .caveat { font-size: 0.78rem; color: rgba(255,255,255,0.28); font-style: italic; margin-top: 1.25rem; }

/* ── FAQ ─────────────────────────────────────── */
.faq-section { padding: 4.5rem 0; background: var(--sand); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; background: var(--warm-white); }
.faq-item { border-bottom: 1px solid var(--sand-dark); }
.faq-item:last-child { border-bottom: none; }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.2rem 1.5rem; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font-body); font-size: 0.94rem; font-weight: 600; color: var(--text);
  transition: background var(--trans);
}
.faq-btn:hover { background: var(--terra-pale); }
.faq-plus {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--sand); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--terra); font-size: 1.1rem; transition: all var(--trans); flex-shrink: 0;
}
.faq-btn.open .faq-plus { transform: rotate(45deg); background: var(--terra); color: #fff; border-color: var(--terra); }
.faq-body { display: none; padding: 0 1.5rem 1.25rem; font-size: 0.91rem; color: var(--text-mid); line-height: 1.75; }
.faq-body.open { display: block; }
.faq-body a { color: var(--terra); text-decoration: underline; }

/* ── FINAL CTA ───────────────────────────────── */
.cta-section { padding: 5rem 0; background: var(--warm-white); }
.cta-layout { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .cta-layout { grid-template-columns: 1fr 380px; } }

.cta-copy h2 { margin-bottom: 0.85rem; }
.cta-copy p { color: var(--text-mid); font-size: 1rem; line-height: 1.76; margin-bottom: 1.75rem; }
.cta-bullets { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.cta-bullet { display: flex; align-items: center; gap: 0.6rem; font-size: 0.93rem; color: var(--text-mid); }
.cta-bullet::before { content: '↳'; color: var(--terra); font-weight: 700; font-size: 1rem; }
.cta-legal { font-size: 0.76rem; color: var(--text-soft); margin-top: 1.25rem; font-style: italic; line-height: 1.55; }

.cta-panel {
  background: var(--sand); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.25rem;
  text-align: center; box-shadow: var(--shadow);
}
.cta-panel img { max-width: 190px; margin: 0 auto 1.25rem; filter: drop-shadow(0 5px 18px rgba(35,26,18,0.2)); }
.cta-panel h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.3rem; }
.cta-panel .sub { font-size: 0.8rem; color: var(--text-soft); margin-bottom: 1.1rem; }
.price-from { font-size: 0.72rem; color: var(--text-soft); margin-bottom: 0.1rem; text-transform: uppercase; letter-spacing: 0.1em; }
.price-display { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--terra); line-height: 1; margin-bottom: 0.1rem; }
.price-unit { font-size: 0.75rem; color: var(--text-soft); margin-bottom: 1.25rem; }
.cta-panel-note { font-size: 0.7rem; color: var(--text-soft); margin-top: 0.75rem; line-height: 1.55; }

/* ── FOOTER ──────────────────────────────────── */
.site-footer { background: var(--espresso); color: rgba(255,255,255,0.45); padding-top: 3.5rem; }
.footer-cols { display: grid; gap: 2.5rem; padding-bottom: 2.75rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
@media (min-width: 640px) { .footer-cols { grid-template-columns: 1.7fr 1fr 1fr; } }
.footer-brand { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: #fff; margin-bottom: 0.6rem; }
.footer-brand span { color: var(--terra); }
.footer-tagline { font-size: 0.83rem; font-style: italic; color: rgba(255,255,255,0.3); margin-bottom: 0.7rem; }
.footer-desc { font-size: 0.83rem; line-height: 1.68; }
.footer-col h5 { color: rgba(255,255,255,0.65); font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1rem; }
.f-links { display: flex; flex-direction: column; gap: 0.5rem; }
.f-links a { font-size: 0.84rem; color: rgba(255,255,255,0.35); transition: color var(--trans); }
.f-links a:hover { color: var(--gold); }
.f-contact { display: flex; flex-direction: column; gap: 0.65rem; }
.f-contact li { font-size: 0.84rem; }
.f-contact a { color: rgba(255,255,255,0.35); transition: color var(--trans); }
.f-contact a:hover { color: var(--gold); }
.footer-bottom { padding: 1.4rem 0; }
.fb-inner { display: flex; flex-direction: column; gap: 0.6rem; }
@media (min-width: 640px) { .fb-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.f-copy { font-size: 0.78rem; }
.f-disc { font-size: 0.73rem; color: rgba(255,255,255,0.22); line-height: 1.6; max-width: 620px; }

/* ── COOKIE ──────────────────────────────────── */
.ck-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--espresso); border-top: 1px solid rgba(201,151,58,0.2); padding: 0.9rem 1.25rem; z-index: 9999; display: none; }
.ck-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ck-inner p { color: rgba(255,255,255,0.6); font-size: 0.82rem; flex: 1; min-width: 200px; }
.ck-inner a { color: var(--gold); }
.ck-btns { display: flex; gap: 0.6rem; }

/* ── MISC ────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

.policy-pg { padding: 3.5rem 0 5rem; background: var(--warm-white); }
.policy-pg h1 { margin-bottom: 0.4rem; }
.policy-pg .upd { color: var(--text-soft); font-size: 0.82rem; margin-bottom: 2.5rem; }
.policy-body { max-width: 740px; }
.policy-body h2 { font-size: 1.25rem; margin: 2rem 0 0.65rem; color: var(--espresso); }
.policy-body p, .policy-body li { color: var(--text-mid); line-height: 1.8; margin-bottom: 0.9rem; font-size: 0.95rem; }
.policy-body ul { list-style: disc; padding-left: 1.5rem; }
.policy-body a { color: var(--terra); text-decoration: underline; }
