/* ==========================================================
   Appliance Repair CPC — main stylesheet
   Theme: White + Mauve Magic, Indigo navigation, Royal Plum footer
   ========================================================== */

:root {
  --white: #ffffff;
  --mist: #fbf7fb;
  --mauve-50: #f6eef5;
  --mauve-100: #ecdcea;
  --mauve-200: #dcc0d8;
  --mauve: #b983b2;          /* Mauve Magic */
  --mauve-600: #8f5889;
  --indigo: #2f1e73;         /* Navigation */
  --indigo-700: #231558;
  --indigo-300: #8f84c9;
  --plum: #5b1f55;           /* Royal Plum footer */
  --plum-900: #3d1239;
  --ink: #221a30;
  --muted: #5d5470;
  --line: #e7dbe6;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 14px 40px -18px rgba(47, 30, 115, .35);
  --wrap: 1180px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--indigo); text-underline-offset: 3px; }
a:hover { color: var(--mauve-600); }
h1, h2, h3 { line-height: 1.18; margin: 0 0 .6em; letter-spacing: -.015em; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3.1vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }
em.accent { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--mauve-600); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--tint { background: var(--mauve-50); }
.kicker {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--mauve-600); margin-bottom: 14px;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--mauve); border-radius: 2px; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 62ch; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head--split { max-width: none; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 18px 40px; }
.section-head--split p { max-width: 46ch; margin: 0; color: var(--muted); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--mauve); color: var(--plum-900); padding: 10px 16px; border-radius: 8px; font-weight: 700;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--mauve); outline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 14px 24px; border-radius: 999px; border: 2px solid transparent;
  font: inherit; font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--indigo { background: var(--indigo); color: var(--white); }
.btn--indigo:hover { background: var(--indigo-700); color: var(--white); }
.btn--mauve { background: var(--mauve); color: var(--plum-900); }
.btn--mauve:hover { background: var(--mauve-200); color: var(--plum-900); }
.btn--ghost { border-color: var(--indigo); color: var(--indigo); background: transparent; }
.btn--ghost:hover { background: var(--indigo); color: var(--white); }
.btn--light { border-color: rgba(255,255,255,.6); color: var(--white); background: transparent; }
.btn--light:hover { background: var(--white); color: var(--plum); }

/* ==========================================================
   HEADER / NAVIGATION (Indigo)
   ========================================================== */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--indigo); color: var(--white); }
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--mauve) 0 22%, var(--indigo-300) 22% 24%, transparent 24%);
}
.infobar { background: var(--indigo-700); font-size: .85rem; }
.infobar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 38px; }
.infobar a, .infobar span { color: #d9d3f3; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.infobar a:hover { color: var(--white); }
.infobar svg { width: 15px; height: 15px; color: var(--mauve); flex: none; }

.navbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--white); flex: none; }
.brand:hover { color: var(--white); }
.brand svg { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.15rem; font-weight: 800; letter-spacing: -.01em; }
.brand-text small { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--mauve-200); margin-top: 4px; }

.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.nav-list a {
  display: block; padding: 9px 13px; border-radius: 999px;
  color: #e6e1fa; text-decoration: none; font-weight: 600; font-size: .94rem; white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.nav-list a:hover { background: rgba(255,255,255,.1); color: var(--white); }
.nav-list a[aria-current="page"] { background: var(--mauve); color: var(--plum-900); }

.nav-toggle {
  display: none; width: 48px; height: 48px; border-radius: 14px; border: 1px solid rgba(255,255,255,.25);
  background: transparent; color: var(--white); cursor: pointer; padding: 0; align-items: center; justify-content: center;
}
.nav-toggle .bars { position: relative; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: background .2s; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .25s ease, top .25s ease;
}
.nav-toggle .bars::before { top: -7px; }
.nav-toggle .bars::after { top: 7px; }
.nav-open .nav-toggle .bars { background: transparent; }
.nav-open .nav-toggle .bars::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle .bars::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1120px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--indigo); border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 40px -20px rgba(0,0,0,.5);
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .35s ease, visibility .35s;
  }
  .nav-open .main-nav { max-height: 80vh; visibility: visible; overflow-y: auto; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; padding: 14px 22px 22px; }
  .nav-list a { padding: 13px 16px; border-radius: 12px; font-size: 1rem; }
}
@media (max-width: 640px) {
  .infobar .addr { display: none; }
  .infobar .wrap { justify-content: center; }
  .navbar .wrap { min-height: 68px; }
  .brand svg { width: 40px; height: 40px; }
  .brand-text strong { font-size: 1.02rem; }
}

