/* ============================================================
   Yolko Media — design tokens + components
   ============================================================ */
:root {
  --cyan: #00C1E8;
  --cyan-600: #00A6C7;
  --cyan-700: #008CAB;
  --cyan-50: #E6F9FE;

  --ink: #0B1726;
  --ink-700: #1F2C3D;
  --ink-600: #3B4A5C;
  --ink-400: #7B8794;
  --ink-300: #A6B0BC;

  --surface: #FFFFFF;
  --surface-alt: #F7FAFC;
  --border: #E5EBF1;

  --shadow-sm: 0 1px 2px rgba(11, 23, 38, .04), 0 1px 1px rgba(11, 23, 38, .03);
  --shadow-md: 0 12px 32px -12px rgba(0, 193, 232, .25), 0 2px 8px rgba(11, 23, 38, .04);
  --shadow-lg: 0 24px 48px -16px rgba(0, 193, 232, .28), 0 4px 12px rgba(11, 23, 38, .06);

  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  --max-w: 1180px;
  --space: clamp(1.5rem, 2vw, 2rem);
  --section-y: clamp(4rem, 8vw, 7rem);

  --t-fast: 180ms cubic-bezier(.4, 0, .2, 1);
  --t-base: 280ms cubic-bezier(.4, 0, .2, 1);

  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
}

/* ============================================================
   Reset + base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, iframe { max-width: 100%; display: block; }
a { color: var(--cyan-700); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--cyan-600); }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; color: var(--ink); line-height: 1.15; letter-spacing: -.01em; margin: 0 0 .75em; }
h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.875rem, 3vw + .5rem, 2.75rem); letter-spacing: -.02em; }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--ink-600); }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

.skip-link { position: absolute; top: -100px; left: 1rem; background: var(--ink); color: #fff; padding: .75rem 1rem; border-radius: var(--radius-sm); z-index: 100; }
.skip-link:focus { top: 1rem; }

.eyebrow {
  display: inline-block;
  font: 600 .8125rem/1 var(--font-body);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan-700);
  background: var(--cyan-50);
  padding: .5rem .875rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.section { padding-block: var(--section-y); }
.section-alt { background: var(--surface-alt); }
.section-head { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.section-head h2 { margin-bottom: 1rem; }
.section-sub { font-size: 1.125rem; color: var(--ink-600); }
.section-kicker { text-align: center; color: var(--ink-400); font-size: 1rem; margin: 0 0 3rem; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: .9rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn-sm { padding: .55rem 1.1rem; font-size: .9375rem; }
.btn-primary {
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(0, 193, 232, .55);
}
.btn-primary:hover { background: var(--cyan-600); color: #fff; transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(0, 193, 232, .65); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan-700); }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), background var(--t-base);
}
.site-header.is-scrolled { border-bottom-color: var(--border); background: rgba(255, 255, 255, .94); }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1rem; }
.brand { display: inline-flex; align-items: center; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: .02em;
  color: var(--ink);
}
.brand-dot { color: var(--cyan); margin-inline: .15em; }

.nav-desktop { display: flex; align-items: center; gap: 2rem; }
.nav-desktop ul { display: flex; gap: 1.75rem; }
.nav-desktop a {
  font: 500 .9375rem/1 var(--font-body);
  color: var(--ink-600);
  position: relative;
  padding: .25rem 0;
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--cyan);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base);
}
.nav-desktop a:hover::after { transform: scaleX(1); }
.nav-desktop a.btn { color: #fff; padding: .55rem 1.1rem; }
.nav-desktop a.btn::after { display: none; }
.nav-desktop a.btn:hover { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: transparent; border: 0; padding: .5rem;
  cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--t-base), opacity var(--t-base); }
.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 {
  position: fixed; inset: 64px 0 0 0;
  background: var(--surface);
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem);
  z-index: 40;
  overflow: auto;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav a {
  display: block; padding: 1rem 0;
  font: 500 1.5rem/1 var(--font-display);
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { margin-top: 2rem; width: 100%; }

@media (max-width: 820px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-block: clamp(5rem, 10vw, 8rem) clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: url("assets/hero-bg.svg") center/cover no-repeat,
              linear-gradient(180deg, var(--cyan-50) 0%, #fff 70%);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 980px; text-align: center; margin-inline: auto; }
.hero-title {
  font-size: clamp(2.25rem, 5vw + 1rem, 4.75rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero-rotator {
  display: block;
  position: relative;
  min-height: 2.2em;
  color: var(--cyan);
  text-align: center;
}
.hero-word {
  position: absolute; inset: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 500ms ease, transform 500ms ease;
  pointer-events: none;
}
.hero-word.is-active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.hero-sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-600); max-width: 640px; margin: 0 auto 2rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-logos {
  display: flex; gap: clamp(1.5rem, 4vw, 3rem); justify-content: center; flex-wrap: wrap;
  margin-top: 4rem;
  font: 500 .875rem/1 var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.hero-logos li { transition: color var(--t-fast); }
.hero-logos li:hover { color: var(--ink-600); }

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  max-width: 920px;
  margin-inline: auto;
}
.about-mark {
  background: var(--cyan-50);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: inline-flex;
}
.about-grid h2 { margin-top: 0; }
.lead { font-size: clamp(1.125rem, 1.5vw, 1.375rem); line-height: 1.5; color: var(--ink-600); }
@media (max-width: 640px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

.icon-circle {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--cyan-50);
  color: var(--cyan-700);
  margin-bottom: 1.25rem;
}
.icon-circle.lg { width: 56px; height: 56px; }

/* ============================================================
   Process carousel
   ============================================================ */
