/* ============================================================
   ONCOLUXE — CANCER SUPPORT FOUNDATION
   Shared design system. Palette extracted from the logo:
   violet → magenta → blue → orange → red.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..700&family=Hanken+Grotesk:wght@300..800&display=swap');

:root {
  /* brand hues from logo */
  --violet: #6d2fe0;
  --indigo: #5326d6;
  --magenta: #c828b4;
  --pink: #e6489b;
  --blue: #1f84e8;
  --cyan: #18a6e8;
  --orange: #f59e0b;
  --amber: #fbb040;
  --red: #e8401c;
  --red-2: #f0552c;

  /* neutrals */
  --bg: #fbf8fd;
  --bg-2: #f5eef8;
  --surface: #ffffff;
  --ink: #1d1428;
  --ink-soft: #3a2f49;
  --muted: #6f6580;
  --line: rgba(29, 20, 40, .10);
  --plum-900: #180e23;
  --plum-800: #221534;

  /* signature gradients */
  --grad-brand: linear-gradient(100deg, #6d2fe0 0%, #c828b4 32%, #e6489b 50%, #f59e0b 78%, #e8401c 100%);
  --grad-warm: linear-gradient(100deg, #e6489b 0%, #f59e0b 55%, #e8401c 100%);
  --grad-cool: linear-gradient(125deg, #6d2fe0 0%, #1f84e8 100%);
  --grad-soft: linear-gradient(135deg, #f3e9fb, #fdeef4 50%, #fff4e6);

  --shadow-sm: 0 4px 16px rgba(60, 20, 80, .07);
  --shadow-md: 0 22px 50px -22px rgba(80, 20, 90, .30);
  --shadow-lg: 0 50px 100px -45px rgba(80, 20, 90, .45);
  --shadow-glow: 0 18px 48px -16px rgba(230, 72, 155, .55);
  --r: 18px;
  --r-lg: 28px;
  --r-xl: 38px;
  --maxw: 1180px;
  --display: "Fraunces", Georgia, serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

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

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
  text-decoration: none
}

::selection {
  background: var(--magenta);
  color: #fff
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.012em;
  color: var(--ink)
}

.serif-i {
  font-style: italic;
  font-weight: 400
}

.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent
}

.warm-text {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65em;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--magenta);
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-warm)
}

.eyebrow.center {
  justify-content: center
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 700;
  font-size: .93rem;
  padding: 13px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform .25s, box-shadow .25s, filter .25s, background .25s;
  white-space: nowrap
}

.btn-grad {
  background: var(--grad-warm);
  color: #fff;
  box-shadow: var(--shadow-glow)
}

.btn-grad:hover {
  transform: translateY(-3px);
  filter: saturate(1.15) brightness(1.04)
}

.btn-dark {
  background: var(--ink);
  color: #fff
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md)
}

.btn-ghost {
  background: transparent;
  border: 1.6px solid var(--line);
  color: var(--ink)
}

.btn-ghost:hover {
  border-color: var(--magenta);
  background: rgba(200, 40, 180, .05);
  transform: translateY(-2px)
}

.btn-light {
  background: #fff;
  color: var(--ink)
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md)
}

.btn-outline-l {
  background: transparent;
  border: 1.6px solid rgba(255, 255, 255, .45);
  color: #fff
}

.btn-outline-l:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .12)
}

/* ---------- NAV ---------- */
header.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  transition: .3s
}

header.nav.scrolled {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
  padding: 11px 0
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand img {
  height: 50px;
  width: auto;
  transition: height .4s
}

header.nav.scrolled .brand img {
  height: 42px
}

.bword {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.bword b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: .01em;
  color: var(--ink)
}

.bword small {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-top: 2px
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 2px
}

.navlinks a {
  font-size: .93rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 9px 14px;
  border-radius: 999px;
  position: relative;
  transition: .25s
}

.navlinks a:hover {
  color: var(--ink);
  background: rgba(109, 47, 224, .07)
}

.navlinks a.active {
  color: var(--magenta)
}

.navlinks a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-warm)
}

.nav-cta {
  margin-left: 8px
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .3s
}

/* ---------- PAGE HERO BANNER ---------- */
.page-hero {
  position: relative;
  padding: 160px 0 70px;
  overflow: hidden;
  text-align: center
}

.aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden
}

.aurora .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  animation: drift 18s ease-in-out infinite
}