/* ==========================================================
   HOME — HERO
   ========================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, var(--mauve-100) 0 180px, transparent 181px),
    linear-gradient(var(--white), var(--mist));
  padding: clamp(48px, 7vw, 90px) 0 clamp(56px, 7vw, 90px);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(var(--mauve-200) 1.2px, transparent 1.3px);
  background-size: 22px 22px; opacity: .45;
  -webkit-mask-image: linear-gradient(90deg, transparent 0 45%, #000 90%);
  mask-image: linear-gradient(90deg, transparent 0 45%, #000 90%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.hero h1 .mark { position: relative; white-space: nowrap; }
.hero h1 .mark::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .08em; height: .32em;
  background: var(--mauve); opacity: .45; border-radius: 6px; z-index: -1;
}
.hero h1 { position: relative; z-index: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 30px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.hero-chips li {
  padding: 7px 14px; border-radius: 999px; background: var(--white); border: 1px solid var(--line);
  font-size: .88rem; font-weight: 600; color: var(--indigo);
}
.hero-media { position: relative; padding: 0 0 26px 26px; }
.hero-media::before {
  content: ""; position: absolute; left: 0; bottom: 0; width: 78%; height: 80%;
  background: var(--mauve); border-radius: 28px;
}
.video-frame {
  position: relative; border-radius: 24px; overflow: hidden; background: var(--indigo-700);
  aspect-ratio: 16 / 9; box-shadow: var(--shadow); border: 6px solid var(--white);
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-toggle {
  position: absolute; right: 14px; bottom: 14px; width: 44px; height: 44px; border-radius: 50%;
  border: 0; background: rgba(35, 21, 88, .78); color: var(--white); cursor: pointer; display: grid; place-items: center;
}
.video-toggle svg { width: 18px; height: 18px; }
.video-toggle .i-play { display: none; }
.video-toggle.is-paused .i-play { display: block; }
.video-toggle.is-paused .i-pause { display: none; }
.hero-note {
  position: absolute; left: -8px; bottom: -6px; max-width: 250px; z-index: 2;
  background: var(--white); border-radius: 16px; padding: 14px 16px; box-shadow: var(--shadow);
  font-size: .9rem; line-height: 1.45; border-left: 5px solid var(--indigo);
}
.hero-note strong { display: block; color: var(--indigo); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 640px; }
}
@media (max-width: 560px) {
  .hero-media { padding: 0 0 16px 16px; }
  .hero-note { position: static; max-width: none; margin-top: 16px; }
  .hero h1 .mark { white-space: normal; }
}

/* Appliance ticker strip */
.ticker { background: var(--indigo); color: var(--white); overflow: hidden; border-block: 1px solid var(--indigo-700); }
.ticker-track { display: flex; width: max-content; animation: ticker 38s linear infinite; }
.ticker ul { display: flex; list-style: none; margin: 0; padding: 16px 0; }
.ticker li { display: flex; align-items: center; gap: 22px; padding-right: 22px; font-weight: 700; letter-spacing: .04em; white-space: nowrap; }
.ticker li::after { content: ""; width: 9px; height: 9px; border-radius: 3px; background: var(--mauve); transform: rotate(45deg); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ==========================================================
   HOME — APPLIANCE CATEGORIES (bento)
   ========================================================== */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius); background: var(--mauve-100);
  isolation: isolate; min-height: 0;
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; z-index: -2; }
.tile::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(35,21,88,0) 35%, rgba(35,21,88,.88) 100%);
}
.tile:hover img { transform: scale(1.05); }
.tile-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 18px 16px; color: var(--white); }
.tile-body h3 { color: var(--white); margin: 0 0 4px; font-size: 1.12rem; }
.tile-body p { margin: 0; font-size: .9rem; color: #ece6f7; line-height: 1.45; }
.tile .num {
  position: absolute; top: 14px; left: 14px; font-size: .75rem; font-weight: 800; letter-spacing: .1em;
  background: var(--white); color: var(--indigo); padding: 4px 10px; border-radius: 999px;
}
.tile--tall { grid-row: span 2; }
.tile--wide { grid-column: span 2; }
.tile--text {
  background: var(--indigo); color: var(--white); padding: 24px; display: flex; flex-direction: column; justify-content: space-between;
}
.tile--text::after { display: none; }
.tile--text h3 { color: var(--white); font-size: 1.35rem; }
.tile--text p { color: #d9d3f3; font-size: .95rem; }
.tile--text a { color: var(--mauve-200); font-weight: 700; }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
}
@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .tile--tall { grid-row: span 1; }
  .tile--wide { grid-column: span 1; }
  .tile--text { grid-row: auto; }
}

