/* =========================================================
   JUDGINGCATS — cats judging humans since last Tuesday.
   Dark & premium, with a wink.
   ========================================================= */

:root {
  --bg:         #0d0c0a;
  --bg-2:       #16130e;
  --bg-3:       #1f1b14;
  --cream:      #f5e7c7;
  --cream-dim:  #d9cba9;
  --gold:       #d4a84a;
  --gold-hot:   #ecc165;
  --burgundy:   #7a1f1f;
  --burgundy-2: #9c2a2a;
  --ink:        #0a0908;
  --muted:      #8a8477;
  --hairline:   rgba(245, 231, 199, 0.12);

  --f-display: "Fraunces", "Playfair Display", Georgia, serif;
  --f-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --max: 1240px;
  --radius: 14px;
  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,.7);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 600px at 85% -10%, rgba(212,168,74,.08), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(122,31,31,.10), transparent 60%),
    linear-gradient(180deg, #0d0c0a 0%, #100d09 40%, #0b0a08 100%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-hot); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* -------- Typography -------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--cream);
  margin: 0;
}
h1 { font-size: clamp(44px, 7vw, 96px); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(34px, 4.2vw, 62px); }
h3 { font-size: clamp(22px, 2.2vw, 30px); }
p  { margin: 0 0 1em; color: var(--cream-dim); }

.eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.display-script {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold-hot);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--hairline);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* -------- Nav -------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), padding .3s var(--ease);
}
.nav.scrolled {
  background: rgba(13,12,10,.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--cream);
  font-size: 20px;
  letter-spacing: .02em;
}
.logo img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--bg-2);
}
.logo span i {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}
.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--cream-dim);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 12px; }

.burger { display: none; background: none; border: 0; color: var(--cream); cursor: pointer; padding: 8px; }
.burger svg { width: 26px; height: 26px; }

/* -------- Hero -------- */
.hero {
  position: relative;
  padding: 160px 0 90px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 strong {
  font-weight: 700;
  color: var(--gold);
  font-style: italic;
}
.hero-copy p.lede {
  font-size: 19px;
  color: var(--cream-dim);
  max-width: 48ch;
  margin-top: 28px;
}
.hero-meta {
  display: flex;
  gap: 34px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-meta .item { }
.hero-meta .num {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: -.02em;
}
.hero-meta .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted);
}
.hero-cta { margin-top: 42px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.2deg);
  justify-self: stretch;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.hero-photo:hover img { transform: scale(1.05); }
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(10,9,8,.55) 100%),
    radial-gradient(120% 80% at 20% 20%, transparent 60%, rgba(10,9,8,.4));
  pointer-events: none;
}
.hero-tag {
  position: absolute;
  left: 24px; bottom: 22px;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--cream);
  font-size: 18px;
  text-shadow: 0 2px 14px rgba(0,0,0,.8);
}
.hero-tag::before {
  content: "“";
  color: var(--gold);
  font-size: 44px;
  line-height: 0;
  vertical-align: -10px;
  margin-right: 6px;
}

.hero-badge {
  position: absolute;
  right: -22px; top: 22px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  transform: rotate(6deg);
  border: 1px solid rgba(245,231,199,.2);
}

.marquee {
  margin-top: 80px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  background: rgba(0,0,0,.15);
}
.marquee-track {
  display: flex;
  gap: 56px;
  padding: 18px 0;
  white-space: nowrap;
  animation: marq 40s linear infinite;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--cream-dim);
}
.marquee-track span::after {
  content: "◆";
  color: var(--gold);
  margin-left: 56px;
}
@keyframes marq { to { transform: translateX(-50%); } }

/* -------- Section base -------- */
section { padding: 110px 0; position: relative; }
.section-head {
  max-width: 760px;
  margin-bottom: 60px;
}
.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 20px; font-size: 18px; }

/* -------- Stats -------- */
.stats {
  background: linear-gradient(180deg, transparent, rgba(212,168,74,.04), transparent);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 40px 28px;
  border-right: 1px solid var(--hairline);
  text-align: left;
}
.stat:last-child { border-right: 0; }
.stat .big {
  font-family: var(--f-display);
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -.03em;
  line-height: 1;
}
.stat .big .plus { color: var(--gold); }
.stat .lbl {
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  color: var(--muted);
}