.aurora .b1 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, #6d2fe0, transparent 70%);
  top: -120px;
  left: -80px
}

.aurora .b2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #e6489b, transparent 70%);
  top: -60px;
  right: -60px;
  animation-delay: -4s
}

.aurora .b3 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #f59e0b, transparent 70%);
  bottom: -160px;
  left: 30%;
  animation-delay: -9s
}

.aurora .b4 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, #1f84e8, transparent 70%);
  bottom: -120px;
  right: 10%;
  animation-delay: -13s
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(30px, 40px) scale(1.08)
  }

  66% {
    transform: translate(-25px, 20px) scale(.95)
  }
}

.page-hero .wrap {
  position: relative;
  z-index: 2
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  margin: 18px 0 0
}

.page-hero p.sub {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 60ch;
  margin: 20px auto 0
}

.crumbs {
  margin-top: 26px;
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center
}

.crumbs a:hover {
  color: var(--magenta)
}

.crumbs .sep {
  opacity: .5
}

/* ---------- SECTION SHELL ---------- */
.sec {
  padding: 96px 0;
  position: relative
}

.sec-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center
}

.sec-head.left {
  margin-left: 0;
  text-align: left
}

.sec-head h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  margin-top: 14px
}

.sec-head p {
  color: var(--muted);
  font-size: 1.07rem;
  margin-top: 16px
}

/* ---------- HOME HERO ---------- */
.hero {
  position: relative;
  padding: 166px 0 80px;
  overflow: hidden
}

.hero .aurora .blob {
  opacity: .42
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 54px;
  align-items: center
}

.hero h1 {
  font-size: clamp(2.7rem, 5.6vw, 4.7rem);
  margin: 18px 0 0
}

.hero .lead {
  font-size: 1.14rem;
  color: var(--ink-soft);
  max-width: 40ch;
  margin: 24px 0 30px
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero-mini {
  display: flex;
  gap: 30px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap
}

.hero-mini .m .n {
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1
}

.hero-mini .m .l {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 2px
}

.collage {
  position: relative;
  height: 540px
}

.collage figure {
  position: absolute;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 7px solid #fff;
  box-shadow: var(--shadow-lg)
}

.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.collage .c1 {
  width: 64%;
  height: 76%;
  top: 0;
  right: 0;
  z-index: 2;
  animation: floaty 7s ease-in-out infinite
}

.collage .c2 {
  width: 48%;
  height: 50%;
  bottom: 6px;
  left: 0;
  z-index: 3;
  animation: floaty 8.5s ease-in-out infinite .7s
}

.collage .c3 {
  width: 40%;
  height: 40%;
  top: 36%;
  left: 4%;
  z-index: 1;
  animation: floaty 9.5s ease-in-out infinite 1.2s
}

.collage .ring {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: var(--grad-brand) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  top: -26px;
  right: 34%;
  z-index: 4;
  animation: spin 22s linear infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.collage .pill {
  position: absolute;
  z-index: 5;
  bottom: 10%;
  right: -10px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 210px
}

.collage .pill .dot {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad-warm);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--display);
  font-weight: 700
}

.collage .pill b {
  display: block;
  font-family: var(--display);
  color: var(--ink)
}

.collage .pill span {
  font-size: .78rem;
  color: var(--muted)
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-15px)
  }
}

/* marquee ribbon */
.marquee {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 16px 0
}

.marquee .track {
  display: flex;
  gap: 46px;
  white-space: nowrap;
  animation: scrollx 26s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem
}

.marquee .track span {
  display: flex;
  align-items: center;
  gap: 46px
}

.marquee .track span::after {
  content: "✦";
  color: var(--amber);
  font-style: normal;
  font-size: .7rem
}

@keyframes scrollx {
  to {
    transform: translateX(-50%)
  }
}

/* ---------- PILLARS ---------- */
.mission {
  background: var(--surface)
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.pillar {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s
}

.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: .35s
}

.pillar:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-md)
}

.pillar:hover::before {
  opacity: 1
}

.pillar .ic {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: var(--shadow-glow)
}

