/* ════════════════════════════════════════════════════════════════
   GilbeyPink — SHARED STYLES
   Design system + chrome used on every page (nav, footer, cursor,
   buttons, typography, loader, accessibility).
   Page-specific layout lives in each page's inline <style> block,
   which is loaded AFTER this file so it can override where needed.
═════════════════════════════════════════════════════════════════ */

/* ── Page loader ── */
/* CSS-only failsafe: if JS never runs (ancient browsers), the loader still gets out of the way */
@keyframes loader-failsafe { to { opacity: 0; visibility: hidden; } }
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  animation: loader-failsafe .6s ease 4s forwards;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#page-loader .loader-mark { width: clamp(56px, 8vw, 88px); height: auto; opacity: 0; animation: loader-appear 0.8s 0.1s ease forwards; }
#page-loader .loader-wordmark { font-family: 'Libre Baskerville', Georgia, serif; font-size: clamp(1rem, 2.5vw, 1.4rem); color: #262626; letter-spacing: 0.08em; opacity: 0; animation: loader-appear 0.8s 0.35s ease forwards; }
#page-loader .loader-wordmark span { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #FF96B6; }
@keyframes loader-appear { to { opacity: 1; } }

/* ── Reset & tokens ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --charcoal: #262626;
  --pink: #FF96B6;
  --pink-light: #ffe8f0;
  --pink-glow: rgba(255,150,182,0.35);
  --white: #ffffff;
  --cream: #f4f0eb;
  --note-bg: #fdf9f6;
}
html { scroll-behavior: auto; scroll-padding-top: 6rem; }
body { font-family: 'Montserrat', sans-serif; color: var(--charcoal); background: var(--white); overflow-x: hidden; cursor: none; }

/* ─── CURSOR ─── */
#cursor-arrow { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; }
#cursor-arrow svg { display: block; transition: transform .1s; transform-origin: 2px 2px; }
#cursor-arrow path { transition: fill .15s, stroke .15s; }
body.cur-hover #cursor-arrow path { fill: var(--pink); stroke: var(--charcoal); }
body.cur-click #cursor-arrow svg { transform: scale(0.82); }

/* ─── LOGO ─── */
.logo { font-size: 1.45rem; line-height: 1; display: inline-flex; align-items: baseline; text-decoration: none; }
.logo-gilbey { font-family: 'Libre Baskerville', Georgia, serif; font-weight: 400; color: var(--charcoal); letter-spacing: -.04em; }
.logo-pink-word { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--pink); letter-spacing: .04em; }
.logo--white .logo-gilbey { color: var(--white); }

/* ─── NAV ─── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 1.4rem 5vw; display: flex; align-items: center; justify-content: space-between; transition: background .4s, box-shadow .4s; }
nav.scrolled { background: rgba(255,255,255,.95); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(0,0,0,.06); }
nav.dark-nav .logo-gilbey { color: var(--white); }
nav.dark-nav .nav-links a { color: rgba(255,255,255,.65); }
nav.scrolled .logo-gilbey { color: var(--charcoal); }
nav.scrolled .nav-links a { color: var(--charcoal); }
.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links a { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; text-decoration: none; transition: color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--pink); transition: width .25s; }
.nav-links a:hover { color: var(--pink); }
.nav-links a:hover::after { width: 100%; }
/* Current-page marker for top-level links (Portfolio / Tutorials) */
.nav-links > li > a.active { color: var(--pink); }
.nav-links > li > a.active::after { width: 100%; }
/* The Gallery — premium editorial destination, deliberately set apart from
   the functional nav: a softly-glowing outlined chip that fills pink on hover. */
