/* ─── Ekatra Design System ─────────────────────────────────────────── */
:root {
  --base: #8a8a8a;
  --base-light: #b5b5b5;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --bg: #faf9f7;
  --bg-warm: #f3f0eb;
  --bg-dark: #0d0d0d;
  --white: #ffffff;

  --mind: #6b7d8f;
  --mind-light: rgba(107, 125, 143, 0.12);
  --body: #c49a7a;
  --body-light: rgba(196, 154, 122, 0.14);
  --brain: #2e2a4a;
  --brain-light: rgba(46, 42, 74, 0.1);

  --sage: #8da399;
  --peach: #ebb08c;
  --navy: #2e3192;

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-h: 5rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── Typography ───────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--base);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.75rem;
}

.logo-img {
  border-radius: 2px;
}

/* ─── Layout utilities ─────────────────────────────────────────────── */
.container {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

.container--wide {
  max-width: 90rem;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

/* ─── Header ───────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.35s var(--ease);
}

.header.is-scrolled {
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header__inner {
  width: min(96%, 90rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 2.25rem;
  width: auto;
  transition: opacity 0.3s, filter 0.4s;
  border-radius: 3px;
  filter: brightness(0) invert(1);
}

.header.is-scrolled .header__logo img {
  filter: none;
}

.header__logo:hover img {
  opacity: 0.8;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s;
}

.nav__link:hover {
  color: var(--white);
}

.header.is-scrolled .nav__link {
  color: var(--text-muted);
}

.header.is-scrolled .nav__link:hover {
  color: var(--text);
}

.nav__cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}

.nav__cta:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.header.is-scrolled .nav__cta {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}

.header.is-scrolled .nav__cta:hover {
  background: var(--brain);
  border-color: var(--brain);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.header.is-scrolled .nav-toggle span {
  background: var(--text);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── Hero — full bleed with image ────────────────────────────────── */
.hero--fullbleed {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 13, 13, 0.72) 0%,
    rgba(13, 13, 13, 0.45) 50%,
    rgba(13, 13, 13, 0.2) 100%
  );
}

.hero--fullbleed .hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem max(4vw, 2rem) 6rem;
  max-width: 54rem;
}

.hero--fullbleed .hero__title {
  color: var(--white);
}

.hero--fullbleed .hero__title em {
  color: var(--body);
}

.hero--fullbleed .hero__lead {
  color: rgba(255, 255, 255, 0.82);
}

.hero--fullbleed .hero__logo {
  filter: brightness(0) invert(1);
}

.hero__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.85s forwards;
}

.hero__pillar-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 0.9rem;
  border-radius: 2rem;
}

.hero__pillar-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__pillar-dot--mind  { background: var(--mind); }
.hero__pillar-dot--body  { background: var(--body); }
.hero__pillar-dot--brain { background: #8b85c1; }

.btn--ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
}

.btn--ghost-light:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn--ghost-dark {
  border: 1px solid var(--base-light);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  display: inline-flex;
  align-items: center;
}

.btn--ghost-dark:hover {
  border-color: var(--text);
  color: var(--text);
}

/* ─── Hero ─────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--header-h);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem max(4vw, 2rem);
}

.hero__logo {
  max-width: 18rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.2s forwards;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.4s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--base);
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 28rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.55s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.7s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  transition: all 0.3s var(--ease);
}

.btn--primary {
  background: var(--text);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--brain);
}

.btn--ghost {
  border: 1px solid var(--base-light);
  color: var(--text-muted);
}

.btn--ghost:hover {
  border-color: var(--text);
  color: var(--text);
}

.hero__visual {
  position: relative;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.hero__tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: transform 0.6s var(--ease);
  position: relative;
  overflow: hidden;
}

.hero__tile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.hero__tile:hover::before {
  opacity: 1;
}

.hero__tile--mind {
  background: var(--mind);
}

.hero__tile--mind::before {
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.25));
}

.hero__tile--body {
  background: var(--body);
}

.hero__tile--body::before {
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.2));
}

.hero__tile--brain {
  background: var(--brain);
  grid-column: span 2;
}

.hero__tile--brain::before {
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.35));
}

.hero__tile-label {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.hero__tile-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.35rem;
  position: relative;
  z-index: 1;
  max-width: 20rem;
}

.hero__tile-dot {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

/* ─── Intro strip ──────────────────────────────────────────────────── */
.intro {
  padding: 6rem 0;
  text-align: center;
}

.intro__text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--text);
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.45;
}

.intro__text span {
  color: var(--base);
}

.intro__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--text);
  margin-bottom: 2.5rem;
  text-align: center;
  font-weight: 400;
}

.intro__title em {
  font-style: italic;
  color: var(--base);
}

.intro__body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 48rem;
  margin-inline: auto;
  text-align: left;
}

.intro__body p {
  margin-bottom: 1.5rem;
}

.intro__body p:last-child {
  margin-bottom: 0;
}

