/* ─── DESIGN TOKENS ─── */
:root {
  --gold: #A67C20;
  --gold-light: #C8962A;
  --gold-dim: #7A5C18;
  --gold-pale: #F5EDD6;
  --ink: #1A1714;
  --ink-soft: #F5F2EC;
  --ink-mid: #EDE9E0;
  --ink-muted: #6B6560;
  --ash: #7A7570;
  --smoke: #2C2825;
  --paper: #FAF8F4;
  --white: #FFFFFF;
  --cta-bg: #1A1714;
  --cta-border: rgba(167,124,32,.25);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --max: 1160px;
  --radius: 6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--paper); color: var(--smoke); line-height: 1.7; font-size: 17px; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.section { padding: 88px 0; background: var(--paper); }
.section--soft { background: var(--ink-soft); }
.section--mid  { background: var(--ink-mid); }
.section--light { background: var(--white); }

.eyebrow { font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.gold-rule { width: 48px; height: 2px; background: var(--gold); margin-bottom: 28px; }
.section-title { font-family: var(--font-serif); font-size: clamp(30px, 4vw, 48px); font-weight: 500; line-height: 1.15; color: var(--ink); margin-bottom: 18px; }
.section-body { font-size: 17px; color: var(--ink-muted); max-width: 620px; line-height: 1.8; margin-bottom: 20px; }
.disclaimer { font-size: 12px; color: var(--ash); font-style: italic; line-height: 1.6; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; font-family: var(--font-sans); font-size: 15px; font-weight: 600; letter-spacing: .03em; border-radius: var(--radius); cursor: pointer; border: none; transition: all .22s ease; text-decoration: none; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(166,124,32,.3); }
.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: var(--gold-pale); }
.btn-dark { background: var(--ink); color: #fff; border: 1px solid rgba(255,255,255,.1); }
.btn-dark:hover { background: #2C2825; }
.btn-lg { padding: 17px 38px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

.nav { position: sticky; top: 0; z-index: 100; background: rgba(250,248,244,.97); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(166,124,32,.2); box-shadow: 0 1px 12px rgba(0,0,0,.06); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav__logo { font-family: var(--font-serif); font-size: 21px; font-weight: 600; color: var(--ink); }
.nav__logo span { color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--ink-muted); transition: color .18s; }
.nav__links a:hover, .nav__links a.active { color: var(--gold); }

.page-hero { background: var(--ink-soft); border-bottom: 1px solid rgba(166,124,32,.15); padding: 72px 0 56px; }
.page-hero .page-title { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 58px); font-weight: 500; color: var(--ink); line-height: 1.1; margin-bottom: 18px; }
.page-hero .page-sub { font-size: 17px; color: var(--ink-muted); line-height: 1.72; max-width: 580px; }

.cta-band { background: var(--cta-bg); border-top: 1px solid var(--cta-border); border-bottom: 1px solid var(--cta-border); padding: 64px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band__title { font-family: var(--font-serif); font-size: clamp(26px, 3.5vw, 40px); font-weight: 500; color: #fff; line-height: 1.2; max-width: 560px; }
.cta-band__title em { color: var(--gold); font-style: italic; }
.cta-band__actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; flex-shrink: 0; }
.cta-band .btn-outline { color: var(--gold); border-color: var(--gold); }
.cta-band .btn-outline:hover { background: rgba(166,124,32,.12); }

.faq-item { border-bottom: 1px solid rgba(0,0,0,.09); }
.faq-question { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-serif); font-size: 19px; color: var(--ink); transition: color .18s; }
.faq-question:hover { color: var(--gold); }
.faq-icon { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .22s; font-size: 18px; color: var(--gold); line-height: 1; font-family: var(--font-sans); font-weight: 300; }
.faq-item.open .faq-icon { background: var(--gold); color: #fff; transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 48px 24px 0; font-size: 16px; color: var(--ink-muted); line-height: 1.8; }
.faq-answer p { margin-bottom: 14px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { margin: 12px 0 12px 18px; }
.faq-answer ul li { margin-bottom: 8px; color: var(--smoke); }
.faq-item.open .faq-answer { display: block; }

.footer { background: var(--ink); border-top: 1px solid rgba(166,124,32,.15); padding: 60px 0 36px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand-name { font-family: var(--font-serif); font-size: 20px; color: #fff; margin-bottom: 12px; }
.footer__brand-name span { color: var(--gold); }
.footer__tagline { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65; max-width: 240px; }
.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .18s; }
.footer__links a:hover { color: #fff; }
.footer__bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: flex-start; }
.footer__copy { font-size: 12px; color: rgba(255,255,255,.3); }
.footer__legal { font-size: 12px; color: rgba(255,255,255,.3); max-width: 600px; line-height: 1.65; }
.footer__legal a { color: rgba(255,255,255,.45); text-decoration: underline; }
.footer__legal strong { color: rgba(255,255,255,.45); }

@media (max-width: 960px) { .cta-band__actions { align-items: flex-start; } }
@media (max-width: 768px) { .nav__links { display: none; } .footer__grid { grid-template-columns: 1fr 1fr; } .faq-answer { padding-right: 0; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