.pillar:nth-child(1) .ic {
  background: linear-gradient(135deg, #6d2fe0, #c828b4)
}

.pillar:nth-child(2) .ic {
  background: linear-gradient(135deg, #c828b4, #e6489b)
}

.pillar:nth-child(3) .ic {
  background: linear-gradient(135deg, #f59e0b, #e8401c)
}

.pillar:nth-child(4) .ic {
  background: linear-gradient(135deg, #1f84e8, #6d2fe0)
}

.pillar h3 {
  font-size: 1.26rem;
  margin-bottom: 9px
}

.pillar p {
  font-size: .95rem;
  color: var(--muted)
}

/* ---------- SPLIT / ABOUT PREVIEW ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.split.flip .media {
  order: 2
}

.media {
  position: relative
}

.media .frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 7px solid #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2
}

.media .frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center
}

.media .grad-ring {
  position: absolute;
  inset: -20px -20px auto auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--grad-cool);
  opacity: .16;
  z-index: 1;
  filter: blur(2px)
}

.media .chip {
  position: absolute;
  left: -24px;
  bottom: 34px;
  z-index: 3;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 14px;
  align-items: center
}

.media .chip b {
  font-family: var(--display);
  font-size: 1.9rem;
  line-height: 1
}

.media .chip span {
  font-size: .82rem;
  color: var(--muted);
  max-width: 13ch
}

.copy .credential {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.12rem;
  margin: 8px 0 18px
}

.copy p {
  color: var(--ink-soft);
  margin-bottom: 15px
}

.facts {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin: 22px 0 28px
}

.facts li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--ink-soft)
}

.facts li .tick {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad-warm);
  display: grid;
  place-items: center;
  margin-top: 2px
}

.facts li .tick svg {
  stroke: #fff
}

.facts li b {
  color: var(--ink)
}

/* ---------- VALUES (mvv) ---------- */
.mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.mvv .card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  position: relative;
  overflow: hidden
}

.mvv .card .tag {
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: 1;
  opacity: .16
}

.mvv .card:nth-child(1) .tag {
  color: var(--violet)
}

.mvv .card:nth-child(2) .tag {
  color: var(--pink)
}

.mvv .card:nth-child(3) .tag {
  color: var(--orange)
}

.mvv .card h3 {
  font-size: 1.4rem;
  margin: 6px 0 10px
}

.mvv .card p {
  color: var(--muted);
  font-size: .97rem
}

/* ---------- EVENTS ---------- */
.filterbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px
}

.filter {
  font-family: var(--body);
  font-weight: 700;
  font-size: .9rem;
  border: 1.6px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  padding: 11px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: .28s;
  display: flex;
  align-items: center;
  gap: .55em
}

.filter .count {
  font-size: .72rem;
  background: var(--bg-2);
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--magenta)
}

.filter:hover {
  border-color: var(--magenta)
}

.filter.active {
  background: var(--grad-warm);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow)
}

.filter.active .count {
  background: rgba(255, 255, 255, .25);
  color: #fff
}

.gallery {
  columns: 3;
  column-gap: 18px
}

.gcard {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .4s, box-shadow .4s
}

.gcard img {
  width: 100%;
  height: auto;
  transition: transform .6s
}

.gcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md)
}

.gcard:hover img {
  transform: scale(1.06)
}

.gcard .meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 18px 16px;
  color: #fff;
  background: linear-gradient(transparent, rgba(24, 14, 35, .9));
  opacity: 0;
  transform: translateY(8px);
  transition: .35s
}

.gcard:hover .meta {
  opacity: 1;
  transform: none
}

.gcard .meta .tag {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 800
}

.gcard .meta .ttl {
  font-family: var(--display);
  font-size: 1.12rem
}

.gcard.hide {
  display: none
}

/* event day write-up cards */
.daygrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 8px
}

.daycard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 32px;
  position: relative;
  overflow: hidden
}

.daycard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--grad-brand)
}

.daycard .date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 8px 16px;
  margin-bottom: 16px
}

.daycard .date .d {
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1
}

.daycard .date .m {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .8
}

.daycard h3 {
  font-size: 1.5rem;
  margin-bottom: 10px
}

.daycard p {
  color: var(--muted);
  font-size: .97rem
}

.daycard .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px
}

.daycard .tags span {
  font-size: .76rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--magenta)
}

/* ---------- CONFERENCES ---------- */
.conf {
  background: var(--plum-900);
  color: #fff;
  overflow: hidden;
  position: relative
}

.conf .aurora .blob {
  opacity: .32
}

.conf .wrap {
  position: relative;
  z-index: 2
}

.conf .eyebrow {
  color: var(--amber)
}

