:root {
  --ink: #1A1A18;
  --charcoal: #2A2A28;
  --paper: #F4F1EC;
  --stone: #D6CFC6;
  --grey: #8E8982;
  --gold: #B8956A;
  --gold-light: #D4B08A;
  --line: rgba(214, 207, 198, .17);
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'DM Sans', Arial, sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--paper); font: 400 16px/1.72 var(--body); }
a { color: inherit; }

.site-nav { height: 72px; border-bottom: 1px solid var(--line); display: flex; align-items: center; }
.site-nav__inner, .site-footer__inner, .page-wrap { width: min(var(--max), calc(100% - 48px)); margin: auto; }
.site-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { color: var(--paper); font: 400 22px/1 var(--display); text-decoration: none; letter-spacing: .04em; }
.brand span { color: var(--gold); }
.nav-links { display: flex; gap: 24px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.nav-links a { color: var(--stone); text-decoration: none; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--paper); }

.page-hero { padding: clamp(72px, 11vw, 150px) 0 64px; border-bottom: 1px solid var(--line); }
.kicker { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; color: var(--gold); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.kicker::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
h1, h2, h3 { font-family: var(--display); font-weight: 400; }
h1 { max-width: 900px; margin: 0; font-size: clamp(54px, 8vw, 112px); line-height: .92; letter-spacing: -.035em; }
h1 em, h2 em { color: var(--gold-light); font-style: italic; }
.lead { max-width: 680px; margin: 28px 0 0; color: var(--stone); font-size: clamp(17px, 2vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { display: inline-flex; align-items: center; min-height: 48px; padding: 0 20px; border: 1px solid var(--gold); color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.button:hover, .button:focus-visible { background: var(--gold); color: var(--ink); }
.button--gold { background: var(--gold); color: var(--ink); }
.button--gold:hover, .button--gold:focus-visible { background: var(--gold-light); border-color: var(--gold-light); }
.button--outline { border-color: var(--stone); color: var(--paper); }
.button--outline:hover, .button--outline:focus-visible { border-color: var(--paper); background: var(--paper); color: var(--ink); }

.page-section { padding: clamp(56px, 8vw, 104px) 0; border-bottom: 1px solid var(--line); }
.page-section--soft { background: var(--charcoal); }
.content-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 8vw, 120px); }
.section-label { margin: 0 0 14px; color: var(--gold); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.content-grid h2, .cta-band h2 { max-width: 520px; margin: 0; font-size: clamp(38px, 5vw, 62px); line-height: .98; letter-spacing: -.025em; }
.section-title { margin: 0; font-size: clamp(38px, 5vw, 62px); line-height: 1; letter-spacing: -.025em; }
.section-copy { max-width: 680px; color: var(--stone); }
.section-copy p:first-child { margin-top: 0; }
.note { margin: 28px 0; padding: 20px 22px; border-left: 2px solid var(--gold); background: rgba(255,255,255,.035); color: var(--stone); }
.process, .process-list { margin: 32px 0 0; padding: 0; list-style: none; counter-reset: step; }
.process li, .process-list li { position: relative; padding: 0 0 26px 60px; color: var(--stone); }
.process li::before, .process-list li::before { counter-increment: step; content: '0' counter(step); position: absolute; left: 0; top: 0; color: var(--gold); font: 400 28px/1 var(--display); }
.process strong, .process-list strong { color: var(--paper); font-weight: 500; }
.detail-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); margin: 32px 0 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.detail-list div, .detail-list > p { min-height: 122px; margin: 0; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-list h3 { margin: 0 0 8px; color: var(--paper); font-size: 24px; }
.detail-list p { color: var(--grey); font-size: 14px; }
.detail-list .text-link { grid-column: 1 / -1; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-band { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.cta-band > div:last-child { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.text-link { color: var(--paper); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.text-link span { color: var(--gold); font-size: 16px; }
.text-link:hover, .text-link:focus-visible { color: var(--gold-light); }
.faq-list { margin-top: 2px; }
details { border-top: 1px solid var(--line); padding: 18px 0; color: var(--stone); }
summary { cursor: pointer; color: var(--paper); font: 400 25px/1.25 var(--display); }
details p { max-width: 670px; margin: 14px 0 0; }
.translation { color: var(--grey); font-size: 14px; }
.translation a { color: var(--stone); }
.site-footer { padding: 42px 0; color: var(--grey); font-size: 13px; }
.site-footer .page-wrap, .site-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.site-footer p { margin: 0; text-align: center; }

@media (max-width: 700px) {
  .site-nav__inner, .site-footer__inner, .page-wrap { width: min(var(--max), calc(100% - 32px)); }
  .nav-links { display: none; }
  .content-grid { grid-template-columns: 1fr; gap: 28px; }
  .detail-list { grid-template-columns: 1fr; }
  .cta-band { display: block; }
  .cta-band > div:last-child { margin-top: 28px; align-items: flex-start; flex-direction: column; }
  .site-footer .page-wrap, .site-footer__inner { display: block; }
  .site-footer p { margin: 18px 0; text-align: left; }
}
