/* Robin Wessels — faithful rebuild (clean code). Specs read from the live original. */

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("/wp-content/uploads/2026/05/CabinetGrotesk-Black.woff2") format("woff2");
  font-weight: 900; font-style: normal; font-display: swap;
}

:root {
  --yellow: #fff300;
  --cream: #fffbe9;
  --ink: #0a0a0a;
  --charcoal: #141517;
  --line: rgba(255, 251, 233, 0.14);
  --muted: #a7a89f;
  --maxw: 1340px;
  --font-display: "Cabinet Grotesk", "Inter Tight", sans-serif;
  --font-body: "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;
  --c-infinity-bg: #00806d;   --c-infinity-text: #00e997;
  --c-arteselect-bg: #33413d; --c-arteselect-text: #b5a072;
  --c-zuko-bg: #66007f;       --c-zuko-text: #b65bff;
  --btn-radius: 999px;
  /* global type scale (centraal aanpasbaar) */
  --fs-h1: clamp(2.6rem, 6vw, 5rem);
  --fs-h2: clamp(2.1rem, 4.6vw, 3.5rem);
  --fs-h3: 1.45rem;
  --fs-h4: 1.05rem;
  --fs-h5: .92rem;
  --fs-lead: 1.18rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--cream); font-family: var(--font-body);
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ---- Global typography (één plek voor alle koppen/tekst) ---- */
h1, h2 { font-family: var(--font-display); font-weight: 900; line-height: 1.02; letter-spacing: -0.01em; }
h3, h4, h5, h6 { font-family: var(--font-body); font-weight: 700; line-height: 1.2; }
h1, h2, h3, h4, h5, h6 { margin: 0; color: var(--cream); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
p { margin: 0; }
.display { text-transform: uppercase; }
.hl { color: var(--yellow); }
.eyebrow { font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--yellow); margin: 0 0 16px; }
.lead { color: var(--muted); font-size: 1.12rem; }
.section { padding: 110px 0; }
.sec-head { margin-bottom: 48px; }
.sec-head.center { text-align: center; }
.sec-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }

/* ---------- Buttons (shine + rotating arrow, no glow/lift) ---------- */
.btn { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; padding: 13px 16px 13px 24px;
  border-radius: var(--btn-radius); border: 1px solid transparent; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.btn--primary { background: var(--yellow); color: #000; }
.btn--ghost { background: transparent; color: var(--cream); border-color: var(--line); padding: 13px 26px; }
.btn--ghost:hover { border-color: var(--cream); }
.btn .arr { position: relative; overflow: hidden; display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; flex: none; }
.btn--primary .arr { background: #000; color: var(--yellow); }
.btn--ghost .arr { background: rgba(255,255,255,.1); color: var(--cream); }
.btn .arr svg { grid-area: 1 / 1; width: 16px; height: 16px; transition: transform .3s ease; }
.btn .arr svg path { stroke-linecap: round; stroke-linejoin: round; }
.btn:hover .arr svg:first-child { transform: translateX(160%); }
.btn .arr svg:last-child { transform: translateX(-160%); }
.btn:hover .arr svg:last-child { transform: translateX(0); }
.btn--primary::after { content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.55), transparent); transform: skewX(-18deg); }
.btn--primary:hover::after { animation: btn-shine 1.3s linear infinite; }
@keyframes btn-shine { 0% { left: -130%; } 100% { left: 170%; } }

/* ---------- Floating pill header + scroll progress ---------- */
.site-header { position: fixed; top: 18px; left: 0; right: 0; z-index: 100; display: flex; justify-content: center; padding: 0 22px; }
.nav-pill { width: 100%; max-width: var(--maxw); position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: rgba(0,0,0,.33); border: 1.2px solid rgba(255,255,255,.18); border-radius: 50px;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); padding: 12px 16px 12px 40px; box-shadow: 0 18px 50px rgba(0,0,0,.5); }
.nav-progress { position: absolute; left: 24px; bottom: -1px; height: 2px; width: 0; max-width: calc(100% - 48px);
  background: var(--yellow); border-radius: 2px; box-shadow: 0 0 10px rgba(255,243,0,.6); transition: width .12s linear; }