.conf .eyebrow::before {
  background: var(--grad-warm)
}

.conf .sec-head h2 {
  color: #fff
}

.conf .sec-head p {
  color: rgba(255, 255, 255, .65)
}

.conf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.conf-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  cursor: pointer;
  transition: transform .4s;
  position: relative
}

.conf-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform .6s
}

.conf-card:hover {
  transform: translateY(-7px)
}

.conf-card:hover img {
  transform: scale(1.05)
}

.conf-card .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 36px 20px 18px;
  background: linear-gradient(transparent, rgba(24, 14, 35, .92))
}

.conf-card .cap .tag {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 800
}

.conf-card .cap .ttl {
  font-family: var(--display);
  font-size: 1.2rem;
  margin-top: 4px
}

/* ---------- IMPACT ---------- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center
}

.impact .item {
  padding: 34px 18px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden
}

.impact .item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--grad-brand)
}

.impact .num {
  font-family: var(--display);
  font-size: 2.9rem;
  font-weight: 600;
  line-height: 1
}

.impact .num small {
  font-size: .55em
}

.impact .cap {
  font-size: .93rem;
  color: var(--muted);
  margin-top: 8px
}

/* ---------- STEPS / programs ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.step {
  display: flex;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px
}

.step .no {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  flex: 0 0 auto
}

.step:nth-child(1) .no {
  color: var(--violet)
}

.step:nth-child(2) .no {
  color: var(--pink)
}

.step:nth-child(3) .no {
  color: var(--orange)
}

.step:nth-child(4) .no {
  color: var(--blue)
}

.step h3 {
  font-size: 1.22rem;
  margin-bottom: 7px
}

.step p {
  font-size: .95rem;
  color: var(--muted)
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto
}

.qa {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 14px;
  overflow: hidden
}

.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: var(--display);
  font-size: 1.12rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

.qa summary::-webkit-details-marker {
  display: none
}

.qa summary .plus {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-warm);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: transform .3s
}

.qa[open] summary .plus {
  transform: rotate(45deg)
}

.qa .a {
  padding: 0 24px 22px;
  color: var(--muted)
}

/* ---------- CTA ---------- */
.cta-card {
  background: var(--grad-brand);
  border-radius: var(--r-xl);
  padding: 60px 54px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 40px;
  align-items: center
}

.cta-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(255, 255, 255, .25);
  border-radius: 50%
}

.cta-card::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(255, 255, 255, .18);
  border-radius: 50%
}

.cta-card .eyebrow {
  color: rgba(255, 255, 255, .9)
}

.cta-card .eyebrow::before {
  background: #fff
}

.cta-card h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  position: relative;
  z-index: 2
}

.cta-card p {
  color: rgba(255, 255, 255, .88);
  margin-top: 14px;
  position: relative;
  z-index: 2
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
  z-index: 2
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  transition: transform .3s, box-shadow .3s
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.info-card .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--grad-cool);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto
}

.info-card h4 {
  font-family: var(--display);
  font-size: 1.12rem;
  margin-bottom: 3px
}

.info-card p,
.info-card a {
  color: var(--muted);
  font-size: .95rem
}

.info-card a:hover {
  color: var(--magenta)
}

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm)
}

.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.field {
  margin-bottom: 16px
}

.field label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink-soft)
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--body);
  font-size: .95rem;
  background: var(--bg);
  transition: .25s;
  color: var(--ink)
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--magenta);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200, 40, 180, .1)
}

.field textarea {
  resize: vertical;
  min-height: 120px
}

.form-note {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 10px
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--plum-900);
  color: rgba(255, 255, 255, .7);
  padding: 0 0 28px;
  position: relative
}

footer .topbar {
  height: 5px;
  background: #ffffff
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 38px;
  padding: 62px 0 44px
}

.foot-brand img {
  height: 58px;
  width: auto
}

.foot-brand p {
  margin-top: 16px;
  font-size: .94rem;
  max-width: 34ch
}

.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 18px
}

.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  transition: .25s
}

.foot-social a:hover {
  background: var(--grad-warm)
}

footer h4 {
  font-family: var(--body);
  color: #fff;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 800
}

footer ul {
  list-style: none
}

footer ul li {
  margin-bottom: 11px
}

footer ul a {
  font-size: .95rem;
  transition: .2s
}

footer ul a:hover {
  color: var(--amber);
  padding-left: 4px
}