/* ==========================================================
   HOME — REPAIR ROUTE (process as route map)
   ========================================================== */
.route { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; list-style: none; padding: 0; margin: 0; counter-reset: stop; }
.route::before {
  content: ""; position: absolute; left: 6%; right: 6%; top: 34px; height: 4px; border-radius: 4px;
  background: repeating-linear-gradient(90deg, var(--indigo) 0 18px, transparent 18px 28px);
  opacity: .5;
}
.route li { position: relative; text-align: center; padding: 0 6px; counter-increment: stop; }
.route .stop {
  position: relative; z-index: 1; width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--white); border: 4px solid var(--mauve); display: grid; place-items: center; color: var(--indigo);
}
.route .stop svg { width: 30px; height: 30px; }
.route .stop::after {
  content: counter(stop); position: absolute; top: -6px; right: -6px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--indigo); color: var(--white); font-size: .8rem; font-weight: 800; display: grid; place-items: center;
}
.route h3 { font-size: 1.06rem; margin-bottom: 6px; }
.route p { font-size: .94rem; color: var(--muted); margin: 0; }

@media (max-width: 900px) {
  .route { grid-template-columns: 1fr; gap: 0; }
  .route::before { left: 34px; right: auto; top: 20px; bottom: 20px; width: 4px; height: auto;
    background: repeating-linear-gradient(180deg, var(--indigo) 0 18px, transparent 18px 28px); }
  .route li { display: grid; grid-template-columns: 72px 1fr; gap: 0 18px; text-align: left; padding: 0 0 28px; }
  .route .stop { margin: 0; grid-row: span 2; }
  .route h3 { margin-top: 8px; }
}

/* ==========================================================
   HOME — REASONS / BENEFITS (split with photo stack)
   ========================================================== */
.reasons { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.photo-stack { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.photo-stack figure { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4; background: var(--mauve-100); }
.photo-stack figure:nth-child(2) { margin-top: 48px; }
.photo-stack img { width: 100%; height: 100%; object-fit: cover; }
.photo-stack figcaption { position: absolute; left: -9999px; }
.reason-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; list-style: none; padding: 0; margin: 28px 0 0; }
.reason {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  transition: border-color .2s ease, transform .2s ease;
}
.reason:hover { border-color: var(--mauve); transform: translateY(-3px); }
.reason .ico { width: 46px; height: 46px; border-radius: 14px; background: var(--mauve-50); color: var(--mauve-600); display: grid; place-items: center; margin-bottom: 14px; }
.reason .ico svg { width: 24px; height: 24px; }
.reason h3 { font-size: 1.06rem; margin-bottom: 6px; }
.reason p { margin: 0; font-size: .95rem; color: var(--muted); }
@media (max-width: 960px) { .reasons { grid-template-columns: 1fr; } .photo-stack { max-width: 560px; } }
@media (max-width: 560px) { .reason-list { grid-template-columns: 1fr; } }

/* ==========================================================
   HOME — WORKSHOP STRIP + FAQ
   ========================================================== */
.bench-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.bench-strip figure { margin: 0; }
.bench-strip .ph { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: var(--mauve-100); }
.bench-strip img { width: 100%; height: 100%; object-fit: cover; }
.bench-strip figcaption { font-size: .88rem; color: var(--muted); margin-top: 10px; }
@media (max-width: 860px) { .bench-strip { grid-template-columns: repeat(2, 1fr); } }

.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 64px); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 44px 20px 0; position: relative; font-weight: 700; font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%; background: var(--mauve-50); color: var(--indigo);
  display: grid; place-items: center; font-size: 1.2rem; font-weight: 700; transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; background: var(--indigo); color: var(--white); }