/* ─── Pillars (Porsche-style tiles) ────────────────────────────────── */
.pillars {
  padding-bottom: 6rem;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  min-height: 32rem;
}

.pillar {
  position: relative;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 28rem;
  overflow: hidden;
  cursor: default;
  transition: flex 0.6s var(--ease);
}

.pillar__number {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  opacity: 0.15;
  color: currentColor;
}

.pillar__content {
  position: relative;
  z-index: 2;
}

.pillar__title {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.pillar__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 22rem;
  opacity: 0.85;
}

.pillar__accent {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  margin-bottom: 2rem;
}

.pillar--mind {
  background: var(--mind-light);
  color: var(--mind);
}

.pillar--mind .pillar__accent {
  background: var(--mind);
}

.pillar--body {
  background: var(--body-light);
  color: #8b6b52;
}

.pillar--body .pillar__accent {
  background: var(--body);
}

.pillar--brain {
  background: var(--brain-light);
  color: var(--brain);
}

.pillar--brain .pillar__accent {
  background: var(--brain);
}

.pillar:hover {
  z-index: 2;
}

.pillar--mind:hover {
  background: var(--mind);
  color: var(--white);
}

.pillar--mind:hover .pillar__accent {
  background: rgba(255, 255, 255, 0.3);
}

.pillar--body:hover {
  background: var(--body);
  color: var(--white);
}

.pillar--body:hover .pillar__accent {
  background: rgba(255, 255, 255, 0.3);
}

.pillar--brain:hover {
  background: var(--brain);
  color: var(--white);
}

.pillar--brain:hover .pillar__accent {
  background: rgba(255, 255, 255, 0.3);
}

/* ─── Team ─────────────────────────────────────────────────────────── */
.team {
  background: var(--bg-warm);
  padding-bottom: 0;
}

.team__intro {
  padding-block: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 6rem;
  align-items: end;
}

.team__intro-heading {
  /* left column — large heading anchors the layout */
}

.team__intro-text {
  color: var(--text-muted);
  max-width: 34rem;
  margin-top: 0;
  line-height: 1.7;
  padding-bottom: 0.2rem; /* aligns baseline with heading */
}

.team-lead {
  margin-bottom: 0;
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(0, 0, 0, 0.07);
  margin: 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.team-card {
  background: var(--white);
  display: grid;
  grid-template-columns: 220px 1fr;
  transition: background 0.35s var(--ease);
}

.team-card:hover {
  background: var(--bg);
}

.team-card__media {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
}

.team-card:hover .team-card__media img {
  transform: scale(1.03);
}

.team-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__placeholder::after {
  content: "";
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  opacity: 0.6;
}

.team-card--mind .team-card__placeholder {
  background: linear-gradient(165deg, var(--mind) 0%, #4a5d6e 100%);
}

.team-card--body .team-card__placeholder {
  background: linear-gradient(165deg, var(--body) 0%, #9a7558 100%);
}

.team-card__body {
  padding: 2.25rem 3rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.team-card__badge {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--base);
  margin-bottom: 0.65rem;
}

.team-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.team-card__role {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
}

.team-card__bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin-top: 1.25rem;
}

.team-card__tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  background: var(--bg-warm);
  color: var(--text-muted);
}

.team-card__link {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brain);
  transition: opacity 0.25s;
}

.team-card__link:hover {
  opacity: 0.65;
}

.team-card__more {
  margin: 0.5rem 0 0;
  border-top: 1px solid var(--bg-warm);
}

.team-card__more summary {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mind);
  cursor: pointer;
  padding: 1rem 0 0.5rem;
  list-style: none;
}

.team-card--body .team-card__more summary {
  color: #8b6b52;
}

.team-card__more summary::-webkit-details-marker {
  display: none;
}

.team-card__more summary::after {
  content: " +";
  font-weight: 400;
}

.team-card__more[open] summary::after {
  content: " −";
}

.team-card__more-content {
  padding-bottom: 0.5rem;
}

.team-card__more-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.team-card__personal {
  font-style: italic;
  color: var(--base) !important;
}

.team-card--mind .team-card__media img {
  object-position: center 15%;
}

.team-card--brain .team-card__placeholder {
  background: linear-gradient(165deg, var(--brain) 0%, #4a5e4d 100%);
}
.team-card--brain .team-card__more summary {
  color: var(--brain);
}
.team-card--brain .team-card__media img {
  object-position: center 15%;
}

/* ─── Team Categories Layout ───────────────────────────────────────── */
.team__subheader {
  margin-block: 4rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding-bottom: 0.75rem;
}

.team__subheader-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* ─── Carousel arrow nav (mobile only) ───────────────────────────── */
.team-carousel-wrap {
  position: relative;
}

.carousel-arrow {
  display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
  .carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-dark, #2c2c2c);
    cursor: pointer;
    transition: background 0.25s, opacity 0.25s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }

  .carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.42);
  }

  .carousel-arrow:disabled {
    opacity: 0.25;
    cursor: default;
  }

  .carousel-arrow--prev {
    left: 0.5rem;
  }

  .carousel-arrow--next {
    right: 0.5rem;
  }
}

