@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Outfit:wght@300;400;500&display=swap');

:root {
    --paper: #d8cfbf;
    --ink: #24211d;
    --muted: #6c675f;
    --line: rgba(36, 33, 29, .16);
}

* { box-sizing: border-box; }
html { background: var(--paper); color: var(--ink); font-family: Inter, sans-serif; scroll-behavior: smooth; }
body { min-height: 100vh; margin: 0; background: linear-gradient(145deg, #ded6c8 0%, #d1c6b5 100%); }
a { color: inherit; }
:focus-visible { outline: 2px solid #765f48; outline-offset: 3px; }
.privacy-skip { position: fixed; z-index: 500; top: .75rem; left: .75rem; padding: .7rem 1rem; color: #f8f3e9; background: #282621; transform: translateY(calc(-100% - 1rem)); }
.privacy-skip:focus { transform: none; }

.privacy-nav { width: min(calc(100% - 2rem), 1180px); margin: 0 auto; padding: 1.2rem 0; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.privacy-brand { font: 500 .95rem Outfit, sans-serif; letter-spacing: .18em; text-decoration: none; }
.privacy-back { font-size: .66rem; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; }

main { width: min(calc(100% - 2rem), 1180px); margin: 0 auto; }
.privacy-hero { padding: clamp(4rem, 9vw, 8rem) 0 clamp(3rem, 7vw, 6rem); }
.privacy-hero > p { margin: 0 0 1rem; color: var(--muted); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; }
.privacy-hero h1 { max-width: 880px; margin: 0; font: 300 clamp(2.8rem, 8vw, 7rem)/.94 Outfit, sans-serif; letter-spacing: -.045em; }
.privacy-intro { margin-top: clamp(2rem, 5vw, 4rem); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: end; }
.privacy-intro p { max-width: 620px; margin: 0; font-size: clamp(.95rem, 1.6vw, 1.2rem); line-height: 1.65; text-align: justify; }
.privacy-intro span { color: var(--muted); font-size: .66rem; line-height: 1.6; letter-spacing: .1em; text-align: right; text-transform: uppercase; }

.privacy-document { border-top: 1px solid var(--line); }
.privacy-document section { padding: clamp(2rem, 5vw, 4.5rem) 0; display: grid; grid-template-columns: minmax(3rem, 1fr) minmax(0, 4fr); gap: clamp(1rem, 5vw, 5rem); border-bottom: 1px solid var(--line); }
.privacy-number { color: var(--muted); font: 300 clamp(1.5rem, 3vw, 2.5rem)/1 Outfit, sans-serif; }
.privacy-document section > div { max-width: 760px; }
.privacy-document h2 { margin: 0 0 1.4rem; font: 400 clamp(1.35rem, 2.5vw, 2.1rem)/1.15 Outfit, sans-serif; }
.privacy-document h3 { margin: 1.5rem 0 .55rem; font: 500 .7rem/1.4 Inter, sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.privacy-document p, .privacy-document li { color: #403d38; font-size: clamp(.86rem, 1.25vw, .98rem); line-height: 1.75; text-align: justify; }
.privacy-document p { margin: 0 0 1rem; }
.privacy-document ul { margin: 0 0 1rem; padding-left: 1.15rem; }
.privacy-document li + li { margin-top: .35rem; }
.privacy-inline-action { padding: 0; color: inherit; border: 0; border-bottom: 1px solid currentColor; background: transparent; font: inherit; cursor: pointer; }

.privacy-footer { width: min(calc(100% - 2rem), 1180px); margin: 0 auto; padding: 2rem 0 3rem; display: flex; justify-content: space-between; gap: 1rem 2rem; color: var(--muted); font-size: .63rem; letter-spacing: .1em; text-transform: uppercase; }
.privacy-footer div { display: flex; flex-wrap: wrap; gap: .7rem 1.2rem; }
.privacy-footer a { text-decoration: none; }
.privacy-footer button { margin: 0; padding: 0; color: inherit; border: 0; background: transparent; font: inherit; letter-spacing: inherit; text-transform: inherit; cursor: pointer; }
.privacy-footer a:hover, .privacy-footer button:hover { color: var(--ink); }

@media (max-width: 640px) {
    .privacy-hero { padding-top: 3.5rem; }
    .privacy-intro { grid-template-columns: 1fr; }
    .privacy-intro span { text-align: left; }
    .privacy-document section { grid-template-columns: 1fr; gap: .9rem; }
    .privacy-number { font-size: 1rem; }
    .privacy-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}
