/* ============================================================
   NOVA IMPERIUM – MAIN STYLESHEET
   Design: Bold Contrast | Fonts: Literata + Figtree
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Colors */
  --clr-ink:       #0f0f12;
  --clr-ink-mid:   #1e1e26;
  --clr-ink-soft:  #2d2d3a;
  --clr-surface:   #f7f6f3;
  --clr-surface-2: #eeecea;
  --clr-white:     #fdfcfa;
  --clr-accent:    #d4500a;
  --clr-accent-dk: #a83d06;
  --clr-accent-lt: #f0784a;
  --clr-muted:     #6b6b7a;
  --clr-border:    #d8d6d2;
  --clr-border-dk: rgba(255,255,255,0.12);

  /* Typography */
  --ff-heading: 'Literata', Georgia, serif;
  --ff-body:    'Figtree', system-ui, sans-serif;

  /* Type scale (fluid) */
  --fs-hero:    clamp(2.8rem, 6vw + 1rem, 5.5rem);
  --fs-h1:      clamp(2rem, 4vw + 0.5rem, 3.5rem);
  --fs-h2:      clamp(1.6rem, 3vw + 0.4rem, 2.5rem);
  --fs-h3:      clamp(1.2rem, 2vw + 0.2rem, 1.5rem);
  --fs-body:    1rem;
  --fs-sm:      0.875rem;
  --fs-xs:      0.75rem;

  /* Spacing */
  --sp-xs:   0.5rem;
  --sp-sm:   1rem;
  --sp-md:   1.5rem;
  --sp-lg:   2.5rem;
  --sp-xl:   4rem;
  --sp-2xl:  6rem;
  --sp-3xl:  9rem;

  /* Radii */
  --r-sm:   4px;
  --r-md:   10px;
  --r-lg:   18px;
  --r-xl:   28px;
  --r-pill: 999px;

  /* Shadows (layered) */
  --shadow-card:
    0 1px 2px rgba(15,15,18,0.06),
    0 4px 12px rgba(15,15,18,0.08),
    0 16px 32px rgba(15,15,18,0.06);
  --shadow-card-hover:
    0 2px 4px rgba(15,15,18,0.08),
    0 8px 24px rgba(15,15,18,0.14),
    0 32px 64px rgba(15,15,18,0.10);
  --shadow-float:
    0 4px 8px rgba(15,15,18,0.10),
    0 16px 48px rgba(15,15,18,0.18),
    0 48px 96px rgba(15,15,18,0.12);
  --shadow-nav:
    0 1px 0 rgba(15,15,18,0.06),
    0 4px 24px rgba(15,15,18,0.08);
  --shadow-btn:
    0 1px 2px rgba(15,15,18,0.12),
    0 4px 12px rgba(212,80,10,0.25);
  --shadow-btn-hover:
    0 2px 4px rgba(15,15,18,0.16),
    0 8px 24px rgba(212,80,10,0.35);

  /* Transitions */
  --t-fast:   150ms ease-out;
  --t-base:   250ms ease-out;
  --t-slow:   400ms ease-out;
  --t-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--clr-ink);
  background-color: var(--clr-white);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color var(--t-base);
}
a:hover { color: var(--clr-accent-dk); }

ul { list-style: none; }

address { font-style: normal; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-heading);
  line-height: 1.2;
  color: var(--clr-ink);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-h1); font-weight: 700; }
h2 { font-size: var(--fs-h2); font-weight: 700; }
h3 { font-size: var(--fs-h3); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--clr-muted); }
p + p { margin-top: var(--sp-sm); }

strong { color: var(--clr-ink); }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

