:root {
    --bg: #151412;
    --panel: #1e1c19;
    --panel-2: #26231f;
    --text: #f5f1e8;
    --muted: #b9b0a2;
    --line: #3b3731;
    --gold: #d8b46c;
    --gold-soft: #f1d79e;
    --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background:
        radial-gradient(circle at 88% 5%, rgba(216,180,108,.12), transparent 28rem),
        linear-gradient(180deg, #11100f 0, var(--bg) 28rem);
    color: var(--text);
    font: 16px/1.7 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: var(--gold-soft); text-underline-offset: .18em; }
a:hover { color: #fff2c9; }
.skip-link { position: fixed; left: 1rem; top: -10rem; z-index: 20; padding: .7rem 1rem; background: var(--gold); color: #111; font-weight: 800; }
.skip-link:focus { top: 1rem; }

.site-header { border-bottom: 1px solid var(--line); background: rgba(17,16,15,.93); }
.header-inner, .layout, .site-footer { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; flex-direction: column; color: var(--text); text-decoration: none; line-height: 1; }
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.15rem, 3vw, 1.55rem); font-weight: 800; letter-spacing: .055em; }
.brand-tagline { margin-top: .55rem; color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; }
.header-actions { display: flex; align-items: center; gap: .65rem; }
.back-link, .language { border: 1px solid var(--line); border-radius: 999px; padding: .52rem .85rem; color: var(--text); text-decoration: none; font-size: .84rem; font-weight: 750; }
.language { border-color: var(--gold); color: var(--gold-soft); min-width: 2.8rem; text-align: center; }

.layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 2rem; padding-block: 3rem 4rem; align-items: start; }
.side-nav { position: sticky; top: 1.5rem; display: grid; padding: .6rem; border: 1px solid var(--line); border-radius: 16px; background: rgba(30,28,25,.8); }
.side-nav a { padding: .66rem .8rem; border-radius: 10px; color: var(--muted); text-decoration: none; font-size: .91rem; font-weight: 700; }
.side-nav a:hover { color: var(--text); background: var(--panel-2); }
.side-nav a[aria-current="page"] { color: #18140c; background: var(--gold); }

.content-card { min-width: 0; padding: clamp(1.5rem, 4vw, 3.5rem); border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, rgba(38,35,31,.97), rgba(27,25,22,.97)); box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.eyebrow { color: var(--gold); font-size: .76rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.2; }
h1 { max-width: 850px; margin: .65rem 0 1rem; font-size: clamp(2.15rem, 6vw, 4.1rem); letter-spacing: -.035em; }
.lead { max-width: 780px; margin: 0 0 2.6rem; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.legal-content { max-width: 820px; }
.legal-content h2 { margin: 2.25rem 0 .65rem; font-size: clamp(1.35rem, 3vw, 1.75rem); }
.legal-content h3 { margin: 1.65rem 0 .4rem; color: var(--gold-soft); font-size: 1.12rem; }
.legal-content p, .legal-content li { color: #ded8ce; }
.legal-content ul { padding-left: 1.25rem; }
.legal-content li + li { margin-top: .45rem; }
blockquote { margin: 1.5rem 0 2rem; padding: 1.3rem 1.5rem; border-left: 4px solid var(--gold); background: #1b1916; color: var(--gold-soft); font: 1.25rem/1.55 Georgia, "Times New Roman", serif; }
.notice, .privacy-summary { margin: 2rem 0; padding: 1.15rem 1.3rem; border: 1px solid #5a4b30; border-radius: 14px; background: rgba(216,180,108,.08); color: #e8dfd0; }
.privacy-summary > strong { display: block; color: var(--gold-soft); font-size: 1.08rem; }
.privacy-summary ul { margin-bottom: 0; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; margin: 1rem 0 2rem; }
.promise-grid article { padding: 1.2rem; border: 1px solid var(--line); border-radius: 14px; background: #1b1916; }
.promise-grid span { color: var(--gold); font-size: .72rem; font-weight: 900; letter-spacing: .15em; }
.promise-grid h2 { margin: .65rem 0 .45rem; font-size: 1.08rem; }
.promise-grid p { margin: 0; font-size: .91rem; line-height: 1.58; }
.contact-card { display: grid; grid-template-columns: 150px 1fr; gap: .65rem 1.2rem; margin: 1rem 0 2rem; padding: 1.25rem; border: 1px solid var(--line); border-radius: 14px; background: #1b1916; }
.contact-card span { color: var(--muted); }
.contact-card strong, .contact-card a { font-size: 1.05rem; }
.updated { margin: 3rem 0 0; padding-top: 1rem; border-top: 1px solid var(--line); color: #8f887e; font-size: .78rem; }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; gap: 2rem; align-items: center; padding-block: 2rem 3rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .84rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a { color: var(--muted); }
.copyright { text-align: right; }

@media (max-width: 840px) {
    .layout { grid-template-columns: 1fr; padding-top: 1.2rem; }
    .side-nav { position: static; display: flex; overflow-x: auto; scrollbar-width: thin; }
    .side-nav a { flex: 0 0 auto; white-space: nowrap; }
    .promise-grid { grid-template-columns: 1fr; }
    .site-footer { grid-template-columns: 1fr; gap: 1.1rem; }
    .copyright { text-align: left; }
}

@media (max-width: 560px) {
    .header-inner { min-height: 82px; }
    .back-link { display: none; }
    .content-card { padding: 1.35rem; border-radius: 16px; }
    h1 { font-size: 2.15rem; }
    .contact-card { grid-template-columns: 1fr; gap: .25rem; }
    .contact-card strong, .contact-card a { margin-bottom: .7rem; }
}

@media print {
    body { background: #fff; color: #111; }
    .site-header, .side-nav, .site-footer { display: none; }
    .layout { display: block; width: 100%; padding: 0; }
    .content-card { padding: 0; border: 0; box-shadow: none; background: #fff; }
    .legal-content p, .legal-content li, .lead { color: #222; }
    a { color: #111; }
}