.nav-links a.nav-gallery { font-family: 'Libre Baskerville', Georgia, serif; font-style: italic; font-weight: 400; text-transform: none; letter-spacing: .01em; font-size: .9rem; display: inline-flex; align-items: center; gap: .45rem; padding: .5rem 1.1rem; border: 1px solid rgba(255,150,182,.5); background: rgba(255,150,182,.06); box-shadow: 0 0 18px rgba(255,150,182,.12); transition: background .3s, border-color .3s, box-shadow .3s, color .3s, transform .25s; }
.nav-links a.nav-gallery::after { display: none; }
.nav-links a.nav-gallery .gallery-spark { font-style: normal; font-size: .72rem; color: var(--pink); transition: transform .45s, color .3s; }
.nav-links a.nav-gallery .gallery-arrow { font-style: normal; font-size: .78rem; color: var(--pink); transition: transform .25s, color .3s; }
.nav-links a.nav-gallery:hover { background: var(--pink); border-color: var(--pink); color: var(--charcoal); box-shadow: 0 8px 26px var(--pink-glow); transform: translateY(-1px); }
.nav-links a.nav-gallery:hover .gallery-spark { transform: rotate(90deg) scale(1.15); color: var(--charcoal); }
.nav-links a.nav-gallery:hover .gallery-arrow { transform: translate(2px,-2px); color: var(--charcoal); }
/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: .35rem; padding: 1.6rem 1rem; margin: -1.6rem -1rem; } /* oversized hitbox — moving straight down from the tab never leaves the dropdown */
.nav-dropdown-toggle .arrow { font-size: .55rem; transition: transform .25s ease, color .2s; display: inline-block; }
.nav-dropdown:hover .arrow,
.nav-dropdown.open .arrow,
.nav-dropdown:focus-within .arrow { transform: rotate(180deg); color: var(--pink); }
/* Services mega-panel — charcoal, chamfered corner (hex echo), numbered serif
   entries with one-line descriptions, staggered reveal. Featured video slot
   (.nav-dropdown-feature) is paused until the header video exists — restore the
   2-column grid (1fr 210px, 490px/165px at 980px) when it returns. */
.nav-dropdown-menu { position: absolute; top: 100%; left: 50%; margin-top: 1rem; transform: translateX(-50%) translateY(12px); background: var(--charcoal); width: 360px; padding: 1.5rem; display: grid; grid-template-columns: 1fr; gap: .3rem 1.5rem; border-top: 2px solid var(--pink); box-shadow: 0 24px 64px rgba(0,0,0,.38), 0 0 0 1px rgba(255,150,182,.14); clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s ease, visibility .25s ease, transform .32s cubic-bezier(.22,1,.36,1); z-index: 10; counter-reset: svc; }
/* Invisible hover bridge — spans the gap between the toggle and the panel so
   the menu stays open while the cursor travels down to it. */