.team-carousel {
  position: relative;
  margin-bottom: 3rem;
  overflow: visible;
}

.team-carousel__track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.5rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--base-light) transparent;
  -webkit-overflow-scrolling: touch;
}

.team-carousel__track::-webkit-scrollbar {
  height: 5px;
}

.team-carousel__track::-webkit-scrollbar-track {
  background: transparent;
}

.team-carousel__track::-webkit-scrollbar-thumb {
  background: var(--base-light);
  border-radius: 4px;
}

.team-carousel .team-card {
  flex: 0 0 calc(50% - 1rem);
  min-width: 580px;
  scroll-snap-align: start;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  overflow: hidden;
}

.team__grid--single {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 4rem;
}

@media (max-width: 1200px) {
  .team-carousel .team-card {
    flex: 0 0 540px;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .team-carousel .team-card {
    flex: 0 0 85vw;
    min-width: auto;
  }
  
  .team-carousel__track {
    gap: 1rem;
    padding-inline: 1.5rem;
    margin-inline: -1.5rem;
  }
  
  .team__subheader {
    margin-block: 3rem 1.5rem;
  }
  
  .team__grid--single {
    margin-bottom: 3rem;
  }
}

/* ─── About (director profile) ─────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 300px 1fr;
  max-width: 90rem;
  margin-inline: auto;
  align-items: stretch;
}

.about__image {
  background: var(--bg-warm);
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  padding: 4rem 2.5rem 4rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: start;
}

.about__image .about__portrait {
  max-width: 220px;
  height: auto;
  min-height: auto;
  aspect-ratio: 3/4;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}

.about__portrait {
  width: 100%;
  max-width: 220px;
  margin: 0;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-warm);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* Content: header spans full width, bio+aside below as 2 cols */
.about__content {
  padding: 4rem 4.5rem 4rem 3.5rem;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 220px;
  grid-template-rows: auto 1fr;
  column-gap: 3.5rem;
  row-gap: 0;
  align-items: start;
}

.about__content-header {
  grid-column: 1 / -1;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--bg-warm);
}

.about__content h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.about__bio p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: none;
  line-height: 1.7;
}

.about__role {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text) !important;
  margin-top: -0.5rem;
  margin-bottom: 0 !important;
  letter-spacing: 0.01em;
}

.about__role-note {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--base);
  margin-top: 0.25rem;
}

/* Right sidebar: tagline + credentials + CTA */
.about__aside {
  padding-left: 2.5rem;
  border-left: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.about__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-style: italic;
  color: var(--brain);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.about__credentials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.credential {
  /* stacked vertically in aside */
}

.credential__value {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text);
  line-height: 1;
}

.credential__label {
  font-size: 0.72rem;
  color: var(--base);
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}

.about__cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brain);
  transition: opacity 0.25s;
  margin-top: auto;
}

.about__cta:hover {
  opacity: 0.65;
}

/* ─── Services tiles ───────────────────────────────────────────────── */
.services {
  padding: 6rem 0;
  background: var(--bg-dark);
  color: var(--white);
}

.services__header {
  margin-bottom: 3rem;
}

.services__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.75rem;
}

.services__header .eyebrow {
  color: var(--base-light);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.service-tile {
  background: var(--bg-dark);
  padding: 2.5rem;
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-tile::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.5s var(--ease);
}

.service-tile:hover {
  background: #161616;
}

.service-tile--mind::after { background: var(--mind); }
.service-tile--body::after { background: var(--body); }
.service-tile--brain::after { background: var(--brain); }
.service-tile--integrative::after { background: var(--sage); }
.service-tile--assessment::after { background: var(--base); }

.service-tile:hover::after {
  width: 100%;
}

.service-tile__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.service-tile--mind .service-tile__icon { background: var(--mind); }
.service-tile--body .service-tile__icon { background: var(--body); }
.service-tile--brain .service-tile__icon { background: var(--brain); }
.service-tile--integrative .service-tile__icon { background: var(--sage); }
.service-tile--assessment .service-tile__icon { background: var(--base); }

.service-tile h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-tile p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 24rem;
}

.service-tile__arrow {
  align-self: flex-end;
  font-size: 1.25rem;
  opacity: 0.3;
  transition: opacity 0.3s, transform 0.3s;
}

.service-tile:hover .service-tile__arrow {
  opacity: 1;
  transform: translate(4px, -4px);
}

@media (min-width: 1025px) {
  .service-tile--assessment {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
  .service-tile--assessment > div {
    max-width: 55rem;
  }
  .service-tile--assessment .service-tile__arrow {
    align-self: center;
  }
}

/* ─── Process ──────────────────────────────────────────────────────── */
.process {
  padding: 6rem 0;
}

.process__header {
  text-align: center;
  margin-bottom: 4rem;
}

.process__header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-top: 0.75rem;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3.4rem;
  right: -1.1rem;
  width: 2.2rem;
  height: 1px;
  background: linear-gradient(to right, var(--base-light), rgba(181, 181, 181, 0.2));
}