.brand img { height: 36px; width: auto; display: block; }
.nav-menu { display: flex; align-items: center; gap: 34px; }
.nav-menu > a, .nav-item > .nav-trigger { font-weight: 500; color: var(--cream); opacity: .9; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; transition: color .15s, opacity .15s; }
.nav-menu > a:hover, .nav-item:hover > .nav-trigger { color: var(--yellow); opacity: 1; }
.nav-item { position: static; }
.caret { font-size: .68rem; opacity: .7; transition: transform .2s; }
.nav-item:hover .caret { transform: rotate(180deg); color: var(--yellow); }
/* Mega menu (full pill width) */
.mega { position: absolute; top: 100%; left: 0; right: 0; padding-top: 6px; opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s; transform: translateY(8px); }
.nav-item:hover .mega, .nav-item.open .mega { opacity: 1; visibility: visible; transform: none; }
.mega-inner { background: rgba(12,12,12,.97); border: 1px solid var(--line); border-radius: 24px; padding: 36px 44px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; backdrop-filter: blur(22px); box-shadow: 0 30px 70px rgba(0,0,0,.6); }
.mega-col h4 { font-family: var(--font-display); font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; margin: 0 0 14px; }
.mega-col a { display: block; padding: 7px 0; color: var(--cream); opacity: .82; font-weight: 500; transition: color .15s, opacity .15s; }
.mega-col a:hover { color: var(--yellow); opacity: 1; }
.mega-foot { grid-column: 1 / -1; border-top: 1px solid var(--line); margin-top: 6px; padding-top: 16px; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .9rem; }
.mega-foot .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 12px var(--yellow); }
.nav-right { display: flex; align-items: center; gap: 12px; }
/* Hamburger (2 bars -> X) */
.hamburger { display: none; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; padding: 0; place-items: center; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.hamburger span + span { margin-top: 7px; }
.hamburger.open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.hamburger.open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
/* Mobile top sheet */
.mobile-panel { position: fixed; top: 0; left: 0; right: 0; z-index: 95; transform: translateY(-100%); transition: transform .38s cubic-bezier(.4,0,.2,1);
  background: rgba(10,10,10,.99); border-bottom: 1px solid var(--line); padding: 100px 28px 36px; display: flex; flex-direction: column; gap: 4px; }
.mobile-panel.open { transform: translateY(0); }
.mobile-panel a { padding: 16px 4px; font-size: 1.25rem; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-panel .btn { margin-top: 22px; justify-content: center; }

/* ---------- Hero (two-column: text + steps) ---------- */
.hero { position: relative; padding: 170px 0 100px; }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(760px 420px at 70% 0%, rgba(255,243,0,.12), transparent 60%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.badge { display: inline-flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 600; color: var(--yellow);
  border: 1px solid rgba(255,243,0,.4); border-radius: 999px; padding: 8px 16px; margin-bottom: 28px; }
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 12px var(--yellow); }
.hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
.hero .lead { font-size: 1.18rem; margin: 26px 0 36px; max-width: 52ch; }
.hero .lead a { color: var(--yellow); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-right { display: flex; flex-direction: column; gap: 16px; }
.avail { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .92rem; margin-bottom: 4px; }
.avail .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 12px var(--yellow); }
.step { position: relative; background: var(--charcoal); border: 1px solid var(--line); border-radius: 20px; padding: 26px 30px; transition: border-color .2s; }
.step:hover { border-color: rgba(255,243,0,.35); }
.step .num { color: var(--yellow); font-family: var(--font-display); font-size: .82rem; letter-spacing: .08em; }
.step h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.3rem; margin: 8px 0 10px; }
.step p { color: var(--muted); margin: 0; font-size: .95rem; max-width: 44ch; }
.step .step-ic { position: absolute; top: 24px; right: 24px; width: 42px; height: 42px; border: 1px solid rgba(255,243,0,.5);
  border-radius: 11px; display: grid; place-items: center; color: var(--yellow); }
.step .step-ic svg { width: 20px; height: 20px; }
/* staircase: each step indents a bit more to the right */
.hero-right .step:nth-of-type(3) { margin-left: 36px; }
.hero-right .step:nth-of-type(4) { margin-left: 72px; }

/* ---------- Diensten (tabbed) ---------- */
.svc-tabs { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; }
.svc-pills { display: flex; flex-direction: column; gap: 16px; }
.svc-pill { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; font-family: var(--font-body);
  font-weight: 700; font-size: 1.05rem; color: var(--cream); background: rgba(255,251,233,.03); border: 1px solid var(--line);
  border-radius: 999px; padding: 18px 26px; cursor: pointer; transition: .18s; }
.svc-pill .ic { width: 22px; height: 22px; flex: none; }
.svc-pill:hover { border-color: rgba(255,243,0,.45); }
.svc-pill.active { background: var(--yellow); color: #000; border-color: var(--yellow); }
.svc-preview { position: relative; border-radius: 22px; overflow: hidden; min-height: 470px; background: #111; }
.svc-panel { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .3s; }
.svc-panel.active { opacity: 1; visibility: visible; }
.svc-panel img { width: 100%; height: 100%; object-fit: cover; }
.svc-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px; background: linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.45) 55%, transparent); }
.svc-overlay h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.5rem; margin-bottom: 8px; }
.svc-overlay p { color: #e9e7da; margin: 0; max-width: 52ch; }

/* ---------- Cases (D-shape, brand colours) ---------- */
.cases-slider { overflow: hidden; }
.cases-track { display: flex; gap: 26px; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.case { flex: 0 0 calc(33.333% - 18px); position: relative; border-radius: 0 60px 60px 0; padding: 30px 30px 26px; min-height: 540px; display: flex; flex-direction: column; color: #fffbe9; overflow: hidden; }
.cases-nav { display: flex; justify-content: center; gap: 14px; margin-top: 30px; }
.cases-nav button { width: 50px; height: 50px; border-radius: 50%; background: var(--yellow); color: #000; border: 0; cursor: pointer; display: grid; place-items: center; transition: transform .15s; }
.cases-nav button:hover { transform: scale(1.08); }
.cases-nav svg { width: 20px; height: 20px; }
.case--infinity { background: var(--c-infinity-bg); }
.case--arteselect { background: var(--c-arteselect-bg); }
.case--zuko { background: var(--c-zuko-bg); }
.case--infinity .client { color: var(--c-infinity-text); }
.case--arteselect .client { color: var(--c-arteselect-text); }
.case--zuko .client { color: var(--c-zuko-text); }
.case .client { font-weight: 700; font-family: var(--font-body); margin-bottom: 8px; }
.case h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.45rem; line-height: 1.15; }
.case .shot { flex: 1; display: grid; place-items: center; padding: 16px 0; }
.case .shot img { max-height: 340px; width: auto; filter: drop-shadow(0 24px 40px rgba(0,0,0,.4)); }
.case .pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; background: rgba(0,0,0,.45); color: #fffbe9;
  border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 7px 14px; }
.pill svg { width: 14px; height: 14px; }

/* ---------- Testimonials ---------- */
.rating-pill { display: inline-flex; align-items: center; gap: 12px; margin: 18px auto 0; background: rgba(255,251,233,.04); border: 1px solid var(--line); border-radius: 999px; padding: 10px 22px; }
.rating-pill .stars { color: var(--yellow); letter-spacing: 2px; }
.rating-pill .score { font-family: var(--font-display); }
.rating-pill img { height: 22px; width: auto; }
#reviews { position: relative; overflow: hidden; }
#reviews::before { content: ""; position: absolute; left: 50%; top: 45%; width: 600px; height: 600px; max-width: 116%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(255,243,0,.20), transparent 56%); pointer-events: none; }
#reviews > .container { position: relative; z-index: 1; }
.quotes-slider { overflow: hidden; margin-top: 44px; }
.quotes-track { display: flex; gap: 24px; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.quote { flex: 0 0 calc(50% - 12px); border: 1.2px solid rgba(255,251,233,.28); border-radius: 15px; padding: 30px; display: flex; flex-direction: column; gap: 18px;
  background: radial-gradient(120% 80% at 0% 0%, rgba(255,243,0,.05), transparent 60%); opacity: .38; transition: opacity .45s ease, border-color .45s ease; }
.quote.is-active { opacity: 1; border-color: rgba(255,243,0,.45); }
.quotes-nav { display: flex; justify-content: center; gap: 14px; margin-top: 30px; }
.quotes-nav button { width: 50px; height: 50px; border-radius: 50%; background: var(--yellow); color: #000; border: 0; cursor: pointer; display: grid; place-items: center; transition: transform .15s; }
.quotes-nav button:hover { transform: scale(1.08); }
.quotes-nav svg { width: 20px; height: 20px; }
.quote .top { display: flex; align-items: center; justify-content: space-between; }
.quote .who b { font-family: var(--font-body); display: block; }
.quote .who span { color: var(--muted); font-size: .85rem; }
.quote .vbadge { color: var(--yellow); display: inline-flex; }
.quote .vbadge svg { width: 24px; height: 24px; }
.quote .qstars { color: var(--yellow); letter-spacing: 2px; font-size: .95rem; }
.quote p { margin: 0; font-style: italic; color: #ded9c8; }

/* ---------- CTA + contact form ---------- */
.cta-band { position: relative; border-radius: 28px; padding: 64px 48px 56px; background: radial-gradient(80% 130% at 50% 0%, rgba(255,243,0,.14), transparent 60%), var(--charcoal); border: 1px solid var(--line); }
.cta-band .ctah { text-align: center; }
.cta-band h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.cta-note { position: relative; display: inline-block; margin: 18px auto 36px; border-radius: 999px; padding: 1.6px; overflow: hidden; isolation: isolate; }
.cta-note::before { content: ""; position: absolute; left: 50%; top: 50%; width: 320%; aspect-ratio: 1; z-index: 0;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 250deg, var(--yellow) 312deg, #fffce0 332deg, var(--yellow) 350deg, transparent 360deg);
  animation: cta-spin 4s linear infinite; }
.cta-note-inner { position: relative; z-index: 1; display: inline-block; background: #1F1E0A; border-radius: 999px; padding: 13px 26px; color: var(--cream); }
.cta-note .hl { color: var(--yellow); }
@keyframes cta-spin { 0% { transform: translate(-50%,-50%) rotate(0); } 100% { transform: translate(-50%,-50%) rotate(360deg); } }
.cform { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform .full { grid-column: 1 / -1; }
.cform input, .cform textarea { width: 100%; background: rgba(255,251,233,.03); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; color: var(--cream); font-family: var(--font-body); font-size: 1rem;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.cform input::placeholder, .cform textarea::placeholder { color: #8d8e86; }
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,243,0,.16); background: rgba(255,251,233,.05); }
.cform textarea { min-height: 130px; resize: vertical; }
.cform .check { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .92rem; }
.cform .check input { width: auto; accent-color: var(--yellow); }
.cform .btn { width: 100%; justify-content: center; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 17px; }

/* ---------- FAQ (animated) ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 0; font-family: var(--font-body); font-weight: 600; font-size: 1.12rem;
  display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .fic { position: relative; width: 20px; height: 20px; flex: none; }
.faq summary .fic::before, .faq summary .fic::after { content: ""; position: absolute; background: var(--yellow); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.faq summary .fic::before { left: 0; top: 50%; width: 100%; height: 2.5px; transform: translateY(-50%); }
.faq summary .fic::after { top: 0; left: 50%; width: 2.5px; height: 100%; transform: translateX(-50%); }
.faq details[open] summary .fic::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq .faq-a { overflow: hidden; }
.faq details[open] .faq-a { animation: faqOpen .32s ease; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-8px); max-height: 0; } to { opacity: 1; transform: none; max-height: 400px; } }
.faq .faq-a p { color: var(--muted); margin: 0 0 22px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 0 0 36px; }
.lets { font-family: var(--font-display); text-align: center; font-size: clamp(2.4rem, 7vw, 5rem); padding: 64px 0; border-bottom: 1px solid var(--line); }
.foot-main { display: grid; grid-template-columns: 1.4fr 1.1fr 1fr 1fr; gap: 40px; padding: 56px 0 40px; }
.foot-logo img { height: 60px; margin-bottom: 22px; }
.foot-logo p { margin: 4px 0; font-weight: 600; }
.foot-logo p span { color: var(--muted); font-weight: 400; }
.foot-col h4 { font-family: var(--font-display); font-size: 1.05rem; text-transform: uppercase; margin: 0 0 18px; }
.foot-col a { display: block; padding: 6px 0; opacity: .88; }
.foot-col a:hover { color: var(--yellow); }
.foot-col a.mail-pill { display: inline-flex; align-items: center; gap: 14px; background: var(--yellow); color: #000; font-weight: 600;
  border-radius: 999px; padding: 9px 9px 9px 22px; margin-bottom: 20px; max-width: 100%; opacity: 1; transition: transform .15s ease; }
.foot-col a.mail-pill:hover { transform: translateY(-2px); color: #000; }
.mail-pill .lbl { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mail-pill .arr { flex: none; position: relative; overflow: hidden; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: #000; color: var(--yellow); }
.mail-pill .arr svg { grid-area: 1 / 1; width: 15px; height: 15px; transition: transform .3s ease; }
.mail-pill .arr svg path { stroke-linecap: round; stroke-linejoin: round; }
.mail-pill .arr svg:last-child { transform: translateX(-160%); }
.mail-pill:hover .arr svg:first-child { transform: translateX(160%); }
.mail-pill:hover .arr svg:last-child { transform: translateX(0); }
.socials { display: flex; gap: 10px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--cream); transition: .15s; }
.socials a:hover { background: var(--yellow); color: #000; border-color: var(--yellow); }
.socials svg { width: 18px; height: 18px; }
.foot-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px 24px; padding: 32px 0; border-top: 1px solid var(--line); }
.foot-links a { color: var(--muted); font-size: .88rem; padding: 5px 0; }
.foot-links a:hover { color: var(--yellow); }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 24px; color: var(--muted); font-size: .85rem; }
.foot-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
/* ---------- Cookie consent banner ---------- */
.cookie-banner { position: fixed; left: 20px; bottom: 20px; z-index: 200; max-width: 420px;
  background: #16181a; border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.cookie-banner.hidden { display: none; }
.cookie-banner .cb-text { margin: 0 0 16px; color: var(--cream); line-height: 1.5; font-size: .95rem; }
.cookie-banner .cb-text a { color: var(--yellow); }
.cookie-banner .cb-actions { display: flex; flex-direction: column; gap: 8px; }
.cookie-banner button, .cb-prefs button { font-family: var(--font-body); font-weight: 600; font-size: .95rem; padding: 11px 18px;
  border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--cream); cursor: pointer; transition: border-color .15s, filter .15s; }
.cookie-banner button:hover, .cb-prefs button:hover { border-color: var(--cream); }
.cookie-banner button.cb-accept, .cb-prefs button.cb-accept { background: var(--yellow); color: #000; border-color: var(--yellow); }
.cookie-banner button.cb-accept:hover, .cb-prefs button.cb-accept:hover { filter: brightness(1.06); }
.cb-overlay { position: fixed; inset: 0; z-index: 210; background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 20px; }
.cb-overlay.open { display: flex; }
.cb-prefs { background: #16181a; border: 1px solid var(--line); border-radius: 18px; padding: 30px; max-width: 480px; width: 100%; }
.cb-prefs h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.3rem; margin: 0 0 6px; }
.cb-prefs-sub { color: var(--muted); margin: 0 0 20px; font-size: .92rem; }
.cb-cat { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.cb-cat-info h4 { font-family: var(--font-body); font-weight: 700; margin: 0 0 4px; font-size: 1rem; }
.cb-cat-info p { color: var(--muted); margin: 0; font-size: .85rem; }
.cb-tag { flex: none; color: var(--muted); font-size: .82rem; }
.cb-toggle { position: relative; flex: none; width: 44px; height: 24px; }
.cb-toggle input { opacity: 0; width: 0; height: 0; }
.cb-slider { position: absolute; inset: 0; background: rgba(255,251,233,.18); border-radius: 999px; cursor: pointer; transition: background .2s; }
.cb-slider::before { content: ""; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform .2s, background .2s; }
.cb-toggle input:checked + .cb-slider { background: var(--yellow); }
.cb-toggle input:checked + .cb-slider::before { transform: translateX(20px); background: #000; }
@media (max-width: 560px) { .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; } }

/* ---------- Sub-service pages ---------- */
.sub-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 980px; margin: 50px auto 0; }
.sub-point { display: flex; gap: 12px; align-items: flex-start; background: var(--charcoal); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; }
.sub-point .sp-check { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--yellow); color: #000; display: grid; place-items: center; font-weight: 700; font-size: .85rem; }
.sub-point p { margin: 0; color: var(--cream); }
@media (max-width: 880px) { .sub-points { grid-template-columns: 1fr; } }

/* ---------- Legal pages ---------- */
.container.narrow { max-width: 820px; }
.legal h1 { margin-bottom: 6px; }
.legal h2 { font-family: var(--font-display); font-size: 1.5rem; margin: 38px 0 12px; }
.legal h3 { margin: 24px 0 8px; }
.legal p { color: #d8d4c4; margin: 0 0 16px; line-height: 1.7; }
.legal ol, .legal ul { color: #d8d4c4; margin: 0 0 18px; padding-left: 22px; line-height: 1.7; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--yellow); }

/* ---------- Case study ---------- */
.case-showcase { max-width: 760px; margin: 44px auto 0; border-radius: 24px; padding: 44px; display: grid; place-items: center; }
.case-showcase img { max-height: 420px; width: auto; filter: drop-shadow(0 24px 50px rgba(0,0,0,.45)); }
.ch-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 18px; }
.case-blocks { max-width: 740px; margin: 50px auto 0; display: grid; gap: 26px; }
.case-block h3 { font-size: 1.35rem; margin-bottom: 8px; }
.case-block p { color: var(--muted); margin: 0; }
.case-quote { max-width: 740px; margin: 44px auto 0; border-left: 3px solid var(--yellow); padding: 6px 0 6px 24px; }
.case-quote blockquote { margin: 0; font-size: 1.2rem; font-style: italic; color: #ded9c8; }
.case-quote figcaption { margin-top: 12px; color: var(--muted); font-weight: 600; }

/* ---------- Service pages ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.feature { display: flex; flex-direction: column; gap: 10px; background: var(--ink); border: 1px solid var(--line); border-radius: 16px; padding: 28px; transition: border-color .2s, transform .2s; }
.section--alt .feature { background: var(--charcoal); }
.feature:hover { border-color: rgba(255,243,0,.4); transform: translateY(-3px); }
.feature h3 { font-size: 1.2rem; }
.feature p { color: var(--muted); flex: 1; margin: 0; }
.feature .arrow { color: var(--yellow); font-weight: 600; margin-top: 6px; }
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Contact page ---------- */
.section-top { padding-top: 150px; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: start; margin-top: 48px; }
.contact-aside h3, .contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 12px; }
.contact-aside p { color: var(--muted); margin-bottom: 22px; }
.contact-aside .contact-or { margin-top: 28px; }
.contact-aside .contact-or a { color: var(--yellow); font-weight: 600; }
.contact-aside .socials { margin-top: 22px; }
.contact-form-wrap { background: var(--charcoal); border: 1px solid var(--line); border-radius: 20px; padding: 32px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } .section-top { padding-top: 120px; } }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right .step { margin-left: 0 !important; }
  .foot-main { grid-template-columns: 1fr 1fr; }
  .foot-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .nav-menu, .nav-right .btn { display: none; }
  .hamburger { display: grid; }
  .nav-pill { padding-left: 26px; }
  .svc-tabs, .cases { grid-template-columns: 1fr; }
  .quote { flex-basis: 100%; }
  .hero-right .step { margin-left: 0 !important; }
  .case { border-radius: 0 40px 40px 0; min-height: auto; }
  .cform { grid-template-columns: 1fr; }
  .foot-main, .foot-links { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .hero { padding: 140px 0 70px; }
  .cta-band { padding: 44px 22px; }
}