.nav-dropdown-menu::after { content: ''; position: absolute; left: 0; right: 0; bottom: 100%; height: 1.6rem; }
.nav-dropdown-menu::before { content: ''; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-bottom-color: var(--pink); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0); }
/* Service links — number, serif italic title, small description */
.nav-dropdown-menu a:not(.nav-dropdown-feature) { counter-increment: svc; grid-column: 1; font-family: 'Libre Baskerville', Georgia, serif; font-style: italic; font-size: 1rem; font-weight: 400; text-transform: none; letter-spacing: 0; color: rgba(255,255,255,.88) !important; padding: .55rem .9rem .6rem; border-left: 1px solid rgba(255,255,255,.1); white-space: nowrap; opacity: 0; transform: translateY(8px); transition: border-color .2s, background .2s, color .2s, transform .25s, opacity .25s; }
.nav-dropdown:hover .nav-dropdown-menu a:not(.nav-dropdown-feature),
.nav-dropdown.open .nav-dropdown-menu a:not(.nav-dropdown-feature),
.nav-dropdown:focus-within .nav-dropdown-menu a:not(.nav-dropdown-feature) { opacity: 1; transform: translateY(0); }
/* Stagger the entrance (delays only on the open state so hover stays instant) */
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(2), .nav-dropdown.open .nav-dropdown-menu a:nth-child(2), .nav-dropdown:focus-within .nav-dropdown-menu a:nth-child(2) { transition: border-color .2s, background .2s, color .2s, transform .3s .05s, opacity .3s .05s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(3), .nav-dropdown.open .nav-dropdown-menu a:nth-child(3), .nav-dropdown:focus-within .nav-dropdown-menu a:nth-child(3) { transition: border-color .2s, background .2s, color .2s, transform .3s .1s, opacity .3s .1s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(4), .nav-dropdown.open .nav-dropdown-menu a:nth-child(4), .nav-dropdown:focus-within .nav-dropdown-menu a:nth-child(4) { transition: border-color .2s, background .2s, color .2s, transform .3s .15s, opacity .3s .15s; }
.nav-dropdown:hover .nav-dropdown-menu a:nth-child(5), .nav-dropdown.open .nav-dropdown-menu a:nth-child(5), .nav-dropdown:focus-within .nav-dropdown-menu a:nth-child(5) { transition: border-color .2s, background .2s, color .2s, transform .3s .2s, opacity .3s .2s; }
.nav-dropdown-menu a:not(.nav-dropdown-feature)::before { content: counter(svc, decimal-leading-zero); position: static; display: inline-block; width: auto; height: auto; background: none; font-family: 'Montserrat', sans-serif; font-style: normal; font-weight: 700; font-size: .58rem; letter-spacing: .1em; color: rgba(255,150,182,.6); margin-right: .6rem; vertical-align: .18em; transition: color .2s; }
.nav-dropdown-menu a:not(.nav-dropdown-feature)::after { content: attr(data-desc); position: static; display: block; width: auto; height: auto; background: none; font-family: 'Montserrat', sans-serif; font-style: italic; font-weight: 300; font-size: .66rem; letter-spacing: .02em; color: rgba(255,255,255,.42); margin: .15rem 0 0 1.5rem; transition: color .2s; }
.nav-dropdown-menu a:not(.nav-dropdown-feature):hover,
.nav-dropdown-menu a:not(.nav-dropdown-feature):focus-visible,
.nav-dropdown-menu a.active:not(.nav-dropdown-feature) { color: var(--pink) !important; border-left-color: var(--pink); background: linear-gradient(90deg, rgba(255,150,182,.09), rgba(255,150,182,0)); transform: translateX(5px); }
.nav-dropdown-menu a:not(.nav-dropdown-feature):hover::before,
.nav-dropdown-menu a.active:not(.nav-dropdown-feature)::before { color: var(--pink); }
/* Featured video slot — reserved home for the header video */
.nav-dropdown-menu .nav-dropdown-feature { position: relative; grid-column: 2; grid-row: 1 / span 5; display: flex; align-items: flex-end; overflow: hidden; border: 1px solid rgba(255,150,182,.28); opacity: 0; transform: translateY(8px); transition: border-color .25s, transform .25s, opacity .25s; }
.nav-dropdown:hover .nav-dropdown-menu .nav-dropdown-feature,
.nav-dropdown.open .nav-dropdown-menu .nav-dropdown-feature,
.nav-dropdown:focus-within .nav-dropdown-menu .nav-dropdown-feature { opacity: 1; transform: translateY(0); transition: border-color .25s, transform .3s .12s, opacity .3s .12s; }
.nav-dropdown-menu .nav-dropdown-feature::before { content: none; }
.nav-dropdown-menu .nav-dropdown-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.5) brightness(.55); transition: filter .35s, transform .5s, opacity .18s ease; }
.nav-dropdown-menu .nav-dropdown-feature::after { content: ''; position: absolute; inset: 0; width: auto; height: auto; background: linear-gradient(180deg, rgba(38,38,38,0) 42%, rgba(38,38,38,.88)); }
.nav-dropdown-menu .nav-dropdown-feature:hover { border-color: var(--pink); }
.nav-dropdown-menu .nav-dropdown-feature:hover img { filter: grayscale(0) brightness(.8); transform: scale(1.05); }
.nav-dropdown-feature .feature-play { position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(255,150,182,.65); z-index: 1; transition: box-shadow .3s, border-color .3s; }
.nav-dropdown-feature .feature-play::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-38%,-50%); border-style: solid; border-width: 7px 0 7px 12px; border-color: transparent transparent transparent var(--pink); }
.nav-dropdown-feature:hover .feature-play { border-color: var(--pink); box-shadow: 0 0 0 8px rgba(255,150,182,.12); }
.nav-dropdown-feature .feature-label { position: relative; z-index: 1; font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.85); padding: .9rem; }
@media (max-width: 980px) { .nav-dropdown-menu { width: 340px; grid-template-columns: 1fr; } }
.nav-cta { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: .7rem 1.6rem; background: var(--pink); color: var(--white); border: none; text-decoration: none; display: inline-block; position: relative; overflow: hidden; transition: box-shadow .3s; }
.nav-cta::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.15); transform: scaleX(0); transform-origin: right; transition: transform .3s; }
.nav-cta:hover::before { transform: scaleX(1); transform-origin: left; }
.nav-cta:hover { box-shadow: 0 6px 24px var(--pink-glow); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }
nav.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--charcoal); z-index: 199; flex-direction: column; justify-content: center; align-items: center; gap: 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.6rem; font-weight: 700; text-transform: uppercase; color: var(--white); text-decoration: none; transition: color .2s; }
.mobile-menu a:hover { color: var(--pink); }
.mobile-menu a.mobile-gallery { font-family: 'Libre Baskerville', Georgia, serif; font-style: italic; font-weight: 400; text-transform: none; color: var(--pink); display: inline-flex; align-items: center; gap: .55rem; border: 1px solid rgba(255,150,182,.5); padding: .65rem 1.75rem; box-shadow: 0 0 22px rgba(255,150,182,.14); transition: background .25s, color .25s; }
.mobile-menu a.mobile-gallery .gallery-spark { font-style: normal; font-size: .9rem; }
.mobile-menu a.mobile-gallery:hover { background: var(--pink); color: var(--charcoal); }
.mobile-menu .mobile-services-group { display: flex; flex-direction: column; align-items: center; gap: .9rem; }
.mobile-menu .mobile-services-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.3); }
.mobile-menu .mobile-services-group a { font-size: 1.1rem; }

