/* SuppleGuide — Main Stylesheet
   Warm editorial review site: cream bg, deep teal, amber accents */

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

:root {
  --teal:        #0b6e78;
  --teal-dark:   #074e56;
  --teal-mid:    #1a8f9b;
  --teal-light:  #e8f6f8;
  --teal-pale:   #f2fbfc;
  --amber:       #e8960f;
  --amber-dark:  #c47c08;
  --amber-light: #fef5e2;
  --cream:       #faf7f2;
  --cream-dark:  #f0ebe0;
  --text:        #1c1a17;
  --text-mid:    #3d3830;
  --text-light:  #7a7060;
  --bg:          #ffffff;
  --border:      #e2ddd4;
  --green-check: #1e8a4a;
  --radius:      10px;
  --radius-lg:   20px;
  --shadow:      0 2px 20px rgba(11,110,120,0.09);
  --shadow-hover:0 8px 32px rgba(11,110,120,0.18);
  --trans:       0.22s ease;
  --font-head:   'Merriweather', serif;
  --font-body:   'Inter', 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(--teal); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; color: var(--text); font-weight: 700; }
h1 { font-size: clamp(1.85rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 50px;
}
.tag-teal  { background: var(--teal-light); color: var(--teal-dark); }
.tag-amber { background: var(--amber-light); color: var(--amber-dark); }
.tag-white { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 0.9rem 2rem; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: all var(--trans); text-align: center; white-space: nowrap;
}
.btn-amber {
  background: var(--amber); color: #fff;
  box-shadow: 0 4px 14px rgba(232,150,15,0.38);
}
.btn-amber:hover { background: var(--amber-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,150,15,0.45); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 4px 14px rgba(11,110,120,0.3); }
.btn-teal:hover { background: var(--teal-dark); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.1rem; }
.btn-xl { padding: 1.25rem 3rem; font-size: 1.2rem; border-radius: 50px; }
.btn-full { width: 100%; justify-content: center; }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.site-header.scrolled { border-color: var(--border); box-shadow: var(--shadow); }
.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-icon {
  width: 36px; height: 36px;
  background: var(--teal); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; }
.logo-name { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--text); }
.logo-name span { color: var(--teal); }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 0.1rem; }
.main-nav a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-mid);
  padding: 0.4rem 0.8rem; border-radius: 7px; transition: all var(--trans);
}
.main-nav a:hover, .main-nav a.active { color: var(--teal); background: var(--teal-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); }
.mobile-nav { display: none; position: fixed; inset: 0; background: rgba(7,78,86,0.97); z-index: 999; padding: 5rem 2rem 2rem; flex-direction: column; gap: 0.5rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: #fff; font-size: 1.25rem; font-family: var(--font-head); padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.mobile-nav a:hover { color: var(--amber); }

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

/* ── DISCLOSURE BAR ──────────────────────────────────────── */
.disclosure-bar {
  background: var(--amber-light);
  border-bottom: 1px solid #f5d882;
  padding: 0.6rem 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: #7a5c08;
}
.disclosure-bar a { color: var(--amber-dark); font-weight: 600; text-decoration: underline; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 55%, #1a8f9b 100%);
  padding: 3.5rem 0 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner { display: grid; gap: 2rem; align-items: flex-end; position: relative; z-index: 1; }
.hero-text { padding-bottom: 3rem; }
.hero-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.hero-meta-item { font-size: 0.78rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 0.3rem; }
.hero-meta-sep { color: rgba(255,255,255,0.25); }
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero h1 em { font-style: italic; color: #fde68a; }
.hero-lead { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 1.75rem; max-width: 540px; }
.verdict-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px; padding: 0.55rem 1.1rem;
  color: #fff; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.75rem;
}
.verdict-pill .score { background: var(--amber); color: #fff; border-radius: 50px; padding: 0.15rem 0.6rem; font-size: 0.8rem; font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-image-wrap { align-self: flex-end; }
.hero-image-wrap img { max-height: 340px; margin: 0 auto; filter: drop-shadow(0 -8px 32px rgba(0,0,0,0.3)); }

@media (min-width: 860px) { .hero-inner { grid-template-columns: 1fr 420px; } .hero-image-wrap img { max-height: 400px; } }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb { background: var(--cream-dark); padding: 0.7rem 0; border-bottom: 1px solid var(--border); }
.breadcrumb-inner { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-light); }
.breadcrumb-inner a { color: var(--teal); }
.breadcrumb-inner span { color: var(--text-light); }

/* ── QUICK VERDICT BOX ───────────────────────────────────── */
.verdict-box {
  background: var(--bg); border: 2px solid var(--teal-light);
  border-radius: var(--radius-lg); padding: 1.75rem 2rem; margin: 2.5rem 0;
  box-shadow: var(--shadow);
}
.verdict-box-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.verdict-badge {
  background: var(--teal); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.85rem; border-radius: 4px;
}
.verdict-score { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--teal); }
.verdict-stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 2px; }
.verdict-grid { display: grid; gap: 0.6rem; }
.verdict-row { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.verdict-row-label { color: var(--text-mid); flex: 1; }
.verdict-bar-wrap { flex: 2; height: 7px; background: var(--cream-dark); border-radius: 10px; overflow: hidden; }
.verdict-bar { height: 100%; border-radius: 10px; background: linear-gradient(90deg, var(--teal), var(--teal-mid)); }
.verdict-row-score { font-weight: 700; font-size: 0.85rem; color: var(--teal); min-width: 30px; text-align: right; }

@media (min-width: 640px) { .verdict-grid { grid-template-columns: 1fr 1fr; } }

/* ── MAIN CONTENT AREA ───────────────────────────────────── */
.content-wrap { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .content-wrap { grid-template-columns: 1fr 300px; } }

.article h3 { margin: 2rem 0 0.75rem; }
.article p { color: var(--text-mid); margin-bottom: 1.15rem; line-height: 1.78; }
.article .pull-quote {
  border-left: 4px solid var(--amber); background: var(--amber-light);
  padding: 1.1rem 1.4rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5rem 0;
  color: #6b4c00; font-style: italic; font-size: 1rem; line-height: 1.65;
}
.article .pull-quote strong { font-style: normal; }
.check-list { display: flex; flex-direction: column; gap: 0.6rem; margin: 1rem 0 1.25rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.95rem; color: var(--text-mid); }
.check-list li::before { content: '✓'; color: var(--green-check); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; margin-top: 0.1rem; }
.x-list li::before { content: '✕'; color: #c0392b; }

/* ── PACKAGE CARDS ───────────────────────────────────────── */
.packages-section { background: var(--cream); padding: 3.5rem 0; }
.section-head { text-align: center; margin-bottom: 2.25rem; }
.section-head h2 { margin-bottom: 0.6rem; }
.section-head p { color: var(--text-light); max-width: 520px; margin: 0 auto; }

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

.pkg-card {
  background: var(--bg); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  text-align: center; position: relative; transition: all var(--trans);
}
.pkg-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.pkg-card.featured { border-color: var(--amber); box-shadow: 0 0 0 1px var(--amber), var(--shadow); }
.pkg-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 50px; white-space: nowrap;
}
.pkg-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--text); }
.pkg-sub { font-size: 0.82rem; color: var(--text-light); margin-bottom: 1rem; }
.pkg-img { height: 120px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.pkg-img img { max-height: 100%; object-fit: contain; }
.pkg-price-wrap { margin-bottom: 1rem; }
.pkg-per { font-size: 0.78rem; color: var(--text-light); }
.pkg-price { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--text); line-height: 1; }
.pkg-price sup { font-size: 1.2rem; vertical-align: super; }
.pkg-total { font-size: 0.82rem; color: var(--text-light); margin-top: 0.2rem; }
.pkg-total s { color: #b0a090; }
.pkg-perks { display: flex; flex-direction: column; gap: 0.5rem; margin: 1rem 0 1.25rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1rem 0; }
.pkg-perk { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-mid); }
.pkg-perk .tick { color: var(--green-check); font-weight: 700; }
.pkg-shipping { font-size: 0.78rem; color: var(--text-light); margin-top: 0.5rem; }