.step__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--base-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

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

/* ─── Quote / emotional address ────────────────────────────────────── */
.quote-section {
  padding: 8rem 0;
  background: var(--bg-warm);
  text-align: center;
}

.quote-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-style: italic;
  color: var(--text);
  max-width: 48rem;
  margin-inline: auto;
  line-height: 1.4;
}

.quote-section cite {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--base);
}

/* ─── Booking ─────────────────────────────────────────────────────── */
.booking {
  padding: 2rem 1rem;
  background: linear-gradient(180deg, #f4f2ee 0%, #f8f7f4 100%);
}

.booking__shell {
  max-width: 90rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 22rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.booking__sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  min-height: calc(100vh - var(--header-h) - 2rem);
  border-radius: 28px;
  padding: 1.75rem;
  background: linear-gradient(175deg, #2b4d3b 0%, #1e3529 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 20px 40px rgba(13, 13, 13, 0.12);
}

.booking__back {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  transition: background 0.2s;
}

.booking__back:hover {
  background: rgba(255, 255, 255, 0.24);
}

.booking__promo {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.booking__promo-kicker,
.booking__support-label,
.booking-card__kicker,
.booking-summary__label,
.booking-time-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.booking__promo strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.1;
  margin-top: 0.5rem;
}

.booking__promo span {
  display: inline-block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
}

.booking__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.booking__step {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
}

.booking__step.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.booking__step-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.booking__support {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.booking__support a {
  color: var(--white);
  opacity: 0.85;
}

.booking__support a:hover {
  opacity: 1;
}

.booking__panel {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(13, 13, 13, 0.08);
}

.booking__header {
  padding: 0.5rem 0.25rem 1.25rem;
}

.booking__header h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 0.35rem 0 0.75rem;
}

.booking__header p {
  max-width: 46rem;
  color: var(--text-muted);
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.booking-card {
  border-radius: 22px;
  border: 1px solid rgba(13, 13, 13, 0.08);
  background: linear-gradient(180deg, #fff 0%, #fcfbf9 100%);
  padding: 1.25rem;
}

.booking-card__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.booking-card__head h3 {
  font-size: 1.35rem;
}

.booking-card__kicker {
  color: var(--base);
}

.booking-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.booking-choice-grid--compact,
.booking-choice-grid--clinician {
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
}

.booking-choice {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 4.25rem;
  border-radius: 18px;
  border: 1px solid rgba(13, 13, 13, 0.08);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.booking-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-choice span {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.95rem 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.booking-choice.is-selected,
.booking-choice:has(input:checked) {
  border-color: var(--brain);
  background: rgba(46, 42, 74, 0.06);
  box-shadow: 0 8px 20px rgba(46, 42, 74, 0.08);
}

.booking-choice.is-selected span,
.booking-choice:has(input:checked) span {
  color: var(--brain);
}

.booking-form__row {
  margin-bottom: 0.75rem;
}

.booking-form .form-group {
  margin-bottom: 0;
}

.booking-form .form-group label {
  color: var(--base);
}

.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
  border-bottom-color: rgba(13, 13, 13, 0.16);
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus {
  border-color: var(--brain);
}

.booking-date-strip,
.booking-time-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.booking-date-strip::-webkit-scrollbar,
.booking-time-strip::-webkit-scrollbar {
  display: none;
}

.booking-date-chip,
.booking-time-chip {
  flex: 0 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(13, 13, 13, 0.1);
  background: #fff;
  padding: 0.9rem 1rem;
  min-width: 6.6rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.booking-date-chip.is-selected,
.booking-time-chip.is-selected {
  border-color: var(--brain);
  background: var(--brain);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(46, 42, 74, 0.16);
}

.booking-date-chip small,
.booking-time-chip small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.booking-date-chip strong,
.booking-time-chip strong {
  display: block;
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.booking-time-groups {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.booking-time-label {
  color: var(--base);
  margin-bottom: 0.6rem;
}

.booking-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: var(--bg-warm);
  border: 1px solid rgba(13, 13, 13, 0.06);
}

.booking-summary__label {
  color: var(--base);
}

.booking-summary__value {
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: var(--text);
}

.booking-summary__value--error {
  color: #b44a4a;
}

.booking-form__submit {
  margin-top: 0.25rem;
}

.booking-form__button {
  width: 100%;
  justify-content: center;
}

.booking-form__note {
  margin-top: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--base);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 0;
  border: none;
  border-bottom: 1px solid var(--base-light);
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-submit {
  margin-top: 1rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--base);
  margin-top: 1rem;
}

/* ─── Map section ──────────────────────────────────────────────────── */
.map-section {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.map-section__frame {
  width: 100%;
  height: 100%;
}

.map-section__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.85) contrast(0.95);
}

.map-section__card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  padding: 1.4rem 1.75rem;
  max-width: 280px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.map-section__label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--base);
  opacity: 0.6;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.map-section__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark, #1a1a1a);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.map-section__address {
  font-size: 0.85rem;
  color: var(--text-muted, #666);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.map-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brain, #4a6463);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}

.map-section__link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .map-section {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .map-section__frame {
    height: 260px;
    flex-shrink: 0;
  }

  .map-section__card {
    position: static;
    max-width: 100%;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    backdrop-filter: none;
    background: var(--bg-warm, #f7f5f2);
    box-shadow: none;
  }
}

/* ─── Footer ───────────────────────────────────────────────────────── */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 3rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__logo img {
  height: 1.75rem;
  opacity: 0.7;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--base);
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--base);
  transition: color 0.25s;
  margin-top: 0.25rem;
}

.footer__social:hover {
  color: var(--text);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  align-items: center;
}

.footer__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--base);
  transition: color 0.25s;
}

.footer__links a:hover {
  color: var(--text);
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: right;
}

.footer__address {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__rci {
  font-size: 0.7rem;
  color: var(--base);
  letter-spacing: 0.04em;
}

.footer__copy {
  font-size: 0.72rem;
  color: var(--base);
  margin-top: 0.5rem;
}

/* ─── Services — experience chips ─────────────────────────────────── */
.services__subhead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 34rem;
  margin-top: 0.75rem;
}

.services__experience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 3.5rem;
}

.exp-chip {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.1rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.exp-chip:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
  color: var(--white);
}

.exp-chip--1, .exp-chip--5, .exp-chip--9, .exp-chip--13  { border-color: rgba(107, 125, 143, 0.4); }
.exp-chip--2, .exp-chip--6, .exp-chip--10 { border-color: rgba(196, 154, 122, 0.4); }
.exp-chip--3, .exp-chip--7, .exp-chip--11 { border-color: rgba(46, 42, 74, 0.5); }
.exp-chip--4, .exp-chip--8, .exp-chip--12 { border-color: rgba(141, 163, 153, 0.4); }

.services__offerings {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3rem;
}

.services__offerings-label {
  color: var(--base-light);
  margin-bottom: 1.5rem;
}

/* ─── Clinic space ─────────────────────────────────────────────────── */
.clinic-space {
  padding: 4rem 0;
  background: var(--bg-warm);
}

.clinic-space__header {
  margin-bottom: 1.75rem;
  max-width: 36rem;
}

.clinic-space__header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-top: 0.5rem;
}

.clinic-space__sub {
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.clinic-space__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.clinic-space__grid--gallery {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 3px;
}

/* Hero tile spans left column, full height */
.clinic-space__grid--gallery .clinic-img-wrap:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

/* Button reset */
.clinic-img-wrap {
  overflow: hidden;
  background: var(--bg-warm);
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  display: block;
  text-align: left;
  height: 100%;
  width: 100%;
}

.clinic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}

.clinic-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  color: var(--white);
  opacity: 0;
  transition: background 0.35s var(--ease), opacity 0.35s var(--ease);
}