/* -------- Meet Barny -------- */
.meet-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.meet-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.meet-photo img { width: 100%; height: 100%; object-fit: cover; }
.meet-photo .frame {
  position: absolute; inset: 14px;
  border: 1px solid rgba(245,231,199,.25);
  pointer-events: none;
  border-radius: 10px;
}
.traits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.trait {
  padding: 18px 20px;
  background: var(--bg-2);
  border: 1px solid var(--hairline);
  border-radius: 12px;
}
.trait .k {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
}
.trait .v {
  margin-top: 4px;
  font-family: var(--f-display);
  color: var(--cream);
  font-size: 20px;
}
.quote {
  margin-top: 36px;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: rgba(212,168,74,.05);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
  border-radius: 0 10px 10px 0;
}
.quote small {
  display: block;
  font-style: normal;
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* -------- Audience -------- */
.audience {
  background: linear-gradient(180deg, var(--bg), #0a0907);
}
.audience-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: start;
}
.panel {
  padding: 34px 36px;
  background: var(--bg-2);
  border: 1px solid var(--hairline);
  border-radius: 16px;
}
.panel h3 { margin-bottom: 22px; font-family: var(--f-display); }

.bars li {
  list-style: none;
  display: grid;
  grid-template-columns: 120px 1fr 56px;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--hairline);
}
.bars li:last-child { border-bottom: 0; }
.bars .country { color: var(--cream); }
.bars .val { text-align: right; color: var(--gold); font-variant-numeric: tabular-nums; }
.bar-track {
  height: 6px; background: rgba(245,231,199,.08); border-radius: 999px; overflow: hidden;
}
.bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  border-radius: 999px;
  transition: width 1.6s var(--ease);
}

.demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}
.donut {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
}
.donut svg { transform: rotate(-90deg); }
.donut .pct {
  position: absolute;
  text-align: center;
}
.donut .pct .n {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.donut .pct .l {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted);
  margin-top: 6px;
}

/* -------- Gallery -------- */
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--cream-dim);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: .2s var(--ease);
  font-family: var(--f-body);
}
.chip:hover { border-color: var(--gold); color: var(--cream); }
.chip.on { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.gallery {
  column-count: 4;
  column-gap: 18px;
}
.gallery figure {
  break-inside: avoid;
  margin: 0 0 18px 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--bg-2);
}
.gallery figure img {
  width: 100%; height: auto; display: block;
  transition: transform .6s var(--ease), filter .3s var(--ease);
}
.gallery figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.55));
  opacity: 0; transition: opacity .3s var(--ease);
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure:hover::after { opacity: 1; }
.gallery figcaption {
  position: absolute; left: 16px; bottom: 14px; right: 16px;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--cream);
  opacity: 0;
  transition: opacity .3s var(--ease);
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0,0,0,.8);
}
.gallery figure:hover figcaption { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8,7,6,.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,.7);
}
.lightbox button {
  position: absolute;
  background: rgba(245,231,199,.1);
  color: var(--cream);
  border: 1px solid var(--hairline);
  width: 54px; height: 54px; border-radius: 50%;
  font-size: 22px; cursor: pointer;
  display: grid; place-items: center;
  transition: .2s var(--ease);
}
.lightbox button:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lightbox .close { top: 24px; right: 24px; }
.lightbox .prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .next { right: 24px; top: 50%; transform: translateY(-50%); }

/* -------- Collab -------- */
.collab { background: linear-gradient(180deg, #0a0907, var(--bg)); }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 20px;
}
.pkg {
  padding: 38px 32px;
  background: var(--bg-2);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  overflow: hidden;
}
.pkg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 80% -10%, rgba(212,168,74,.12), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.pkg:hover { transform: translateY(-6px); border-color: var(--gold); }
.pkg:hover::before { opacity: 1; }
.pkg.featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(212,168,74,.06), var(--bg-2)); }
.pkg.featured::after {
  content: "Most picked";
  position: absolute; top: 22px; right: 22px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.pkg h3 { font-family: var(--f-display); margin-bottom: 6px; }
.pkg .kicker {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: 16px;
}
.pkg ul {
  list-style: none;
  padding: 0; margin: 18px 0 0;
  display: grid; gap: 10px;
}
.pkg ul li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  font-size: 15px;
  color: var(--cream-dim);
}
.pkg ul li::before {
  content: "";
  width: 14px; height: 14px; margin-top: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0 35%, transparent 36%);
  border: 1px solid var(--gold);
}

.why-barny {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why {
  padding: 30px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: rgba(245,231,199,.02);
}
.why .n {
  font-family: var(--f-display);
  font-size: 48px;
  color: var(--gold);
  font-weight: 700;
}
.why h4 {
  font-family: var(--f-display);
  color: var(--cream);
  margin: 6px 0 10px;
  font-size: 22px;
}
.why p { font-size: 15px; }

/* -------- Contact -------- */
.contact {
  background: linear-gradient(180deg, var(--bg), #120f0a);
  border-top: 1px solid var(--hairline);
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}
.contact-side h2 { margin-bottom: 20px; }
.contact-side .lede { font-size: 18px; max-width: 36ch; }
.contact-card {
  margin-top: 34px;
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--hairline);
  border-radius: 14px;
}
.contact-card .row {
  display: flex;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--hairline);
  align-items: center;
}
.contact-card .row:last-child { border-bottom: 0; }
.contact-card .row .k {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); width: 90px;
}
.contact-card .row .v { color: var(--cream); }

