@font-face { font-family: "Shell"; src: url("/assets/ShellBook.woff") format("woff"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Shell"; src: url("/assets/ShellBold.woff") format("woff"); font-weight: 700; font-display: swap; }

:root { --ink: #4a4a4a; --strong: #4a4a4a; --red: #4a4a4a; --gold: #f7c500; --warm: #fff8da; --line: #d8d8d2; }
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: #f8f8f5; font-family: "Shell", "Segoe UI", sans-serif; font-size: 17px; line-height: 1.65; }

.site-header { display: flex; align-items: center; justify-content: space-between; min-height: 88px; padding: 18px clamp(24px, 6vw, 88px); background: #ffffff; border-bottom: 1px solid var(--line); }
.brand { position: relative; display: inline-flex; align-items: center; min-width: 96px; color: var(--red); text-decoration: none; }
.brand img { display: block; max-width: 128px; height: 48px; object-fit: contain; object-position: left center; }
.page-label { color: var(--ink); font-size: 14px; }

.hero { min-height: 400px; padding: clamp(64px, 9vw, 112px) max(24px, calc((100vw - 1120px) / 2)); color: var(--strong); background: linear-gradient(118deg, var(--gold) 0 72%, #fff1a8 72% 100%); }
.eyebrow { margin: 0 0 12px; color: var(--ink); font-size: 14px; font-weight: 700; text-transform: uppercase; }
h1 { max-width: 760px; margin: 0; font-size: clamp(44px, 8vw, 78px); line-height: 1; letter-spacing: 0; }
.hero > p:last-child { max-width: 580px; margin: 24px 0 0; font-size: 21px; line-height: 1.5; }

.document-page { width: min(calc(100% - 48px), 900px); margin: 0 auto; padding: clamp(58px, 9vw, 100px) 0 112px; }
a { color: var(--ink); }
.faq-page > .document-header { padding-bottom: 42px; }
.faq-page > .document-header h1 { max-width: 820px; margin: 0; color: var(--strong); font-size: clamp(42px, 7vw, 70px); line-height: 1.05; }
.updated { margin: 18px 0 0; font-size: 14px; }
.language-nav { position: sticky; top: 0; z-index: 2; display: flex; gap: 8px; margin-bottom: 56px; padding: 14px 0; background: rgba(248, 248, 245, .96); }
.language-nav a { display: inline-flex; min-height: 42px; align-items: center; padding: 0 18px; border: 1px solid var(--line); color: var(--strong); background: white; text-decoration: none; }
.language-nav a:hover, .language-nav a:focus-visible { border-color: var(--red); color: var(--red); }
.language-section { scroll-margin-top: 76px; }
.language-section + .language-section { margin-top: 88px; padding-top: 72px; border-top: 6px solid var(--gold); }
.language-section > h2 { margin: 0 0 42px; font-size: 38px; }
.language-section > h3 { margin: 52px 0 14px; padding-bottom: 12px; border-bottom: 3px solid var(--gold); color: var(--strong); font-size: 22px; }
.language-section > h2 + h3 { margin-top: 0; }
.answer p + p { margin-top: 12px; }
.pending { display: inline; padding: 2px 5px; color: var(--ink); background: var(--warm); font-weight: 700; }

.faq { display: grid; grid-template-columns: minmax(190px, 280px) minmax(0, 720px); gap: clamp(40px, 8vw, 120px); width: min(calc(100% - 48px), 1120px); margin: 0 auto; padding: 80px 0 112px; }
.section-heading span { color: var(--red); font-size: 13px; font-weight: 700; text-transform: uppercase; }
h2 { margin: 10px 0 0; color: var(--strong); font-size: 30px; line-height: 1.2; letter-spacing: 0; }
.notice { margin-bottom: 18px; padding: 16px 18px; border-left: 4px solid var(--gold); background: var(--warm); font-size: 14px; }
details { border-top: 1px solid var(--line); background: #ffffff; }
details:last-child { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 24px 62px 24px 22px; color: var(--strong); cursor: pointer; font-size: 19px; font-weight: 700; line-height: 1.35; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; top: 18px; right: 22px; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: var(--red); background: var(--warm); font-size: 24px; font-weight: 400; }
details[open] summary::after { content: "-"; }
summary:hover, summary:focus-visible { color: var(--red); }
.answer { padding: 0 62px 26px 22px; }
.answer p { margin: 0; }
footer { padding: 28px 24px; border-top: 1px solid var(--line); color: var(--ink); background: #ffffff; text-align: center; font-size: 13px; }

@media (max-width: 760px) {
  .site-header { min-height: 72px; padding: 14px 24px; }
  .hero { min-height: 360px; background: linear-gradient(150deg, var(--gold) 0 82%, #fff1a8 82% 100%); }
  .faq { display: block; padding: 56px 0 80px; }
  .language-nav { position: static; margin-bottom: 38px; }
  .section-heading { margin-bottom: 32px; }
  summary { padding-left: 16px; }
  .answer { padding-left: 16px; }
}