/* TeachWithAI — Full Light Magazine Lab Theme */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&display=swap');

:root {
  --white: #FFFFFF;
  --silk: #F7F8FA;
  --mist: #EEF1F5;
  --teal: #0D9B8A;
  --teal-dark: #0B7F71;
  --teal-soft: rgba(13, 155, 138, 0.12);
  --ink: #141820;
  --ink-muted: #5A6472;
  --ink-light: #7A8684;
  --border: #D8DEE6;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-width: 1180px;
  --nav-height: 76px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 8px 32px rgba(30, 42, 40, 0.07);
  --transition: 0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body.site-teachwithai {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.68;
  overflow-x: hidden;
}

body.site-teachwithai.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--teal-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
}

h1 { font-size: clamp(2.35rem, 5.2vw, 3.65rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.55rem); margin-bottom: 1rem; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.45rem); font-weight: 600; margin-bottom: 0.7rem; }
p { margin-bottom: 1rem; color: var(--ink-muted); }
ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; color: var(--ink-muted); }
li { margin-bottom: 0.45rem; }

/* Surface system */
.surface-white { background: #FFFFFF; color: #141820; }
.surface-silk { background: #F7F8FA; color: #141820; }
.surface-mist { background: #EEF1F5; color: #141820; }
.surface-accent-teal { background: #0D9B8A; color: #FFFFFF; }
.surface-white *, .surface-silk *, .surface-mist *, .surface-accent-teal * { color: inherit; }
.surface-white a, .surface-silk a, .surface-mist a { color: #0D9B8A; text-decoration: underline; }
.surface-accent-teal a { color: #FFFFFF; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 5.5rem 0; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

.lead { font-size: 1.18rem; line-height: 1.6; color: var(--ink-muted); }

.section-header { max-width: 680px; margin-bottom: 3rem; }
.section-header--centre { margin-left: auto; margin-right: auto; text-align: center; }

/* Header */
.teachwithai-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.logo-mark { width: 38px; height: 38px; flex-shrink: 0; }

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-muted);
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
  position: relative;
  transition: color var(--transition);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active { color: var(--teal); }

.nav-desktop a:hover::after,
.nav-desktop a.active::after { transform: scaleX(1); }

.nav-desktop a.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  margin-left: 0.6rem;
  border-radius: var(--radius);
  padding: 0.6rem 1.15rem;
}

.nav-desktop a.nav-cta::after { display: none; }

.nav-desktop a.nav-cta:hover { background: var(--teal-dark); color: var(--white) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 46px;
  height: 46px;
  position: relative;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 6px auto;
  transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Fullscreen overlay nav */
.teachwithai-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.teachwithai-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.nav-overlay-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 0;
}

.nav-overlay-close svg { width: 26px; height: 26px; }

#teachwithaiOverlay a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.85rem 2rem;
  transition: color var(--transition);
}

#teachwithaiOverlay a:hover { color: var(--teal); }

/* Hero Pattern F — magazine spread */
.hero-pattern-f {
  min-height: 92vh;
  padding: 5rem 0 5.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-magazine-grid {
  display: grid;
  grid-template-columns: auto 1.05fr 0.95fr;
  gap: 2rem 3.5rem;
  align-items: end;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.hero-brand-rail {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  align-self: center;
}

.hero-copy-col {
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}

.serial-badge {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.hero-pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.45;
  border-left: 3px solid var(--teal);
  padding-left: 1rem;
  margin: 1.25rem 0 1.5rem;
  color: var(--ink);
}

.hero-trust {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 1.25rem;
}

.hero-photo-caption {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 0.5rem;
  margin-left: 14%;
}

.hero-copy-col .hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 1.1rem;
}

.hero-copy-col h1 { margin-bottom: 1.35rem; }

.hero-visual-col {
  position: relative;
  min-height: 460px;
}

.hero-main-img {
  width: 86%;
  margin-left: 14%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.hero-inset-collage {
  position: absolute;
  bottom: -1.25rem;
  left: 0;
  width: 46%;
  border: 5px solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 1;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  border-radius: 999px;
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--teal);
  border-radius: 999px;
  margin-left: 0;
  margin-right: 0.8rem;
}

.btn-outline:hover {
  border-color: var(--teal-dark);
  color: var(--teal-dark);
}

.btn-outline-light {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 999px;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

.cta-band-wrap {
  padding: 6rem 0;
  text-align: center;
}

.cta-band-wrap h2,
.cta-band-wrap p {
  color: #FFFFFF;
}

/* Manifesto */
.manifesto-grid {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 4rem;
  align-items: start;
}

.manifesto-pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  border-left: 4px solid var(--teal);
  padding-left: 1.5rem;
}

/* Innovation counter */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.counter-cell {
  padding: 2rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.counter-cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-cell span {
  font-size: 0.86rem;
  color: var(--ink-muted);
}

/* Tracks grid */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.track-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
}

.track-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.track-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

/* Lab showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.showcase-stack {
  display: grid;
  gap: 1.25rem;
}

.showcase-stack img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.showcase-stack img:first-child { aspect-ratio: 16/10; }
.showcase-stack img:last-child { aspect-ratio: 3/4; max-width: 72%; margin-left: auto; }

/* Programme cards */
.programme-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.programme-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.programme-card .code {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.programme-card .btn { margin-top: auto; padding-top: 1.5rem; align-self: flex-start; }

/* FAQ editorial */
.faq-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.faq-column h2 {
  font-size: 1.45rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--teal);
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
}

.faq-item p { font-size: 0.94rem; }

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--teal-soft);
  border: 1px solid rgba(13, 155, 138, 0.2);
}

.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { max-width: 520px; margin: 0 auto 2rem; }

/* Page hero */
.page-hero {
  padding: 3.75rem 0;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { margin-bottom: 0.85rem; }
.page-hero p { font-size: 1.1rem; max-width: 620px; }

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.feature-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

/* Program list */
.program-list { display: flex; flex-direction: column; gap: 1.5rem; }

.program-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}

.program-row:hover { box-shadow: var(--shadow); }

.program-code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--teal);
}