/* ── SECTION LABELS ─────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: rgba(212,80,10,0.08);
  padding: 0.3em 0.9em;
  border-radius: var(--r-pill);
  border: 1px solid rgba(212,80,10,0.2);
  margin-bottom: var(--sp-sm);
}

.section-label--light {
  color: var(--clr-accent-lt);
  background: rgba(240,120,74,0.15);
  border-color: rgba(240,120,74,0.3);
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.85em 1.75em;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color var(--t-base),
    color var(--t-base),
    border-color var(--t-base),
    box-shadow var(--t-base),
    transform var(--t-spring);
  white-space: nowrap;
  min-height: 44px;
}

.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  background: var(--clr-accent-dk);
  border-color: var(--clr-accent-dk);
  box-shadow: var(--shadow-btn-hover);
  color: var(--clr-white);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--clr-ink);
  border-color: var(--clr-border);
}
.btn--ghost:hover {
  background: var(--clr-surface-2);
  border-color: var(--clr-ink);
  color: var(--clr-ink);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn--lg {
  font-size: 1rem;
  padding: 1em 2.2em;
}

.btn--sm {
  font-size: 0.82rem;
  padding: 0.65em 1.3em;
}

.btn--full { width: 100%; justify-content: center; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253,252,250,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-nav);
  transition: background var(--t-base), box-shadow var(--t-base);
}

.nav--scrolled {
  background: rgba(253,252,250,0.98);
  box-shadow: var(--shadow-card);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  width: 34px;
  height: 34px;
}

.nav__logo-text {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-ink);
  letter-spacing: -0.03em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.nav__link {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-muted);
  text-decoration: none;
  padding: 0.3em 0;
  border-bottom: 2px solid transparent;
  transition: color var(--t-base), border-color var(--t-base);
}
.nav__link:hover,
.nav__link.active {
  color: var(--clr-ink);
  border-bottom-color: var(--clr-accent);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: var(--sp-sm);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-md);
  transition: background var(--t-base);
}
.nav__hamburger:hover { background: var(--clr-surface-2); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-ink);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,15,18,0.5);
  z-index: 98;
  opacity: 0;
  transition: opacity var(--t-base);
}
.nav__overlay.visible {
  display: block;
  opacity: 1;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--clr-ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-xl);
  padding: calc(68px + var(--sp-2xl)) var(--sp-md) var(--sp-2xl);
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.hero__bg-layer {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212,80,10,0.12) 0%, transparent 70%),
    var(--clr-ink);
  z-index: -1;
  pointer-events: none;
}

/* Dark hero section wrapper */
body > main > .hero {
  background: transparent;
}

/* We need the full page dark for hero */
.hero-wrapper {
  background: var(--clr-ink);
}

/* Actually let's apply dark bg directly on hero section */
section.hero {
  background: var(--clr-ink);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

section.hero > * {
  padding-left: var(--sp-md);
  padding-right: var(--sp-md);
}

section.hero {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.hero {
  background: var(--clr-ink);
  padding-top: calc(68px + var(--sp-2xl));
  padding-bottom: var(--sp-2xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 75% 30%, rgba(212,80,10,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(212,80,10,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent-lt);
  margin-bottom: var(--sp-md);
}

.hero__heading {
  font-size: var(--fs-hero);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-md);
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw + 0.4rem, 1.2rem);
  color: rgba(253,252,250,0.72);
  max-width: 52ch;
  margin-bottom: var(--sp-lg);
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}

.hero__indicators {
  display: flex;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.hero__indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: rgba(253,252,250,0.55);
}

.hero__indicator i {
  color: var(--clr-accent-lt);
  font-size: 1rem;
}

.hero__image-wrap {
  position: relative;
  z-index: 1;
}

.hero__image-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.hero__image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  pointer-events: none;
}

.hero__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* Hero layout grid */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    min-height: 100vh;
  }
}

.hero__content,
.hero__image-wrap {
  padding-left: var(--sp-md);
  padding-right: var(--sp-md);
}

@media (min-width: 1200px) {
  .hero__content { padding-left: calc((100vw - 1200px)/2 + var(--sp-md)); }
  .hero__image-wrap { padding-right: calc((100vw - 1200px)/2 + var(--sp-md)); }
}