/* ─── BUTTONS ─── */
.btn-primary { font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 1rem 2.5rem; background: var(--pink); color: var(--white); border: none; text-decoration: none; display: inline-block; position: relative; overflow: hidden; transition: box-shadow .3s, transform .2s; }
.btn-primary::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent); transform: translateX(-100%); transition: transform .5s; }
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover { box-shadow: 0 10px 40px var(--pink-glow); transform: translateY(-2px); }
/* Ghost (light) — transparent with white border on dark backgrounds. Both class names are aliases. */
.btn-ghost, .btn-ghost-light { font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; padding: 1rem 2.5rem; background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.2); text-decoration: none; display: inline-block; transition: border-color .25s, color .25s; }
.btn-ghost:hover, .btn-ghost-light:hover { border-color: var(--pink); color: var(--pink); }
.btn-dark { font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 1rem 2.5rem; background: var(--charcoal); color: var(--white); border: none; text-decoration: none; display: inline-block; transition: background .25s, transform .2s; }
.btn-dark:hover { background: #111; transform: translateY(-2px); }
.btn-pink-outline { font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: .85rem 2rem; background: transparent; color: var(--pink); border: 1.5px solid var(--pink); text-decoration: none; display: inline-block; transition: background .2s, color .2s; }
.btn-pink-outline:hover { background: var(--pink); color: var(--white); }

/* ─── SECTION TYPOGRAPHY ─── */
.section-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--pink); margin-bottom: 1rem; }
.section-title { font-family: 'Libre Baskerville', Georgia, serif; font-size: clamp(2rem, 4vw, 3.75rem); font-weight: 400; line-height: 1.12; margin-bottom: 1.25rem; }
.section-title em { font-style: italic; color: var(--pink); }
.section-body { font-size: .97rem; font-weight: 300; font-style: italic; color: #555; line-height: 1.85; max-width: 54ch; }
.body-pink { color: var(--pink); font-weight: 700; font-style: normal; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-d5 { transition-delay: .5s; }
.reveal-d6 { transition-delay: .6s; }

/* ─── FOOTER ─── */
footer { background: #1a1a1a; padding: 5rem 5vw 2.5rem; position: relative; overflow: hidden; }
#footer-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 4rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 2rem; position: relative; z-index: 1; }
.footer-brand p { font-size: .82rem; font-weight: 300; font-style: italic; color: rgba(255,255,255,.35); line-height: 1.75; margin-top: 1.25rem; max-width: 26ch; }
.footer-col h4 { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.25); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: .75rem; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--pink); }
.footer-link-tooltip { position: relative; display: inline-block; }
.footer-link-tooltip .tooltip-url { position: absolute; bottom: calc(100% + 8px); left: 0; background: rgba(255,150,182,.12); border: 1px solid rgba(255,150,182,.3); color: var(--pink); font-size: .62rem; font-weight: 600; letter-spacing: .04em; padding: .4rem .75rem; white-space: nowrap; pointer-events: none; opacity: 0; transform: translateY(4px); transition: opacity .2s, transform .2s; }
.footer-link-tooltip:hover .tooltip-url { opacity: 1; transform: translateY(0); }
.footer-email-btn { display: inline-block; margin-top: 1.25rem; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; padding: .65rem 1.4rem; background: var(--pink); color: var(--white); text-decoration: none; transition: box-shadow .25s, transform .2s; }
.footer-email-btn:hover { box-shadow: 0 6px 24px var(--pink-glow); transform: translateY(-2px); color: var(--white); }
.footer-contact-item { display: flex; align-items: center; gap: .6rem; }
.footer-contact-item svg { flex-shrink: 0; opacity: .4; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; position: relative; z-index: 1; }
.footer-bottom p { font-size: .68rem; color: rgba(255,255,255,.18); }
.footer-bottom p a { color: rgba(255,255,255,.25); text-decoration: none; }
.footer-socials { display: flex; gap: 1.25rem; }
.footer-socials a { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.25); text-decoration: none; transition: color .2s; }
.footer-socials a:hover { color: var(--pink); }