.foot-news input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 12px 14px;
  color: #fff;
  font-family: var(--body);
  margin: 10px 0
}

.foot-news input::placeholder {
  color: rgba(255, 255, 255, .5)
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .13);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem
}

/* ---------- LIGHTBOX ---------- */
.lb {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(16, 8, 24, .93);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity .3s
}

.lb.open {
  display: flex;
  opacity: 1
}

.lb img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 14px;
  border: 5px solid #fff;
  box-shadow: var(--shadow-lg);
  transform: scale(.95);
  transition: transform .3s
}

.lb.open img {
  transform: scale(1)
}

.lb-btn {
  position: absolute;
  background: rgba(255, 255, 255, .13);
  border: none;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: .25s
}

.lb-close {
  top: 24px;
  right: 30px;
  width: 48px;
  height: 48px;
  font-size: 1.4rem
}

.lb-close:hover {
  background: var(--red);
  transform: rotate(90deg)
}

.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 1.5rem
}

.lb-nav:hover {
  background: var(--magenta)
}

.lb-prev {
  left: 24px
}

.lb-next {
  right: 24px
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1)
}

.reveal.in {
  opacity: 1;
  transform: none
}

.d1 {
  transition-delay: .08s
}

.d2 {
  transition-delay: .16s
}

.d3 {
  transition-delay: .24s
}

.d4 {
  transition-delay: .32s
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:980px) {
  .pillars {
    grid-template-columns: 1fr 1fr
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero-grid,
  .split,
  .cta-card,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .split.flip .media {
    order: 0
  }

  .collage {
    height: 430px
  }

  .mvv,
  .steps {
    grid-template-columns: 1fr
  }

  .conf-grid {
    grid-template-columns: 1fr 1fr
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr
  }

  .gallery {
    columns: 2
  }

  .daygrid {
    grid-template-columns: 1fr
  }
}

@media(max-width:640px) {
  .navlinks {
    position: fixed;
    inset: 0 0 auto 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 92px 24px 28px;
    gap: 4px;
    transform: translateY(-115%);
    transition: transform .4s;
    box-shadow: var(--shadow-md)
  }

  .navlinks.open {
    transform: translateY(0)
  }

  .navlinks a {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1.05rem
  }

  .nav-cta {
    display: none
  }

  .burger {
    display: flex
  }

  .burger.x span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
  }

  .burger.x span:nth-child(2) {
    opacity: 0
  }

  .burger.x span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
  }

  .pillars,
  .impact-grid,
  .conf-grid,
  .foot-grid,
  .facts,
  .form .row {
    grid-template-columns: 1fr
  }

  .gallery {
    columns: 1
  }

  .wrap {
    padding: 0 20px
  }

  .sec {
    padding: 70px 0
  }

  .cta-card,
  .form {
    padding: 34px 24px
  }

  .hero {
    padding: 140px 0 64px
  }

}

/* ═══════════════════════════════════════════════════════════
   ONCOLUXE v2 — TARGETED PATCHES ON TOP OF ORIGINAL CSS
   ═══════════════════════════════════════════════════════════ */

/* Change #10: Heading font → Cormorant Garamond */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

/* Override display font variable */
:root {
  --display: "Cormorant Garamond", Georgia, serif;
  /* Change #4 readability: darken muted text */
  --ink: #111111;
  --ink-soft: #2a2a2a;
  --muted: #444444;
}

/* Global paragraph readability */
p {
  color: #333333
}

.sec-head p {
  color: #444444
}

.copy p,
.pillar p,
.card p,
.step p,
.qa p {
  color: #333333
}