form.contact-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  background: var(--bg-2);
  border: 1px solid var(--hairline);
  border-radius: 18px;
}
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted);
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  background: #0c0a07;
  border: 1px solid var(--hairline);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: #0f0d09;
}
textarea { min-height: 140px; resize: vertical; }
.form-hint { font-size: 12px; color: var(--muted); margin-top: -4px; }
.form-status { font-size: 14px; min-height: 20px; color: var(--gold); }
.form-status.error,
.form-status.err   { color: #d97373; }
.form-status.ok    { color: #8ccf9f; }

/* Honeypot: invisible to humans, irresistible to bots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* -------- Footer -------- */
.footer {
  padding: 70px 0 40px;
  border-top: 1px solid var(--hairline);
  color: var(--cream-dim);
  background: #08070580;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr .7fr .7fr;
  gap: 36px;
}
.footer h5 {
  font-family: var(--f-display);
  color: var(--cream);
  font-size: 16px;
  margin: 0 0 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer a { color: var(--cream-dim); font-size: 14px; }
.footer a:hover { color: var(--cream); }
.footer .brand p { font-size: 14px; max-width: 36ch; }
.footer-bottom {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--cream-dim);
}
.socials a:hover { color: var(--gold); border-color: var(--gold); }
.socials svg { width: 18px; height: 18px; }

/* -------- Reveal on scroll -------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* -------- Responsive -------- */
@media (max-width: 1060px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-photo { max-width: 520px; margin: 0 auto; }
  .meet-grid, .audience-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .pkg-grid, .why-barny { grid-template-columns: 1fr; }
  .gallery { column-count: 3; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--hairline); }
  .stat:nth-child(2) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: inline-block; }
  .nav-cta { display: none; }

  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--bg-2);
    flex-direction: column;
    padding: 20px 28px;
    gap: 18px;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
}

@media (max-width: 700px) {

  section { padding: 80px 0; }
  .wrap { padding: 0 18px; }
  .gallery { column-count: 2; column-gap: 12px; }
  .gallery figure { margin-bottom: 12px; }
  .two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 22px; }
  .hero-meta .num { font-size: 28px; }
  .hero-badge { right: 10px; top: 10px; font-size: 10px; padding: 8px 12px; }

  /* Contact form: less padding so inputs breathe on narrow screens */
  form.contact-form { padding: 22px; gap: 14px; }
  input, select, textarea { font-size: 16px; padding: 12px 14px; }
  label { font-size: 11px; letter-spacing: .18em; }

  /* Audience panels — tighter padding */
  .panel { padding: 26px 20px; }
  .panel h3 { margin-bottom: 16px; }

  /* Bars: stack country + value on top, bar below — full width */
  .bars li {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "country value"
      "bar bar";
    gap: 6px 10px;
    padding: 12px 0;
  }
  .bars .country { grid-area: country; font-size: 15px; }
  .bars .val { grid-area: value; text-align: right; font-size: 13px; }
  .bar-track { grid-area: bar; width: 100%; }

  /* Donuts: stack and shrink so they fit narrow screens */
  .demo { grid-template-columns: 1fr 1fr; gap: 18px; }
  .donut svg { width: 130px; height: 130px; }
  .donut .pct .n { font-size: 34px; }

  /* Contact info card — stack each row so nothing overflows */
  .contact-card { padding: 22px 20px; }
  .contact-card .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 0;
  }
  .contact-card .row .k { width: auto; }
  .contact-card .row .v { font-size: 15px; }

  /* Stat grid bits */
  .stat { padding: 32px 18px; }

  /* Tame oversize display headlines on narrow screens */
  h1 { font-size: clamp(38px, 10vw, 60px); }
  h2 { font-size: clamp(28px, 7vw, 42px); }

  /* Contact form hint doesn't need to be a novel */
  .form-hint { line-height: 1.5; }
}

@media (max-width: 430px) {
  .gallery { column-count: 1; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; }
  .demo { grid-template-columns: 1fr; }
  .donut svg { width: 150px; height: 150px; }
}

/* =========================================================
   Cookie consent banner
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: rgba(13,12,10,.96);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-top: 1px solid var(--hairline);
  transform: translateY(120%);
  transition: transform .45s var(--ease);
  box-shadow: 0 -20px 60px rgba(0,0,0,.5);
}
.cookie-banner.show { transform: none; }
.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cookie-text {
  flex: 1;
  font-size: 13.5px;
  color: var(--cream-dim);
  line-height: 1.55;
}
.cookie-text strong { color: var(--gold); font-weight: 600; }
.cookie-text a { color: var(--cream); text-decoration: underline; }
.cookie-text a:hover { color: var(--gold); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns .btn {
  padding: 11px 20px;
  font-size: 13px;
  letter-spacing: .04em;
}
@media (max-width: 700px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px 18px;
  }
  .cookie-text { font-size: 13px; }
  .cookie-btns { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-btns .btn { justify-content: center; padding: 12px 10px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
}
