/* ─── DESIGN TOKENS ─── */
:root {
  color-scheme: light;
  --gold: #8B6514;
  --gold-light: #A67C20;
  --gold-dim: #6B4E10;
  --gold-pale: #FDF8EE;
  --ink: #0F0D0B;
  --ink-soft: #F4F4F4;
  --ink-mid: #EAEAEA;
  --ink-muted: #3D3935;
  --ash: #5A5650;
  --smoke: #1A1714;
  --paper: #FFFFFF;
  --white: #FFFFFF;
  --cta-bg: #0F0D0B;
  --cta-border: rgba(139,101,20,.3);
  --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; background: #FFFFFF; }
body { font-family: var(--font-sans); background: #FFFFFF; color: #1A1714; 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: #FFFFFF; }
.section--soft { background: #F4F4F4; }
.section--mid  { background: #EAEAEA; }
.section--light { background: #FFFFFF; }

.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: #0F0D0B; margin-bottom: 18px; }
.section-body { font-size: 17px; color: #3D3935; max-width: 620px; line-height: 1.8; margin-bottom: 20px; }
.disclaimer { font-size: 12px; color: #5A5650; 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: #FFFFFF; border-bottom: 2px solid #E0E0E0; box-shadow: 0 2px 10px rgba(0,0,0,.09); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; position: relative; }

/* Hamburger — always hidden on desktop, CSS shows it on mobile */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  gap: 5px;
  align-items: stretch;
}
.nav__hamburger span {
  display: block;
  height: 3px;
  background: #0F0D0B;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  width: 100%;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile dropdown */
.nav__mobile-menu { display: none; background: #FFFFFF; border-top: 1px solid #E8E8E8; border-bottom: 3px solid var(--gold); box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.nav__mobile-menu ul { padding: 4px 0; list-style: none; }
.nav__mobile-menu li a { display: block; padding: 18px 24px; font-size: 18px; font-weight: 500; color: #1A1714; border-bottom: 1px solid #F0F0F0; transition: background .15s, color .15s; }
.nav__mobile-menu li:last-child a { border-bottom: none; }
.nav__mobile-menu li a:hover { background: #F4F4F4; color: var(--gold); }

.nav__logo { font-family: var(--font-serif); font-size: 21px; font-weight: 600; color: #0F0D0B; }
.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: #3D3935; transition: color .18s; }
.nav__links a:hover, .nav__links a.active { color: var(--gold); }

/* Hamburger button */

/* Mobile dropdown menu */

.page-hero { background: #F8F8F8; border-bottom: 1px solid rgba(139,101,20,.15); padding: 72px 0 56px; }
.page-hero .page-title { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 58px); font-weight: 500; color: #0F0D0B; line-height: 1.1; margin-bottom: 18px; }
.page-hero .page-sub { font-size: 17px; color: #3D3935; 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: 1024px) {
  .nav__links { gap: 20px; }
  .nav__links a { font-size: 13px; }
}
@media (max-width: 960px) {
  .cta-band__actions { align-items: flex-start; }
  .nav__links { gap: 18px; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav-phone { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .faq-answer { padding-right: 0; }
  body { font-size: 18px; }
  .section-body { font-size: 18px; }
  .faq-question { font-size: 20px; padding: 20px 0; }
  .faq-answer { font-size: 17px; }
  .btn { font-size: 16px; padding: 15px 28px; }
  .btn-lg { font-size: 17px; padding: 18px 32px; }
  .cta-band { padding: 48px 0; }
  .section { padding: 64px 0; }
}
@media (max-width: 600px) {
  .nav__inner { height: 60px; }
  .nav__logo { font-size: 17px; }
  .section-title { font-size: 30px; }
  .page-hero .page-title { font-size: 34px; }
  body { font-size: 18px; line-height: 1.75; }
}
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
