/* WIN EPC — Shared inner-page styles (cinematic-editorial, V2).
   Typography: Plus Jakarta Sans (display) + Inter (body/labels) — matches homepage. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brand: #0E8E9A;
  --brand-light: #5CE1E6;
  --brand-mid: #2BBCC4;
  --brand-700: #0a636b;
  --void: #0D1B1E;
  --void-2: #0f2328;
  --paper: #EEF3F3;
  --paper-soft: #F6F9F9;
  --surface: #F7FAFB;
  --ink: #0D1B1E;
  --muted: #475256;
  --muted-dark: rgba(255,255,255,0.60);
  --line: rgba(13,27,30,0.12);
  --line-faint: rgba(13,27,30,0.07);
  --line-dark: rgba(255,255,255,0.14);
  --line-dark-faint: rgba(255,255,255,0.08);

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.16,1,0.3,1);
  --ease-out-expo: cubic-bezier(0.16,1,0.3,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);

  --shadow-card: 0 1px 2px rgba(13,27,30,0.04), 0 18px 40px -22px rgba(13,27,30,0.22);
  --shadow-elevated: 0 2px 4px rgba(13,27,30,0.05), 0 28px 56px -22px rgba(13,27,30,0.30);
  --shadow-float: 0 4px 8px rgba(13,27,30,0.06), 0 44px 88px -30px rgba(13,27,30,0.40);
  --hairline: rgba(13,27,30,0.08);

  --shell: 80rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.7;
  background: #fff;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); color: var(--ink); letter-spacing: 0; font-weight: 700; text-wrap: balance; }
.kern-zz { letter-spacing: 0.045em; } /* open up the 'zz' pair (applied via JS) — the font's native zz ink gap is ~1px per 100px, far tighter than every other pair, so it needs POSITIVE spacing; negative values make the z's collide */
p, .lede { text-wrap: pretty; }
:target { scroll-margin-top: calc(76px + 1.75rem); }
img, video { display: block; max-width: 100%; }
a, button, input, select, textarea { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
a, button { cursor: none; }
::selection { background: var(--brand-light); color: var(--void); }
:focus-visible { outline: 2px solid var(--brand-light); outline-offset: 3px; }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* ── Cursor ── */
#cursor-dot, #cursor-ring { position: fixed; pointer-events: none; z-index: 9999; border-radius: 50%; transform: translate(-50%,-50%); top: 0; left: 0; }
#cursor-dot { width: 6px; height: 6px; background: var(--brand-light); transition: opacity .2s ease; }
#cursor-ring { width: 34px; height: 34px; border: 1.5px solid rgba(92,225,230,.5); transition: width .3s var(--ease), height .3s var(--ease), border-color .3s ease, background .3s ease; }
body.cursor-hover #cursor-ring { width: 54px; height: 54px; background: rgba(92,225,230,.08); border-color: var(--brand-light); }
body.no-cursor, body.no-cursor a, body.no-cursor button { cursor: auto !important; }
body.no-cursor #cursor-dot, body.no-cursor #cursor-ring { display: none; }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ── Engineering registration ticks ── */
.ticks { position: relative; }
.ticks::after {
  content: ''; position: absolute; inset: 14px; pointer-events: none; z-index: 4;
  --tk: rgba(92,225,230,0.7); --s: 18px;
  background:
    linear-gradient(var(--tk),var(--tk)) left top/var(--s) 1px no-repeat,
    linear-gradient(var(--tk),var(--tk)) left top/1px var(--s) no-repeat,
    linear-gradient(var(--tk),var(--tk)) right top/var(--s) 1px no-repeat,
    linear-gradient(var(--tk),var(--tk)) right top/1px var(--s) no-repeat,
    linear-gradient(var(--tk),var(--tk)) left bottom/var(--s) 1px no-repeat,
    linear-gradient(var(--tk),var(--tk)) left bottom/1px var(--s) no-repeat,
    linear-gradient(var(--tk),var(--tk)) right bottom/var(--s) 1px no-repeat,
    linear-gradient(var(--tk),var(--tk)) right bottom/1px var(--s) no-repeat;
}

/* ── Navbar (sticky, white) ── */
#navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(14,142,154,0.08);
  transition: box-shadow .3s ease;
}
#navbar.scrolled { box-shadow: 0 1px 0 var(--line-faint), 0 6px 24px rgba(13,27,30,.06); }
.nav-link { position: relative; font-size: .82rem; font-weight: 500; color: #374151; text-decoration: none; transition: color .2s ease; letter-spacing: .01em; }
.nav-link::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1.5px; background: var(--brand); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav-link:hover, .nav-link.active { color: var(--brand); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* ── Eyebrow / labels (Inter, uppercase, letter-spaced) ── */
.eyebrow, .section-label, .page-hero-label {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brand-700);
  margin-bottom: 1rem;
}
.eyebrow::before, .section-label::before, .page-hero-label::before {
  content: ''; width: 24px; height: 1px; background: currentColor; opacity: .55; border-radius: 0;
}
.eyebrow.on-dark, .page-hero-label { color: var(--brand-700); }
.eyebrow.on-dark { color: var(--brand-light); }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; letter-spacing: .04em; }
.spec-mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1; letter-spacing: .05em; }