.process-carousel { position: relative; }
.process-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0.25rem 1.5rem;
  margin: 0 -0.25rem;
  scroll-padding-inline: 0.25rem;
}
.process-track::-webkit-scrollbar { display: none; }

.process-card {
  flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  min-width: 0;
}
@media (max-width: 900px) {
  .process-card { flex-basis: calc((100% - 1.25rem) / 2); }
}
@media (max-width: 600px) {
  .process-card { flex-basis: 85%; }
}

.process-card .step {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font: 700 .8125rem/1 var(--font-display);
  color: var(--cyan);
  letter-spacing: .1em;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.carousel-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--ink-600);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.carousel-btn:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
}
.carousel-btn:active { transform: scale(0.95); }
.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: transparent;
  border-color: var(--border);
  color: var(--ink-400);
}
.carousel-btn:disabled:hover { background: transparent; color: var(--ink-400); }

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--t-fast), transform var(--t-fast);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.carousel-dot.is-active {
  background: var(--cyan);
  transform: scale(1.25);
}

/* ============================================================
   Stats
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
}
.stat { text-align: center; padding: 1.5rem 1rem; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--cyan);
  letter-spacing: -.04em;
  margin-bottom: .5rem;
}
.stat dd { margin: 0; color: var(--ink-600); font-weight: 500; font-size: .9375rem; }

/* ============================================================
   Quote
   ============================================================ */
.quote-band { background: var(--cyan-50); padding-block: clamp(3rem, 6vw, 5rem); }
.quote-band blockquote { max-width: 820px; margin: 0 auto; text-align: center; }
.quote-band p {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 1rem;
}
.quote-band cite { font-style: normal; color: var(--ink-400); font-size: .9375rem; letter-spacing: .04em; }