.faq details p { color: var(--muted); padding: 0 0 20px; margin: 0; max-width: 62ch; }
@media (max-width: 860px) { .faq-layout { grid-template-columns: 1fr; } }

/* ==========================================================
   CTA BAND
   ========================================================== */
.cta-band { padding: 0 0 clamp(64px, 9vw, 110px); }
.cta-card {
  position: relative; overflow: hidden; border-radius: 28px; padding: clamp(32px, 5vw, 60px);
  background: var(--mauve); color: var(--plum-900);
  display: grid; grid-template-columns: 1.4fr auto; gap: 28px; align-items: center;
}
.cta-card::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px; border-radius: 50%;
  border: 40px solid rgba(255,255,255,.18);
}
.cta-card h2 { color: var(--plum-900); margin-bottom: 10px; }
.cta-card p { margin: 0; max-width: 56ch; font-size: 1.06rem; }
.cta-card .btn { position: relative; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; position: relative; }
@media (max-width: 800px) { .cta-card { grid-template-columns: 1fr; } .cta-actions { flex-direction: row; flex-wrap: wrap; } }

/* ==========================================================
   INNER PAGE BANNER
   ========================================================== */
.page-banner {
  position: relative; overflow: hidden; background: var(--mauve-50);
  padding: clamp(48px, 7vw, 84px) 0 clamp(40px, 6vw, 64px); border-bottom: 1px solid var(--line);
}
.page-banner::after {
  content: ""; position: absolute; right: -60px; bottom: -120px; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, var(--mauve-100) 0 55%, transparent 56%);
}
.page-banner .wrap { position: relative; z-index: 1; }
.crumbs { font-size: .88rem; margin-bottom: 16px; color: var(--muted); }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--mauve); }
.crumbs a { color: var(--indigo); text-decoration: none; font-weight: 600; }
.page-banner h1 { max-width: 20ch; }
.page-banner .lead { margin: 0; }
.updated { display: inline-block; margin-top: 18px; font-size: .88rem; font-weight: 600; background: var(--white); border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px; color: var(--indigo); }

/* ==========================================================
   SERVICES PAGE
   ========================================================== */
.svc-index { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 28px 0 0; }
.svc-index a {
  display: inline-block; padding: 9px 16px; border-radius: 999px; background: var(--white); border: 1px solid var(--line);
  text-decoration: none; font-weight: 600; font-size: .92rem;
}
.svc-index a:hover { border-color: var(--indigo); }

