/* Insider Casino Review UK - main stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0d120f;
  --bg-2: #101613;
  --panel: #161d19;
  --panel-2: #1b2420;
  --line: rgba(207, 243, 225, 0.13);
  --green: #2f9e68;
  --green-2: #24875a;
  --green-deep: #17573b;
  --mint: #cff3e1;
  --mint-2: #9fdcbe;
  --cream: #f2f0e7;
  --muted: rgba(242, 240, 231, 0.64);
  --muted-2: rgba(242, 240, 231, 0.45);
  --amber: #ffc46b;
  --ink: #080b09;
  --r-xl: 30px;
  --r-lg: 22px;
  --r-md: 16px;
  --r-pill: 999px;
  --wrap: 1260px;
  --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

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

h1, h2, h3, h4, .display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 14px;
}

h1 { font-size: clamp(30px, 3.4vw, 44px); }
h2 { font-size: clamp(25px, 2.6vw, 34px); }
h3 { font-size: 20px; }
p { margin: 0 0 14px; }

.eyebrow {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint-2);
  margin-bottom: 12px;
  display: block;
}

.lead { font-size: 17px; color: var(--muted); max-width: 62ch; }
.muted { color: var(--muted); }
.small { font-size: 13px; }

/* ---------- skip link ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--mint); color: var(--ink); padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

/* ---------- age strip / ticker ---------- */
.ticker {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-2);
}
.ticker__track { display: flex; width: max-content; animation: slide 42s linear infinite; }
.ticker__group { display: flex; align-items: center; padding: 10px 0; }
.ticker__item { display: inline-flex; align-items: center; gap: 10px; padding: 0 26px; white-space: nowrap; }
.ticker__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

.badge18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: #d5342f; color: #fff;
  font-family: var(--display); font-weight: 900; font-size: 12px; letter-spacing: 0;
  border: 2px solid rgba(255,255,255,.85);
  flex: 0 0 auto;
}
.badge18--sm { width: 26px; height: 26px; font-size: 10px; border-width: 1.5px; }

/* ---------- header ---------- */
.page-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(13, 18, 15, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.head-in { display: flex; align-items: center; gap: 24px; height: 74px; }

.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex: 0 0 auto; }
.logo__mark {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(145deg, var(--green), var(--green-deep));
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 900; color: #fff; font-size: 17px;
  box-shadow: 0 6px 18px rgba(47,158,104,.28);
}
.logo__txt { font-family: var(--display); font-weight: 800; font-size: 17px; letter-spacing: -0.03em; white-space: nowrap; }
.logo__txt span { color: var(--green); }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  font-family: var(--display); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  text-decoration: none; color: var(--muted);
  padding: 9px 14px; border-radius: var(--r-pill); transition: .18s;
}
.nav a:hover { color: var(--cream); background: rgba(207,243,225,.07); }
.nav a.on { color: var(--ink); background: var(--mint); }

.head-cta { display: flex; align-items: center; gap: 12px; margin-left: 8px; }

.burger {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line); background: transparent; color: var(--cream);
  cursor: pointer; margin-left: auto;
}
.burger span { display: block; width: 18px; height: 2px; background: currentColor; margin: 3px auto; border-radius: 2px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 13px 24px; border-radius: 12px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; transition: .18s; white-space: nowrap;
  background: transparent; color: inherit; font-family: var(--display);
}
.btn--mint { background: var(--mint); color: var(--ink); }
.btn--mint:hover { background: #fff; transform: translateY(-2px); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-2); transform: translateY(-2px); }
.btn--ghost { border-color: rgba(242,240,231,.4); color: var(--cream); }
.btn--ghost:hover { border-color: var(--cream); background: rgba(242,240,231,.08); }
.btn--sm { padding: 10px 18px; font-size: 12px; }
.btn--wide { width: 100%; }
.link-u {
  font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; text-decoration: none; border-bottom: 2px solid currentColor;
  padding-bottom: 3px; color: var(--cream);
}
.link-u:hover { color: var(--mint); }

/* ---------- hero panel ---------- */
.hero { padding: 22px 0 0; }
.hero__panel {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--green) 0%, var(--green-2) 46%, var(--green-deep) 100%);
  border-radius: var(--r-xl);
  padding: 46px 46px 40px;
}
.hero__panel::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.14), transparent 42%),
    radial-gradient(circle at 8% 92%, rgba(0,0,0,.22), transparent 46%);
}
.hero__leaf {
  position: absolute; opacity: .16; color: #fff; pointer-events: none;
}
.hero__leaf--a { left: -30px; bottom: -40px; width: 260px; }
.hero__leaf--b { right: 40%; top: 20px; width: 150px; }