/* Change #5: About Doctor section on home — tinted background */
.sec-doctor-bg {
  background: linear-gradient(135deg, #fdf4ff 0%, #fce7f8 40%, #fef0e8 100%) !important;
}

/* Change #8: footer 3-col when newsletter removed */
.foot-grid-3 {
  grid-template-columns: 1.6fr 1fr 1fr !important
}

/* Card visibility: subtle shadow + slightly more visible border */
.pillar,
.mvv .card,
.daycard,
.step,
.qa,
.impact .item,
.info-card {
  box-shadow: 0 2px 14px rgba(109, 47, 224, .07);
  border-color: rgba(109, 47, 224, .12) !important;
}

.pillar {
  background: #fff !important
}


/* ═══════════════════════════════════════════════════════════════════
   BANNER & IMAGE SYSTEM — complete rewrite
   Design: Split layout for Home + About, rich colour for inner pages
   ═══════════════════════════════════════════════════════════════════ */

/* ── SHARED ── */
.hero,
.about-hero,
.inner-banner {
  overflow: hidden;
  position: relative;
}

/* ══════════════
   HOME HERO
   Left: white/light, content
   Right: brand gradient, Dr Tara photo
══════════════ */
.hero {
  padding: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.hero-split {
  display: grid;
  grid-template-columns: 52% 48%;
  padding: 0 80px;
  padding-top: 120px;

}

/* Left panel — proper padding all sides */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-left .eyebrow {
  margin-bottom: 18px;
}

.hero-left h1 {
  font-size: 42px;
  margin-bottom: 0;
  line-height: 1.08;
  margin-top: 10px;
}

.hero-left .lead {
  font-size: 1.06rem;
  color: #444;
  line-height: 1.75;
  max-width: 100%;
  margin: 20px 0;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-outline-dark {
  background: transparent;
  border: 1.8px solid var(--ink);
  color: var(--ink);
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: .93rem;
  cursor: pointer;
  transition: .22s;
  display: inline-flex;
  align-items: center;
  gap: .5em;
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: #fff;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, .09);
}

.hs-item {
  flex: 1;
}

.hs-item .hs-n {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.hs-item .hs-l {
  font-size: .8rem;
  color: #666;
  font-weight: 500;
}

.hs-sep {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, .1);
  margin: 0 18px;
}

/* Right panel */
.hero-right {
  /* background: linear-gradient(160deg, #6d2fe0 0%, #c828b4 55%, #e6489b 100%); */
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 20px;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-right-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.hero-dr-label {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  padding: 6px 18px;
  white-space: nowrap;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
}

.hero-dr-img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top 5%;
  border-radius: 18px 18px 0 0;
  border: 4px solid rgba(255, 255, 255, .35);
  border-bottom: none;
  display: block;
}

.hero-dr-name-tag {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .96);
  border-radius: 14px 14px 0 0;
  padding: 12px 22px;
  text-align: center;
  min-width: 220px;
}

.hero-dr-name-tag strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}

.hero-dr-name-tag span {
  font-size: .78rem;
  color: #666;
}

/* ══════════════
   ABOUT HERO
   Left: brand gradient, Dr Tara photo
   Right: white/light, credentials
══════════════ */
.about-hero {
  display: grid;
  grid-template-columns: 38% 62%;
  padding-top: 130px;
  padding-bottom: 60px;
  background: #fff;
  background: linear-gradient(135deg, #fdf4ff 0%, #fce7f8 40%, #fef0e8 100%) !important;
}

/* Left: photo panel */
.about-hero-photo {
  /* background: linear-gradient(160deg, #c828b4 0%, #e6489b 55%, #f59e0b 100%); */
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* padding-top: 60px; */
  overflow: hidden;
}

.about-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.about-hero-photo img {
  position: relative;
  z-index: 2;
  width: 78%;
  max-width: 380px;
  aspect-ratio: 3.5/4;
  object-fit: cover;
  object-position: top 5%;
  border-radius: 16px 16px 0 0;
  border: 4px solid rgba(255, 255, 255, .35);
  border-bottom: none;
  display: block;
}

/* Right: content panel */
.about-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ah-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 16px;
}

.ah-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--grad-warm);
  border-radius: 2px;
  display: inline-block;
}

.about-hero-content h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 4px;
}

.about-hero-content h1 em {
  font-style: italic;
  color: var(--magenta);
}

.ah-degree {
  font-size: .95rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 14px;
}

.ah-desc {
  font-size: .95rem;
  color: #444;
  line-height: 1.68;
  max-width: 85%;
  margin-bottom: 16px;
}

.ah-quals {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.ahq {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: #fafafa;
  border: 1px solid rgba(109, 47, 224, .1);
  border-left: 3px solid var(--magenta);
  border-radius: 0 10px 10px 0;
  padding: 9px 13px;
  width: 70%;
}

.ahq-ic {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.ahq strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.ahq span {
  font-size: .78rem;
  color: #666;
}

.ah-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .83rem;
  color: #888;
}

.ah-crumbs a {
  color: #888;
  transition: .18s;
}

.ah-crumbs a:hover {
  color: var(--magenta);
}

.ah-crumbs .sep {
  opacity: .5;
}

/* ══════════════
   INNER PAGE BANNERS
   Events · Conferences · Contact
   Rich brand colour + white text
══════════════ */
.inner-banner {
  padding: 120px 0 56px;
  text-align: center;
  position: relative;
}

/* Geometric decoration */
.inner-banner::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.inner-banner::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  bottom: -60px;
  left: 10%;
  pointer-events: none;
}

