/* Self-hosted fonts — no third-party origin (see Privacy Policy). Variable
   WOFF2 (weight axis) covering latin + latin-ext for EN/FR. */
@font-face{font-family:'Inter';font-style:normal;font-weight:100 900;font-display:swap;src:url('assets/fonts/inter-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Inter';font-style:normal;font-weight:100 900;font-display:swap;src:url('assets/fonts/inter-latin-ext.woff2') format('woff2');unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;}
@font-face{font-family:'Oswald';font-style:normal;font-weight:200 700;font-display:swap;src:url('assets/fonts/oswald-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Oswald';font-style:normal;font-weight:200 700;font-display:swap;src:url('assets/fonts/oswald-latin-ext.woff2') format('woff2');unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;}

/* ============================================
   Cauta Solutions Group — style.css
   Self-contained. Shares the house design language of the
   CautaReside / CautaManage marketing sites, themed to the
   CSG blue -> purple identity.
   ============================================ */

:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #EEF2FF;
  --accent: #7C3AED;
  --accent-cyan: #22D3EE;
  --text: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-dark: #0B1220;
  --border: #E5E7EB;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.05);
  --shadow: 0 4px 6px -1px rgba(15,23,42,0.07), 0 2px 4px -2px rgba(15,23,42,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(15,23,42,0.10), 0 8px 10px -6px rgba(15,23,42,0.05);
  --shadow-xl: 0 25px 50px -12px rgba(15,23,42,0.20);
  --gradient: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary) 45%, var(--accent) 100%);
  --transition: 0.2s ease;
  --max-width: 1160px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
html, body { overflow-x: hidden; width: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; }

/* ============ UTILITIES ============ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-header { text-align: center; max-width: 660px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--primary); background: var(--primary-light);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
}
.section-header h2 { font-size: 2.25rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em; }
.section-header p { color: var(--text-secondary); font-size: 1.08rem; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.95rem; padding: 10px 24px;
  border-radius: 10px; cursor: pointer; transition: all var(--transition);
  border: 2px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: all 0.3s;
}
.navbar.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark { height: 40px; width: auto; flex-shrink: 0; }
.brand-word { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; color: var(--text); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--text-secondary); transition: color var(--transition); }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ============ HERO ============ */
.hero { position: relative; padding: 150px 0 96px; overflow: hidden; display: flex; flex-direction: column; align-items: center; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-gradient {
  position: absolute; top: -240px; right: -180px; width: 820px; height: 820px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.10) 0%, rgba(124,58,237,0.06) 45%, transparent 72%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 72%);
}
.hero-content { position: relative; text-align: center; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-block; font-size: 0.85rem; font-weight: 600; color: var(--primary);
  background: var(--primary-light); padding: 8px 20px; border-radius: 100px; margin-bottom: 24px;
}
.hero h1 { font-size: 3.75rem; font-weight: 800; line-height: 1.08; margin-bottom: 24px; letter-spacing: -0.03em; }
.hero-subtitle { font-size: 1.2rem; color: var(--text-secondary); max-width: 640px; margin: 0 auto 40px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ FEATURES / WHAT WE DO ============ */
.features { padding: 96px 0; background: var(--bg-alt); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.feature-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: all 0.3s;
}
.feature-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; background: var(--icon-bg); color: var(--icon-color);
}
.feature-icon.fi-blue   { --icon-bg: #EFF6FF; --icon-color: #2563EB; }
.feature-icon.fi-purple { --icon-bg: #F5F3FF; --icon-color: #7C3AED; }
.feature-icon.fi-cyan   { --icon-bg: #ECFEFF; --icon-color: #0891B2; }
.feature-icon.fi-gold   { --icon-bg: #FFFBEB; --icon-color: #D97706; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.65; }

/* ============ ABOUT ============ */
/* White, so it alternates against .features above it. The products strip used
   to provide that break; with it gone the two --bg-alt sections ran together.
   The dark .about-define card carries this section's weight. */
.about { padding: 96px 0; }
.about-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start;
}
.about-content h2 { font-size: 2.1rem; font-weight: 800; line-height: 1.2; margin: 12px 0 20px; letter-spacing: -0.02em; }
.about-content p { color: var(--text-secondary); font-size: 1.02rem; line-height: 1.75; margin-bottom: 16px; }
.about-define {
  background: var(--bg-dark); color: #fff; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-lg);
}
.define-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.define-word { font-size: 1.6rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.define-phon { color: rgba(255,255,255,0.55); font-size: 0.95rem; }
.define-pos { color: rgba(255,255,255,0.4); font-size: 0.82rem; font-style: italic; }
.define-list li { display: flex; gap: 12px; margin-bottom: 16px; }
.define-num { color: var(--accent-cyan); font-weight: 800; }
.define-list p { color: rgba(255,255,255,0.82); font-size: 0.96rem; line-height: 1.65; }
.define-example { display: block; margin-top: 8px; color: rgba(255,255,255,0.5); font-style: italic; font-size: 0.9rem; }
.define-origin { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.6; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); }
.define-origin strong { color: #fff; }
.about-stats { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 24px; }
.about-stat { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.about-stat-icon { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--primary-light); color: var(--primary); }
.about-stat strong { display: block; font-size: 1rem; margin-bottom: 6px; }
.about-stat span { color: var(--text-secondary); font-size: 0.86rem; line-height: 1.55; }

/* ============ CONTACT ============ */
.contact { padding: 96px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: 2.25rem; font-weight: 800; line-height: 1.2; margin: 12px 0 20px; letter-spacing: -0.02em; }
.contact-info p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: var(--text-secondary); }
.contact-item a:hover { color: var(--primary); }
.contact-form-wrapper { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group .optional { font-weight: 400; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
  background: var(--bg-alt); transition: border-color var(--transition), box-shadow var(--transition); color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); background: var(--bg);
}
.form-group textarea { resize: vertical; }
.form-note { margin-top: 12px; font-size: 0.85rem; text-align: center; min-height: 1.2em; }
.form-note.ok { color: #16A34A; }
.form-note.err { color: #DC2626; }

/* ============ FOOTER ============ */
.footer { background: var(--bg); color: var(--text-secondary); padding: 72px 0 36px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-brand .brand-word { color: var(--text); }
.footer-logo .logo-mark { height: 50px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.65; max-width: 320px; }
.footer-links h4 { color: var(--text); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer-links a { display: block; font-size: 0.9rem; padding: 4px 0; transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ============ HERO TRUST STRIP ============ */
.hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 22px; margin-top: 36px;
}
.hero-trust span {
  font-size: 0.85rem; font-weight: 600; color: var(--text-secondary);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-trust span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }

/* ============ CORE EXPERTISE ============ */
.expertise { padding: 96px 0; }
.framework-badges {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px; max-width: 860px; margin: 44px auto 0; text-align: center;
}
.framework-badges .fw-label { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.framework-badges .fw {
  font-size: 0.82rem; font-weight: 600; color: var(--primary);
  background: var(--primary-light); padding: 6px 14px; border-radius: 100px;
}
.framework-badges .fw-note { flex-basis: 100%; font-size: 0.85rem; color: var(--text-secondary); margin-top: 8px; }

/* ============ LOCATIONS ============ */
.locations { padding: 96px 0; background: var(--bg-alt); }
.locations-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 460px; margin: 0 auto; }
.location-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; transition: all 0.3s;
}
.location-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.location-card .loc-icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; background: var(--primary-light); color: var(--primary);
}
.location-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 4px; }
.location-card .loc-org { font-size: 0.9rem; font-weight: 600; color: var(--primary); margin-bottom: 16px; }
.location-card .loc-line { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 8px; }
.location-card .loc-line svg { flex-shrink: 0; color: var(--text-muted); }
.location-card a.loc-link { display: inline-block; margin-top: 6px; font-size: 0.92rem; font-weight: 600; color: var(--primary); }
.location-card a.loc-link:hover { text-decoration: underline; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    flex-direction: column; gap: 0; padding: 8px 24px 20px; border-bottom: 1px solid var(--border);
    transform: translateY(-140%); transition: transform 0.3s; box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero h1 { font-size: 2.75rem; }
  .features-grid, .about-grid, .contact-grid, .locations-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .brand-word { font-size: 0.95rem; }
  .hero { padding: 130px 0 72px; }
  .hero h1 { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1.05rem; }
  .section-header h2, .about-content h2, .contact-info h2 { font-size: 1.8rem; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   KENTRO-INSPIRED LAYOUT — dark hero, condensed display type,
   dark CTA band. CSG blue/purple brand kept.
   ============================================================ */
:root { --display: 'Oswald', 'Inter', sans-serif; }

/* Navbar transparent over the dark hero, solid white on scroll */
.navbar { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom-color: transparent; }
.navbar.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.navbar:not(.scrolled) .brand-word { color: #fff; }
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.82); }
.navbar:not(.scrolled) .nav-links a:hover { color: #fff; }
.navbar:not(.scrolled) .nav-toggle span { background: #fff; }
.nav-logo .logo-mark { background: #fff; border-radius: 9px; padding: 4px; }

/* HERO — dark, left-aligned, staggered condensed headline */
.hero { background: var(--bg-dark); color: #fff; align-items: stretch; padding: 200px 0 120px; }
.hero-content { text-align: left; margin: 0; max-width: 1060px; }
.hero-swoosh {
  position: absolute; top: -25%; right: -12%; width: 75%; height: 150%;
  background: linear-gradient(135deg, rgba(34,211,238,0.22), rgba(37,99,235,0.26) 45%, rgba(124,58,237,0.30));
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 4% 100%); filter: blur(6px);
}
.hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  -webkit-mask-image: radial-gradient(ellipse at 30% 40%, black 20%, transparent 75%);
  mask-image: radial-gradient(ellipse at 30% 40%, black 20%, transparent 75%);
}
.hero-badge { background: rgba(255,255,255,0.08); color: #7dd3fc; }
.hero-display { font-family: var(--display); text-transform: uppercase; font-weight: 300; line-height: 0.9; letter-spacing: 0.005em; margin: 12px 0 30px; }
.hero-display .hd-1 { display: block; font-size: clamp(1.5rem, 3.2vw, 2.5rem); font-weight: 300; color: rgba(255,255,255,0.85); margin-bottom: 6px; }
.hero-display .hd-2 { display: block; font-weight: 600; font-size: clamp(3.2rem, 11vw, 7.6rem);
  background: linear-gradient(100deg, #22D3EE, #4b8bff 45%, #a678ff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { color: rgba(255,255,255,0.72); margin: 0 0 40px; max-width: 620px; }
.hero-actions { justify-content: flex-start; }
.hero .btn-outline { color: #fff; border-color: rgba(255,255,255,0.35); }
.hero .btn-outline:hover { border-color: #fff; color: #fff; }
.hero-trust { justify-content: flex-start; }
.hero-trust span { color: rgba(255,255,255,0.6); }

/* SECTION HEADERS — left-aligned condensed display */
.section-header { text-align: left; max-width: 760px; margin: 0 0 52px; }
.section-header h2, .about-content h2, .contact-info h2 {
  font-family: var(--display); text-transform: uppercase; font-weight: 300;
  letter-spacing: 0.01em; line-height: 1.02; font-size: clamp(1.9rem, 4.4vw, 3.3rem);
}

/* CARDS — gradient top accent, rounded, roomy */
.feature-card { border-radius: 16px; padding: 34px 30px; position: relative; overflow: hidden; }
.feature-card::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background: var(--gradient); opacity:.9; }
.feature-icon { border-radius: 14px; }
.location-card { border-radius: 18px; }

/* DARK CTA BAND */
.cta-band { background: var(--bg-dark); color: #fff; padding: 92px 0; position: relative; overflow: hidden; }
.cta-swoosh { position: absolute; inset: 0; background: radial-gradient(circle at 82% 18%, rgba(37,99,235,0.30), transparent 58%), radial-gradient(circle at 60% 120%, rgba(124,58,237,0.22), transparent 55%); }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-inner h2 { font-family: var(--display); text-transform: uppercase; font-weight: 300; line-height: 1; color: #fff; font-size: clamp(2rem, 5vw, 3.6rem); margin: 0; }
.cta-inner .btn-primary { background: #fff; color: var(--bg-dark); border-color: #fff; }
.cta-inner .btn-primary:hover { background: var(--accent-cyan); border-color: var(--accent-cyan); color: var(--bg-dark); transform: translateY(-1px); }

@media (max-width: 900px) {
  .hero { padding: 150px 0 80px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}


/* ============ LEGAL PAGES (privacy / terms) ============ */
.legal-nav { position: sticky; top: 0; z-index: 1000; background: var(--bg); border-bottom: 1px solid var(--border); }
.legal-nav .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.legal-nav .brand-word { color: var(--text); }
.legal-nav .logo-mark { height: 38px; width: auto; }
.legal-nav a.back { font-size: 0.9rem; font-weight: 600; color: var(--primary); }
.legal { padding: 56px 0 80px; }
.legal .container { max-width: 820px; }
.legal .legal-updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.legal h1 { font-family: var(--display); text-transform: uppercase; font-weight: 300; font-size: clamp(2rem,5vw,3rem); letter-spacing: 0.01em; line-height: 1.05; margin-bottom: 24px; }
.legal h2 { font-size: 1.3rem; font-weight: 700; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal li { list-style: disc; margin-bottom: 6px; }
.legal a { color: var(--primary); text-decoration: underline; }
.legal strong { color: var(--text); }
.legal .lead { font-size: 1.08rem; color: var(--text-secondary); }