.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(8,11,9,.34); border: 1px solid rgba(255,255,255,.22);
  padding: 7px 14px 7px 8px; border-radius: var(--r-pill);
  font-family: var(--display); font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(28px, 3.1vw, 40px); text-transform: uppercase; letter-spacing: -0.025em; max-width: 15ch; }
.hero__sub {
  font-family: var(--display); font-size: 12.5px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.82);
  margin: 0 0 8px;
}
.hero__copy { font-size: 15px; color: rgba(255,255,255,.86); max-width: 46ch; margin-bottom: 26px; }
.hero__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.hero__stats { display: flex; gap: 34px; margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.22); }
.hero__stat b { display: block; font-family: var(--display); font-size: 26px; font-weight: 800; }
.hero__stat span { font-size: 12px; color: rgba(255,255,255,.75); }

/* hero right: tilted brand card */
.hero__art { position: relative; display: grid; place-items: center; min-height: 340px; }
.brand-tile {
  width: 100%; max-width: 340px; background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px;
  transform: rotate(2.4deg); box-shadow: 0 30px 60px rgba(0,0,0,.42);
}
.brand-tile--back {
  position: absolute; transform: rotate(-7deg) translate(-58px, 56px) scale(.92);
  opacity: 1; z-index: 1; background: var(--panel-2);
}
.brand-tile--front { position: relative; z-index: 3; }
.hero__seal {
  position: absolute; z-index: 4; top: 2px; right: 6px;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--mint); color: var(--green-deep);
  display: grid; place-items: center; text-align: center;
  font-family: var(--display); font-size: 9.5px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; line-height: 1.3;
  border: 3px dashed var(--green); box-shadow: 0 12px 26px rgba(0,0,0,.3);
}

.tile__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.tile__logo { height: 34px; width: auto; object-fit: contain; }
.tile__logo--lg { height: 46px; }
.tile__score {
  font-family: var(--display); font-weight: 800; font-size: 17px;
  background: var(--mint); color: var(--ink); border-radius: 10px; padding: 4px 11px;
}
.tile__name { font-family: var(--display); font-weight: 800; font-size: 18px; margin-bottom: 4px; }
.tile__meta { font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }
.tile__row { display: flex; justify-content: space-between; font-size: 12.5px; padding: 7px 0; border-top: 1px solid var(--line); }
.tile__row span:last-child { color: var(--mint-2); font-weight: 600; }

/* ---------- sections ---------- */
.sec { padding: 72px 0; }
.sec--tight { padding: 52px 0; }
.sec__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 34px; flex-wrap: wrap; }
.sec__head p { margin: 0; }

/* feature row with dividers */
.features { display: grid; grid-template-columns: repeat(3, 1fr); }
.feature { padding: 8px 30px; text-align: center; }
.feature + .feature { border-left: 1px solid var(--line); }
.feature__icon {
  width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 20px;
  background: rgba(47,158,104,.14); border: 1px solid rgba(47,158,104,.3);
  display: grid; place-items: center; color: var(--mint);
}
.feature h3 { font-size: 18px; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- brand cards ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; transition: .2s; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); border-color: rgba(47,158,104,.45); }
.card__rank {
  position: absolute; top: 0; right: 0;
  background: var(--green); color: #fff; font-family: var(--display); font-weight: 800;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 0 var(--r-lg) 0 14px;
}
.card__logo {
  height: 54px; width: 100%; max-width: 190px; object-fit: contain; object-position: left center;
  margin-bottom: 18px;
}
.card__verdict {
  display: inline-block; background: rgba(207,243,225,.1); border: 1px solid var(--line);
  color: var(--mint); font-size: 11.5px; font-weight: 600; letter-spacing: .05em;
  padding: 5px 11px; border-radius: var(--r-pill); margin-bottom: 14px;
}
.card p { font-size: 14.5px; color: var(--muted); }
.card__facts { list-style: none; margin: 16px 0; padding: 0; display: grid; gap: 8px; }
.card__facts li { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; padding-bottom: 8px; border-bottom: 1px dashed var(--line); }
.card__facts b { font-weight: 600; color: var(--mint-2); }
.card__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.card__licence { font-size: 12px; color: var(--muted-2); margin-top: 14px; }
.card__licence a { color: var(--mint-2); }