/* ── PROBLEM SECTION ────────────────────────────────────────── */
.problem {
  padding: var(--sp-2xl) 0;
  background: var(--clr-surface);
}

.problem__question {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto var(--sp-xl);
}

.problem__heading {
  font-size: var(--fs-h2);
  color: var(--clr-ink);
  margin-top: var(--sp-sm);
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-md);
}

.problem__card {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--t-base), transform var(--t-base);
  position: relative;
  overflow: hidden;
}

.problem__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-lt));
  opacity: 0;
  transition: opacity var(--t-base);
}

.problem__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.problem__card:hover::before { opacity: 1; }

.problem__icon {
  width: 48px;
  height: 48px;
  background: rgba(212,80,10,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
  font-size: 1.3rem;
  color: var(--clr-accent);
  border: 1px solid rgba(212,80,10,0.15);
  transition: background var(--t-base), transform var(--t-spring);
}
.problem__card:hover .problem__icon { transform: scale(1.08); }

.problem__card h3 {
  font-size: 1.1rem;
  color: var(--clr-ink);
  margin-bottom: var(--sp-xs);
}

/* ── FEATURES (ALTERNATING) ─────────────────────────────────── */
.features {
  padding: var(--sp-2xl) 0;
  background: var(--clr-white);
}

.features__intro {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto var(--sp-2xl);
}

.features__intro h2 { margin-bottom: var(--sp-sm); }

.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
  margin-bottom: var(--sp-3xl);
}

.feature-row:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
  }
  .feature-row--reversed .feature-row__visual {
    order: 2;
  }
  .feature-row--reversed .feature-row__text {
    order: 1;
  }
}

.feature-row__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--clr-border);
  position: relative;
}

.feature-row__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  pointer-events: none;
}

.feature-row__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.feature-row__img-wrap:hover .feature-row__img { transform: scale(1.03); }

.feature-row__text {
  padding: var(--sp-sm) 0;
}

.feature-row__icon {
  width: 52px;
  height: 52px;
  background: rgba(212,80,10,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--clr-accent);
  border: 1px solid rgba(212,80,10,0.15);
  margin-bottom: var(--sp-md);
}

.feature-row__text h3 {
  color: var(--clr-ink);
  margin-bottom: var(--sp-sm);
}

.feature-row__text p {
  margin-bottom: var(--sp-sm);
}

.feature-row__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--clr-accent);
  margin-top: var(--sp-sm);
  border-bottom: 1px solid transparent;
  transition: gap var(--t-base), border-color var(--t-base);
}
.feature-row__link:hover {
  gap: 0.7em;
  border-bottom-color: var(--clr-accent);
  color: var(--clr-accent-dk);
}

/* ── COHORT SECTION (seamless blend) ────────────────────────── */
.cohort-section {
  padding: var(--sp-2xl) 0;
  background: var(--clr-ink);
  position: relative;
  overflow: hidden;
}

.cohort-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(212,80,10,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cohort-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .cohort-section__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.cohort-section__text h2 {
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
}

.cohort-section__text p {
  color: rgba(253,252,250,0.68);
  margin-bottom: var(--sp-sm);
}

.cohort-section__text .btn { margin-top: var(--sp-md); }

.cohort-section__visual {
  position: relative;
}

.cohort-section__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(255,255,255,0.08);
}

.cohort-section__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.cohort-section__badge {
  position: absolute;
  bottom: -var(--sp-sm);
  left: var(--sp-md);
  background: var(--clr-accent);
  color: var(--clr-white);
  padding: 0.6em 1.2em;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5em;
  box-shadow: var(--shadow-btn);
  transform: translateY(50%);
}

/* ── WHO SECTION ────────────────────────────────────────────── */
.who-section {
  padding: var(--sp-2xl) 0;
  background: var(--clr-surface);
}