/* ============================================================
   Services
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card h3 { margin-bottom: .75rem; }
.service-card p { color: var(--ink-600); font-size: .9375rem; line-height: 1.6; margin: 0; }

/* ============================================================
   Team
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  cursor: default;
}
.team-card:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.team-front, .team-back {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: 2.5rem 1.5rem;
  transition: opacity .35s ease, transform .35s ease;
}
.team-front {
  align-items: center; justify-content: center;
  opacity: 1; transform: none;
}
.team-back {
  background: var(--surface);
  text-align: left;
  align-items: stretch; justify-content: flex-start;
  opacity: 0; transform: translateY(12px);
  pointer-events: none;
  overflow-y: auto;
  padding: 1.75rem 1.5rem;
}
.team-card:hover .team-front,
.team-card:focus-within .team-front { opacity: 0; transform: translateY(-12px); }
.team-card:hover .team-back,
.team-card:focus-within .team-back { opacity: 1; transform: none; pointer-events: auto; }
@media (prefers-reduced-motion: reduce) {
  .team-front, .team-back { transition: opacity .15s; }
  .team-card:hover .team-front, .team-card:focus-within .team-front { transform: none; }
  .team-card:hover .team-back, .team-card:focus-within .team-back { transform: none; }
}
.avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--cyan-50) 0%, #fff 100%);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  position: relative;
}
.avatar::before {
  content: attr(data-initials);
  font: 700 1.875rem/1 var(--font-display);
  color: var(--cyan);
  letter-spacing: -.02em;
}
.team-card h3 { margin-bottom: .25rem; }
.team-card .role { color: var(--ink-400); font-size: .875rem; margin: 0; }

.team-back .bio {
  font-size: .8125rem;
  line-height: 1.5;
  color: var(--ink-600);
  margin: 0 0 1.25rem;
}
.skills { display: flex; flex-direction: column; gap: .65rem; margin-top: auto; }
.skills li { display: flex; flex-direction: column; gap: .35rem; font-size: .8125rem; }
.skill-name { color: var(--ink); font-weight: 500; letter-spacing: .01em; }
.skill-bar {
  display: block;
  height: 5px;
  width: 100%;
  background: var(--cyan-50);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.skill-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--lvl, 50%);
  background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan-600) 100%);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.team-card:hover .skill-bar::after,
.team-card:focus-within .skill-bar::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .skill-bar::after { transition: none; }
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { padding: 2.5rem; }
.contact-label { font: 600 .8125rem/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-400); margin: 0 0 .75rem; }
.contact-email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid var(--cyan);
  padding-bottom: .15em;
}
.contact-email:hover { color: var(--cyan-700); }
.contact-card address { font-style: normal; color: var(--ink-600); line-height: 1.7; }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); min-height: 360px; box-shadow: var(--shadow-sm); }
.contact-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: var(--ink-300); padding-block: 3.5rem 1.5rem; margin-top: var(--section-y); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: #fff; margin: 0 0 .5rem; letter-spacing: .02em; }
.footer-tag { color: var(--ink-300); margin: 0; font-size: .9375rem; max-width: 24ch; }
.site-footer nav ul { display: flex; flex-direction: column; gap: .65rem; }
.site-footer nav a { color: var(--ink-300); font-size: .9375rem; }
.site-footer nav a:hover { color: var(--cyan); }
.footer-address { color: var(--ink-300); font-style: normal; font-size: .9375rem; line-height: 1.7; }
.footer-address a { color: var(--cyan); }
.footer-base { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .08); color: var(--ink-300); font-size: .8125rem; }
.footer-base a { color: var(--ink-300); }
.footer-base a:hover { color: var(--cyan); }

/* ============================================================
   Legal pages (terms / privacy)
   ============================================================ */
.legal-hero {
  background: linear-gradient(180deg, var(--cyan-50) 0%, #fff 100%);
  padding-block: clamp(4rem, 7vw, 6rem) clamp(2rem, 4vw, 3rem);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: .75rem;
}
.legal-hero .meta {
  color: var(--ink-400);
  font-size: .9375rem;
  margin: 0;
}

.legal-content { padding-block: clamp(3rem, 6vw, 5rem); }
.prose {
  max-width: 760px;
  margin-inline: auto;
  color: var(--ink-600);
  font-size: 1rem;
  line-height: 1.75;
}
.prose h2 {
  font-size: 1.5rem;
  letter-spacing: -.01em;
  margin: 3rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--ink);
}
.prose h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.prose h3 {
  font-size: 1.125rem;
  margin: 2rem 0 .75rem;
  color: var(--ink);
}
.prose p { margin: 0 0 1rem; }
.prose ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.prose ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .5rem;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--cyan-700); }
.prose a:hover { color: var(--cyan-600); text-decoration: underline; }
.prose .toc {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 3rem;
  font-size: .9375rem;
}
.prose .toc h2 {
  font-size: .8125rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan-700);
  margin: 0 0 1rem;
  border: 0;
  padding: 0;
}
.prose .toc ul { margin: 0; columns: 2; column-gap: 2rem; }
@media (max-width: 640px) { .prose .toc ul { columns: 1; } }
.prose .toc li { padding-left: 0; margin-bottom: .35rem; }
.prose .toc li::before { display: none; }

/* ============================================================
   Cookie consent banner (subtle bottom-left card)
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 1rem; bottom: 1rem;
  z-index: 60;
  width: min(380px, calc(100vw - 2rem));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px -16px rgba(11, 23, 38, .22), 0 4px 12px rgba(11, 23, 38, .05);
  padding: 1.125rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1), opacity .45s;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner.is-visible { transform: none; opacity: 1; }

.cookie-banner p {
  margin: 0;
  font-size: .8125rem;
  line-height: 1.55;
  color: var(--ink-600);
}
.cookie-banner p a {
  color: var(--cyan-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner p a:hover { color: var(--cyan-600); }

.cookie-actions {
  display: flex;
  gap: .5rem;
  justify-content: flex-end;
}
.cookie-actions .btn {
  padding: .5rem 1rem;
  font-size: .8125rem;
  font-weight: 500;
}

@media (max-width: 480px) {
  .cookie-banner { left: .75rem; right: .75rem; bottom: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: opacity .15s; transform: none; }
}

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
