:root {
  --ink: #1A1A1A;
  --gold: #D8A848;
  --gold-dark: #A8882C;
  --cream: #FDFAF5;
  --gold-tint: #FDF6E3;
  --border: #EEEBE6;
  --beige: #F3F0EB;
  --highlight: #ECE3CC;
  --white: #FFFFFF;
  --muted: #65605A;
  --shadow: 0 18px 50px rgba(26, 26, 26, .10);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }
.narrow { width: min(calc(100% - 48px), 920px); }
.section { padding: 94px 0; }
.centered { text-align: center; }

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.8rem, 5.1vw, 5.15rem); letter-spacing: -.035em; }
h2 { font-size: clamp(2.15rem, 3.5vw, 3.55rem); letter-spacing: -.025em; }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1rem; }

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .28em;
  line-height: 1.5;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.button:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(168, 136, 44, .17); }
.button:focus-visible { outline: 3px solid rgba(216, 168, 72, .35); outline-offset: 3px; }
.button-small { min-height: 44px; padding: 10px 18px; font-size: .9rem; }
.button-large { min-height: 60px; padding: 17px 30px; }
.button-outline { background: transparent; border-color: var(--ink); }
.button-outline:hover { color: #fff; background: var(--ink); border-color: var(--ink); }
.button-ghost { background: transparent; border-color: var(--border); }
.button-ghost:hover { background: var(--beige); border-color: var(--beige); }

.site-header {
  position: relative;
  z-index: 50;
  height: 82px;
  background: rgba(253,250,245,.97);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-block; width: 142px; overflow: hidden; }
.brand img { width: 142px; height: 58px; object-fit: contain; object-position: center; mix-blend-mode: multiply; }
.advertorial-label { justify-self: center; color: var(--gold-dark); font-weight: 700; font-size: .72rem; letter-spacing: .26em; }
.header-cta { justify-self: end; }

.hero { padding-top: 72px; padding-bottom: 90px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  gap: clamp(46px, 6vw, 88px);
  align-items: center;
}
.hero-copy { padding: 12px 0; }
.hero-lead { max-width: 720px; margin: 24px 0 22px; font-size: clamp(1.08rem, 1.3vw, 1.26rem); line-height: 1.6; }
.rating { display: grid; gap: 2px; margin: 0 0 30px; color: #4f4a45; font-size: .92rem; }
.stars { color: var(--gold); letter-spacing: .12em; font-size: 1.12rem; }
.hero-visual { position: relative; }
.hero-visual > img { width: 100%; aspect-ratio: .8/1; object-fit: cover; border-radius: var(--radius); }
.image-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255,255,255,.96);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(26,26,26,.10);
  font-size: .9rem;
}
.image-badge svg { width: 24px; height: 24px; fill: none; stroke: var(--gold); stroke-width: 1.7; flex: 0 0 auto; }

.alerts-section { background: var(--cream); border-top: 1px solid var(--border); }
.alerts-section h2 { max-width: 850px; margin-bottom: 38px; }
.alert-list { display: grid; gap: 12px; }
.alert-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  align-items: start;
  padding: 21px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}
.alert-card p { margin: 0; color: #3f3a35; }
.alert-card strong { color: var(--ink); }
.check-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(216,168,72,.45);
  border-radius: 50%;
  color: var(--gold-dark);
  background: var(--gold-tint);
  font-weight: 800;
}
.highlight-box { margin: 18px 0 24px; padding: 22px 24px; background: var(--highlight); border-left: 3px solid var(--gold-dark); }
.highlight-box p { margin: 0; font-family: "Fraunces", Georgia, serif; font-size: 1.18rem; line-height: 1.5; }