.who-section__header {
  text-align: center;
  max-width: 55ch;
  margin: 0 auto var(--sp-xl);
}

.who-section__header h2 { margin-bottom: var(--sp-sm); }

.who-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.who-card {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.who-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.who-card__icon {
  width: 52px;
  height: 52px;
  background: var(--clr-ink);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
}

.who-card h3 { color: var(--clr-ink); margin-bottom: var(--sp-xs); }

.who-section__image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-md);
}

.who-section__img {
  border-radius: var(--r-lg);
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  transition: transform var(--t-slow), box-shadow var(--t-base);
}
.who-section__img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-card-hover);
}

/* ── CAROUSEL SECTION ───────────────────────────────────────── */
.carousel-section {
  padding: var(--sp-2xl) 0;
  background: var(--clr-white);
}

.carousel-section__header {
  text-align: center;
  max-width: 55ch;
  margin: 0 auto var(--sp-xl);
}
.carousel-section__header h2 { margin-bottom: var(--sp-sm); }

.session-card {
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  height: 100%;
  border: 1px solid var(--clr-border);
  box-shadow:
    0 1px 3px rgba(15,15,18,0.05),
    0 4px 12px rgba(15,15,18,0.06);
  transition: box-shadow var(--t-base), transform var(--t-base), background var(--t-base);
}
.session-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  background: var(--clr-white);
}

.session-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(212,80,10,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-accent);
  margin-bottom: var(--sp-md);
  border: 1px solid rgba(212,80,10,0.15);
}

.session-card h4 {
  color: var(--clr-ink);
  margin-bottom: var(--sp-xs);
}

/* Splide overrides */
.splide__pagination__page {
  background: var(--clr-border);
  transition: background var(--t-base), transform var(--t-base);
}
.splide__pagination__page.is-active {
  background: var(--clr-accent);
  transform: scale(1.3);
}
.splide__arrow {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  transition: background var(--t-base), box-shadow var(--t-base);
}
.splide__arrow:hover {
  background: var(--clr-surface);
  box-shadow: var(--shadow-card-hover);
}
.splide__arrow svg { fill: var(--clr-ink); }
.splide__track { padding-bottom: var(--sp-lg) !important; }

/* ── DUAL CTA ────────────────────────────────────────────────── */
.dual-cta {
  padding: var(--sp-2xl) 0;
  background: var(--clr-ink);
  position: relative;
  overflow: hidden;
}

.dual-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 25% 50%, rgba(212,80,10,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 75% 50%, rgba(212,80,10,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.dual-cta__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .dual-cta__grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}

.dual-cta__divider {
  display: none;
}
@media (min-width: 768px) {
  .dual-cta__divider {
    display: block;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
  }
}

.dual-cta__icon {
  width: 56px;
  height: 56px;
  background: rgba(212,80,10,0.15);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--clr-accent-lt);
  margin-bottom: var(--sp-md);
  border: 1px solid rgba(212,80,10,0.25);
}

.dual-cta__primary h3,
.dual-cta__secondary h3 {
  color: var(--clr-white);
  font-size: 1.4rem;
  margin-bottom: var(--sp-sm);
}

.dual-cta__primary p,
.dual-cta__secondary p {
  color: rgba(253,252,250,0.65);
  margin-bottom: var(--sp-md);
}

/* ── IRELAND SECTION ────────────────────────────────────────── */
.ireland-section {
  padding: var(--sp-2xl) 0;
  background: var(--clr-surface);
}

.ireland-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .ireland-section__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.ireland-section__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--clr-border);
}

.ireland-section__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.ireland-section__img-wrap:hover .ireland-section__img { transform: scale(1.03); }

.ireland-section__text h2 {
  color: var(--clr-ink);
  margin-bottom: var(--sp-md);
  margin-top: var(--sp-sm);
}

.ireland-section__text p { margin-bottom: var(--sp-sm); }