/* ── Headings / lede ── */
.h-section { font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.05; letter-spacing: 0; font-weight: 800; color: var(--ink); }
.lede { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--muted); line-height: 1.7; }
.lede.on-dark { color: var(--muted-dark); }

/* ── Page hero (dark cinematic, optional video) ── */
.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--void); color: #fff;
  padding: clamp(6.5rem, 11vw, 9.5rem) 0 clamp(4rem, 8vw, 6rem);
  border-bottom: 1px solid rgba(92,225,230,0.12);
}
/* Oversized so the scroll parallax (yPercent drift) never exposes edges */
.page-hero-media { position: absolute; left: 0; right: 0; top: -7%; width: 100%; height: 114%; object-fit: cover; z-index: -3; will-change: transform; }
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    linear-gradient(to right, rgba(7,16,18,0.88), rgba(7,16,18,0.55) 52%, rgba(7,16,18,0.38)),
    linear-gradient(to top, rgba(7,16,18,0.78), rgba(7,16,18,0.18) 46%, rgba(7,16,18,0.32));
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(92,225,230,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(92,225,230,0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask: radial-gradient(120% 100% at 88% 0%, #000 0%, transparent 60%);
          mask: radial-gradient(120% 100% at 88% 0%, #000 0%, transparent 60%);
}
.page-hero > div { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5.4vw, 4.4rem); line-height: 1.0; letter-spacing: 0; font-weight: 800; }
.page-hero p { color: rgba(255,255,255,0.72); }
.page-hero-label { color: var(--brand-light); }
.page-hero .hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── Reveals ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.up, .reveal.revealed { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-left.up, .reveal-left.revealed { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-right.up, .reveal-right.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Sections ── */
.sec { position: relative; }
.sec-pad { padding-top: clamp(4.5rem, 10vw, 8rem); padding-bottom: clamp(4.5rem, 10vw, 8rem); }
.sec-light { background: var(--paper); color: var(--ink); }
.sec-soft { background: var(--paper-soft); color: var(--ink); }
.sec-white { background: #fff; color: var(--ink); }
.sec-dark { background: var(--void); color: #fff; }
.sec-dark h1, .sec-dark h2, .sec-dark h3 { color: #fff; }

/* ── Buttons (squared, editorial) ── */
.btn-primary, .btn-outline, .btn-outline-dark {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-size: .8rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 1rem 1.6rem; border-radius: 5px; text-decoration: none;
  transition: transform .3s var(--ease-spring), background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
  cursor: none;
}
.btn-primary { background: var(--brand); color: #fff; border: 1px solid var(--brand); box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 1px 2px rgba(13,27,30,.12), 0 12px 26px -16px rgba(14,142,154,.7); }
.btn-primary:hover { background: var(--brand-mid); border-color: var(--brand-mid); transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 16px 38px -12px rgba(14,142,154,.6); }
.btn-primary:active { transform: translateY(0) scale(.98); }
.btn-outline { border: 1px solid rgba(255,255,255,0.28); color: #fff; background: transparent; }
.btn-outline:hover { border-color: var(--brand-light); color: var(--brand-light); transform: translateY(-2px); }
.btn-outline-dark { border: 1px solid var(--line); color: var(--ink); background: transparent; }
.btn-outline-dark:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn-primary i, .btn-outline i, .btn-outline-dark i, .btn-primary svg, .btn-outline svg, .btn-outline-dark svg { transition: transform .3s var(--ease); }
.btn-primary:hover i, .btn-outline:hover i, .btn-outline-dark:hover i,
.btn-primary:hover svg, .btn-outline:hover svg, .btn-outline-dark:hover svg { transform: translateX(4px); }

/* Cookie "Accetta" — same lift + glow as primary CTA buttons */
#cookie-accept { box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 1px 2px rgba(13,27,30,.12), 0 12px 26px -16px rgba(14,142,154,.7); transition: transform .3s var(--ease-spring), background .3s var(--ease), box-shadow .3s var(--ease); }
#cookie-accept:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 16px 38px -12px rgba(14,142,154,.6); }
#cookie-accept:active { transform: translateY(0) scale(.98); }
/* Cookie "Rifiuta" — same lift + recolor as outline CTA buttons */
#cookie-reject { transition: transform .3s var(--ease-spring), border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease); }
#cookie-reject:hover { transform: translateY(-2px); border-color: var(--brand-light); color: var(--brand-light); background: transparent; }
#cookie-reject:active { transform: translateY(0) scale(.98); }

/* Inline arrow link */
.arrow-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand-700); text-decoration: none;
}
.arrow-link i, .arrow-link svg { transition: transform .3s var(--ease); }
.arrow-link:hover i, .arrow-link:hover svg, .card:hover .arrow-link i, .card:hover .arrow-link svg { transform: translateX(4px); }

/* ── Cards (editorial) ── */
.card {
  background: #fff; border-radius: 12px; border: 1px solid #E6EAEC;
  padding: 1.85rem 1.75rem 1.7rem; position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
}
.card::after {
  content: ''; position: absolute; top: 0; left: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--brand-light), var(--brand));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-elevated); border-color: #d3dadb; }
.card:hover::after { transform: scaleX(1); }
.card-index { position: absolute; top: 1.6rem; right: 1.6rem; font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: .72rem; font-weight: 600; color: #5E6A6E; letter-spacing: .08em; transition: color .4s ease; }
.card:hover .card-index { color: var(--brand); }

/* Icon pill */
.icon-pill {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.15rem;
  background: linear-gradient(135deg, rgba(92,225,230,.14), rgba(14,142,154,.08));
  box-shadow: inset 0 0 0 1px rgba(14,142,154,.1);
  transition: background .35s ease, transform .35s var(--ease-spring);
}
.card:hover .icon-pill { background: linear-gradient(135deg, rgba(92,225,230,.28), rgba(14,142,154,.16)); transform: translateY(-2px); }

/* Framed media viewport (tick-cornered) */
.viewport { position: relative; border-radius: 8px; overflow: hidden; background: #07181a; box-shadow: 0 0 20px rgba(13,27,30,0.10), 0 0 44px rgba(13,27,30,0.07), 0 0 72px rgba(14,142,154,0.10); /* no border by design: even all-side shadow with a faint brand-teal tint */ }
.viewport video, .viewport img { width: 100%; height: 100%; object-fit: cover; display: block; }
.viewport .v-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,16,18,0.6), transparent 55%); z-index: 2; }
.viewport .v-tag {
  position: absolute; left: 1.25rem; bottom: 1rem; z-index: 5; /* left > bottom on purpose: equalizes the visual ink gap to the corner tick (text box has leading below the glyphs) */
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: #fff;
}
.viewport .v-tag b { color: var(--brand-light); font-weight: 600; }

/* Spec list (checklist) */
.spec-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.spec-list li { display: flex; align-items: flex-start; gap: .8rem; padding: .85rem 0; border-bottom: 1px solid var(--line-faint); font-size: .92rem; color: var(--muted); list-style: none; }
.spec-list li svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; margin-top: .2rem; }

/* ── FAQ (editorial) ── */
.faq-item { border-bottom: 1px solid var(--line); position: relative; transition: background .35s var(--ease); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item::before { content: ''; position: absolute; left: -1.1rem; top: 0; bottom: 0; width: 2px; background: var(--brand-light); transform: scaleY(0); transform-origin: center; transition: transform .4s var(--ease); }
.faq-item:hover::before, .faq-item.faq-open::before { transform: scaleY(1); }
.faq-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.5rem 0; background: none; border: none; text-align: left; cursor: none;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em;
  transition: color .25s ease, padding-left .4s var(--ease);
}
.faq-trigger:hover { color: var(--brand); padding-left: .4rem; }
.faq-item.faq-open .faq-trigger { color: var(--brand); }
.faq-icon { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0; transition: transform .3s var(--ease); }
.faq-content { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s var(--ease), opacity .35s ease; }
.faq-content p { padding-bottom: 1.4rem; color: var(--muted); font-size: .95rem; line-height: 1.75; }

/* ── Forms (editorial) ── */
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-label { font-family: var(--font-mono); font-size: .72rem; font-weight: 600; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.form-input, .form-textarea, .form-select {
  padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 6px;
  font-family: var(--font-body); font-size: .9375rem; color: var(--ink);
  background: #fff; transition: border-color .2s ease, box-shadow .2s ease; outline: none; width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(14,142,154,.12); }
.form-textarea { resize: vertical; min-height: 140px; }

/* ── Footer (dark) ── */
footer { background: var(--void); border-top: 1px solid rgba(92,225,230,.10); }
footer p, footer ul li { color: rgba(255,255,255,.62); }
.footer-link { font-size: .875rem; color: rgba(255,255,255,.68); text-decoration: none; transition: color .2s ease; }
.footer-link:hover { color: var(--brand-light); }

/* ── Cookie banner ── */
#cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(140%);
  z-index: 9999; width: calc(100% - 3rem); max-width: 640px;
  transition: transform .5s var(--ease), opacity .5s ease; opacity: 0;
}
#cookie-banner.visible { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ── Mobile menu ── */
#mobile-menu { position: fixed; inset: 0; z-index: 200; background: var(--void); transform: translateX(100%); transition: transform .4s var(--ease); }
#mobile-menu::before { /* same engineering grid as the CTA/footer band, weighted to the empty right side */
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(92,225,230,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(92,225,230,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask: radial-gradient(110% 95% at 85% 30%, #000 0%, transparent 68%);
          mask: radial-gradient(110% 95% at 85% 30%, #000 0%, transparent 68%);
}
#mobile-menu.open { transform: translateX(0); }
/* same hover animation as the desktop .nav-link: color shift + underline growing from the left */
#mobile-menu a.block { position: relative; width: fit-content; }
#mobile-menu a.block::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0.2rem; height: 2px; background: var(--brand-light); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
#mobile-menu a.block:hover { color: var(--brand-light); }
#mobile-menu a.block:hover::after, #mobile-menu a.block:focus-visible::after, #mobile-menu a.block.text-brand-300::after { transform: scaleX(1); }

/* ── Misc ── */
.text-brand { color: var(--brand); }
.bg-surface { background: var(--surface); }
.blog-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px 8px 0 0; }

/* ── Contact form status message ── */
.contact-status { margin-top: 1rem; padding: 0.75rem 1rem; border-radius: 10px; font-size: 0.875rem; font-weight: 600; line-height: 1.5; }
.contact-status[hidden] { display: none; }
.contact-status.is-ok  { background: rgba(14,142,154,0.10); color: #0b6b74; border: 1px solid rgba(14,142,154,0.28); }
.contact-status.is-err { background: rgba(239,68,68,0.08);  color: #b42318; border: 1px solid rgba(239,68,68,0.28); }
.team-card { background: #fff; border-radius: 12px; border: 1px solid #E5E7EB; overflow: hidden; }
.team-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.team-info { padding: 1.25rem 1.5rem; }

/* ── Cinematic full-bleed break (homepage-style) ── */
.cine-break {
  position: relative; min-height: 80vh; display: flex; align-items: center;
  overflow: hidden; background: var(--void); isolation: isolate;
  border-top: 1px solid rgba(92,225,230,0.12); border-bottom: 1px solid rgba(92,225,230,0.12);
}
.cine-break video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cine-break::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(7,16,18,0.88) 0%, rgba(7,16,18,0.32) 45%, rgba(7,16,18,0.6) 100%);
}
.cine-break .cb-inner { max-width: 52rem; }
.cine-break h2 { color: #fff; font-size: clamp(2rem, 4.8vw, 4rem); line-height: 1.04; letter-spacing: 0; font-weight: 800; margin-top: 1.2rem; }
.cine-break .eyebrow { color: var(--brand-light); }
.cine-break .eyebrow::before { background: var(--brand-light); }
.grain::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .025; pointer-events: none;
}

/* Touch hit areas */
@media (pointer: coarse) {
  #hamburger, #menu-close { min-width: 44px; min-height: 44px; }
  #lang-btn, #lang-btn-mobile, #cookie-accept, #cookie-reject { min-height: 44px; }
  footer a[aria-label] { min-width: 44px; min-height: 44px; }
}