.score-ring {
  display: inline-grid; place-items: center; width: 62px; height: 62px; border-radius: 50%;
  background: conic-gradient(var(--green) calc(var(--p) * 1%), rgba(255,255,255,.08) 0);
  flex: 0 0 auto;
}
.score-ring i {
  width: 50px; height: 50px; border-radius: 50%; background: var(--panel);
  display: grid; place-items: center; font-style: normal;
  font-family: var(--display); font-weight: 800; font-size: 16px;
}

/* ---------- split banner ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--r-xl); overflow: hidden; }
.split__l {
  background: var(--panel-2); padding: 44px; display: grid; place-items: center;
  border: 1px solid var(--line); border-right: 0;
}
.split__r {
  background: linear-gradient(140deg, var(--green-deep), var(--green-2));
  padding: 44px; display: flex; flex-direction: column; justify-content: center;
}
.split__r h2 { text-transform: uppercase; font-size: clamp(24px, 2.5vw, 32px); max-width: 14ch; }
.split__r p { color: rgba(255,255,255,.85); font-size: 15px; max-width: 44ch; }
.logo-duo { display: grid; gap: 18px; width: 100%; }
.logo-duo div {
  background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 20px; display: grid; place-items: center;
}
.logo-duo img { height: 52px; width: auto; object-fit: contain; }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px;
  display: flex; flex-direction: column;
}
.quote--hl { background: linear-gradient(150deg, var(--green), var(--green-deep)); border-color: transparent; }
.quote--hl .quote__chip { background: rgba(0,0,0,.24); border-color: rgba(255,255,255,.3); color: #fff; }
.quote--hl p, .quote--hl .quote__who span { color: rgba(255,255,255,.85); }
.quote__chip {
  align-self: flex-start; font-size: 11.5px; padding: 5px 11px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: rgba(207,243,225,.07); color: var(--mint-2); margin-bottom: 16px;
}
.quote__mark { font-family: var(--display); font-size: 34px; font-weight: 900; line-height: 1; color: var(--mint-2); margin-bottom: 8px; }
.quote p { font-size: 14.5px; color: var(--muted); flex: 1; }
.quote__who { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.16); }
.quote__who b { font-family: var(--display); font-size: 14px; display: block; }
.quote__who span { font-size: 12.5px; color: var(--muted); }

/* ---------- insight cards ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.post__top { height: 108px; background: linear-gradient(135deg, var(--green-deep), var(--panel-2)); display: grid; place-items: center; color: var(--mint); }
.post__body { padding: 20px; }
.post__date { font-family: var(--display); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mint-2); }
.post h3 { font-size: 16px; margin: 10px 0 8px; text-transform: uppercase; }
.post p { font-size: 13.5px; color: var(--muted); margin-bottom: 12px; }

/* ---------- cta band ---------- */
.cta {
  position: relative; overflow: hidden; border-radius: var(--r-xl); text-align: center;
  background: linear-gradient(140deg, var(--green), var(--green-deep));
  padding: 52px 40px;
}
.cta h2 { text-transform: uppercase; }
.cta p { color: rgba(255,255,255,.86); max-width: 58ch; margin: 0 auto 24px; }
.cta__row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- generic page header ---------- */
.phead {
  background: linear-gradient(150deg, var(--green-deep), var(--panel));
  border-bottom: 1px solid var(--line);
  padding: 54px 0 46px;
}
.phead h1 { text-transform: uppercase; max-width: 20ch; }
.phead p { color: rgba(255,255,255,.8); max-width: 66ch; margin: 0; }
.crumbs { font-size: 12.5px; color: var(--mint-2); margin-bottom: 14px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ---------- prose / legal ---------- */
.prose { max-width: 800px; }
.prose h2 { margin-top: 38px; font-size: 24px; }
.prose h3 { margin-top: 26px; font-size: 17px; }
.prose p, .prose li { color: var(--muted); font-size: 15.5px; }
.prose ul, .prose ol { padding-left: 20px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--mint); }
/* buttons inside prose must keep their own ink, not the prose link colour */
.prose a.btn--mint { color: var(--ink); }
.prose a.btn--green { color: #fff; }
.prose a.btn--ghost { color: var(--cream); }
.prose strong { color: var(--cream); }
.updated {
  display: inline-block; font-size: 12.5px; color: var(--mint-2);
  background: rgba(47,158,104,.12); border: 1px solid rgba(47,158,104,.3);
  padding: 6px 14px; border-radius: var(--r-pill); margin-bottom: 20px;
}
.callout {
  background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--green);
  border-radius: var(--r-md); padding: 20px 22px; margin: 24px 0;
}
.callout p:last-child { margin: 0; }

.layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 40px; align-items: start; }
.aside { position: sticky; top: 96px; display: grid; gap: 18px; }
.aside .card { padding: 22px; }
.aside h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .06em; }

/* ---------- tables ---------- */
.tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
.tbl th, .tbl td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--line); }
.tbl th { font-family: var(--display); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--mint-2); }
.tbl tr:last-child td { border-bottom: 0; }
.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--panel); }

/* ---------- bars ---------- */
.bars { display: grid; gap: 14px; }
.bar__top { display: flex; justify-content: space-between; font-size: 13.5px; margin-bottom: 6px; }
.bar__top b { font-family: var(--display); color: var(--mint); }
.bar__track { height: 7px; border-radius: 99px; background: rgba(255,255,255,.08); overflow: hidden; }
.bar__fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--green), var(--mint-2)); }

/* ---------- pros / cons ---------- */
.pc { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pc__box { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.pc__box h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .08em; display: flex; align-items: center; gap: 9px; }
.pc__box ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.pc__box li { display: flex; gap: 10px; font-size: 14.5px; color: var(--muted); }
.pc__box li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; margin-top: 9px; flex: 0 0 auto; }
.pc--good li::before { background: var(--green); }
.pc--bad li::before { background: var(--amber); }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  font-size: 13px; padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(207,243,225,.07); border: 1px solid var(--line); color: var(--muted);
}

/* ---------- FAQ accordion ---------- */
.acc { display: grid; gap: 12px; }
details.acc__i { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-md); padding: 0; }
details.acc__i summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  font-family: var(--display); font-weight: 700; font-size: 15.5px;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
details.acc__i summary::-webkit-details-marker { display: none; }
details.acc__i summary::after { content: '+'; font-size: 22px; color: var(--mint); line-height: 1; }
details.acc__i[open] summary::after { content: '\2212'; }
details.acc__i[open] summary { border-bottom: 1px solid var(--line); }
.acc__body { padding: 16px 22px 20px; color: var(--muted); font-size: 15px; }
.acc__body p:last-child { margin: 0; }

/* ---------- forms ---------- */
.form { display: grid; gap: 16px; }
.field label {
  display: block; font-family: var(--display); font-size: 11.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--mint-2); margin-bottom: 7px;
}
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 15px; color: var(--cream); font-family: var(--body); font-size: 15px;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--green); border-color: transparent; }
.field textarea { min-height: 150px; resize: vertical; }
.check { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); flex: 0 0 auto; }
.alert { border-radius: var(--r-md); padding: 16px 18px; font-size: 14.5px; margin-bottom: 18px; }
.alert--ok { background: rgba(47,158,104,.14); border: 1px solid rgba(47,158,104,.45); color: var(--mint); }
.alert--err { background: rgba(255,196,107,.1); border: 1px solid rgba(255,196,107,.4); color: var(--amber); }
.alert ul { margin: 8px 0 0; padding-left: 18px; }

/* ---------- footer ---------- */
.page-foot { background: var(--ink); border-top: 1px solid var(--line); margin-top: 20px; }
.foot-warn {
  background: rgba(213,52,47,.1); border-bottom: 1px solid rgba(213,52,47,.28);
  padding: 16px 0;
}
.foot-warn .wrap { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; text-align: center; }
.foot-warn p { margin: 0; font-size: 13.5px; color: var(--muted); max-width: 78ch; }
.foot-warn b { color: var(--cream); }

.foot-main { padding: 54px 0 34px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 34px; }
.foot-col h4 {
  font-family: var(--display); font-size: 11.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--mint-2); margin-bottom: 16px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-col a { text-decoration: none; font-size: 14px; color: var(--muted); }
.foot-col a:hover { color: var(--mint); }
.foot-about p { font-size: 14px; color: var(--muted); max-width: 34ch; }

