:root {
  --red: #CC1B1B;
  --red-dark: #A01414;
  --red-tint: rgba(204,27,27,0.08);
  --red-tint2: rgba(204,27,27,0.15);
  --red-pale: #FFF0F0;
  --white: #FFFFFF;
  --off-white: #F7F7F7;
  --gray-50: #F4F4F4;
  --gray-100: #E8E8E8;
  --gray-200: #D0D0D0;
  --gray-400: #999;
  --gray-500: #777;
  --gray-600: #555;
  --gray-700: #333;
  --gray-800: #222;
  --black: #111;
  --border: #E0E0E0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --transition-base: 0.25s ease;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--gray-800); overflow-x: hidden; line-height: 1.6; font-weight: 400; }
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.05; text-transform: uppercase; letter-spacing: -0.01em; }
p { font-weight: 300; }

/* ── NAV ── */
nav { background: var(--white); border-bottom: 3px solid var(--red); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { color: var(--gray-600); text-decoration: none; font-size: 0.85rem; font-weight: 500; padding: 8px 14px; border-radius: 6px; transition: all 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--red); background: var(--red-tint); }
.btn-primary { background: var(--red); color: var(--white); padding: 10px 22px; border-radius: var(--radius); text-decoration: none; font-weight: 700; font-size: 0.88rem; transition: all 0.2s; border: none; cursor: pointer; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(204,27,27,0.35); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all 0.3s; }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 200; flex-direction: column; padding: 24px; }
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; padding-bottom: 20px; border-bottom: 2px solid var(--red); }
.mobile-close { background: none; border: 1px solid var(--border); color: var(--gray-600); width: 40px; height: 40px; border-radius: var(--radius); cursor: pointer; font-size: 1.1rem; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-menu-links a { color: var(--gray-600); text-decoration: none; font-size: 1.2rem; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; padding: 14px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-menu-links a:hover { color: var(--red); }

/* ── PAGE HERO ── */
.page-hero { background: var(--gray-800); padding: 64px 0 48px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 35%; clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%); background: var(--red); opacity: 0.25; }
.page-hero .container { max-width: 1180px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
.page-hero-label { font-family: var(--font-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 0.95rem; font-weight: 300; }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--gray-50); border-bottom: 1px solid var(--border); padding: 12px 0; }
.breadcrumb .container { max-width: 1180px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--gray-400); }
.breadcrumb a { color: var(--gray-400); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span.sep { color: var(--gray-200); }
.breadcrumb span.current { color: var(--gray-700); font-weight: 500; }

/* ── CONTENT AREA ── */
.page-content { padding: 72px 0 96px; }
.page-content .container { max-width: 1180px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1fr 280px; gap: 64px; align-items: start; }
.content-main { min-width: 0; }

/* ── TEXT CONTENT STYLES ── */
.legal-body h2 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); color: var(--gray-800); margin-top: 48px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--red); display: inline-block; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1rem; color: var(--gray-700); margin-top: 28px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.legal-body p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.85; margin-bottom: 16px; font-weight: 300; }
.legal-body ul { margin: 12px 0 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-body ul li { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; font-weight: 300; }
.legal-body ol.cgv-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; counter-reset: cgv-counter; }
.legal-body ol.cgv-list li { counter-increment: cgv-counter; color: var(--gray-600); font-size: 0.95rem; line-height: 1.85; font-weight: 300; padding: 20px 20px 20px 64px; position: relative; border-bottom: 1px solid var(--gray-100); }
.legal-body ol.cgv-list li:last-child { border-bottom: none; }
.legal-body ol.cgv-list li::before { content: counter(cgv-counter); position: absolute; left: 0; top: 18px; width: 38px; height: 38px; background: var(--red-tint); border: 1px solid rgba(204,27,27,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--red); }
.legal-body a { color: var(--red); text-decoration: none; font-weight: 500; }
.legal-body a:hover { text-decoration: underline; }
.legal-body strong { font-weight: 600; color: var(--gray-800); }

/* GDPR highlight box */
.gdpr-box {
  background: var(--red-pale);
  border: 1px solid rgba(204,27,27,0.2);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.gdpr-box p { margin-bottom: 0; color: var(--gray-700); font-size: 0.9rem; }

/* Placeholder zone */
.content-placeholder { background: var(--gray-50); border: 2px dashed var(--gray-200); border-radius: var(--radius-lg); padding: 56px 40px; text-align: center; }
.content-placeholder .placeholder-icon { font-size: 3rem; margin-bottom: 16px; }
.content-placeholder h3 { font-size: 1.2rem; color: var(--gray-600); margin-bottom: 10px; }
.content-placeholder p { color: var(--gray-400); font-size: 0.88rem; max-width: 360px; margin: 0 auto; }

/* ── SIDEBAR ── */
.page-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.sidebar-card-title { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 16px; }
.sidebar-nav-links { display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav-links a { display: block; color: var(--gray-600); text-decoration: none; font-size: 0.88rem; font-weight: 500; padding: 9px 14px; border-radius: var(--radius); transition: all 0.2s; border-left: 2px solid transparent; }
.sidebar-nav-links a:hover { color: var(--red); background: var(--red-tint); border-left-color: var(--red); }
.sidebar-nav-links a.active { color: var(--red); background: var(--red-pale); border-left-color: var(--red); font-weight: 600; }
.sidebar-contact { text-align: center; }
.sidebar-contact p { color: var(--gray-500); font-size: 0.85rem; margin-bottom: 16px; line-height: 1.6; }
.sidebar-contact .btn-primary { width: 100%; justify-content: center; font-size: 0.82rem; }
.sidebar-contact-info { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.sidebar-contact-info a { color: var(--gray-500); text-decoration: none; font-size: 0.8rem; display: flex; align-items: center; gap: 6px; justify-content: center; }
.sidebar-contact-info a:hover { color: var(--red); }

/* ── FOOTER ── */
footer { background: #1a1a1a; color: white; padding: 60px 0 0; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand-desc { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.7; font-weight: 300; margin-bottom: 16px; }
.footer-col-title { font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; font-weight: 300; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }
.footer-contact-line { color: rgba(255,255,255,0.55); font-size: 0.85rem; font-weight: 300; margin-bottom: 6px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); text-decoration: none; transition: background 0.2s, color 0.2s, transform 0.2s; }
.footer-social-link:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.footer-contact-line a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact-line a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.78rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.78rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--red); }
.footer-legal a.active-legal { color: var(--red); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .page-content .container { grid-template-columns: 1fr; gap: 40px; }
  .page-sidebar { order: -1; display: grid; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .nav-links, .nav-inner .btn-primary { display: none; }
  .hamburger { display: flex; }
  .page-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