.clinic-img-wrap:hover .clinic-img {
  transform: scale(1.04);
}

.clinic-img-wrap:hover .clinic-img-overlay {
  background: rgba(0, 0, 0, 0.32);
  opacity: 1;
}

/* ─── Lightbox ──────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.lightbox:not([hidden]) {
  opacity: 1;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__img-wrap {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
  transition: opacity 0.25s;
}

.lightbox__img.is-loading {
  opacity: 0.3;
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s;
  z-index: 2;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.18);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s;
  z-index: 2;
}

.lightbox__nav:hover {
  background: rgba(255,255,255,0.18);
}

.lightbox__nav--prev { left: 1.25rem; }
.lightbox__nav--next { right: 1.25rem; }

.lightbox__nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.lightbox__counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ─── Testimonials ─────────────────────────────────────────────────── */
.testimonials {
  padding: 6rem 0;
  background: var(--bg-dark);
  overflow: hidden;
}

.testimonials__header {
  margin-bottom: 3rem;
}

.testimonials__header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-top: 0.5rem;
}

.testimonials__header .eyebrow {
  color: var(--base-light);
}

.testimonials__track-wrap {
  overflow: hidden;
  position: relative;
}

.testimonials__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s var(--ease);
}

.tcard {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.tcard__text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  flex: 1;
}

.tcard__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.tcard__name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.tcard__tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.07);
  color: var(--base-light);
}

.tcard__source {
  font-size: 0.7rem;
  color: var(--body);
  margin-left: auto;
  transition: opacity 0.25s;
}

.tcard__source:hover {
  opacity: 0.75;
}

.testimonials__nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.tcarousel-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  cursor: pointer;
  background: none;
}