.ireland-section__address {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: var(--sp-md);
  font-size: var(--fs-sm);
  color: var(--clr-muted);
}
.ireland-section__address i { color: var(--clr-accent); margin-top: 0.2em; }

/* ── PAGE HERO ───────────────────────────────────────────────── */
.page-hero {
  padding: calc(68px + var(--sp-2xl)) 0 var(--sp-2xl);
  background: var(--clr-ink);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(212,80,10,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero__heading {
  font-size: var(--fs-h1);
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
  max-width: 18ch;
}

.page-hero__sub {
  font-size: clamp(1rem, 1.5vw + 0.3rem, 1.2rem);
  color: rgba(253,252,250,0.68);
  max-width: 55ch;
}

.page-hero--light {
  background: var(--clr-surface);
}
.page-hero--light::before { display: none; }
.page-hero--light .page-hero__heading { color: var(--clr-ink); }
.page-hero--light .page-hero__sub { color: var(--clr-muted); }
.page-hero--light .section-label { color: var(--clr-accent); }

.page-hero--dark {
  background: var(--clr-ink-mid);
}

.page-hero--accent {
  background: linear-gradient(135deg, var(--clr-ink) 60%, var(--clr-ink-soft));
}

/* ── THINKING SECTION ───────────────────────────────────────── */
.thinking-section {
  padding: var(--sp-2xl) 0;
  background: var(--clr-white);
}

.thinking-section--alt {
  background: var(--clr-surface);
}

.thinking-section__intro {
  max-width: 65ch;
  margin: 0 auto var(--sp-2xl);
}

.thinking-section__intro h2 {
  margin-bottom: var(--sp-md);
}

.thinking-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}

.thinking-pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-lg);
  align-items: start;
  padding: var(--sp-lg);
  background: var(--clr-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--t-base);
}
.thinking-pillar:hover { box-shadow: var(--shadow-card-hover); }

.thinking-section--alt .thinking-pillar {
  background: var(--clr-white);
}

.thinking-pillar__number {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(212,80,10,0.18);
  line-height: 1;
  min-width: 3rem;
  letter-spacing: -0.04em;
}

.thinking-pillar__content h3 {
  color: var(--clr-ink);
  margin-bottom: var(--sp-sm);
}

.thinking-pillar__content p { margin-bottom: var(--sp-sm); }

.thinking-image-break {
  padding: var(--sp-xl) 0;
  background: var(--clr-surface);
}

.thinking-image-break__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .thinking-image-break__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.thinking-image-break__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--clr-border);
}

.thinking-image-break__callout {
  padding: var(--sp-lg);
}

.thinking-image-break__callout blockquote p {
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.4rem);
  font-style: italic;
  color: var(--clr-ink);
  line-height: 1.5;
  margin-bottom: var(--sp-md);
}

.thinking-image-break__callout cite {
  font-size: var(--fs-sm);
  color: var(--clr-accent);
  font-weight: 600;
}

.thinking-negatives {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-md);
}

.thinking-negative {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}

.thinking-negative__icon {
  font-size: 1.5rem;
  color: var(--clr-muted);
  margin-bottom: var(--sp-sm);
}

.thinking-negative h4 { color: var(--clr-ink); margin-bottom: var(--sp-xs); }

/* ── CTA STRIP ───────────────────────────────────────────────── */
.cta-strip {
  padding: var(--sp-2xl) 0;
  background: var(--clr-ink);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 50%, rgba(212,80,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip__inner {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-strip__inner h2 {
  color: var(--clr-white);
  margin-bottom: var(--sp-sm);
}

.cta-strip__inner p {
  color: rgba(253,252,250,0.65);
  margin-bottom: var(--sp-lg);
}

.cta-strip__actions {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-strip .btn--ghost {
  color: rgba(253,252,250,0.8);
  border-color: rgba(255,255,255,0.25);
}
.cta-strip .btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: var(--clr-white);
}

/* ── TEAMS SECTION ───────────────────────────────────────────── */
.teams-intro {
  padding: var(--sp-2xl) 0;
  background: var(--clr-white);
}

.teams-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .teams-intro__grid {
    grid-template-columns: 1fr 1fr;
  }
  
  section.hero {
    flex-direction: row;
  }
}

.teams-intro__text h2 { color: var(--clr-ink); margin-bottom: var(--sp-md); }
.teams-intro__text p { margin-bottom: var(--sp-sm); }

.teams-intro__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--clr-border);
}

