:root {
  --cream: #f8f5ec;
  --cream-deep: #eee9dc;
  --paper: #fffdf8;
  --ink: #2c2826;
  --muted: #7a736c;
  --terracotta: #c04a33;
  --terracotta-dark: #913b2a;
  --terracotta-soft: #f1ded5;
  --sage: #8a9a86;
  --line: #e6e0d4;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(73, 50, 37, 0.08);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Iowan Old Style', 'Baskerville', Georgia, serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

::selection { color: var(--white); background: var(--terracotta); }
a { color: inherit; }
.sr-only, .skip-link { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link:focus { z-index: 20; width: auto; height: auto; margin: 0; padding: 10px 16px; clip: auto; background: var(--ink); color: var(--white); }

.site-header { border-bottom: 1px solid var(--line); background: rgba(248, 245, 236, 0.92); }
.header-inner, .hero-inner, .trust-inner, .policy-layout, .footer-inner { width: min(1160px, calc(100% - 64px)); margin: 0 auto; }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; font-size: 18px; letter-spacing: -0.04em; text-decoration: none; }
.brand-mark { display: grid; width: 36px; height: 36px; place-items: center; overflow: hidden; border-radius: 10px; background: var(--terracotta); }
.brand-logo { width: 100%; height: 100%; object-fit: cover; }
.header-actions { display: flex; align-items: center; gap: 28px; }
.header-label { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.language-control { display: flex; align-items: center; gap: 7px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 99px; background: rgba(255, 253, 248, .6); color: var(--ink); }
.language-control:focus-within { outline: 2px solid rgba(192, 74, 51, .3); outline-offset: 2px; }
.globe { color: var(--terracotta); font-size: 18px; line-height: 1; transform: rotate(-15deg); }
select { max-width: 104px; border: 0; outline: 0; color: inherit; background: transparent; font: 600 12px var(--sans); cursor: pointer; }

.hero-section { overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 81% 32%, rgba(192, 74, 51, .17), transparent 25%), linear-gradient(115deg, var(--cream) 10%, #f5eee4 100%); }
.hero-inner { min-height: 458px; display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: center; gap: 80px; padding-top: 55px; padding-bottom: 65px; }
.eyebrow, .section-index, .sidebar-label, .note-kicker { margin: 0; font: 500 11px var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 9px; color: var(--terracotta); }
.eyebrow-line { display: inline-block; width: 30px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 620px; margin: 24px 0 20px; font-size: clamp(62px, 8vw, 108px); font-weight: 700; letter-spacing: -.075em; line-height: .94; }
h1 em { color: var(--terracotta); font-family: var(--serif); font-weight: 600; letter-spacing: -.07em; }
.hero-lead { max-width: 555px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.hero-note { position: relative; align-self: end; padding: 34px 32px 28px; border: 1px solid rgba(192, 74, 51, .2); background: rgba(255, 253, 248, .54); box-shadow: var(--shadow); }
.note-orbit { position: absolute; top: 20px; right: 22px; width: 52px; height: 52px; border: 1px solid rgba(192, 74, 51, .34); border-radius: 50%; }
.note-orbit::before, .note-orbit::after, .note-orbit span { content: ''; position: absolute; display: block; border-radius: 50%; }
.note-orbit::before { inset: 8px; border: 1px solid rgba(192, 74, 51, .42); }
.note-orbit::after { top: 5px; left: 23px; width: 5px; height: 5px; background: var(--terracotta); }
.note-orbit span:nth-child(1) { bottom: 8px; left: 7px; width: 4px; height: 4px; background: var(--sage); }
.note-kicker { color: var(--terracotta); }
.note-copy { max-width: 220px; margin: 17px 0 29px; font-family: var(--serif); font-size: 21px; line-height: 1.42; }
.last-updated { display: flex; flex-direction: column; gap: 1px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.last-updated strong { color: var(--ink); font-size: 12px; font-weight: 700; }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; gap: 17px; padding: 27px 34px 29px 0; }
.trust-item + .trust-item { padding-left: 34px; border-left: 1px solid var(--line); }
.trust-number { color: var(--terracotta); font: 500 11px var(--mono); letter-spacing: .05em; }
.trust-item h2 { margin: 0 0 2px; font-size: 13px; letter-spacing: -.02em; }
.trust-item p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.policy-layout { display: grid; grid-template-columns: 220px minmax(0, 700px); justify-content: space-between; gap: 100px; padding-top: 88px; padding-bottom: 110px; }
.policy-sidebar { align-self: start; position: sticky; top: 28px; }
.sidebar-label { margin-bottom: 17px; color: var(--muted); }
.policy-sidebar nav { display: grid; gap: 2px; border-left: 1px solid var(--line); }
.toc-link { position: relative; padding: 6px 12px; color: var(--muted); font-size: 12px; line-height: 1.45; text-decoration: none; transition: color .2s ease, padding .2s ease; }
.toc-link::before { content: ''; position: absolute; top: 0; bottom: 0; left: -1px; width: 2px; background: var(--terracotta); opacity: 0; transition: opacity .2s ease; }
.toc-link:hover, .toc-link.active { padding-left: 17px; color: var(--terracotta-dark); }
.toc-link.active { font-weight: 700; }
.toc-link.active::before { opacity: 1; }
.sidebar-reassurance { margin-top: 55px; padding: 18px 17px; background: var(--terracotta-soft); }
.reassurance-icon { display: block; margin-bottom: 14px; color: var(--terracotta); font-size: 18px; line-height: 1; }
.sidebar-reassurance p { margin: 0 0 10px; font-family: var(--serif); font-size: 17px; line-height: 1.35; }
.sidebar-reassurance a { color: var(--terracotta-dark); font-size: 11px; font-weight: 800; text-underline-offset: 4px; }

.policy-content { min-width: 0; }
.policy-section { scroll-margin-top: 30px; padding: 58px 0 68px; border-top: 1px solid var(--line); }
.policy-section:first-child { padding-top: 0; border-top: 0; }
.section-index { display: flex; align-items: center; gap: 10px; color: var(--terracotta); }
.section-index span { display: inline-block; width: 32px; height: 1px; background: currentColor; opacity: .55; }
.policy-section h2, .contact-card h2 { margin: 16px 0 22px; font-size: clamp(29px, 4vw, 42px); font-weight: 700; letter-spacing: -.06em; line-height: 1.12; }
.policy-section p { margin-bottom: 18px; color: var(--muted); }
.policy-section .section-intro { color: var(--ink); font-family: var(--serif); font-size: 22px; line-height: 1.62; }
.detail-list { display: grid; gap: 0; margin: 30px 0 26px; }
.detail-row { display: grid; grid-template-columns: 32px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.detail-row:last-child { border-bottom: 1px solid var(--line); }
.detail-marker { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(192, 74, 51, .35); border-radius: 50%; color: var(--terracotta); font: 500 11px var(--mono); }
.detail-row h3 { margin: 1px 0 4px; font-size: 14px; letter-spacing: -.02em; }
.detail-row p { margin: 0; font-size: 13px; line-height: 1.75; }
.highlight-box { display: flex; gap: 12px; align-items: center; padding: 16px 18px; background: var(--paper); }
.highlight-symbol { color: var(--terracotta); font-size: 18px; }
.highlight-box p { margin: 0; color: var(--ink); font-size: 13px; font-weight: 700; }
.check-list, .plain-list { display: grid; gap: 13px; margin: 24px 0 27px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 27px; color: var(--muted); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--terracotta); font-weight: 800; }
.plain-list li { padding: 0 0 13px; border-bottom: 1px solid var(--line); color: var(--muted); }
.plain-list strong { color: var(--ink); }
.rights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 24px 0 27px; }
.rights-grid span { padding: 15px 16px; border: 1px solid var(--line); background: var(--paper); color: var(--muted); font-size: 12px; line-height: 1.55; }
.contact-card { position: relative; display: flex; justify-content: space-between; gap: 35px; overflow: hidden; scroll-margin-top: 30px; padding: 40px 42px; background: var(--terracotta); color: var(--white); }
.contact-card::after { content: ''; position: absolute; top: -90px; right: -65px; width: 260px; height: 260px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; box-shadow: 0 0 0 22px rgba(255, 255, 255, .05), 0 0 0 48px rgba(255, 255, 255, .04); }
.contact-card .section-index { color: rgba(255,255,255,.7); }
.contact-card .section-index span { background: currentColor; }
.contact-card h2 { max-width: 400px; margin-bottom: 14px; }
.contact-card p:not(.section-index) { max-width: 490px; margin-bottom: 21px; color: rgba(255,255,255,.78); }
.contact-link { display: inline-flex; align-items: center; gap: 10px; color: var(--white); font-size: 13px; font-weight: 800; text-underline-offset: 5px; }
.contact-link span { font-size: 17px; }
.contact-seal { z-index: 1; align-self: center; display: grid; width: 105px; height: 105px; place-content: center; flex: 0 0 auto; border: 1px solid rgba(255, 255, 255, .42); border-radius: 50%; transform: rotate(9deg); text-align: center; }
.contact-seal span { font-family: var(--serif); font-size: 22px; line-height: 1; }
.contact-seal small { margin-top: 5px; font: 500 8px var(--mono); letter-spacing: .15em; text-transform: uppercase; }

.site-footer { border-top: 1px solid var(--line); background: var(--paper); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 25px; min-height: 105px; }
.footer-inner p { margin: 0; color: var(--muted); font-size: 11px; }
.footer-brand { font-size: 16px; }
.footer-brand .brand-mark { width: 30px; height: 30px; border-radius: 8px; }

[dir='rtl'] body { font-family: var(--sans); }
[dir='rtl'] .eyebrow, [dir='rtl'] .section-index { flex-direction: row-reverse; justify-content: flex-end; }
[dir='rtl'] .hero-note { text-align: right; }
[dir='rtl'] .policy-sidebar nav { border-left: 0; border-right: 1px solid var(--line); }
[dir='rtl'] .toc-link::before { right: -1px; left: auto; }
[dir='rtl'] .toc-link:hover, [dir='rtl'] .toc-link.active { padding-right: 17px; padding-left: 12px; }
[dir='rtl'] .detail-row { grid-template-columns: 1fr 32px; }
[dir='rtl'] .detail-marker { grid-column: 2; grid-row: 1; }
[dir='rtl'] .detail-row > div { grid-column: 1; grid-row: 1; }
[dir='rtl'] .check-list li { padding-right: 27px; padding-left: 0; }
[dir='rtl'] .check-list li::before { right: 0; left: auto; }
[dir='rtl'] .note-orbit { right: auto; left: 22px; }
[dir='rtl'] .contact-card::after { right: auto; left: -65px; }
[dir='rtl'] .contact-seal { transform: rotate(-9deg); }

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr) 270px; gap: 40px; }
  .policy-layout { grid-template-columns: 175px minmax(0, 1fr); gap: 50px; }
  .header-label { display: none; }
}

