/* ============================================================
   Clipping Capital — styles
   Palette: black / white / red (#DC2626)
   ============================================================ */

:root {
  --black: #000000;
  --white: #FFFFFF;
  --red: #DC2626;
  --red-hover: #EF4444;
  --dark: #0A0A0A;
  --border: #1F1F1F;
  --muted: #A3A3A3;
  --light: #F5F5F5;

  --maxw: 1160px;
  --pad: 24px;
  --radius: 6px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--red); color: var(--white); padding: 10px 16px; border-radius: var(--radius);
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  padding: 12px 22px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-hover); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--white); }
.btn-lg { padding: 15px 30px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.brand-mark { width: 34px; height: 34px; color: var(--white); flex: none; }
.brand-mark svg, .brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-name { font-weight: 800; font-size: 17px; letter-spacing: -0.01em; }

.site-nav ul { display: flex; gap: 32px; }
.site-nav a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .16s var(--ease); }
.site-nav a:hover { color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--border); border-radius: var(--radius);
  align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--white); transition: transform .2s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 12px var(--pad) 20px; border-bottom: 1px solid var(--border); background: var(--black); }
.mobile-nav a { padding: 12px 4px; color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; margin-top: 8px; color: var(--white); text-align: center; }
.mobile-nav a:not(.btn):hover { color: var(--red); }

/* ---------- Section shared ---------- */
section { position: relative; }
.eyebrow {
  display: inline-block; color: var(--red); font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px;
}
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-title { font-size: clamp(30px, 4.4vw, 48px); font-weight: 800; }
.section-caption { margin-top: 18px; color: var(--muted); font-size: 18px; }