.svc-row { display: grid; grid-template-columns: 380px 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding: clamp(40px, 6vw, 64px) 0; border-bottom: 1px dashed var(--mauve-200); scroll-margin-top: 130px; }
.svc-row:last-child { border-bottom: 0; }
.svc-row:nth-child(even) { grid-template-columns: 1fr 380px; }
.svc-row:nth-child(even) .svc-photo { order: 2; }
.svc-photo { position: relative; margin: 0; }
.svc-photo .ph { border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--mauve-100); }
.svc-photo .ph--wide { aspect-ratio: 16 / 10; }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; }
.svc-photo figcaption { font-size: .85rem; color: var(--muted); margin-top: 10px; }
.svc-tag { display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .12em; color: var(--white); background: var(--indigo); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.svc-text h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.svc-text > p { color: var(--muted); }
.symptoms { margin-top: 22px; background: var(--mauve-50); border-radius: var(--radius); padding: 20px 22px; }
.symptoms h3 { font-size: 1rem; margin-bottom: 10px; color: var(--indigo); }
.symptoms ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.symptoms li { position: relative; padding-left: 22px; font-size: .95rem; }
.symptoms li::before { content: ""; position: absolute; left: 0; top: .5em; width: 10px; height: 10px; border-radius: 3px; background: var(--mauve); transform: rotate(45deg); }
@media (max-width: 900px) {
  .svc-row, .svc-row:nth-child(even) { grid-template-columns: 1fr; }
  .svc-row:nth-child(even) .svc-photo { order: 0; }
  .svc-photo { max-width: 460px; }
}
@media (max-width: 520px) { .symptoms ul { grid-template-columns: 1fr; } }

.checklist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: chk; }
.check-card { background: var(--white); border-radius: var(--radius); padding: 26px; border-top: 5px solid var(--mauve); box-shadow: 0 10px 30px -22px rgba(47,30,115,.5); counter-increment: chk; }
.check-card::before { content: "0" counter(chk); display: block; font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--mauve-600); line-height: 1; margin-bottom: 12px; }
.check-card h3 { margin-bottom: 6px; }
.check-card p { color: var(--muted); margin: 0; font-size: .96rem; }
@media (max-width: 860px) { .checklist-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-card {
  position: relative; border-radius: 24px; padding: clamp(26px, 4vw, 40px); overflow: hidden;
}
.contact-card--email { background: var(--indigo); color: var(--white); }
.contact-card--addr { background: var(--mauve-50); border: 1px solid var(--line); }
.contact-card .ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; }
.contact-card--email .ico { background: var(--mauve); color: var(--plum-900); }
.contact-card--addr .ico { background: var(--indigo); color: var(--white); }
.contact-card .ico svg { width: 28px; height: 28px; }
.contact-card h2 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-card--email h2 { color: var(--white); }
.contact-card--email p { color: #d9d3f3; }
.big-link { display: inline-block; font-size: clamp(1.05rem, 2.4vw, 1.4rem); font-weight: 800; color: var(--white); word-break: break-word; margin: 6px 0 22px; }
.contact-card--email .big-link:hover { color: var(--mauve-200); }
address { font-style: normal; font-size: clamp(1.05rem, 2.2vw, 1.3rem); font-weight: 700; line-height: 1.5; margin: 6px 0 18px; color: var(--ink); }
.contact-card--addr p { color: var(--muted); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.mail-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; list-style: none; padding: 0; margin: 0; counter-reset: ms; }
.mail-steps li { counter-increment: ms; display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.mail-steps li::before { content: counter(ms); width: 48px; height: 48px; border-radius: 14px; background: var(--white); border: 2px solid var(--mauve); color: var(--indigo); font-weight: 800; display: grid; place-items: center; }
.mail-steps h3 { font-size: 1.05rem; margin: 2px 0 4px; }
.mail-steps p { margin: 0; color: var(--muted); font-size: .95rem; }
@media (max-width: 760px) { .mail-steps { grid-template-columns: 1fr; } }

.safety-note { display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
.safety-note .ph { border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--mauve-100); }
.safety-note img { width: 100%; height: 100%; object-fit: cover; }
.safety-note ul { padding-left: 1.1em; color: var(--muted); }
.safety-note li { margin-bottom: 8px; }
@media (max-width: 760px) { .safety-note { grid-template-columns: 1fr; } .safety-note .ph { max-width: 340px; } }

/* ==========================================================
   LEGAL — PRIVACY (sidebar table of contents + numbered sections)
   ========================================================== */
.privacy-layout { display: grid; grid-template-columns: 260px 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.toc { position: sticky; top: 140px; background: var(--mauve-50); border-radius: var(--radius); padding: 22px; }
.toc h2 { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mauve-600); margin-bottom: 12px; }
.toc ol { margin: 0; padding-left: 1.2em; font-size: .93rem; }
.toc li { margin-bottom: 7px; }
.toc a { text-decoration: none; color: var(--indigo); }
.toc a:hover { text-decoration: underline; }
.privacy-body section { padding-bottom: 30px; margin-bottom: 30px; border-bottom: 1px solid var(--line); scroll-margin-top: 140px; }
.privacy-body section:last-child { border-bottom: 0; }
.privacy-body h2 { font-size: 1.45rem; display: flex; gap: 14px; align-items: baseline; }
.privacy-body h2 .n { flex: none; font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--mauve-600); }
.privacy-body h3 { font-size: 1.05rem; margin-top: 18px; color: var(--indigo); }
.privacy-body p, .privacy-body li { color: #3d344c; }
.data-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px 0; }
.data-pair div { border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; }
.data-pair h3 { margin-top: 0; }
.data-pair p { margin: 0; font-size: .95rem; }
@media (max-width: 900px) { .privacy-layout { grid-template-columns: 1fr; } .toc { position: static; } }
@media (max-width: 560px) { .data-pair { grid-template-columns: 1fr; } }

/* ==========================================================
   LEGAL — TERMS (definitions + clause articles)
   ========================================================== */
.terms-wrap { max-width: 900px; }
.definitions { background: var(--indigo); color: var(--white); border-radius: 24px; padding: clamp(24px, 4vw, 36px); margin-bottom: 44px; }
.definitions h2 { color: var(--white); font-size: 1.35rem; }
.definitions dl { display: grid; grid-template-columns: 180px 1fr; gap: 12px 24px; margin: 0; }
.definitions dt { font-weight: 800; color: var(--mauve-200); }
.definitions dd { margin: 0; color: #e0dbf6; }
@media (max-width: 600px) { .definitions dl { grid-template-columns: 1fr; gap: 2px; } .definitions dd { margin-bottom: 12px; } }
.clause { display: grid; grid-template-columns: 84px 1fr; gap: 20px; padding: 28px 0; border-top: 2px solid var(--mauve-100); }
.clause-no { font-size: 2.2rem; font-weight: 800; color: var(--mauve); line-height: 1; letter-spacing: -.03em; }
.clause h2 { font-size: 1.35rem; margin-bottom: 12px; }
.clause ol { padding-left: 0; list-style: none; margin: 0; }
.clause ol li { position: relative; padding-left: 48px; margin-bottom: 10px; color: #3d344c; }
.clause ol li span.sub { position: absolute; left: 0; top: 0; font-weight: 700; color: var(--indigo); font-size: .92rem; }
.clause .callout { background: var(--mauve-50); border-left: 4px solid var(--indigo); border-radius: 0 12px 12px 0; padding: 14px 18px; margin-top: 12px; font-size: .96rem; }
@media (max-width: 600px) { .clause { grid-template-columns: 1fr; gap: 8px; } }

/* ==========================================================
   LEGAL — COOKIE (question cards + table + browser grid)
   ========================================================== */
.cookie-answer { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; background: var(--mauve-50); border: 2px dashed var(--mauve); border-radius: 24px; padding: clamp(22px, 4vw, 34px); margin-bottom: 48px; }
.cookie-answer .ico { width: 70px; height: 70px; border-radius: 50%; background: var(--white); display: grid; place-items: center; color: var(--mauve-600); }
.cookie-answer .ico svg { width: 36px; height: 36px; }
.cookie-answer h2 { font-size: 1.4rem; margin-bottom: 6px; }
.cookie-answer p { margin: 0; color: var(--muted); }
@media (max-width: 560px) { .cookie-answer { grid-template-columns: 1fr; } }
.qa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 52px; }
.qa { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: var(--white); }
.qa h2 { font-size: 1.15rem; color: var(--indigo); }
.qa p { color: #3d344c; font-size: .98rem; }
.qa p:last-child { margin-bottom: 0; }
@media (max-width: 760px) { .qa-grid { grid-template-columns: 1fr; } }
.table-scroll { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); margin: 18px 0 48px; }
.cookie-table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: .95rem; }
.cookie-table th { background: var(--indigo); color: var(--white); text-align: left; padding: 14px 16px; font-weight: 700; }
.cookie-table td { padding: 14px 16px; border-top: 1px solid var(--line); vertical-align: top; color: #3d344c; }
.cookie-table tr:nth-child(even) td { background: var(--mist); }
.pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .8rem; font-weight: 700; }
.pill--no { background: var(--mauve-100); color: var(--plum); }
.pill--maybe { background: #e6e2f7; color: var(--indigo); }
.browser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; list-style: none; padding: 0; margin: 18px 0 48px; }
.browser-grid li { background: var(--mauve-50); border-radius: 14px; padding: 18px; }
.browser-grid strong { display: block; color: var(--indigo); margin-bottom: 4px; }
.browser-grid span { font-size: .92rem; color: var(--muted); }
@media (max-width: 860px) { .browser-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .browser-grid { grid-template-columns: 1fr; } }
.cookie-body { max-width: 980px; }
.cookie-body > h2 { margin-top: 8px; }

/* ==========================================================
   FOOTER (Royal Plum)
   ========================================================== */
.site-footer { position: relative; background: var(--plum); color: #f0dfee; margin-top: 0; }
.footer-wave { display: block; width: 100%; height: 42px; color: var(--plum); background: var(--white); }
.section--tint + .site-footer .footer-wave, .footer-wave.on-tint { background: var(--mauve-50); }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 0 38px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-top p { margin: 0; font-size: clamp(1.3rem, 2.8vw, 1.9rem); font-weight: 800; color: var(--white); max-width: 26ch; line-height: 1.25; }
.footer-top p em { font-family: var(--serif); font-weight: 400; color: var(--mauve-200); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; padding: 46px 0; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: .95rem; color: #e4cfe1; max-width: 34ch; }
.site-footer h2 { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mauve-200); margin-bottom: 16px; }
.foot-links { list-style: none; padding: 0; margin: 0; columns: 1; }
.foot-links li { margin-bottom: 9px; }
.site-footer a { color: #f6e9f4; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.site-footer address { font-size: .98rem; font-weight: 400; color: #f0dfee; margin: 0; }
.foot-mail { font-weight: 700; word-break: break-word; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; padding: 20px 0 26px; border-top: 1px solid rgba(255,255,255,.14); font-size: .88rem; color: #dcc3d8; }
.legal-inline { display: flex; flex-wrap: wrap; gap: 6px 18px; list-style: none; padding: 0; margin: 0; }
.to-top { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: var(--white); padding: 8px 14px; border-radius: 999px; cursor: pointer; font: inherit; font-size: .85rem; font-weight: 600; }
.to-top:hover { background: var(--mauve); color: var(--plum-900); }
.to-top svg { width: 14px; height: 14px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Reveal on scroll (only when JS is active) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; }
}
.cta-band--top { padding-top: clamp(64px, 9vw, 110px); }
.btn { max-width: 100%; text-align: center; overflow-wrap: anywhere; }
/* Refinements */
@media (max-width: 560px) {
  .hero-media { padding: 0 0 0 12px; }
  .hero-media::before { display: none; }
  .video-frame { box-shadow: -12px 12px 0 var(--mauve); }
  .hero-note { position: relative; left: auto; bottom: auto; margin: 26px 0 0; }
}
.footer-wave { margin-bottom: -1px; }
.footer-grid { grid-template-columns: 1.2fr .9fr 1fr 1.3fr; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.foot-mail { word-break: normal; overflow-wrap: anywhere; }
.footer-wave { color: var(--white); background: transparent; margin: -1px 0 0; }
.cookie-body > h2 { margin-top: 44px; }
.footer-grid { grid-template-columns: 1.1fr .8fr 1fr 1.5fr; }
.foot-mail { font-size: .95rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