.steps-section { background: var(--beige); }
.section-heading { max-width: 760px; margin: 0 auto 38px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card {
  min-height: 265px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}
.step-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.step-number { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--gold); font-weight: 700; }
.step-icon { width: 32px; height: 32px; fill: none; stroke: var(--gold-dark); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.step-card h3 { margin-bottom: 12px; }
.step-card p { margin: 0; color: var(--muted); }
.action-row { margin-top: 28px; }

.trust-section { background: var(--cream); }
.trust-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(48px, 7vw, 90px); align-items: center; }
.trust-photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); }
.trust-copy h2 { margin-bottom: 22px; }
.trust-copy > p { color: #38332f; font-size: 1.05rem; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 23px 0; }
.chips span { padding: 8px 15px; border: 1px solid rgba(168,136,44,.23); border-radius: 999px; background: var(--gold-tint); color: var(--gold-dark); font-size: .88rem; font-weight: 700; }
.trust-meta { margin: 22px 0; padding-top: 20px; border-top: 1px solid var(--border); color: #4b4540; }

.legal-faq-section { background: var(--beige); }
.legal-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 90px); align-items: start; }
.sources-column h2, .faq-column h2 { margin-bottom: 18px; }
.sources-column > p { color: var(--muted); }
.source-list { display: grid; margin: 25px 0; border-top: 1px solid var(--border); }
.source-list a { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--border); text-decoration: none; }
.source-list a:hover b { color: var(--gold-dark); }
.source-list span { display: grid; gap: 2px; }
.source-list small { color: var(--muted); }
.source-list b { font-size: .86rem; transition: color .2s ease; }
.disclaimer { font-size: .82rem; line-height: 1.55; }
.faq { margin: 20px 0 24px; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 0; border: 0; background: none; color: var(--ink); text-align: left; font-weight: 700; cursor: pointer; }
.faq-question span { font-size: 1.4rem; font-weight: 400; transition: transform .2s ease; }
.faq-item.open .faq-question span { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer > p { overflow: hidden; margin: 0; color: var(--muted); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding-bottom: 18px; }

.final-cta-section { padding: 70px 0; background: var(--cream); }
.final-cta-card { max-width: 1080px; margin: 0 auto; padding: 62px 42px; border-radius: 14px; background: var(--ink); color: #fff; text-align: center; }
.final-cta-card h2 { max-width: 820px; margin: 0 auto 18px; color: #fff; }
.final-cta-card p { max-width: 680px; margin: 0 auto 28px; color: rgba(255,255,255,.74); }

.site-footer { padding: 64px 0 88px; background: var(--ink); color: rgba(255,255,255,.72); }
.footer-top { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 50px; padding-bottom: 34px; }
.footer-brand img { width: 145px; height: 59px; object-fit: contain; object-position: center; filter: brightness(1.6); mix-blend-mode: screen; margin-bottom: 16px; }
.footer-top h3 { margin: 0 0 13px; color: #fff; font-family: "Inter", sans-serif; font-size: .75rem; letter-spacing: .18em; }
.footer-top a { display: block; margin: 7px 0; color: rgba(255,255,255,.72); text-decoration: none; }
.footer-top a:hover { color: var(--gold); }
.footer-brand p { max-width: 390px; }
.footer-notice { padding: 28px 0; border-top: 1px solid rgba(255,255,255,.11); border-bottom: 1px solid rgba(255,255,255,.11); }
.footer-notice p { margin: 0; font-size: .76rem; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; gap: 26px; padding-top: 22px; font-size: .72rem; }

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: rgba(26,26,26,.98);
  color: #fff;
  box-shadow: 0 -8px 30px rgba(0,0,0,.12);
  transition: transform .25s ease;
}
.sticky-cta.hidden { transform: translateY(110%); }
.sticky-inner { width: min(calc(100% - 38px), 840px); min-height: 58px; margin: auto; display: flex; align-items: center; justify-content: center; gap: 16px; }
.sticky-inner span { font-size: .9rem; }
.sticky-inner a { color: var(--gold); font-weight: 800; text-decoration: none; }
.sticky-close { position: absolute; right: 16px; top: 50%; translate: 0 -50%; border: 0; background: transparent; color: rgba(255,255,255,.7); font-size: 1.5rem; cursor: pointer; }

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 110;
  width: min(calc(100% - 32px), 1040px);
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.cookie-content { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 24px; }
.cookie-content strong { font-family: "Fraunces", Georgia, serif; font-size: 1.15rem; }
.cookie-content p { margin: 5px 0 0; font-size: .82rem; line-height: 1.5; color: var(--muted); }
.cookie-content a { color: var(--gold-dark); font-weight: 700; }
.cookie-actions { display: flex; gap: 9px; }
.cookie-actions .button { min-height: 44px; padding: 10px 16px; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(26,26,26,.58);
  backdrop-filter: blur(3px);
}
.question-modal { position: relative; width: min(100%, 560px); padding: 42px; border-radius: 14px; background: var(--cream); box-shadow: 0 28px 80px rgba(0,0,0,.30); }
.question-modal h2 { margin-bottom: 18px; font-size: clamp(2rem, 5vw, 2.8rem); }
.question-modal p { margin-bottom: 24px; color: var(--muted); }
.modal-close { position: absolute; right: 16px; top: 12px; width: 38px; height: 38px; border: 0; background: transparent; color: var(--muted); font-size: 1.7rem; cursor: pointer; }

/* Policy pages */
.policy-page { background: var(--cream); }
.policy-main { padding: 62px 0 90px; }
.policy-article { max-width: 900px; }
.policy-article h1 { margin: 18px 0 6px; font-size: clamp(2.7rem, 5vw, 4.6rem); }
.policy-article .updated { color: var(--gold-dark); font-weight: 600; margin-bottom: 52px; }
.policy-article h2 { margin: 42px 0 13px; font-family: "Fraunces", Georgia, serif; font-size: 1.65rem; }
.policy-article p, .policy-article li { color: #49433e; }
.policy-article ul { padding-left: 22px; }
.policy-article a { color: var(--gold-dark); }
.back-link { display: inline-block; color: var(--gold-dark); font-weight: 700; text-decoration: none; }
.policy-footer { padding: 28px 0; border-top: 1px solid var(--border); background: var(--beige); color: var(--muted); font-size: .82rem; }
.policy-footer .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.policy-footer nav { display: flex; gap: 18px; }
.policy-footer a { text-decoration: none; }
.policy-footer a:hover { color: var(--gold-dark); }

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .hero { padding-top: 52px; }
  .hero-grid, .trust-grid, .legal-faq-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 600px; margin: 0 auto; }
  .trust-photo { max-width: 560px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(calc(100% - 30px), var(--container)); }
  .site-header { height: 72px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand { width: 116px; }
  .brand img { width: 116px; height: 48px; }
  .advertorial-label { display: none; }
  .header-cta { font-size: .75rem; padding: 9px 12px; min-height: 40px; }
  h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero { padding-top: 42px; }
  .hero-grid { gap: 38px; }
  .hero-lead { font-size: 1rem; }
  .hero-copy .button-large { width: 100%; }
  .image-badge { left: 12px; right: 12px; bottom: 12px; padding: 13px 14px; font-size: .78rem; }
  .alert-card { grid-template-columns: 30px 1fr; padding: 18px 16px; }
  .final-cta-card { padding: 44px 20px; }
  .final-cta-card .button-large { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 26px; }
  .footer-brand { grid-column: auto; }
  .sticky-inner { min-height: 62px; padding: 10px 44px 10px 4px; flex-direction: column; gap: 1px; text-align: center; }
  .sticky-inner span { font-size: .73rem; }
  .sticky-inner a { font-size: .85rem; }
  .cookie-content { grid-template-columns: 1fr; gap: 16px; padding: 18px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .button { flex: 1; }
  .question-modal { padding: 36px 22px 24px; }
  .question-modal .button-large { width: 100%; }
  .policy-main { padding-top: 42px; }
  .policy-article .updated { margin-bottom: 34px; }
  .policy-footer .container { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