/* ─── YOUTUBE LITE EMBED (any [data-yt] box — see site.js) ─── */
.yt-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.3) brightness(.65); transition: filter .35s; }
[data-yt]:hover .yt-thumb { filter: grayscale(0) brightness(.9); }
.yt-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
[data-yt].yt-ready { cursor: none; }
@media (hover: none), (pointer: coarse) { [data-yt].yt-ready { cursor: pointer; } }

/* ─── COOKIE CONSENT BANNER ─── */
.cookie-banner { position: fixed; left: 1.25rem; right: 1.25rem; bottom: 1.25rem; z-index: 9998; max-width: 720px; margin: 0 auto; background: var(--charcoal); border: 1px solid rgba(255,150,182,.25); box-shadow: 0 12px 40px rgba(0,0,0,.35); padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: space-between; opacity: 0; transform: translateY(16px); transition: opacity .35s ease, transform .35s ease; }
.cookie-banner.show { opacity: 1; transform: translateY(0); }
.cookie-banner p { font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.7); line-height: 1.65; flex: 1 1 280px; margin: 0; }
.cookie-banner a { color: var(--pink); text-decoration: none; }
.cookie-banner a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: .65rem; flex-shrink: 0; }
.cookie-btn { font-family: 'Montserrat', sans-serif; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: .65rem 1.4rem; border: none; cursor: none; transition: box-shadow .25s, background .25s, color .25s; }
.cookie-decline { background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.2); }
.cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,.4); }
.cookie-accept { background: var(--pink); color: var(--white); }
.cookie-accept:hover { box-shadow: 0 6px 24px var(--pink-glow); }
@media (hover: none), (pointer: coarse) { .cookie-btn { cursor: pointer; } }

/* ─── KEYFRAMES ─── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes wordReveal { to { transform: translateY(0); } }

/* ─── SKIP LINK / FOCUS ─── */
.skip-link { position: absolute; top: -60px; left: 1rem; z-index: 9999; background: var(--pink); color: var(--white); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: .75rem 1.25rem; text-decoration: none; transition: top .2s; }
.skip-link:focus { top: 1rem; }
a:focus-visible, button:focus-visible, [role="button"]:focus-visible, .hamburger:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; border-radius: 2px; }

/* ─── TOUCH / COARSE POINTER: drop the custom cursor ─── */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  #cursor-arrow { display: none; }
  a, button, [role="button"], .hamburger { cursor: pointer; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-eyebrow, .hero-sub, .hero-actions, .hero-stats-bar { opacity: 1 !important; animation: none !important; }
  .hero-headline .word-inner { transform: none !important; animation: none !important; }
  .page-hero-title, .page-hero-sub { opacity: 1 !important; animation: none !important; }
}

/* ─── SHARED RESPONSIVE (nav + footer) ─── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}