.tcarousel-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.testimonials__more {
  margin-top: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonials__more a {
  color: var(--body);
  transition: opacity 0.25s;
}

.testimonials__more a:hover {
  opacity: 0.75;
}

/* ─── Instagram feed ───────────────────────────────────────────────── */
.instagram-feed {
  padding: 6rem 0;
  background: var(--bg);
}

.instagram-feed__header {
  margin-bottom: 2.5rem;
}

.instagram-feed__header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-top: 0.5rem;
}

.instagram-feed__sub {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.ig-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  min-height: 200px;
}

.ig-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-warm);
  display: block;
  cursor: pointer;
}

.ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

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

.ig-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  text-align: center;
  padding: 1.25rem;
  line-height: 1.5;
}

.ig-card:hover .ig-card__overlay {
  opacity: 1;
}

.ig-card__icon {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  z-index: 2;
}

.ig-feed-cta {
  margin-top: 2rem;
  text-align: center;
}


/* ─── Floating CTA ─────────────────────────────────────────────────── */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 90;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-wa:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta__btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  background: var(--text);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: background 0.3s, transform 0.2s;
}

.floating-cta__btn:hover {
  background: var(--brain);
  transform: translateY(-2px);
}

.floating-cta__icon {
  display: flex;
  align-items: center;
}