/* Service blocks */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.service-block:nth-child(even) .service-img { order: 2; }
.service-block:nth-child(even) .service-text { order: 1; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
}

.contact-info-block {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-info-block h3 { margin-top: 1.5rem; }
.contact-info-block h3:first-child { margin-top: 0; }

.form-surface {
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group textarea { min-height: 150px; resize: vertical; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: var(--ink-muted);
}

.form-check input { margin-top: 0.2rem; flex-shrink: 0; }

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
}

.alert-success {
  background: var(--teal-soft);
  border: 1px solid rgba(13, 155, 138, 0.3);
  color: var(--ink);
}

.alert-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #7F1D1D;
}

/* Legal */
.legal-content { max-width: 780px; }
.legal-content h2 { margin-top: 2.5rem; font-size: 1.35rem; }
.legal-content h3 { margin-top: 1.75rem; font-size: 1.1rem; }
.legal-content p, .legal-content li { font-size: 0.95rem; }

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.legal-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink-muted);
}

.legal-nav a:hover { border-color: var(--teal); color: var(--teal); }

/* Disclaimer */
.disclaimer {
  background: var(--mist);
  border-left: 4px solid var(--teal);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}

.disclaimer p {
  font-size: 0.86rem;
  margin-bottom: 0;
  color: var(--ink-muted);
}

/* Footer */
.site-footer { border-top: 1px solid var(--border); }

.footer-magazine {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 3rem;
  padding: 4rem 1.5rem 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; max-width: 400px; }

.footer-links h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 1rem;
  color: var(--ink);
}

.footer-links-gap { margin-top: 1.5rem; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.9rem; color: var(--ink-muted); }
.footer-links a:hover { color: var(--teal); }

.footer-ribbon { border-top: 1px solid var(--border); padding: 1.3rem 0; }

.footer-ribbon-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.footer-ribbon a { color: var(--ink-muted); }
.footer-ribbon a:hover { color: var(--teal); }

.footer-contact-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 28px rgba(30, 42, 40, 0.09);
  padding: 1.25rem 1.5rem;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-inner p {
  font-size: 0.86rem;
  margin: 0;
  flex: 1;
  min-width: 240px;
}

.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.cookie-actions button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 0.62rem 1.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}

.cookie-accept { background: var(--teal); color: var(--white); }
.cookie-accept:hover { background: var(--teal-dark); }

.cookie-reject {
  background: var(--white);
  color: var(--ink-muted);
  border: 1px solid var(--border) !important;
}

.cookie-customise {
  background: var(--mist);
  color: var(--ink);
  border: 1px solid var(--border) !important;
}

.cookie-panel {
  max-width: var(--max-width);
  margin: 1rem auto 0;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.cookie-panel h3 { font-size: 1rem; margin-bottom: 0.85rem; }

.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  color: var(--ink-muted);
}

.cookie-save { margin-top: 0.75rem; padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* Scroll reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 404 */
.error-page {
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.error-page h1 {
  font-size: 6.5rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 960px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: block; }
  .teachwithai-overlay { display: flex; }

  .hero-magazine-grid,
  .manifesto-grid,
  .two-col,
  .tracks-grid,
  .showcase-grid,
  .programme-cards,
  .faq-editorial,
  .contact-grid,
  .footer-magazine,
  .service-block,
  .program-row,
  .counter-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-col { min-height: 340px; margin-top: 2rem; }
  .hero-main-img { width: 100%; margin-left: 0; }
  .hero-inset-collage { width: 42%; }

  .program-row { gap: 1rem; }
  .btn-outline { margin-left: 0; margin-top: 0.75rem; display: inline-block; }

  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-stack img:last-child { max-width: 100%; margin-left: 0; }

  .service-block:nth-child(even) .service-img,
  .service-block:nth-child(even) .service-text { order: unset; }
}

@media (max-width: 480px) {
  .hero-inset-collage { width: 52%; bottom: -0.5rem; }
  .counter-grid { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
}