/* ---------- Hero ---------- */
.hero { background: var(--black); text-align: center; padding: clamp(90px, 15vh, 160px) 0 clamp(80px, 12vh, 130px); border-bottom: 1px solid var(--border); }
.hero-inner { max-width: 900px; margin: 0 auto; }
.hero-title { font-size: clamp(44px, 7.5vw, 92px); font-weight: 900; letter-spacing: -0.03em; }
.hero-title .accent { color: var(--red); }
.hero-sub { margin: 28px auto 0; max-width: 640px; color: var(--muted); font-size: clamp(17px, 2.2vw, 21px); }
.hero-actions { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.hero-trust { margin-top: 44px; color: var(--muted); font-size: 14px; letter-spacing: 0.02em; text-transform: uppercase; }

/* ---------- Social proof strip ---------- */
.social-strip { background: var(--white); color: var(--black); }
.social-inner { display: flex; align-items: center; justify-content: center; gap: 22px; padding: 26px var(--pad); flex-wrap: wrap; }
.avatars { display: flex; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: #d4d4d4; border: 2px solid var(--white); margin-left: -10px; }
.avatar:first-child { margin-left: 0; }
.avatar:nth-child(2){ background:#bcbcbc; } .avatar:nth-child(3){ background:#a3a3a3; }
.avatar:nth-child(4){ background:#8a8a8a; } .avatar:nth-child(5){ background:#717171; }
.social-text { font-size: 16px; font-weight: 500; color: #262626; }
.social-text strong { color: var(--black); font-weight: 800; }

/* ---------- Comparison ---------- */
.comparison { padding: clamp(80px, 12vh, 130px) 0; background: var(--black); border-bottom: 1px solid var(--border); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 900px; margin: 0 auto; }
.compare-col { padding: 0 clamp(20px, 5vw, 64px); }
.compare-new { border-left: 1px solid var(--border); }

.compare-head { min-height: 132px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; text-align: center; margin-bottom: 40px; }
.compare-logo { width: 60px; height: 60px; color: var(--white); margin-bottom: 20px; }
.compare-logo svg, .compare-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.compare-title { font-size: clamp(22px, 2.6vw, 28px); font-weight: 800; line-height: 1.12; }

.compare-list { display: inline-block; text-align: left; margin: 0 auto; }
.compare-list li { position: relative; padding: 9px 0 9px 24px; color: var(--white); font-size: clamp(16px, 1.9vw, 18px); font-weight: 600; }
.compare-list li::before { content: ""; position: absolute; left: 0; top: 0.85em; width: 7px; height: 7px; border-radius: 50%; background: var(--white); }
.compare-list-accent li::before { background: var(--red); }

/* Comparison as a draggable before/after divider */
.cmp { position: relative; display: grid; max-width: 980px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--dark); overflow: hidden; --pos: 50%; }
.cmp-pane { grid-area: 1 / 1; min-width: 0; padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 60px); }
.cmp-before { background: var(--dark); clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.cmp-col { width: 50%; text-align: center; }
.cmp-col-left { padding-right: clamp(20px, 3vw, 40px); }
.cmp-col-right { margin-left: 50%; padding-left: clamp(20px, 3vw, 40px); }
.cmp .compare-head { min-height: 108px; margin-bottom: 30px; }
.cmp .compare-list { display: inline-block; text-align: left; margin: 0 auto; }
.cmp .compare-list li { font-size: clamp(15px, 1.7vw, 18px); }

.cmp-divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: var(--red); transform: translateX(-1px); z-index: 3; touch-action: none; }
.cmp-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px; border-radius: 50%; background: var(--red); color: var(--white); border: 3px solid var(--dark); display: inline-flex; align-items: center; justify-content: center; cursor: grab; box-shadow: 0 4px 14px rgba(0,0,0,0.45); touch-action: none; }
.cmp-handle:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
.cmp.is-dragging .cmp-handle { cursor: grabbing; }
.cmp.is-dragging { user-select: none; -webkit-user-select: none; }

@media (max-width: 620px) {
  .cmp-pane { padding: 36px 20px; }
  .cmp-col-left { padding-right: 14px; }
  .cmp-col-right { padding-left: 14px; }
  .cmp .compare-head { min-height: 90px; margin-bottom: 22px; }
}

/* ---------- Slider ---------- */
.slider-section { padding: clamp(80px, 12vh, 130px) 0; background: var(--dark); border-bottom: 1px solid var(--border); }
.slider { max-width: 940px; margin: 0 auto; }
.slider-progress { height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; margin-bottom: 26px; }
.slider-progress-bar { display: block; height: 100%; width: 0%; background: var(--red); }
.slider-progress-bar.animate { transition: width linear; }

.slider-viewport { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--black); cursor: grab; touch-action: pan-y; }
.slider.is-dragging .slider-viewport { cursor: grabbing; }
.slider-viewport img { -webkit-user-drag: none; user-select: none; }
.slider-track { display: flex; transition: transform .55s var(--ease); user-select: none; -webkit-user-select: none; }
.slide {
  flex: 0 0 100%; min-width: 100%;
  padding: clamp(44px, 7vw, 88px) clamp(32px, 6vw, 80px);
  min-height: 340px; display: flex; flex-direction: column; justify-content: center;
}
.slide-index {
  display: inline-block; align-self: flex-start; color: var(--red);
  font-size: 14px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding-bottom: 18px; margin-bottom: 26px; border-bottom: 2px solid var(--red);
}
.slide-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; max-width: 640px; }
.slide-body { margin-top: 20px; color: var(--muted); font-size: clamp(17px, 2vw, 20px); max-width: 620px; }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 30px; }
.slider-arrow {
  width: 46px; height: 46px; border-radius: var(--radius); background: transparent;
  border: 1px solid var(--border); color: var(--white); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .16s var(--ease), background-color .16s var(--ease);
}
.slider-arrow:hover { border-color: var(--red); color: var(--red); }
.slider-arrow:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.slider-dots { display: flex; gap: 10px; }
.slider-dots button {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; border: none;
  background: var(--border); cursor: pointer; transition: background-color .2s var(--ease), width .2s var(--ease), border-radius .2s var(--ease);
}
.slider-dots button:hover { background: var(--muted); }
.slider-dots button[aria-selected="true"] { background: var(--red); width: 24px; border-radius: 5px; }
.slider-dots button:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ---------- Booking ---------- */
.booking { padding: clamp(80px, 12vh, 130px) 0; background: var(--black); border-bottom: 1px solid var(--border); }
.booking-card {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 0;
  max-width: 1000px; margin: 0 auto; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; background: var(--dark);
}
.booking-intro { padding: 44px 40px; border-right: 1px solid var(--border); }
.booking-title { font-size: 24px; font-weight: 800; }
.booking-desc { margin-top: 14px; color: var(--muted); font-size: 16px; }
.meeting-meta { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.meeting-name { font-weight: 700; font-size: 16px; }
.meeting-desc { margin-top: 8px; color: var(--muted); font-size: 15px; }
.meeting-facts { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.meeting-facts li { display: flex; justify-content: space-between; font-size: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.meeting-facts li:last-child { border-bottom: none; padding-bottom: 0; }
.meeting-facts span { color: var(--muted); }
.meeting-facts strong { font-weight: 600; }

.booking-flow { padding: 44px 40px; position: relative; }
.booking-step { animation: fade .3s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.cal-month { font-weight: 700; font-size: 16px; }
.cal-nav {
  width: 34px; height: 34px; border-radius: var(--radius); border: 1px solid var(--border);
  background: transparent; color: var(--white); cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .16s var(--ease);
}
.cal-nav:hover:not(:disabled) { border-color: var(--red); }
.cal-nav:disabled { opacity: 0.35; cursor: not-allowed; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-labels span { text-align: center; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); padding-bottom: 8px; }
.cal-days button {
  aspect-ratio: 1 / 1; border: 1px solid var(--border); background: var(--black); color: var(--white);
  border-radius: var(--radius); font-size: 14px; cursor: pointer; font-family: inherit;
  transition: border-color .14s var(--ease), background-color .14s var(--ease), color .14s var(--ease);
}
.cal-days button:hover:not(:disabled) { border-color: var(--white); }
.cal-days button:disabled { color: #3a3a3a; cursor: not-allowed; background: transparent; border-color: transparent; }
.cal-days button.is-selected { background: var(--red); border-color: var(--red); color: var(--white); font-weight: 700; }
.cal-days .cal-empty { border: none; background: none; cursor: default; }
.cal-days button:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

.timeslots { margin-top: 28px; }
.timeslots-label { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.tz { opacity: 0.7; }
.timeslots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.timeslots-grid button {
  padding: 11px 8px; border: 1px solid var(--border); background: var(--black); color: var(--white);
  border-radius: var(--radius); font-size: 14px; cursor: pointer; font-family: inherit;
  transition: border-color .14s var(--ease), background-color .14s var(--ease);
}
.timeslots-grid button:hover { border-color: var(--white); }
.timeslots-grid button.is-selected { background: var(--red); border-color: var(--red); font-weight: 700; }
.timeslots-grid button:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.timeslots-grid .slots-empty { grid-column: 1 / -1; color: var(--muted); font-size: 14px; }
.booking-next { margin-top: 24px; width: 100%; }
.booking-next:disabled { opacity: 0.4; cursor: not-allowed; }

.selected-summary { padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; color: var(--white); margin-bottom: 24px; background: var(--black); }
.selected-summary strong { color: var(--red); }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--white); }
.field input, .field select {
  width: 100%; padding: 12px 14px; background: var(--black); color: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 15px;
  transition: border-color .14s var(--ease);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--red); }
.field input::placeholder { color: #5a5a5a; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23A3A3A3' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.booking-form-actions { display: flex; gap: 12px; margin-top: 28px; }
.booking-form-actions .btn { flex: 1; }

.booking-confirm { text-align: center; padding: 20px 0; }
.confirm-mark { width: 56px; height: 56px; border-radius: 50%; background: var(--red); color: var(--white); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.confirm-title { font-size: 26px; font-weight: 800; }
.confirm-text { margin-top: 14px; font-size: 16px; }
.confirm-text strong { color: var(--red); }
.confirm-note { margin-top: 16px; color: var(--muted); font-size: 15px; max-width: 380px; margin-left: auto; margin-right: auto; }
.booking-reset { margin-top: 28px; }

/* ---------- Blog ---------- */
.blog { padding: clamp(80px, 12vh, 130px) 0; background: var(--dark); border-bottom: 1px solid var(--border); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; background: var(--black); display: flex; flex-direction: column; transition: border-color .2s var(--ease), transform .2s var(--ease); }
.blog-card:hover { border-color: #333; transform: translateY(-3px); }
.blog-thumb { aspect-ratio: 16 / 9; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 22px; display: flex; align-items: flex-end; padding: 16px; background: linear-gradient(160deg, #101010, #050505); }
.blog-thumb span { font-size: 40px; font-weight: 900; color: #1f1f1f; letter-spacing: -0.04em; }
.blog-cat { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.blog-card-title { font-size: 20px; font-weight: 700; margin-top: 12px; line-height: 1.2; }
.blog-card-desc { margin-top: 14px; color: var(--muted); font-size: 15px; flex: 1; }
.blog-link { margin-top: 22px; font-size: 14px; font-weight: 600; color: var(--white); display: inline-flex; align-items: center; gap: 6px; }
.blog-link::after { content: ""; width: 14px; height: 1px; background: var(--red); transition: width .2s var(--ease); }
.blog-card:hover .blog-link::after { width: 26px; }

/* ---------- FAQ ---------- */
.faq { padding: clamp(80px, 12vh, 130px) 0; background: var(--black); }
.faq-inner { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 60px; align-items: start; }
.faq-head { text-align: left; margin: 0; position: sticky; top: 100px; }
.faq-head .section-title { text-align: left; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0; background: transparent; border: none; color: var(--white); cursor: pointer;
  font-family: inherit; font-size: 18px; font-weight: 600; text-align: left; letter-spacing: -0.01em;
  transition: color .16s var(--ease);
}
.faq-q:hover { color: var(--red); }
.faq-q:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }
.faq-icon { position: relative; width: 16px; height: 16px; flex: none; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: currentColor; transition: transform .25s var(--ease), background-color .16s var(--ease); }
.faq-icon::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq-icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-q[aria-expanded="true"] { color: var(--red); }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s var(--ease); }
.faq-a p { padding: 0 40px 26px 0; color: var(--muted); font-size: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); border-top: 1px solid var(--border); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-text { color: var(--muted); font-size: 15px; max-width: 420px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; align-content: start; }
.footer-links a { color: var(--muted); font-size: 15px; transition: color .16s var(--ease); }
.footer-links a:hover { color: var(--red); }
.footer-bottom { padding: 26px var(--pad); border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { color: var(--muted); font-size: 14px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid var(--border); border-radius: var(--radius); color: var(--muted); transition: color .16s var(--ease), border-color .16s var(--ease); }
.footer-social a:hover { color: var(--red); border-color: var(--red); }
.footer-social svg { width: 17px; height: 17px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .header-actions .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav.open { display: flex; }
  .booking-card { grid-template-columns: 1fr; }
  .booking-intro { border-right: none; border-bottom: 1px solid var(--border); }
  .blog-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-head { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .compare-grid { grid-template-columns: 1fr; gap: 48px; }
  .compare-new { border-left: none; border-top: 1px solid var(--border); padding-top: 48px; }
  .compare-head { min-height: 0; margin-bottom: 28px; }
  .compare-old .compare-head { min-height: 0; }
  .hero-actions .btn { width: 100%; }
  .timeslots-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: 1fr; }
  .booking-intro, .booking-flow { padding: 32px 24px; }
}

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

/* ---------- Legal pages ---------- */
.legal { padding: clamp(100px, 14vh, 150px) 0 clamp(70px, 10vh, 110px); background: var(--black); }
.legal-container { max-width: 800px; }
.legal-back { display: inline-block; color: var(--muted); font-size: 14px; font-weight: 500; margin-bottom: 34px; transition: color .16s var(--ease); }
.legal-back:hover { color: var(--red); }
.legal-eyebrow { display: inline-block; color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.legal-title { font-size: clamp(34px, 5.5vw, 56px); font-weight: 800; letter-spacing: -0.02em; }
.legal-updated { margin-top: 16px; padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid var(--border); color: var(--muted); font-size: 14px; }
.legal-body h2 { font-size: clamp(21px, 2.6vw, 26px); font-weight: 700; margin: 44px 0 14px; letter-spacing: -0.01em; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.legal-body p { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.legal-body ul { margin: 0 0 18px; }
.legal-body li { position: relative; padding: 6px 0 6px 22px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.legal-body li::before { content: ""; position: absolute; left: 0; top: 15px; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.legal-body a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; transition: color .16s var(--ease); }
.legal-body a:hover { color: var(--red); }
.legal-body strong { color: var(--white); font-weight: 600; }

/* ---------- Cookie consent ---------- */
.cc-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; background: var(--dark); border-top: 1px solid var(--border); transform: translateY(110%); transition: transform .45s var(--ease); }
.cc-banner.cc-show { transform: none; }
.cc-banner-inner { max-width: var(--maxw); margin: 0 auto; padding: 22px var(--pad); display: flex; align-items: center; gap: 32px; }
.cc-banner-text { flex: 1; min-width: 0; }
.cc-banner-text h2 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.cc-banner-text p { color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 760px; }
.cc-banner-text a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.cc-banner-text a:hover { color: var(--red); }
.cc-actions { display: flex; gap: 10px; flex: none; }
.cc-actions .btn { padding: 11px 18px; font-size: 14px; }

.cc-modal { position: fixed; inset: 0; z-index: 400; display: none; align-items: center; justify-content: center; padding: 20px; }
.cc-modal.cc-open { display: flex; }
.cc-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.72); }
.cc-dialog { position: relative; width: 100%; max-width: 560px; max-height: 88vh; overflow-y: auto; background: var(--dark); border: 1px solid var(--border); border-radius: var(--radius); animation: fade .3s var(--ease); }
.cc-dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 26px 28px 20px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--dark); z-index: 1; }
.cc-dialog-head h2 { font-size: 21px; font-weight: 800; letter-spacing: -0.01em; }
.cc-dialog-head p { color: var(--muted); font-size: 14px; margin-top: 8px; line-height: 1.6; }
.cc-close { flex: none; width: 34px; height: 34px; border: 1px solid var(--border); background: transparent; color: var(--white); border-radius: var(--radius); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: border-color .16s var(--ease), color .16s var(--ease); }
.cc-close:hover { border-color: var(--red); color: var(--red); }
.cc-close:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.cc-cats { padding: 4px 28px; }
.cc-cat { padding: 22px 0; border-bottom: 1px solid var(--border); }
.cc-cat:last-child { border-bottom: none; }
.cc-cat-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.cc-cat-top h3 { font-size: 15px; font-weight: 700; }
.cc-cat p { color: var(--muted); font-size: 13px; line-height: 1.65; margin-top: 8px; }
.cc-always { flex: none; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); }
.cc-switch { position: relative; flex: none; width: 44px; height: 24px; }
.cc-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.cc-track { position: absolute; inset: 0; background: #2a2a2a; border: 1px solid var(--border); border-radius: 999px; transition: background-color .2s var(--ease), border-color .2s var(--ease); pointer-events: none; }
.cc-track::before { content: ""; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: var(--white); border-radius: 50%; transition: transform .2s var(--ease); }
.cc-switch input:checked + .cc-track { background: var(--red); border-color: var(--red); }
.cc-switch input:checked + .cc-track::before { transform: translateX(20px); }
.cc-switch input:focus-visible + .cc-track { outline: 2px solid var(--red); outline-offset: 2px; }
.cc-dialog-foot { display: flex; gap: 10px; padding: 18px 28px 26px; border-top: 1px solid var(--border); position: sticky; bottom: 0; background: var(--dark); }
.cc-dialog-foot .btn { flex: 1; padding: 12px 14px; font-size: 14px; }

@media (max-width: 720px) {
  .cc-banner-inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .cc-actions { flex-wrap: wrap; }
  .cc-actions .btn { flex: 1; min-width: 130px; }
  .cc-dialog-foot { flex-wrap: wrap; }
  .cc-dialog-foot .btn { min-width: 130px; }
}