/* Unique colour per page */
.events-banner {
  background: linear-gradient(135deg, #1f84e8 0%, #6d2fe0 100%);
}

.conf-banner {
  background: linear-gradient(135deg, #0d9488 0%, #1f84e8 100%);
}

.contact-banner {
  background: linear-gradient(135deg, #c828b4 0%, #f59e0b 100%);
}

.inner-banner .wrap {
  position: relative;
  z-index: 2;
}

/* Eyebrow */
.ib-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 14px;
}

.ib-eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, .6);
  border-radius: 2px;
}

/* Heading */
.inner-banner h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin: 0 auto 16px;
  max-width: 15em;
}

.inner-banner h1 em {
  font-style: italic;
  font-weight: 400;
  opacity: .88;
}

/* Description */
.ib-desc {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.72;
  max-width: 56ch;
  margin: 0 auto 26px;
}

/* Stats pill strip */
.ib-strip {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 14px;
  padding: 13px 20px;
  margin-bottom: 24px;
  gap: 0;
}

.ib-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 20px;
}

.ib-strip-item strong {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.ib-strip-item span {
  font-size: .76rem;
  color: rgba(255, 255, 255, .72);
}

.ib-div {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .25);
}

/* Breadcrumb */
.ib-crumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
}

.ib-crumbs a {
  color: rgba(255, 255, 255, .78);
  transition: .18s;
}

.ib-crumbs a:hover {
  color: #fff;
}

.ib-crumbs .sep {
  opacity: .4;
}

/* ── PILLAR CARDS ── */
.pillar:nth-child(1) {
  background: linear-gradient(145deg, #faf5ff, #f5eeff) !important;
  border-color: rgba(109, 47, 224, .15) !important;
}

.pillar:nth-child(2) {
  background: linear-gradient(145deg, #fff0f9, #fce7f3) !important;
  border-color: rgba(200, 40, 180, .15) !important;
}

.pillar:nth-child(3) {
  background: linear-gradient(145deg, #fffbeb, #fef3c7) !important;
  border-color: rgba(245, 158, 11, .18) !important;
}

.pillar:nth-child(4) {
  background: linear-gradient(145deg, #eff6ff, #dbeafe) !important;
  border-color: rgba(31, 132, 232, .15) !important;
}

.pillar h3 {
  font-size: 1.18rem;
  color: var(--ink);
}

.pillar p {
  color: #444;
}

.pillar:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 36px rgba(109, 47, 224, .14) !important;
}

/* ── ABOUT DOCTOR TINTED BG (home) ── */
.sec-doctor-bg {
  background: linear-gradient(135deg, #fdf4ff 0%, #fce7f8 40%, #fef0e8 100%) !important;
}

/* ── FOOTER ── */
.foot-grid-3 {
  grid-template-columns: 1.6fr 1fr 1fr !important;
}

footer {
  background: #1a0e2e !important;
}

footer .foot-brand p {
  color: rgba(255, 255, 255, .78) !important;
  font-size: .94rem;
  line-height: 1.72;
}

footer h4 {
  color: #fff !important;
}

footer ul a {
  color: rgba(255, 255, 255, .72) !important;
}

footer ul a:hover {
  color: var(--amber) !important;
}

.foot-bottom span {
  color: rgba(255, 255, 255, .52);
}

.foot-brand .foot-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.foot-brand .foot-logo-wrap img {
  height: 44px;
  width: auto;
}

.foot-brand .foot-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.foot-brand .foot-logo-text b {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.foot-brand .foot-logo-text small {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 3px;
}

/* ── GENERAL ── */
.btn {
  transition: transform .22s, box-shadow .22s, filter .22s, background .22s;
}

.btn-ghost {
  background: transparent;
  border: 1.6px solid rgba(255, 255, 255, .5);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.sec-head {
  margin-bottom: 48px;
}

.hero-mini .m .n {
  font-size: 2rem;
}