.teams-offering {
  padding: var(--sp-2xl) 0;
  background: var(--clr-surface);
}

.teams-offering__header {
  text-align: center;
  max-width: 55ch;
  margin: 0 auto var(--sp-xl);
}
.teams-offering__header h2 { margin-bottom: var(--sp-sm); }

.teams-offering__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-md);
}

.teams-card {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.teams-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.teams-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(212,80,10,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-accent);
  margin-bottom: var(--sp-md);
  border: 1px solid rgba(212,80,10,0.15);
}

.teams-card h3 { color: var(--clr-ink); margin-bottom: var(--sp-xs); font-size: 1.05rem; }

.teams-suitability {
  padding: var(--sp-2xl) 0;
  background: var(--clr-white);
}

.teams-suitability__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .teams-suitability__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.teams-suitability__text h2 { color: var(--clr-ink); margin-bottom: var(--sp-md); margin-top: var(--sp-sm); }
.teams-suitability__text p { margin-bottom: var(--sp-sm); }
.teams-suitability__text .btn { margin-top: var(--sp-md); }

.teams-suitability__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--clr-border);
}

.teams-suitability__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ── SESSIONS PAGE ───────────────────────────────────────────── */
.sessions-overview {
  padding: var(--sp-2xl) 0;
  background: var(--clr-white);
}

.sessions-overview__intro {
  max-width: 65ch;
  margin: 0 auto var(--sp-2xl);
}
.sessions-overview__intro h2 { margin-bottom: var(--sp-md); }
.sessions-overview__intro p { margin-bottom: var(--sp-sm); }

.sessions-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: var(--sp-lg);
  border-left: 2px solid var(--clr-border);
}

.sessions-timeline__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-sm);
  padding: var(--sp-lg) 0 var(--sp-xl) var(--sp-lg);
  position: relative;
}

.sessions-timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--sp-lg) - 6px);
  top: var(--sp-lg);
  width: 12px;
  height: 12px;
  background: var(--clr-accent);
  border-radius: 50%;
  border: 3px solid var(--clr-white);
  box-shadow: 0 0 0 2px var(--clr-accent);
}

@media (min-width: 600px) {
  .sessions-timeline__item {
    grid-template-columns: 140px 1fr;
  }
}

.sessions-timeline__time {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-accent);
  white-space: nowrap;
  padding-top: 0.2rem;
}

.sessions-timeline__content h3 {
  color: var(--clr-ink);
  font-size: 1.15rem;
  margin-bottom: var(--sp-sm);
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.sessions-timeline__content h3 i {
  color: var(--clr-accent);
  font-size: 1rem;
}

.sessions-timeline__content p { margin-bottom: var(--sp-sm); }

.sessions-practicalities {
  padding: var(--sp-2xl) 0;
  background: var(--clr-surface);
}

.sessions-practicalities__header {
  text-align: center;
  max-width: 55ch;
  margin: 0 auto var(--sp-xl);
}
.sessions-practicalities__header h2 { margin-bottom: var(--sp-sm); }

.sessions-practicalities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.practicality-card {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.practicality-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.practicality-card__icon {
  width: 48px;
  height: 48px;
  background: var(--clr-ink);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
}

.practicality-card h4 { color: var(--clr-ink); margin-bottom: var(--sp-xs); }

.sessions-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--clr-border);
}