@media (max-width: 680px) {
  .header-inner, .hero-inner, .trust-inner, .policy-layout, .footer-inner { width: min(100% - 38px, 540px); }
  .header-inner { min-height: 69px; }
  .hero-inner { display: block; min-height: auto; padding-top: 65px; padding-bottom: 58px; }
  h1 { margin-top: 20px; font-size: clamp(55px, 18vw, 85px); }
  .hero-lead { font-size: 15px; }
  .hero-note { max-width: 340px; margin-top: 45px; }
  .trust-inner { display: block; }
  .trust-item, .trust-item + .trust-item { padding: 21px 0; border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: 0; }
  .policy-layout { display: block; padding-top: 47px; padding-bottom: 68px; }
  .policy-sidebar { position: static; margin-bottom: 59px; }
  .policy-sidebar nav { display: flex; flex-wrap: wrap; gap: 0; border: 0; }
  .toc-link, [dir='rtl'] .toc-link:hover, [dir='rtl'] .toc-link.active, .toc-link:hover, .toc-link.active { padding: 7px 13px; border: 1px solid var(--line); margin: 0 -1px -1px 0; color: var(--muted); font-weight: 500; }
  .toc-link::before { display: none; }
  .toc-link.active { color: var(--terracotta-dark); background: var(--terracotta-soft); font-weight: 700; }
  .sidebar-reassurance { display: none; }
  .policy-section { padding: 47px 0 53px; }
  .policy-section .section-intro { font-size: 19px; }
  .rights-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 31px 25px; }
  .contact-seal { width: 80px; height: 80px; }
  .contact-seal span { font-size: 17px; }
  .contact-seal small { font-size: 6px; }
  .footer-inner { flex-wrap: wrap; justify-content: flex-start; padding: 28px 0; }
  .footer-inner p:last-child { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
