/* Foundry Health — Main Stylesheet
   Palette: cream #f7f3ee · charcoal #1c1c1c · copper #d4621c
   Fonts: Abril Fatface (display) + Mulish (body)
   ============================================================ */

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

:root {
  --charcoal:    #1c1c1c;
  --charcoal-2:  #2e2e2e;
  --charcoal-3:  #444;
  --copper:      #d4621c;
  --copper-dark: #aa4a10;
  --copper-light:#fdf0e8;
  --copper-pale: #fff8f4;
  --cream:       #f7f3ee;
  --cream-2:     #ede7df;
  --cream-3:     #ddd5c8;
  --sage:        #7a8c7a;
  --sage-light:  #edf2ed;
  --white:       #ffffff;
  --text:        #1c1c1c;
  --text-mid:    #3d3d3d;
  --text-soft:   #707070;
  --border:      #ddd5c8;
  --green:       #2d7a4f;
  --radius:      4px;
  --radius-lg:   12px;
  --radius-xl:   24px;
  --shadow-sm:   0 1px 6px rgba(28,28,28,0.07);
  --shadow:      0 4px 22px rgba(28,28,28,0.10);
  --shadow-lg:   0 14px 50px rgba(28,28,28,0.16);
  --trans:       0.22s ease;
  --font-head:   'Abril Fatface', serif;
  --font-body:   'Mulish', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; display: block; }
a    { color: var(--copper); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--copper-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.15; color: var(--text); }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); }
h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 800; letter-spacing: 0.02em; }

.tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-body); font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.27rem 0.85rem; border-radius: var(--radius);
}
.tag-copper  { background: var(--copper-light); color: var(--copper-dark); border: 1px solid #f0c4a8; }
.tag-charcoal{ background: var(--charcoal); color: rgba(255,255,255,0.75); }
.tag-cream   { background: var(--cream-2); color: var(--text-mid); border: 1px solid var(--border); }
.tag-white   { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.25); }
.tag-sage    { background: var(--sage-light); color: var(--sage); }

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  padding: 0.9rem 2.2rem; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: all var(--trans); text-align: center;
}
.btn-copper  { background: var(--copper); color: var(--white); box-shadow: 0 4px 14px rgba(212,98,28,0.32); }
.btn-copper:hover  { background: var(--copper-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(212,98,28,0.4); }
.btn-charcoal{ background: var(--charcoal); color: var(--white); }
.btn-charcoal:hover{ background: var(--charcoal-2); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.btn-lg   { padding: 1.1rem 2.8rem; font-size: 1.1rem; }
.btn-xl   { padding: 1.2rem 3rem; font-size: 1.15rem; border-radius: 50px; }
.btn-full { width: 100%; }

/* ── DISCLOSURE BAR ────────────────────────── */
.disc-bar {
  background: var(--copper-light); border-bottom: 1px solid #f0c4a8;
  padding: 0.5rem 1.25rem; text-align: center;
  font-family: var(--font-body); font-size: 0.77rem; color: #7a3c10; font-weight: 500;
}
.disc-bar strong { font-weight: 800; color: var(--copper-dark); }
.disc-bar a { color: var(--copper-dark); font-weight: 800; text-decoration: underline; }

/* ── HEADER ────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(247,243,238,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-block { width: 32px; height: 32px; background: var(--charcoal); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.logo-block svg { width: 16px; height: 16px; }
.logo-wordmark { font-family: var(--font-head); font-size: 1.1rem; color: var(--charcoal); letter-spacing: 0.01em; }
.logo-wordmark span { color: var(--copper); }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 0; }
.main-nav a { font-size: 0.87rem; font-weight: 700; color: var(--text-mid); padding: 0.4rem 0.85rem; border-radius: var(--radius); transition: all var(--trans); letter-spacing: 0.02em; }
.main-nav a:hover, .main-nav a.active { color: var(--copper); background: var(--copper-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(--charcoal); 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.72); 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(--copper); }

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

/* ── TYPOGRAPHIC HERO ─────────────────────── */
.hero { background: var(--cream); padding: 4rem 0 0; overflow: hidden; position: relative; }
.hero-rule-top { width: 100%; height: 2px; background: var(--charcoal); margin-bottom: 2rem; }
.hero-meta-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-meta-left  { display: flex; align-items: center; gap: 1rem; }
.hero-meta-right { display: flex; align-items: center; gap: 1rem; }
.hero-meta-sep   { width: 1px; height: 18px; background: var(--cream-3); }
.hero-meta-txt   { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-soft); }

.hero-headline-block { display: grid; gap: 0; margin-bottom: 0; }
@media (min-width: 900px) { .hero-headline-block { grid-template-columns: 1fr 420px; } }

.hero-text { padding-bottom: 3.5rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .copper { color: var(--copper); }
.hero-deck { font-size: 1.08rem; color: var(--text-mid); max-width: 520px; line-height: 1.75; margin-bottom: 2.25rem; }
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-data-strip { display: flex; gap: 0; border-top: 1px solid var(--cream-3); border-bottom: 1px solid var(--cream-3); padding: 1.25rem 0; }
.hds-item { flex: 1; padding: 0 1.25rem 0 0; border-right: 1px solid var(--cream-3); margin-right: 1.25rem; }
.hds-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hds-val { font-family: var(--font-head); font-size: 1.75rem; color: var(--copper); line-height: 1; }
.hds-lbl { font-size: 0.7rem; font-weight: 800; color: var(--text-soft); margin-top: 0.2rem; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.3; }

.hero-visual { display: flex; align-items: flex-end; justify-content: center; position: relative; }
.hero-visual::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 55%; background: var(--charcoal); border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.hero-visual img { position: relative; z-index: 1; max-height: 420px; margin: 0 auto; filter: drop-shadow(0 -8px 32px rgba(28,28,28,0.3)); }
.hero-rule-bottom { width: 100%; height: 2px; background: var(--charcoal); }

/* ── DISCLOSURE ROW ───────────────────────── */
.disc-row { background: var(--charcoal); padding: 0.85rem 0; }
.disc-row-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.5rem 1.75rem; }
.dr-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.76rem; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }
.dr-item .sq { width: 6px; height: 6px; border-radius: 1px; background: var(--copper); flex-shrink: 0; }