/* ── STICKY SIDEBAR ──────────────────────────────────────── */
.sidebar {}
.sidebar-sticky { position: sticky; top: 82px; display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem; overflow: hidden;
}
.sidebar-card.highlight { border-color: var(--teal-light); background: var(--teal-pale); }
.sidebar-card.amber-card { border-color: #f5d882; background: var(--amber-light); }
.sidebar-card h4 { font-family: var(--font-head); margin-bottom: 0.75rem; font-size: 0.95rem; }
.sidebar-card img { width: 100%; max-width: 160px; margin: 0 auto 1rem; object-fit: contain; }
.sidebar-quick-facts { display: flex; flex-direction: column; gap: 0.5rem; }
.sqf-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.sqf-row:last-child { border-bottom: none; }
.sqf-label { color: var(--text-light); }
.sqf-val { font-weight: 600; color: var(--text); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { background: var(--bg); padding: 3.5rem 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.1rem 1.25rem; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font-head); font-size: 0.97rem; font-weight: 600; color: var(--text);
  transition: background var(--trans);
}
.faq-q:hover { background: var(--cream); }
.faq-q .faq-icon { font-size: 1.2rem; flex-shrink: 0; color: var(--teal); transition: transform var(--trans); }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.25rem 1.1rem; color: var(--text-mid); font-size: 0.93rem; line-height: 1.72; }
.faq-a.open { display: block; }

