/* ==========================================================================
   Immunocine Summit 2026 — Mini Site
   Converted from Figma: KP26-Immunocine-Summit-Landing-V1
   Mobile-first · Breakpoint: 900px (desktop design @1440, mobile @390)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --navy: #1a2a6b;
  --blue: #4e6ff6;
  --mist: #e9eeed; /* light sage/grey background           */
  --grey: #f5f5f5; /* inactive control background          */
  --white: #ffffff;
  --line: #4e6ff6; /* 1px rules throughout the design      */

  /* ATC Arquette is the brand typeface (commercial). Poppins is the
     closest freely available geometric sans and acts as the live
     fallback until the licensed .woff2 files are added (see README). */
  --font:
    "ATC Arquette", "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1148px;
  --radius: 10px;
  --radius-sm: 3px;
}

/* ---------- @font-face hooks (drop licensed files into assets/fonts) ---------- */
@font-face {
  font-family: "ATC Arquette";
  src: url("../fonts/ATCArquette-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "ATC Arquette";
  src: url("../fonts/ATCArquette-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "ATC Arquette";
  src: url("../fonts/ATCArquette-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

.container {
  width: 100%;
  max-width: calc(var(--container) + 64px);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* ---------- Shared typography ---------- */
.section-label {
  color: var(--blue);
  font-weight: 600;
  font-size: 10px;
  line-height: normal;
  margin-bottom: 7px;
}

.section-title {
  color: var(--navy);
  font-weight: 600;
  font-size: 31px;
  line-height: 37px;
}

.section-title--light {
  color: var(--white);
}

/* ==========================================================================
   NAV BAR
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow 0.25s ease;
}

.nav.is-scrolled {
  box-shadow: 0 2px 18px rgba(26, 42, 107, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 81px;
  padding: 0 16px 0 20px;
}

.nav__logo img {
  width: 193px;
  height: auto;
}

.nav__links {
  position: absolute;
  top: 81px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  padding: 12px 20px 20px;
  box-shadow: 0 14px 24px rgba(26, 42, 107, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
}

.nav__links.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__link {
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  padding: 10px 0;
  transition: color 0.2s ease;
}

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

.nav__cta {
  display: none;
  align-items: center;
  justify-content: center;
  width: 142px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.nav__cta:hover {
  background: var(--blue);
}

.nav__cta--mobile {
  display: inline-flex;
  margin-top: 8px;
}

.nav__burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 47px;
  height: 36px;
  background: var(--blue);
  border-radius: 5px;
  transition: background 0.2s ease;
}

.nav__burger:hover {
  background: var(--navy);
}

.nav__burger span {
  display: block;
  width: 17px;
  height: 3px;
  background: var(--white);
  border-radius: 0.5px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.nav__burger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ==========================================================================
   HERO / COVER
   ========================================================================== */
.hero {
  position: relative;
  background: var(--mist);
  overflow: hidden;
}

.hero__bg,
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg img {
  object-position: 64% center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(233, 238, 237, 0) 0%, #e9eeed 89%);
}

.hero__content {
  position: relative;
  padding-top: 64px;
  padding-bottom: 63px;
  padding-left: 26px;
  padding-right: 26px;
}

.hero__eyebrow {
  color: var(--blue);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 11px;
}

.hero__title {
  font-weight: 600;
  font-size: 31px;
  line-height: 37px;
  max-width: 319px;
  margin-bottom: 10px;
}

/* Mobile wraps naturally over 4 lines; desktop breaks after "Frontier" */
.hero__title-br {
  display: none;
}

.hero__lede {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  max-width: 269px;
  margin-bottom: 26px;
}

.hero__datebox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 320px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  margin-bottom: 21px;
  padding: 8px 0;
}

.hero__datebox span {
  flex: 1;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
}

.hero__datebox-divider {
  flex: 0 0 1px !important;
  align-self: center;
  width: 1px;
  height: 14px;
  background: #626c93;
}

.hero__datebox-subline {
  flex: 0 0 100% !important;
  margin-top: 6px;
  text-align: center;
  font-weight: 600;
  font-size: 12px !important;
}

.hero__note {
  font-weight: 600;
  font-size: 12px;
  max-width: 318px;
}

/* ==========================================================================
   01 — ABOUT
   ========================================================================== */
.about {
  background: var(--white);
}

.about__grid:first-of-type {
  padding-top: 64px;
  padding-bottom: 0px;
}
.about__grid:last-of-type {
  padding-top: 20px;
  padding-bottom: 64px;
}

.about__copy .section-title {
  margin-bottom: 26px;
  max-width: 319px;
}

.about__body {
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
}

.about__body p + p {
  margin-top: 14px;
}

.about__photo {
  margin-top: 34px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 326 / 429;
}

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

/* ==========================================================================
   02 — THE WEEKEND / AGENDA
   ========================================================================== */
.agenda {
  background: var(--navy);
  padding-top: 64px;
  padding-bottom: 64px;
}

.agenda .section-title {
  margin-bottom: 30px;
}

.agenda__lede {
  color: var(--white);
  font-weight: 500;
  font-size: 12px;
  margin-top: -10px;
  margin-bottom: 34px;
  max-width: 326px;
}

/* --- Day cards --- */
.day-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0 20px;
}

.day-card + .day-card,
.group-toggle + .day-card {
  margin-top: 19px;
}

.day-card__meta {
  font-weight: 500;
  font-size: 7px;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 9px;
}

.day-card__title {
  font-weight: 600;
  font-size: 12px;
  line-height: normal;
  color: var(--navy);
}

.day-card__entries {
  min-width: 0;
}

.entry + .entry {
  border-top: 1px solid var(--line);
}

.entry__time {
  color: var(--blue);
  font-weight: 500;
  font-size: 7px;
  margin-bottom: 10px;
}

.entry + .entry .entry__time {
  margin-top: 12px;
}

.entry {
  padding-bottom: 14px;
}
.entry:last-child {
  padding-bottom: 0;
}

.entry__text {
  font-weight: 400;
  font-size: 10px;
  line-height: 19px;
  color: var(--navy);
}

.entry__text strong {
  font-weight: 600;
}

.entry__speaker {
  font-weight: 500;
}

.entry__block {
  margin-bottom: 14px;
}
.entry__block:last-child {
  margin-bottom: 0;
}
.entry__block--gap {
  margin-top: 14px;
}

.entry__list {
  list-style: disc;
  padding-left: 15px;
  font-weight: 500;
}

/* --- Group toggle --- */
.group-toggle {
  display: flex;
  gap: 13px;
  margin-top: 19px;
}

.group-toggle__btn {
  flex: 1;
  height: 18px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: 10px;
  line-height: 1;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.group-toggle__btn:hover {
  background: var(--mist);
}

.group-toggle__btn.is-active {
  background: var(--blue);
  color: var(--white);
}

.group-toggle__btn.is-active:hover {
  background: var(--blue);
}

/* ==========================================================================
   03 — THE TREATMENT
   ========================================================================== */
.treatment {
  background: var(--white);
  padding-top: 64px;
}

.treatment__copy .section-title {
  margin-bottom: 34px;
  max-width: 327px;
}

.treatment__sub {
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 10px;
}

.treatment__body {
  font-weight: 500;
  font-size: 12px;
  max-width: 317px;
}

.treatment__body p + p {
  margin-top: 14px;
}

.treatment__stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 34px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 39px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 0 18px;
  min-height: 65px;
  color: var(--white);
}

.stat-card__number {
  font-weight: 600;
  font-size: 45px;
  line-height: 1;
  flex: 0 0 117px;
}

.stat-card__number--text {
  font-size: 20px;
  line-height: 22px;
}

.stat-card__desc {
  font-weight: 600;
  font-size: 8px;
  max-width: 138px;
  padding: 8px 0;
}

/* --- Patient outcome cards --- */
/* Cards straddle the boundary into the navy venue section behind them */
.patients {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 26px;
  margin-bottom: -108px;
  position: relative;
  z-index: 1;
}

.patient-card {
  background: var(--mist);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.patient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(26, 42, 107, 0.12);
}

.patient-card__photo {
  position: relative;
  height: 106px;
  overflow: hidden;
}

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

.patient-card__photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  height: 57%;
  background: linear-gradient(
    to bottom,
    rgba(233, 238, 237, 0) 0%,
    var(--mist) 57%
  );
}

.patient-card__body {
  padding: 0 9px 16px;
}

.patient-card__body h3 {
  font-weight: 600;
  font-size: 8px;
  margin-bottom: 7px;
}

.patient-card__body p {
  font-weight: 400;
  font-size: 8px;
  line-height: normal;
}

/* ==========================================================================
   04 — VENUE & LOGISTICS
   ========================================================================== */
.venue {
  background: var(--navy);
  padding-top: 172px;
  padding-bottom: 64px;
}

.venue .section-title {
  margin-bottom: 18px;
}

.venue__lede {
  color: var(--white);
  font-weight: 500;
  font-size: 12px;
  max-width: 306px;
  margin-bottom: 34px;
}

.venue__row {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 6px;
  border-top: 1px solid var(--line);
  padding: 25px 0 25px 6px;
}

.venue__row:last-of-type {
  border-bottom: 1px solid var(--line);
}

.venue__icon img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  margin-top: 17px;
}

.venue__label {
  color: var(--blue);
  font-weight: 500;
  font-size: 8px;
  margin-bottom: 6px;
}

.venue__detail {
  color: var(--white);
  font-weight: 500;
  font-size: 10px;
  line-height: normal;
}

.venue__detail-extra {
  font-weight: 400;
  margin-top: 10px;
}

.venue__note {
  color: var(--white);
  font-weight: 600;
  font-size: 8px;
  margin-top: 26px;
  max-width: 325px;
}

.venue__note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.venue__photos {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 28px;
}

.venue__photo {
  border-radius: var(--radius);
  overflow: hidden;
}

.venue__photo--top {
  aspect-ratio: 326 / 237;
}
.venue__photo--bottom {
  aspect-ratio: 326 / 394;
}

.venue__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.venue__photo:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   05 — WHY YOU'RE HERE / INVITATION
   ========================================================================== */
.invitation {
  background: var(--white);
  padding-top: 64px;
  padding-bottom: 64px;
}

.invitation .section-title {
  margin-bottom: 49px;
}

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

.invite-stat {
  background: var(--blue);
  border-radius: var(--radius-sm);
  color: var(--white);
  min-height: 128px;
  padding: 14px 9px 10px;
  display: flex;
  flex-direction: column;
}

.invite-stat__number {
  font-weight: 600;
  font-size: 39px;
  line-height: 1;
  margin-bottom: 6px;
}

.invite-stat__desc {
  font-weight: 600;
  font-size: 8px;
  line-height: normal;
}

.invitation__footnote {
  font-weight: 600;
  font-size: 8px;
  margin-top: 17px;
  max-width: 326px;
}

.invitation__photo {
  margin-top: 37px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 326 / 429;
}

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

/* ==========================================================================
   06 — THE TEAM
   ========================================================================== */
.team {
  background: var(--white);
  padding-top: 64px;
  padding-bottom: 64px;
}

.team .container {
  border-top: 1px solid var(--line);
  padding-top: 63px;
}

.team {
  padding-top: 0;
}

.team .section-title {
  margin-bottom: 30px;
  max-width: 326px;
}

.team__lede {
  font-weight: 500;
  font-size: 12px;
  margin-top: -12px;
  margin-bottom: 34px;
  max-width: 326px;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px 5px;
}

.team-card__photo {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
}

.team-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__photo-alt {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.team-card:hover .team-card__photo-alt {
  opacity: 1;
}

.team-card__name {
  font-weight: 600;
  font-size: 8px;
  margin-bottom: 7px;
}

.team-card__role {
  font-weight: 500;
  font-size: 7px;
  line-height: normal;
}

/* ==========================================================================
   07 — FAQ
   ========================================================================== */
.faq {
  background: var(--white);
  padding-bottom: 64px;
}

.faq .container {
  border-top: 1px solid var(--line);
  padding-top: 63px;
}

.faq .section-title {
  margin-bottom: 34px;
  max-width: 326px;
}

.faq__item {
  border-top: 1px solid var(--line);
}
.faq__list {
  border-bottom: 1px solid var(--line);
}

.faq__question {
  display: block;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 10px;
  line-height: 19px;
  color: var(--navy);
  padding: 12px 0 0;
  transition: color 0.2s ease;
}

.faq__question:hover {
  color: var(--blue);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease,
    padding 0.35s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 200px;
  opacity: 1;
}

.faq__answer p {
  font-weight: 400;
  font-size: 10px;
  line-height: 19px;
  padding: 6px 0 13px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding-top: 64px;
  padding-bottom: 64px;
}

.footer__title {
  font-weight: 600;
  font-size: 31px;
  line-height: 37px;
  max-width: 319px;
  margin-bottom: 33px;
}

.footer__email {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer__email:hover {
  color: var(--blue);
}

.footer__collage {
  margin-top: 33px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 326 / 218;
}

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

.footer__collage-desktop {
  display: none !important;
}

.footer__divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 32px 0 0;
}

.footer__logo {
  width: 213px;
  height: auto;
  margin-top: 34px;
}

.footer__summary {
  font-weight: 500;
  font-size: 12px;
  max-width: 228px;
  margin-top: 24px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.footer__nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 14px;
  padding: 9px 0 13px;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease;
}

.footer__nav-link--first {
  font-weight: 600;
}

.footer__nav-link:hover {
  color: var(--blue);
}

.footer__arrow {
  display: inline-block;
  width: 25px;
  height: 8px;
  background-color: var(--blue);
  -webkit-mask: url("../images/arrow-right.svg") no-repeat center / contain;
  mask: url("../images/arrow-right.svg") no-repeat center / contain;
  transition: transform 0.25s ease;
}

.footer__nav-link:hover .footer__arrow {
  transform: translateX(4px);
}

.footer__contact {
  margin-top: 31px;
}

.footer__col-title {
  font-weight: 600;
  font-size: 14px;
}

.footer__col-title--line {
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}

.footer__contact-link {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  transition: color 0.2s ease;
}

.footer__contact-link:hover {
  color: var(--blue);
}

.footer__copyright {
  font-weight: 500;
  font-size: 14px;
  margin-top: 51px;
}

/* ==========================================================================
   DESKTOP — matches the 1440px Figma frame
   ========================================================================== */
@media (min-width: 900px) {
  .container {
    max-width: var(--container);
    padding-left: 0;
    padding-right: 0;
  }

  .section-label {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .section-title {
    font-size: 60px;
    line-height: normal;
  }

  .agenda .section-label {
    margin-bottom: 0;
  }

  /* ----- Nav ----- */
  .nav__inner {
    height: 100px;
    padding: 0 29px 0 24px;
    max-width: 1440px;
    margin: 0 auto;
  }

  .nav__logo img {
    width: 227px;
  }

  .nav__links {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 73px;
    background: none;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-left: auto;
    margin-right: 70px;
  }

  .nav__link {
    padding: 0;
  }

  .nav__cta {
    display: inline-flex;
  }
  .nav__cta--mobile {
    display: none;
  }
  .nav__burger {
    display: none;
  }

  /* ----- Hero ----- */
  .hero {
    height: 867px;
  }

  .hero__bg img {
    object-position: center;
  }

  .hero__content {
    padding: 163px 0 0;
  }

  .hero__eyebrow {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .hero__title {
    font-size: 60px;
    line-height: 73px;
    max-width: none;
    margin-bottom: 24px;
  }

  .hero__title-br {
    display: inline;
  }

  .hero__lede {
    font-size: 24px;
    line-height: normal;
    max-width: 724px;
    margin-bottom: 34px;
  }

  .hero__datebox {
    max-width: 567px;
    height: 74px;
    margin-bottom: 42px;
  }

  .hero__datebox span {
    font-size: 25px;
  }

  .hero__datebox-divider {
    height: 26px;
  }

  .hero__note {
    font-size: 14px;
    max-width: none;
  }

  /* ----- About ----- */
  .about__grid:first-of-type {
    display: grid;
    grid-template-columns: 1fr 366px;
    gap: 56px;
    padding-top: 153px;
    padding-bottom: 145px;
    align-items: center;
  }
.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

  /* .about__copy {
    padding-top: 25px;
  } */

  .about__copy .section-title {
    margin-bottom: 38px;
    max-width: 750px;
    font-size: 56px;
    line-height: 1.3;
  }

  .about__body {
    font-size: 22px;
    max-width: 724px;
  }

  .about__body p + p {
    margin-top: 29px;
  }

  .about__photo {
    margin-top: 0;
    aspect-ratio: auto;
    height: 482px;
  }

  /* ----- Agenda ----- */
  .agenda {
    padding-top: 120px;
    padding-bottom: 145px;
  }

  .agenda .section-title {
    margin-bottom: 30px;
  }

  .agenda__lede {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 43px;
    max-width: 1082px;
  }

  .day-card {
    padding: 40px 40px 40px 38px;
    grid-template-columns: 278px 1fr;
    gap: 0;
  }

  .day-card + .day-card,
  .group-toggle + .day-card {
    margin-top: 45px;
  }

  .day-card__meta {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .day-card__title {
    font-size: 22px;
    max-width: 202px;
  }

  .entry__time {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .entry + .entry .entry__time {
    margin-top: 40px;
  }

  .entry {
    padding-bottom: 40px;
  }
  .entry:last-child {
    padding-bottom: 0;
  }

  .entry__text {
    font-size: 20px;
    line-height: 29px;
  }

  .entry__block {
    margin-bottom: 35px;
  }
  .entry__block--gap {
    margin-top: 29px;
  }

  .entry__list {
    padding-left: 30px;
  }

  .group-toggle {
    gap: 45px;
    margin-top: 49px;
  }

  .group-toggle__btn {
    height: 50px;
    border-radius: var(--radius);
    font-size: 20px;
    background: var(--grey);
  }

  /* ----- Treatment ----- */
  .treatment {
    padding-top: 153px;
  }

  .treatment__grid {
    display: grid;
    grid-template-columns: 1fr 366px;
    gap: 90px;
    align-items: start;
  }

  .treatment__copy .section-title {
    margin-bottom: 47px;
    max-width: 724px;
    line-height: 1.3;
  }

  .treatment__sub {
    font-size: 24px;
    margin-bottom: 47px;
  }

  .treatment__body {
    font-size: 24px;
    max-width: 694px;
  }

  .treatment__body p + p {
    margin-top: 29px;
    font-size: 20px;
  }

  .treatment__stats {
    gap: 20px;
    margin-top: 0;
  }

  .stat-card {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    border-radius: var(--radius);
    height: 236px;
    min-height: 0;
    padding: 30px 40px 28px;
  }

  .stat-card__number {
    font-size: 70px;
    flex: none;
  }

  .stat-card__number--text {
    font-size: 36px;
    line-height: 1.3;
  }

  .stat-card__desc {
    font-size: 16px;
    max-width: 286px;
    padding: 0;
  }

  .patients {
    grid-template-columns: repeat(3, 370px);
    justify-content: space-between;
    gap: 20px;
    margin-top: 76px;
    margin-bottom: -201px;
  }

  .patient-card {
    border-radius: var(--radius);
  }

  .patient-card__photo {
    height: 246px;
  }

  .patient-card__body {
    padding: 19px 30px 36px;
  }

  .patient-card__body h3 {
    font-size: 20px;
    margin-bottom: 19px;
  }

  .patient-card__body p {
    font-size: 16px;
  }

  /* ----- Venue ----- */
  .venue {
    padding-top: 342px;
    padding-bottom: 145px;
  }

  .venue__grid {
    display: grid;
    grid-template-columns: 1fr 486px;
    gap: 90px;
    align-items: start;
  }

  .venue .section-title {
    margin-bottom: 31px;
    line-height: 1.3;
    font-size: 56px;
  }

  .venue__lede {
    font-size: 20px;
    max-width: 604px;
    margin-bottom: 47px;
  }

  .venue__row {
    grid-template-columns: 64px 1fr;
    gap: 0;
    padding: 51px 0 50px 0;
    max-width: 574px;
  }

  .venue__row:nth-of-type(1) {
    padding-bottom: 56px;
  }

  .venue__icon img {
    width: 30px;
    height: 30px;
    margin-top: 24px;
  }

  .venue__label {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .venue__detail {
    font-size: 16px;
  }

  .venue__detail-extra {
    margin-top: 24px;
  }

  .venue__note {
    font-size: 16px;
    margin-top: 53px;
    max-width: 587px;
  }

  .venue__photos {
    gap: 20px;
    margin-top: 0;
  }

  .venue__photo--top {
    aspect-ratio: auto;
    height: 353px;
  }

  .venue__photo--bottom {
    aspect-ratio: auto;
    height: 587px;
  }

  /* ----- Invitation ----- */
  .invitation {
    padding-top: 145px;
    padding-bottom: 145px;
  }

  .invitation__grid {
    display: grid;
    grid-template-columns: 1fr 366px;
    gap: 56px;
    align-items: start;
  }

  .invitation .section-title {
    margin-bottom: 47px;
    max-width: 593px;
    font-size: 56px;
    line-height: 1.3;
  }

  .invitation__stats {
    grid-template-columns: repeat(3, 229px);
    gap: 20px;
  }

  .invite-stat {
    border-radius: var(--radius);
    min-height: 260px;
    padding: 32px 20px 25px;
  }

  .invite-stat__number {
    font-size: 80px;
    margin-bottom: 25px;
  }

  .invite-stat__desc {
    font-size: 16px;
  }

  .invitation__footnote {
    font-size: 16px;
    margin-top: 34px;
    max-width: 724px;
  }

  .invitation__photo {
    margin-top: 0;
    aspect-ratio: auto;
    height: 550px;
  }

  /* ----- Team ----- */
  .team {
    padding-bottom: 145px;
  }

  .team .container {
    padding-top: 151px;
  }

  .team .section-title {
    margin-bottom: 49px;
    max-width: 1151px;
  }

  .team__lede {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 104px;
    max-width: 1151px;
  }

  .team__grid {
    grid-template-columns: repeat(3, 370px);
    justify-content: space-between;
    gap: 109px 19px;
  }

  .team-card__photo {
    border-radius: var(--radius);
    margin-bottom: 37px;
  }

  .team-card__name {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .team-card__role {
    font-size: 24px;
  }

  /* ----- FAQ ----- */
  .faq {
    padding-bottom: 145px;
  }

  .faq .container {
    padding-top: 151px;
  }

  .faq .section-title {
    margin-bottom: 50px;
    max-width: 1148px;
  }

  .faq__question {
    font-size: 20px;
    line-height: 29px;
    padding: 44px 0 0;
  }

  .faq__answer p {
    font-size: 20px;
    line-height: 29px;
    padding: 22px 0 50px;
  }

  /* ----- Footer ----- */
  .footer {
    padding-top: 153px;
    padding-bottom: 145px;
  }

  .footer__top {
    display: grid;
    grid-template-columns: 1fr 546px;
    gap: 56px;
    align-items: start;
  }

  .footer__title {
    font-size: 60px;
    line-height: normal;
    max-width: 516px;
    margin-top: 86px;
    margin-bottom: 47px;
  }

  .footer__email {
    font-size: 24px;
  }

  .footer__collage {
    margin-top: 0;
    aspect-ratio: auto;
    height: 380px;
  }

  .footer__collage-desktop {
    display: block !important;
  }
  .footer__collage-mobile {
    display: none;
  }

  .footer__divider {
    margin-top: 141px;
  }

  .footer__bottom {
    display: grid;
    grid-template-columns: 1fr 329px 329px;
    gap: 57px;
    margin-top: 0;
  }

  .footer__logo {
    width: 266px;
    margin-top: 145px;
  }

  .footer__summary {
    font-size: 14px;
    max-width: 273px;
    margin-top: 35px;
  }

  .footer__nav {
    margin-top: 145px;
  }

  .footer__nav-link {
    font-size: 16px;
    padding: 0 0 11px;
  }

  .footer__nav-link + .footer__nav-link {
    padding-top: 12px;
  }

  .footer__contact {
    margin-top: 145px;
  }

  .footer__col-title {
    font-size: 16px;
  }

  .footer__col-title--line {
    padding-bottom: 11px;
    margin-bottom: 8px;
  }

  .footer__contact-link {
    font-size: 16px;
  }

  .footer__copyright {
    font-size: 16px;
    margin-top: 40px;
  }
 
}

@media(max-width:899px) {
 .patient-card__photo::after{bottom: 0;}
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