/* ─── Animations ───────────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Mobile menu overlay ──────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--text);
  padding: 0.65rem 1.5rem;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

.mobile-nav a:hover {
  color: var(--brain);
}

.mobile-nav a:last-child {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  background: var(--text);
  color: var(--white);
  margin-top: 1rem;
}

.mobile-nav a:last-child:hover {
  background: var(--brain);
  color: var(--white);
}

/* ─── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero--fullbleed {
    display: flex;
  }

  .hero__visual {
    min-height: 24rem;
  }

  .hero__content {
    padding: 3rem 2rem;
    text-align: center;
    align-items: center;
  }

  .hero--fullbleed .hero__content {
    text-align: left;
    align-items: flex-start;
    padding: 3rem 2rem 5rem;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero--fullbleed .hero__actions {
    justify-content: flex-start;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
  }

  .pillar {
    min-height: auto;
    padding: 2.5rem;
  }

  .team__grid {
    gap: 0;
  }

  .team-card {
    grid-template-columns: 180px 1fr;
  }

  .team__intro {
    padding-block: 4rem 2rem;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about__image {
    padding: 0;
    display: block;
    position: static;
    align-self: auto;
  }

  .about__image .about__portrait {
    max-width: 100%;
    width: 100%;
    height: 28rem;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
  }

  .about__content {
    padding: 3rem 2rem;
    grid-template-columns: 1fr;
  }

  .about__content-header {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .about__aside {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.75rem;
  }

  .about__tagline {
    flex-basis: 100%;
  }

  .about__credentials {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking {
    padding: 0.75rem;
  }

  .booking__shell {
    grid-template-columns: 1fr;
  }

  .booking__sidebar {
    position: static;
    min-height: auto;
    border-radius: 24px;
    padding: 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: start;
  }

  .booking__back {
    display: none;
  }

  .booking__promo {
    flex: 1 1 12rem;
  }

  .booking__steps {
    flex: 2 1 20rem;
    gap: 0.6rem;
  }

  .booking__support {
    flex-basis: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 0.75rem;
  }

  .booking__support-label {
    flex-basis: 100%;
  }

  .booking__panel {
    border-radius: 24px;
    padding: 1.5rem;
  }

  .clinic-space__grid--gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px 180px;
  }

  .clinic-space__grid--gallery .clinic-img-wrap:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
    aspect-ratio: auto;
    height: 220px;
  }

  .tcard {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .ig-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__list,
  .nav__cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .process__steps {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-card__media {
    aspect-ratio: 4/3;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer__brand {
    align-items: center;
  }

  .footer__links {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .footer__info {
    align-items: center;
    text-align: center;
  }

  .clinic-space__grid--gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px 150px 150px;
  }

  .clinic-space__grid--gallery .clinic-img-wrap:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
    aspect-ratio: auto;
    height: 190px;
  }

  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }

  .tcard {
    flex: 0 0 calc(100% - 0px);
  }

  .ig-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-cta {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .floating-cta__label {
    display: none;
  }

  .floating-cta__btn {
    width: 3rem;
    height: 3rem;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  /* ── Section vertical rhythm ─── */
  .intro              { padding: 3.5rem 0; }
  .pillars            { padding-bottom: 3.5rem; }
  .services           { padding: 4rem 0; }
  .process            { padding: 4rem 0; }
  .quote-section      { padding: 5rem 0; }
  .clinic-space       { padding: 4rem 0; }
  .testimonials       { padding: 4rem 0; }
  .instagram-feed     { padding: 4rem 0; }
  .team__intro        { padding-block: 3rem 2rem; }
  .team__grid         { margin-bottom: 3.5rem; }
  .process__header    { margin-bottom: 2.5rem; }

  /* ── Hero ─── */
  .hero--fullbleed .hero__content {
    padding: 3rem 1.5rem 4.5rem;
  }

  .hero--fullbleed .hero__logo {
    max-width: 10rem;
    margin-bottom: 1.75rem;
  }

  .hero__pillars {
    margin-top: 2rem;
    gap: 0.5rem;
  }

  .hero__pillar-chip {
    font-size: 0.62rem;
    padding: 0.4rem 0.7rem;
  }

  /* ── Pillars ─── */
  .pillar { padding: 2rem 1.5rem; }

  /* ── About (founder) ─── */
  .about__content { padding: 2.5rem 1.5rem; }
  .about__aside { flex-direction: column; }
  .about__credentials { flex-direction: column; }

  /* ── Team cards ─── */
  .team-card__body { padding: 1.75rem 1.5rem 2rem; }

  /* ── Process steps (single column) ─── */
  .step:not(:last-child)::after { display: none; }
  .step {
    text-align: left;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .step:last-child { border-bottom: none; }
  .step__num { font-size: 2.25rem; }

  /* ── Services ─── */
  .services__header { margin-bottom: 2rem; }

  /* ── Booking ─── */
  .booking {
    padding: 0.35rem;
  }

  .booking__shell {
    gap: 0.5rem;
  }

  /* Sidebar becomes a compact top info-strip */
  .booking__sidebar {
    border-radius: 18px;
    padding: 0.9rem;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.75rem;
    min-height: auto;
  }

  .booking__back {
    display: none;
  }

  /* Promo: single inline row */
  .booking__promo {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    padding: 0 0 0.5rem;
    background: none;
    border: none;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .booking__promo-kicker {
    display: none;
  }

  .booking__promo strong {
    font-size: 1.1rem;
    margin-top: 0;
    white-space: nowrap;
  }

  .booking__promo span {
    margin-top: 0;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  /* Steps: compact horizontal scroll strip */
  .booking__steps {
    flex: 0 0 auto;
    flex-direction: row;
    overflow-x: auto;
    gap: 0.4rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0;
    width: 100%;
  }

  .booking__steps::-webkit-scrollbar {
    display: none;
  }

  .booking__step {
    min-width: auto;
    padding: 0.45rem 0.65rem;
    scroll-snap-align: start;
    font-size: 0.78rem;
    gap: 0.4rem;
    border-radius: 12px;
  }

  .booking__step-icon {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.58rem;
    flex-shrink: 0;
  }

  /* Hide step labels — just show numbers on mobile */
  .booking__step > span:last-child {
    display: none;
  }

  .booking__support {
    display: none;
  }

  /* Panel: full-width, minimal radius */
  .booking__panel {
    border-radius: 18px;
    padding: 1rem;
  }

  .booking__header {
    padding: 0 0 0.75rem;
  }

  .booking__header h2 {
    font-size: 1.55rem;
    margin-bottom: 0.4rem;
  }

  .booking__header p {
    font-size: 0.88rem;
  }

  .booking-form {
    gap: 0.65rem;
  }

  .booking-card {
    border-radius: 16px;
    padding: 0.9rem;
  }

  .booking-card__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    margin-bottom: 0.75rem;
  }

  .booking-card__head h3 {
    font-size: 1.15rem;
  }

  /* Session type: 1-column (labels too long for 2-col) */
  .booking-choice-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  /* Session mode: 3-column (short labels) */
  .booking-choice-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Clinician: 2-column */
  .booking-choice-grid--clinician {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .booking-choice {
    min-height: 3rem;
    border-radius: 14px;
  }

  /* Left-align text for better mobile readability */
  .booking-choice span {
    justify-content: flex-start;
    text-align: left;
    padding: 0.8rem 0.9rem;
    font-size: 0.9rem;
  }

  /* Prevent iOS auto-zoom on input focus (must be ≥ 16px) */
  .booking-form .form-group input,
  .booking-form .form-group select,
  .booking-form .form-group textarea {
    font-size: 16px;
  }

  .booking-date-strip,
  .booking-time-strip {
    gap: 0.55rem;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
  }

  .booking-date-chip,
  .booking-time-chip {
    min-width: 5.5rem;
    padding: 0.75rem 0.8rem;
    border-radius: 14px;
    scroll-snap-align: start;
  }

  .booking-date-chip strong,
  .booking-time-chip strong {
    font-size: 0.88rem;
  }

  .booking-summary {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 0.85rem;
    border-radius: 14px;
  }

  .booking-form__button {
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
    border-radius: 14px;
    min-height: 3rem;
  }

  .form-row.booking-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  /* ── Booking on small phones ─── */
  .booking-choice-grid,
  .booking-choice-grid--clinician {
    grid-template-columns: 1fr;
  }

  .booking-choice-grid--compact {
    grid-template-columns: repeat(3, 1fr);
  }

  .booking-choice {
    min-height: 2.75rem;
  }

  .booking-choice span {
    font-size: 0.85rem;
    padding: 0.7rem 0.75rem;
  }

  .booking-date-chip,
  .booking-time-chip {
    min-width: 5rem;
  }

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

  .booking__steps {
    flex: 1 1 100%;
  }

  .booking__promo strong {
    font-size: 1rem;
  }

  .booking__promo span {
    font-size: 0.78rem;
  }

  .booking__step {
    padding: 0.4rem 0.6rem;
  }

  .booking__step-icon {
    width: 1.4rem;
    height: 1.4rem;
  }

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

  .hero__lead {
    font-size: 0.95rem;
  }

  .hero__actions {
    flex-direction: column;
  }

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

  .section-title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .intro__text {
    font-size: clamp(1.3rem, 5.5vw, 1.75rem);
  }

  .quote-section blockquote {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
  }

  .team-card__name {
    font-size: 1.5rem;
  }

  .about__content h2 {
    font-size: 1.9rem;
  }

  .contact__info h2 {
    font-size: 1.9rem;
  }

  .services__header h2 {
    font-size: 1.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ─── Mobile App UX ─────────────────────────────────────────────────── */

/* Header auto-hide — is-hidden added by JS on mobile scroll-down */
.header.is-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

/* Bottom nav — desktop: hidden */
.bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  /* Safe-area-aware bottom nav height */
  :root {
    --bottom-nav-h: calc(60px + env(safe-area-inset-bottom, 0px));
  }

  /* Body padding so last section isn't hidden under nav */
  body {
    padding-bottom: var(--bottom-nav-h);
    overscroll-behavior-y: none;
  }

  /* Kill default blue tap flash */
  html {
    -webkit-tap-highlight-color: transparent;
  }

  /* ── Bottom Navigation Bar ─────────────────────────────────────── */
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    background: rgba(250, 249, 247, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.09);
    box-shadow: 0 -2px 24px rgba(0, 0, 0, 0.08);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    align-items: stretch;
    height: var(--bottom-nav-h);
  }

  .bottom-nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    color: var(--base);
    font-family: var(--font-sans);
    font-size: 0.57rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.75rem 0.25rem 0.5rem;
    position: relative;
    transition: color 0.2s;
    user-select: none;
  }

  .bottom-nav__item:active {
    transform: scale(0.86);
    transition: transform 0.1s, color 0.1s;
  }

  .bottom-nav__item.is-active {
    color: var(--brain);
  }

  /* Pill indicator above active icon */
  .bottom-nav__item.is-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1.75rem;
    height: 2.5px;
    background: var(--brain);
    border-radius: 0 0 3px 3px;
  }

  /* "Book" pill button on the right */
  .bottom-nav__item--book {
    flex: 0 0 auto;
    flex-direction: row;
    gap: 0.4rem;
    padding: 0 1.1rem;
    margin: 0.55rem 0.75rem 0.55rem 0;
    background: var(--brain);
    color: var(--white);
    border-radius: 100px;
    font-size: 0.6rem;
  }

  .bottom-nav__item--book:active {
    background: #1a1730;
    transform: scale(0.93);
  }

  .bottom-nav__item--book.is-active {
    color: var(--white);
  }

  .bottom-nav__item--book::before {
    display: none;
  }

  /* ── Floating elements raised above bottom nav ─── */
  .floating-wa {
    bottom: calc(var(--bottom-nav-h) + 0.75rem);
    left: 1rem;
    width: 2.75rem;
    height: 2.75rem;
  }

  /* Book-session pill in bottom nav replaces this */
  .floating-cta {
    display: none;
  }

  /* ── Touch feedback ─── */
  .btn:active {
    transform: scale(0.96) !important;
    transition: transform 0.1s !important;
  }

  .exp-chip:active {
    transform: scale(0.94) !important;
    transition: transform 0.1s !important;
  }

  /* ── Rounded cards — app feel ──────────────────────────────────── */

  /* Pillar tiles */
  .pillars__grid {
    gap: 0.65rem;
    padding: 0 1.25rem;
  }

  .pillar {
    border-radius: 16px;
  }

  /* Service tiles */
  .services__grid {
    gap: 0.65rem;
    background: transparent;
  }

  .service-tile {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  /* Process steps → card */
  .process__steps {
    gap: 0.75rem;
  }

  .step {
    background: var(--white);
    border-radius: 16px;
    border-bottom: none;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  }

  /* Testimonial cards */
  .tcard {
    border-radius: 16px;
  }

  /* Team cards */
  .team-carousel .team-card {
    border-radius: 16px;
    overflow: hidden;
  }

  .team__grid--single .team-card {
    border-radius: 16px;
    overflow: hidden;
    margin-inline: 1.25rem;
  }

  /* Contact — two separate cards stacked */
  .contact {
    padding: 0 1.25rem;
    gap: 0;
    background: transparent;
  }

  .contact__info {
    border-radius: 16px 16px 0 0;
    padding: 2.5rem 1.75rem;
  }

  .contact__form-wrap {
    border-radius: 0 0 16px 16px;
    padding: 2rem 1.75rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
  }
}