/* ── FOUNDATIONS SECTION (editorial) ─────── */
.foundations { padding: 5rem 0; background: var(--cream); }
.found-grid { display: grid; gap: 3.5rem; align-items: start; }
@media (min-width: 960px) { .found-grid { grid-template-columns: 1fr 300px; } }

.found-article h2 { margin-bottom: 1.5rem; }
.found-article p  { color: var(--text-mid); line-height: 1.82; margin-bottom: 1.15rem; font-size: 0.97rem; }
.found-article h3 { margin: 2.25rem 0 0.8rem; }

.pull-quote-box {
  border-top: 3px solid var(--copper); border-bottom: 3px solid var(--copper);
  padding: 1.5rem 0; margin: 2rem 0;
}
.pull-quote-box blockquote { font-family: var(--font-head); font-size: 1.4rem; color: var(--charcoal); line-height: 1.4; }
.pull-quote-box .pq-source { font-size: 0.78rem; color: var(--text-soft); margin-top: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.science-rows { display: flex; flex-direction: column; gap: 0; margin: 1.75rem 0; }
.science-row {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 1.1rem; align-items: start;
  padding: 1.2rem 0; border-bottom: 1px solid var(--cream-2);
  transition: all var(--trans);
}
.science-row:last-child { border-bottom: none; }
.science-row:hover .sr-num { color: var(--copper); }
.sr-num  { font-family: var(--font-head); font-size: 2.4rem; color: var(--cream-3); line-height: 1; }
.sr-body h4 { color: var(--charcoal); margin-bottom: 0.25rem; }
.sr-body p  { font-size: 0.88rem; color: var(--text-soft); margin: 0; line-height: 1.6; }

.article-disclaimer { background: var(--cream-2); border-radius: var(--radius-lg); padding: 1.1rem 1.35rem; font-size: 0.8rem; color: var(--text-soft); line-height: 1.65; margin-top: 2rem; }

/* Sidebar */
.found-aside { position: sticky; top: 84px; }
.aside-panel { background: var(--charcoal); border-radius: var(--radius-xl); overflow: hidden; }
.ap-img { display: flex; justify-content: center; background: var(--charcoal-2); padding: 1.5rem 1.5rem 0; }
.ap-img img { max-width: 160px; filter: drop-shadow(0 4px 16px rgba(212,98,28,0.35)); }
.ap-body { padding: 1.25rem 1.5rem; }
.ap-name { font-family: var(--font-head); font-size: 1.1rem; color: var(--white); text-align: center; margin-bottom: 0.3rem; }
.ap-sub  { font-size: 0.76rem; color: rgba(255,255,255,0.4); text-align: center; margin-bottom: 1.25rem; }
.ap-specs { display: flex; flex-direction: column; gap: 0; }
.ap-spec  { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.82rem; }
.ap-spec:last-child { border-bottom: none; }
.ap-spec .k { color: rgba(255,255,255,0.4); }
.ap-spec .v { color: var(--white); font-weight: 800; }
.ap-spec .v.copper { color: var(--copper); }
.ap-cta { padding: 0 1.5rem 1.5rem; }
.ap-note { font-size: 0.68rem; color: rgba(255,255,255,0.25); text-align: center; margin-top: 0.65rem; line-height: 1.55; }

/* ── DATA PILLARS ─────────────────────────── */
.pillars { padding: 4.5rem 0; background: var(--charcoal); }
.pillars-grid { display: grid; gap: 1px; background: rgba(255,255,255,0.07); }
@media (min-width: 640px)  { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .pillars-grid { grid-template-columns: repeat(4, 1fr); } }

.pillar { background: var(--charcoal); padding: 2.25rem 1.75rem; text-align: center; transition: background var(--trans); }
.pillar:hover { background: var(--charcoal-2); }
.pillar-num { font-family: var(--font-head); font-size: 3.5rem; color: var(--copper); line-height: 1; margin-bottom: 0.6rem; }
.pillar-title { font-size: 0.88rem; font-weight: 800; color: var(--white); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.6rem; }
.pillar-desc  { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── PACKAGES — editorial AD style ───────── */
.packages-section { padding: 5rem 0; background: var(--cream); }
.pkg-head { margin-bottom: 2.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .pkg-head { grid-template-columns: 1fr auto; align-items: end; } }
.pkg-head h2 { margin: 0; }

.pkg-stack { display: flex; flex-direction: column; gap: 1px; background: var(--cream-3); border: 1px solid var(--cream-3); border-radius: var(--radius-xl); overflow: hidden; }

.pkg-item {
  display: grid; gap: 1.25rem; align-items: center;
  background: var(--white); padding: 1.75rem 2rem;
  transition: background var(--trans); position: relative;
}
@media (min-width: 640px) { .pkg-item { grid-template-columns: 90px 1fr auto auto; } }
.pkg-item:hover { background: var(--copper-pale); }
.pkg-item.hero-item { background: var(--charcoal); }
.pkg-item.hero-item:hover { background: var(--charcoal-2); }

.pkg-badge-strip {
  position: absolute; top: 0; left: 0; bottom: 0; width: 5px;
  background: var(--cream-3);
}
.hero-item .pkg-badge-strip { background: var(--copper); }
.popular-item .pkg-badge-strip { background: var(--sage); }

.pkg-img-cell img { max-height: 90px; object-fit: contain; width: 100%; }

.pkg-info-cell {}
.pkg-item-name { font-family: var(--font-head); font-size: 1.2rem; color: var(--charcoal); margin-bottom: 0.2rem; }
.hero-item .pkg-item-name { color: var(--white); }
.pkg-item-supply { font-size: 0.78rem; color: var(--text-soft); margin-bottom: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.hero-item .pkg-item-supply { color: rgba(255,255,255,0.4); }
.pkg-item-perks { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pkg-item-perk { font-size: 0.76rem; color: var(--green); font-weight: 700; display: flex; align-items: center; gap: 0.25rem; }
.pkg-item-perk::before { content: '✓'; }
.hero-item .pkg-item-perk { color: var(--copper); }
.pkg-item-perk.bold-saving { color: var(--copper-dark); font-size: 0.82rem; }
.hero-item .pkg-item-perk.bold-saving { color: var(--copper); }

.pkg-price-cell { text-align: center; flex-shrink: 0; }
.ppc-big { font-family: var(--font-head); font-size: 3rem; color: var(--charcoal); line-height: 1; }
.hero-item .ppc-big { color: var(--copper); }
.ppc-per { font-size: 0.72rem; color: var(--text-soft); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-item .ppc-per { color: rgba(255,255,255,0.4); }
.ppc-total { font-size: 0.8rem; color: var(--text-soft); margin-top: 0.2rem; }
.hero-item .ppc-total { color: rgba(255,255,255,0.35); }

.pkg-action-cell { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.pkg-action-cell .btn { min-width: 140px; }
.pkg-action-note { font-size: 0.68rem; color: var(--text-soft); text-align: center; }
.hero-item .pkg-action-note { color: rgba(255,255,255,0.3); }
.pkg-action-note.free { color: var(--green); font-weight: 800; }
.hero-item .pkg-action-note.free { color: var(--copper); }

.pkg-footer-note { font-size: 0.74rem; color: var(--text-soft); text-align: center; margin-top: 1.5rem; line-height: 1.6; }

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

.stamp-visual { text-align: center; }
.stamp {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 200px; height: 200px; border-radius: 50%;
  border: 5px solid var(--charcoal);
  outline: 10px solid transparent;
  outline-offset: 8px;
  box-shadow: 0 0 0 10px var(--cream-2), 0 0 0 12px var(--charcoal);
  margin-bottom: 1.5rem;
  background: var(--white);
}
.stamp-top    { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; color: var(--charcoal); }
.stamp-big    { font-family: var(--font-head); font-size: 4.5rem; color: var(--copper); line-height: 1; margin: 0.1rem 0; }
.stamp-bottom { font-size: 0.55rem; font-weight: 800; letter-spacing: 0.25em; text-transform: uppercase; color: var(--charcoal); }
.stamp-points { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.sp-row { font-size: 0.84rem; color: var(--text-mid); display: flex; align-items: center; gap: 0.55rem; }
.sp-row::before { content: '→'; color: var(--copper); font-weight: 800; }

.guarantee-copy h2 { margin-bottom: 0.85rem; }
.guarantee-copy p  { color: var(--text-mid); font-size: 0.97rem; line-height: 1.78; margin-bottom: 1rem; }
.guarantee-copy .caveat { font-size: 0.78rem; color: var(--text-soft); font-style: italic; margin-top: 1.1rem; }

/* ── NEWSPAPER FAQ ────────────────────────── */
.faq-section { padding: 4.5rem 0; background: var(--cream); }
.faq-rule { width: 100%; height: 2px; background: var(--charcoal); margin-bottom: 1.75rem; }
.faq-header-row { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.faq-header-row h2 { margin: 0; }
.faq-header-note { font-size: 0.78rem; color: var(--text-soft); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.faq-columns { display: grid; gap: 0; }
@media (min-width: 720px) { .faq-columns { grid-template-columns: 1fr 1fr; gap: 0 3rem; } }

.faq-item { border-bottom: 1px solid var(--cream-2); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.1rem 0; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font-body); font-size: 0.93rem; font-weight: 800; color: var(--text);
  transition: color var(--trans);
}
.faq-q:hover { color: var(--copper); }
.faq-mark { flex-shrink: 0; font-family: var(--font-head); font-size: 1.3rem; color: var(--copper); transition: transform var(--trans); }
.faq-q.open .faq-mark { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 1.1rem; font-size: 0.89rem; color: var(--text-mid); line-height: 1.74; }
.faq-a.open { display: block; }
.faq-a a { color: var(--copper); text-decoration: underline; }
.faq-rule-end { width: 100%; height: 2px; background: var(--charcoal); margin-top: 0; }

/* ── MINIMAL CTA ──────────────────────────── */
.cta-section { padding: 6rem 0; background: var(--charcoal); position: relative; overflow: hidden; }
.cta-noise { position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 8px); pointer-events: none; }
.cta-inner { display: grid; gap: 4rem; align-items: center; position: relative; z-index: 1; }
@media (min-width: 860px) { .cta-inner { grid-template-columns: 1fr 360px; } }

.cta-copy h2 { color: var(--white); margin-bottom: 0.85rem; }
.cta-copy p  { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.75; margin-bottom: 1.75rem; }
.cta-checklist { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.cta-check { display: flex; align-items: center; gap: 0.75rem; font-size: 0.91rem; color: rgba(255,255,255,0.65); }
.cta-check .arrow { color: var(--copper); font-weight: 800; flex-shrink: 0; }
.cta-legal { font-size: 0.73rem; color: rgba(255,255,255,0.27); margin-top: 1.25rem; line-height: 1.6; }

.cta-card { text-align: center; }
.cta-card img { max-width: 200px; margin: 0 auto 1.5rem; filter: drop-shadow(0 8px 28px rgba(212,98,28,0.4)); }
.cta-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.3rem; }
.cta-card .sub { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-bottom: 1.25rem; }
.price-block { background: var(--copper); border-radius: var(--radius-lg); padding: 0.8rem 1.2rem; margin-bottom: 1.25rem; }
.price-block .from { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.7); }
.price-block .amt  { font-family: var(--font-head); font-size: 3rem; color: var(--white); line-height: 1; }
.price-block .unit { font-size: 0.76rem; font-weight: 700; color: rgba(255,255,255,0.7); }
.cta-card-note { font-size: 0.68rem; color: rgba(255,255,255,0.25); margin-top: 0.75rem; line-height: 1.55; }

/* ── FOOTER ──────────────────────────────── */
.site-footer { background: #111; 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.06); }
@media (min-width: 640px) { .footer-cols { grid-template-columns: 1.7fr 1fr 1fr; } }
.footer-brand { font-family: var(--font-head); font-size: 1.2rem; color: var(--white); margin-bottom: 0.6rem; }
.footer-brand span { color: var(--copper); }
.footer-tagline { font-size: 0.82rem; 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.6); font-family: var(--font-body); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; 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(--copper); }
.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(--copper); }
.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: #111; border-top: 1px solid rgba(212,98,28,0.25); 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(--copper); }
.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(--cream); }
.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.2rem; margin: 2rem 0 0.65rem; color: var(--charcoal); }
.policy-body p, .policy-body li { color: var(--text-mid); line-height: 1.8; margin-bottom: 0.9rem; font-size: 0.94rem; }
.policy-body ul { list-style: disc; padding-left: 1.5rem; }
.policy-body a { color: var(--copper-dark); text-decoration: underline; }