.sessions-img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
}

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-section {
  padding: var(--sp-2xl) 0;
  background: var(--clr-white);
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
}

@media (min-width: 900px) {
  .contact-section__grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.contact-form-card {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--clr-border);
}

.contact-form-card h2 {
  color: var(--clr-ink);
  margin-bottom: var(--sp-xs);
}

.contact-form-card__sub {
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-ink);
}

.form-group input,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-ink);
  background: var(--clr-surface);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 0.75em 1em;
  transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
  outline: none;
  width: 100%;
  min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-accent);
  background: var(--clr-white);
  box-shadow: 0 0 0 3px rgba(212,80,10,0.12);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  accent-color: var(--clr-accent);
  margin-top: 0.15em;
  cursor: pointer;
}

.contact-info-card {
  background: var(--clr-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--sp-md);
}

.contact-info-card h3 {
  color: var(--clr-ink);
  margin-bottom: var(--sp-md);
}

.contact-info-card__items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
}

.contact-info-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(212,80,10,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(212,80,10,0.15);
}

.contact-info-item__label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-muted);
  margin-bottom: 0.2em;
}

.contact-info-item__value {
  display: block;
  font-size: var(--fs-sm);
  color: var(--clr-ink);
  font-weight: 500;
}

a.contact-info-item__value:hover { color: var(--clr-accent); }

.contact-map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
}

.contact-map-wrap iframe { display: block; }

/* ── LEGAL PAGES ─────────────────────────────────────────────── */
.legal-section {
  padding: var(--sp-2xl) 0;
  background: var(--clr-white);
}

.legal-content {
  max-width: 72ch;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.3rem;
  color: var(--clr-ink);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
  padding-bottom: 0.4em;
  border-bottom: 1px solid var(--clr-border);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-size: 1.05rem;
  color: var(--clr-ink);
  margin-top: var(--sp-lg);
  margin-bottom: var(--sp-sm);
}

.legal-content p { margin-bottom: var(--sp-sm); }

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--sp-sm);
}

.legal-content ul li {
  margin-bottom: 0.4em;
  color: var(--clr-muted);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--sp-md);
  font-size: var(--fs-sm);
}

.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 0.6em 0.8em;
  border: 1px solid var(--clr-border);
}

.cookie-table th {
  background: var(--clr-surface);
  font-weight: 600;
  color: var(--clr-ink);
}

.cookie-table td { color: var(--clr-muted); }

/* ── THANKS PAGE ─────────────────────────────────────────────── */
.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 68px - 200px);
  padding: var(--sp-2xl) var(--sp-md);
  background: var(--clr-surface);
}

.thanks-wrap {
  text-align: center;
  max-width: 52ch;
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--clr-border);
}

.thanks-icon {
  font-size: 3.5rem;
  color: var(--clr-accent);
  margin-bottom: var(--sp-md);
}

.thanks-wrap h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--clr-ink);
  margin-bottom: var(--sp-md);
}

.thanks-wrap p { margin-bottom: var(--sp-sm); }

.thanks-links {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-lg);
  margin-bottom: var(--sp-md);
}

.thanks-home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-muted);
  transition: color var(--t-base), gap var(--t-base);
}
.thanks-home-link:hover {
  color: var(--clr-accent);
  gap: 0.7em;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--clr-ink-mid);
  margin-top: auto;
}

.footer__top {
  padding: var(--sp-2xl) 0 var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 1.8fr 1fr 1fr;
  }
}

.footer__logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: var(--sp-md);
}

.footer__logo { width: 32px; height: 32px; }

.footer__brand-name {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: -0.03em;
}

.footer__tagline {
  font-size: var(--fs-sm);
  color: rgba(253,252,250,0.5);
  line-height: 1.65;
  max-width: 36ch;
  margin-bottom: var(--sp-md);
}