/* ── FINAL CTA ───────────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 4rem 0; text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta h2 { color: #fff; margin-bottom: 0.75rem; position: relative; }
.final-cta p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 2rem; position: relative; font-size: 1.02rem; }
.final-cta img { width: 180px; margin: 0 auto 1.75rem; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35)); position: relative; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; margin-top: 1.5rem; position: relative; }
.trust-item { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.disclaimer-note { color: rgba(255,255,255,0.3); font-size: 0.73rem; margin-top: 1.25rem; position: relative; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: #0d1f22; color: rgba(255,255,255,0.55); padding-top: 3rem; }
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-logo { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 0.7rem; }
.footer-logo span { color: var(--teal-mid); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.4); font-style: italic; margin-bottom: 0.75rem; }
.footer-desc { font-size: 0.85rem; line-height: 1.65; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.86rem; color: rgba(255,255,255,0.45); transition: color var(--trans); }
.footer-links a:hover { color: var(--teal-mid); }
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact li { font-size: 0.86rem; }
.footer-contact a { color: rgba(255,255,255,0.45); transition: color var(--trans); }
.footer-contact a:hover { color: var(--teal-mid); }
.footer-bottom { padding: 1.4rem 0; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 0.6rem; }
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.footer-copy { font-size: 0.8rem; }
.footer-disc { font-size: 0.76rem; color: rgba(255,255,255,0.28); line-height: 1.55; max-width: 580px; }

/* ── COOKIE BAR ──────────────────────────────────────────── */
.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #0d1f22; border-top: 1px solid rgba(26,143,155,0.35); padding: 1rem 1.25rem; z-index: 9999; display: none; }
.cookie-inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cookie-inner p { color: rgba(255,255,255,0.65); font-size: 0.84rem; flex: 1; min-width: 240px; }
.cookie-inner a { color: var(--teal-mid); }
.cookie-btns { display: flex; gap: 0.6rem; }

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

/* Policy */
.policy-page { padding: 3rem 0 4.5rem; background: var(--cream); }
.policy-page h1 { margin-bottom: 0.5rem; }
.policy-page .updated { color: var(--text-light); font-size: 0.84rem; margin-bottom: 2.5rem; }
.policy-body { max-width: 740px; }
.policy-body h2 { font-size: 1.2rem; margin: 2rem 0 0.65rem; }
.policy-body p, .policy-body li { color: var(--text-mid); line-height: 1.78; margin-bottom: 0.9rem; font-size: 0.95rem; }
.policy-body ul { list-style: disc; padding-left: 1.5rem; }
.policy-body a { color: var(--teal); }