/* ---------- organisation logo plates ---------- */
.orglogo {
  display: grid; place-items: center;
  background: var(--cream); border-radius: 10px;
  padding: 8px 12px; min-height: 40px;
}
.orglogo img { display: block; width: auto; height: auto; max-width: 100%; max-height: 22px; }
/* assets supplied as white-ink marks: flip them to ink for the light plate */
.orglogo--mono img { filter: invert(1); }
.orglogo__txt {
  font-family: var(--display); font-weight: 800; font-size: 15px;
  letter-spacing: -0.02em; color: #12180f;
}
.orglogo--card { max-width: 180px; min-height: 46px; margin-bottom: 16px; }
.orglogo--card img { max-height: 26px; }
.orglogo--card .orglogo__txt { font-size: 17px; }

/* white-ink marks used straight on a dark panel */
.ukgc { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.ukgc img { height: 26px; width: auto; opacity: .92; }
.ukgc span {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted-2); font-family: var(--display); font-weight: 600;
}

.orgs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
.org {
  display: block; text-align: center;
  background: rgba(242,240,231,.05); border: 1px solid var(--line); border-radius: 12px;
  padding: 10px; text-decoration: none; transition: .18s;
}
.org:hover { border-color: var(--mint-2); background: rgba(242,240,231,.09); }
.org .orglogo { margin-bottom: 8px; }
.org__note {
  display: block; font-size: 10.5px; color: var(--muted-2);
  letter-spacing: .03em; line-height: 1.35;
}

.foot-legal {
  border-top: 1px solid var(--line); padding: 20px 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.foot-legal nav { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.foot-legal nav a { font-size: 12.5px; color: var(--muted); text-decoration: none; }
.foot-legal nav a:hover { color: var(--mint); text-decoration: underline; }
.foot-legal .sep { color: var(--muted-2); font-size: 12px; }
.foot-legal p { margin: 0; font-size: 12.5px; color: var(--muted-2); }

/* ---------- cookie modal ---------- */
.cookie {
  position: fixed; left: 22px; bottom: 22px; z-index: 200; width: min(430px, calc(100vw - 44px));
  background: var(--panel); border: 1px solid rgba(207,243,225,.2); border-radius: var(--r-lg);
  padding: 22px; box-shadow: 0 26px 60px rgba(0,0,0,.6);
  transform: translateY(140%); transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.cookie.show { transform: translateY(0); }
.cookie h4 { font-family: var(--display); font-size: 16px; margin: 0 0 8px; display: flex; align-items: center; gap: 9px; }
.cookie p { font-size: 13.5px; color: var(--muted); margin: 0 0 16px; }
.cookie p a { color: var(--mint); }
.cookie__row { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__row .btn { flex: 1 1 auto; }

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { min-height: 300px; margin-top: 10px; }
  .features { grid-template-columns: 1fr; gap: 26px; }
  .feature + .feature { border-left: 0; border-top: 1px solid var(--line); padding-top: 26px; }
  .quotes, .posts, .cards--3 { grid-template-columns: 1fr; }
  .layout { grid-template-columns: 1fr; }
  .aside { position: static; }
  .foot-main { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--panel); border-bottom: 1px solid var(--line); padding: 14px 22px 20px; gap: 4px;
  }
  .nav.open a { padding: 12px 14px; border-radius: 10px; }
  .burger { display: block; }
  .head-cta .btn { display: none; }
}

@media (max-width: 720px) {
  .hero__panel { padding: 30px 22px 28px; border-radius: var(--r-lg); }
  .cards, .pc, .split { grid-template-columns: 1fr; }
  .split__l { border-right: 1px solid var(--line); border-bottom: 0; }
  .foot-main { grid-template-columns: 1fr; }
  .hero__stats { gap: 20px; flex-wrap: wrap; }
  .sec { padding: 52px 0; }
  .cookie { left: 12px; right: 12px; bottom: 12px; width: auto; }
  .hero__seal { width: 74px; height: 74px; font-size: 8px; }
}

@media (max-width: 720px) {
  .brand-tile--back { display: none; }
  .brand-tile { transform: rotate(1.5deg); }
  .hero__art { min-height: 0; }
}

@media (max-width: 480px) {
  .cookie__row .btn { flex: 1 1 100%; }
  .foot-legal { flex-direction: column; align-items: flex-start; }
}

/* keep the header on one line between the nav breakpoint and full desktop */
@media (min-width: 1025px) and (max-width: 1180px) {
  .head-in { gap: 14px; }
  .nav a { padding: 9px 7px; letter-spacing: 0.05em; }
  .logo__txt { font-size: 15.5px; }
}