.footer__contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: rgba(253,252,250,0.55);
  text-decoration: none;
  transition: color var(--t-base);
}
.footer__contact-item:hover { color: var(--clr-accent-lt); }
.footer__contact-item i { color: var(--clr-accent-lt); font-size: 0.9rem; }

.footer__col-heading {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,252,250,0.35);
  margin-bottom: var(--sp-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: var(--fs-sm);
  color: rgba(253,252,250,0.55);
  text-decoration: none;
  transition: color var(--t-base);
}
.footer__links a:hover { color: var(--clr-white); }

.footer__bottom {
  padding: var(--sp-md) 0;
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.footer__legal {
  font-size: var(--fs-xs);
  color: rgba(253,252,250,0.35);
}

.footer__legal-links {
  display: flex;
  gap: var(--sp-md);
}

.footer__legal-links a {
  font-size: var(--fs-xs);
  color: rgba(253,252,250,0.35);
  text-decoration: none;
  transition: color var(--t-base);
}
.footer__legal-links a:hover { color: rgba(253,252,250,0.65); }

/* ── COOKIE BANNER ───────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: var(--sp-md);
  left: var(--sp-md);
  right: var(--sp-md);
  z-index: 200;
  background: var(--clr-ink);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-lg);
  transform: translateY(calc(100% + var(--sp-md)));
  transition: transform var(--t-slow);
  max-width: 860px;
  margin: 0 auto;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

@media (min-width: 640px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
  }
}

.cookie-banner__text { flex: 1; }

.cookie-banner__text h3 {
  color: var(--clr-white);
  font-size: 1rem;
  margin-bottom: 0.3em;
}

.cookie-banner__text p {
  font-size: var(--fs-sm);
  color: rgba(253,252,250,0.6);
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--clr-accent-lt);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-banner .btn--ghost {
  color: rgba(253,252,250,0.75);
  border-color: rgba(255,255,255,0.2);
}
.cookie-banner .btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: var(--clr-white);
}

.cookie-banner__customize {
  margin-top: var(--sp-md);
  padding-top: var(--sp-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.cookie-option label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--fs-sm);
  color: rgba(253,252,250,0.7);
  cursor: pointer;
  line-height: 1.5;
}

.cookie-option input[type="checkbox"] {
  accent-color: var(--clr-accent);
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 0.15em;
  cursor: pointer;
}

/* ── RESPONSIVE NAVIGATION ───────────────────────────────────── */
@media (max-width: 899px) {
  .nav__hamburger { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--clr-white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: calc(68px + var(--sp-md)) var(--sp-lg) var(--sp-lg);
    z-index: 99;
    transform: translateX(100%);
    transition: transform var(--t-slow);
    box-shadow: -8px 0 40px rgba(15,15,18,0.15);
    overflow-y: auto;
  }

  .nav__links.open { transform: translateX(0); }

  .nav__link {
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--clr-border);
    border-left: none;
    font-size: 1rem;
  }

  .nav__actions {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    margin-top: var(--sp-md);
    gap: 0.6rem;
  }

  .nav__actions .btn { width: 100%; justify-content: center; }
}

/* ── RESPONSIVE HERO ─────────────────────────────────────────── */
@media (max-width: 899px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(68px + var(--sp-xl));
    padding-bottom: var(--sp-xl);
  }

  .hero__image-wrap { order: -1; }

  .hero__heading { font-size: clamp(2.4rem, 8vw, 3.5rem); }
}

/* ── RESPONSIVE MISC ─────────────────────────────────────────── */
@media (max-width: 599px) {
  .dual-cta__grid { gap: var(--sp-lg); }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .cta-strip__actions { flex-direction: column; align-items: center; }
  .contact-form-card { padding: var(--sp-lg); }
  .thinking-pillar { grid-template-columns: 1fr; }
  .thinking-pillar__number { font-size: 2rem; }
}

/* ── UTILITY ─────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}