:root {
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Arial Rounded MT Bold", "Trebuchet MS", "Inter", system-ui, sans-serif;
  --font-accent: Georgia, "Times New Roman", serif;
  --type-xs: 0.75rem;
  --type-sm: 0.875rem;
  --type-base: 1rem;
  --type-lg: 1.125rem;
  --weight-regular: 400;
  --weight-semibold: 700;
  --weight-bold: 800;
  --plum: #511f5c;
  --plum-deep: #35133f;
  --berry: #771f5c;
  --coral: #ec234e;
  --coral-deep: #c9133b;
  --lavender: #b57ddc;
  --yellow: #fcb800;
  --aqua: #83c8ca;
  --green: #9ec86e;
  --navy: #00133e;
  --paper: #fff9f4;
  --white: #ffffff;
  --ink: #25172b;
  --muted: #6f6372;
  --pink-soft: #fde3ea;
  --lavender-soft: #f1e5f7;
  --aqua-soft: #e0f4f4;
  --green-soft: #ebf5df;
  --yellow-soft: #fff1c4;
  --line: rgba(81, 31, 92, 0.14);
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 14px 40px rgba(49, 20, 58, 0.10);
  --shadow-md: 0 24px 70px rgba(49, 20, 58, 0.15);
  --shadow-lg: 0 38px 110px rgba(24, 7, 31, 0.22);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-xl: 52px;
  --shell: 1240px;
  --header-height: 94px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: var(--type-base);
  font-weight: var(--weight-regular);
  line-height: 1.65;
  overflow-x: hidden;
}

body[data-page="booking"],
body[data-page="urgent"] {
  padding-bottom: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

/* Emergency notice */
.emergency-ribbon {
  position: relative;
  z-index: 80;
  color: var(--navy);
  background: var(--yellow);
  border-bottom: 1px solid rgba(0, 19, 62, 0.12);
}

.emergency-ribbon__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 8px;
}

.emergency-ribbon p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.4;
}

.emergency-ribbon p > span {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.emergency-ribbon a {
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

/* Header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  height: var(--header-height);
  color: var(--plum);
  background: rgba(255, 249, 244, 0.94);
  border-bottom: 1px solid rgba(81, 31, 92, 0.08);
  backdrop-filter: blur(20px);
  transition: height 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-compact {
  height: 78px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 34px rgba(49, 20, 58, 0.08);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  width: clamp(190px, 17vw, 240px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-link {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  color: var(--plum);
  background: var(--lavender-soft);
  border: 1px solid rgba(81, 31, 92, 0.12);
  border-radius: 50%;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.social-link:hover {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 7px 0 rgba(181, 125, 220, 0.45);
  transform: translateY(-2px);
}

.social-link:active {
  box-shadow: 0 3px 0 rgba(181, 125, 220, 0.45);
  transform: translateY(1px);
}

.social-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon__fill,
.social-icon__dot {
  fill: currentColor;
  stroke: none;
}

.header-socials {
  margin-left: 5px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.site-nav > a {
  padding: 12px 13px;
  border-radius: 999px;
  color: var(--plum);
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav > a:hover {
  color: var(--berry);
  background: var(--lavender-soft);
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"]:not(.nav-cta) {
  color: var(--white);
  background: var(--plum);
}

.site-nav .nav-cta {
  margin-left: 6px;
  padding: 14px 22px;
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 6px 0 var(--lavender);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--white);
  background: var(--berry);
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--lavender);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--plum);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Typography and common components */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--plum-deep);
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 6.8vw, 7.2rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 4.5vw, 5rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.18;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--coral);
}

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

.eyebrow--light::before {
  background: var(--coral);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.72;
}

.lead--light {
  color: rgba(255, 255, 255, 0.76);
}

.microcopy {
  color: var(--muted);
  font-size: 0.78rem;
}

.microcopy--light {
  color: rgba(255, 255, 255, 0.62);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, color 170ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--coral {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 6px 0 #a70e32;
}

.button--coral:hover {
  background: var(--coral-deep);
  box-shadow: 0 8px 0 #8c0b2a;
}

.button--plum {
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 6px 0 var(--lavender);
}

.button--plum:hover {
  background: var(--berry);
  box-shadow: 0 8px 0 var(--lavender);
}

.button--yellow {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 6px 0 var(--coral);
}

.button--yellow:hover {
  background: #ffc62b;
  box-shadow: 0 8px 0 var(--coral);
}

.button--secondary {
  color: var(--plum);
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 5px 0 var(--lavender-soft);
}

.button--ghost-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.button--ghost-light:hover {
  color: var(--navy);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--plum);
  font-weight: 900;
  border-bottom: 2px solid var(--coral);
}

.text-link:hover span {
  transform: translateX(3px);
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link--light {
  color: var(--white);
  border-bottom-color: var(--yellow);
}

.text-button {
  padding: 0;
  color: var(--plum);
  background: transparent;
  border: 0;
  font-weight: 900;
  cursor: pointer;
}

.text-button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.section {
  position: relative;
  padding-block: 112px;
}

.section--tight {
  padding-block: 78px;
}

.section--plum {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(181, 125, 220, 0.18), transparent 24rem),
    linear-gradient(135deg, var(--plum-deep), var(--plum));
}

.section--navy {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 10%, rgba(131, 200, 202, 0.16), transparent 22rem),
    var(--navy);
}

.section--lavender {
  background:
    radial-gradient(circle at 82% 0%, rgba(131, 200, 202, 0.45), transparent 22rem),
    var(--lavender-soft);
}

.section--warm {
  background:
    radial-gradient(circle at 10% 90%, rgba(252, 184, 0, 0.15), transparent 20rem),
    #fff4ea;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading > p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 64px;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.section-heading--split > p {
  margin-bottom: 8px;
}

.section-link {
  margin-top: 30px;
  text-align: right;
}

.section-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--plum);
  font-weight: 900;
}

/* Home hero */
.home-hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  color: var(--white);
  background: var(--plum);
}

.home-hero__copy {
  position: relative;
  isolation: isolate;
  min-height: 700px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(145deg, transparent 62%, rgba(181, 125, 220, 0.13) 62%),
    linear-gradient(135deg, var(--plum-deep), var(--plum));
}

.home-hero__copy::before {
  content: "";
  position: absolute;
  top: 92px;
  right: -80px;
  width: 220px;
  height: 220px;
  border: 18px solid var(--coral);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(28deg);
}

.home-hero__copy::after {
  content: "";
  position: absolute;
  top: 54px;
  right: 42px;
  width: 13px;
  height: 76px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 34px 38px 0 var(--aqua), 66px 72px 0 var(--green), -29px 63px 0 var(--berry);
  transform: rotate(-4deg);
}

.home-hero__copy-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 620px);
  margin-left: max(24px, calc((100vw - var(--shell)) / 2));
  padding-block: 70px;
}

.home-hero h1 {
  max-width: 680px;
  color: var(--white);
  font-size: clamp(4.3rem, 6.4vw, 7.2rem);
}

.home-hero h1 span {
  color: var(--yellow);
}

.home-hero__lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.1rem, 1.45vw, 1.28rem);
  line-height: 1.75;
}

.home-hero .microcopy {
  margin: 20px 0 0;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0 0;
  padding: 28px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
}

.hero-proof span {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
}

.home-hero__mark {
  position: absolute;
  right: -120px;
  bottom: -135px;
  z-index: 0;
  width: 380px;
  opacity: 0.06;
}

.home-hero__media {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--navy);
}

.home-hero__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(53, 19, 63, 0.18), transparent 35%);
  pointer-events: none;
}

.image-label,
.page-hero__media figcaption,
.booking-hero__media figcaption,
.checklist-feature__media figcaption {
  position: absolute;
  top: auto;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(53, 19, 63, 0.82);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Keep the home portrait label clear of the supporting badge. */
.home-hero__media .image-label {
  bottom: 132px;
}

.home-hero__badge {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 3;
  width: min(430px, calc(100% - 64px));
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 20px 14px 14px;
  color: var(--plum);
  background: rgba(255, 249, 244, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.home-hero__badge img {
  width: 74px;
  height: 74px;
}

.home-hero__badge strong,
.home-hero__badge small {
  display: block;
}

.home-hero__badge strong {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Inter Display", system-ui, sans-serif;
  font-size: 1.08rem;
}

.home-hero__badge small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Home supporting sections */
.principle-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.principle-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.principle-strip p {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 18px 26px;
  border-right: 1px solid var(--line);
}

.principle-strip p:last-child {
  border-right: 0;
}

.principle-strip strong {
  color: var(--plum);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Inter Display", system-ui, sans-serif;
  font-size: 1.1rem;
}

.principle-strip span {
  color: var(--muted);
  font-size: 0.82rem;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.route-card,
.route-photo {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.route-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 22px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.route-card:nth-child(1) { grid-column: span 6; }
.route-card:nth-child(2) { grid-column: span 3; }
.route-photo { grid-column: span 3; }
.route-card:nth-child(4) { grid-column: span 5; }
.route-card:nth-child(5) { grid-column: span 7; }

.route-card__number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.route-card div {
  align-self: end;
  padding-top: 76px;
}

.route-card p {
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
}

.route-card div > span {
  display: block;
  max-width: 420px;
  line-height: 1.5;
}

.route-card b {
  font-size: 1.5rem;
  transition: transform 180ms ease;
}

.route-card:hover b {
  transform: translate(3px, -3px);
}

.route-card--coral {
  color: var(--white);
  background: var(--coral);
}

.route-card--coral h3,
.route-card--plum h3 {
  color: var(--white);
}

.route-card--yellow {
  color: var(--navy);
  background: var(--yellow);
}

.route-card--yellow h3,
.route-card--aqua h3 {
  color: var(--plum-deep);
}

.route-card--aqua {
  color: var(--plum-deep);
  background: var(--aqua);
}

.route-card--plum {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(181, 125, 220, 0.45), transparent 8rem),
    var(--plum);
}

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

.route-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  margin: 0;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(0, 19, 62, 0.76);
  border-radius: 14px;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(10px);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: 76px;
}

.story-gallery {
  position: relative;
  min-height: 560px;
}

.story-gallery figure {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.story-gallery__large {
  position: absolute;
  inset: 0 18% 0 0;
  border-radius: 46% 46% var(--radius-lg) var(--radius-lg);
}

.story-gallery__small {
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 38%;
  aspect-ratio: 0.76;
  border: 8px solid var(--plum);
  border-radius: 24px;
}

.story-gallery__note {
  position: absolute;
  top: 48px;
  right: 0;
  width: 42%;
  padding: 22px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.story-gallery__note span {
  display: block;
  height: 28px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 3.6rem;
  line-height: 0.8;
}

.story-gallery__note p {
  margin: 8px 0 0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Inter Display", system-ui, sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
}

.story-copy h2,
.process-heading h2,
.split-cta h2,
.cta-panel h2,
.faq-heading h2 {
  color: var(--white);
}

.step-list,
.process-list {
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.step-list li,
.process-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
}

.step-list li:last-child,
.process-list li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.step-list > li > span,
.process-list > li > span {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
}

.step-list h3,
.process-list h3 {
  color: var(--white);
}

.step-list p,
.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.guide-teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: 76px;
}

.guide-teaser-copy .lead {
  max-width: 620px;
  margin-bottom: 30px;
}

.guide-preview,
.guide-app {
  padding: 34px;
  background: var(--white);
  border: 2px solid var(--plum);
  border-radius: var(--radius-md);
  box-shadow: 8px 8px 0 var(--aqua);
}

.guide-preview__top,
.guide-app__progress > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--berry);
  font-size: 0.76rem;
  font-weight: 900;
}

.progress {
  height: 8px;
  margin: 12px 0 26px;
  overflow: hidden;
  background: var(--lavender-soft);
  border-radius: 999px;
}

.progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--yellow));
  border-radius: inherit;
  transition: width 240ms ease;
}

.guide-preview h3 {
  margin-bottom: 20px;
  font-size: 1.55rem;
}

.guide-preview__option {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  padding: 14px 16px;
  color: var(--plum);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.resource-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resource-preview-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.resource-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.resource-preview-card > span {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
}

.resource-preview-card h3 {
  margin-top: 52px;
  font-size: 1.7rem;
}

.resource-preview-card p {
  color: var(--muted);
}

.resource-preview-card b {
  margin-top: auto;
  padding-top: 18px;
  color: var(--plum);
  border-top: 1px solid var(--line);
}

.section--cta {
  padding-top: 30px;
  background: var(--paper);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: end;
  gap: 52px;
  padding: clamp(34px, 6vw, 70px);
  color: var(--white);
  background:
    linear-gradient(135deg, transparent 65%, rgba(181, 125, 220, 0.18) 65%),
    var(--plum);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 230px;
  height: 230px;
  border: 18px solid var(--coral);
  border-left-color: transparent;
  border-radius: 50%;
  opacity: 0.85;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 720px;
  margin-bottom: 16px;
}

.cta-panel p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

/* Inner page heroes */
.page-hero,
.booking-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 100%, rgba(181, 125, 220, 0.22), transparent 26rem),
    var(--plum);
}

.page-hero::before,
.booking-hero::before {
  content: "";
  position: absolute;
  top: -95px;
  left: 42%;
  width: 260px;
  height: 260px;
  border: 20px solid var(--coral);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(22deg);
  opacity: 0.85;
}

.page-hero__grid,
.booking-hero__grid {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 74px;
  padding-block: 64px;
}

.page-hero__copy,
.booking-hero__copy {
  position: relative;
  z-index: 2;
}

.page-hero h1,
.booking-hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(3.5rem, 5.4vw, 6.2rem);
}

.page-hero h1 span,
.booking-hero h1 span {
  color: var(--yellow);
}

.page-hero__copy > p:not(.eyebrow),
.booking-hero__copy > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
  line-height: 1.75;
}

.page-hero__media,
.booking-hero__media {
  position: relative;
  height: 440px;
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.12);
  border-radius: 48% 48% var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.page-hero__media img,
.booking-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--guide {
  background:
    radial-gradient(circle at 12% 100%, rgba(131, 200, 202, 0.16), transparent 24rem),
    var(--navy);
}

.page-hero--resources {
  background:
    radial-gradient(circle at 5% 95%, rgba(252, 184, 0, 0.14), transparent 22rem),
    linear-gradient(135deg, var(--berry), var(--plum));
}

/* About page */
.page-hero--about .page-hero__media figcaption {
  top: auto;
  bottom: 34px;
  right: auto;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 96px);
  border-radius: 16px;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  transform: translateX(-50%);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
}

.editorial-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.editorial-copy > p:not(.lead) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.editorial-copy blockquote {
  position: relative;
  margin: 42px 0 0;
  padding: 34px 38px;
  color: var(--plum);
  background: var(--yellow-soft);
  border-left: 6px solid var(--yellow);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.editorial-copy blockquote span {
  position: absolute;
  top: 12px;
  left: 18px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 4.4rem;
  line-height: 1;
  opacity: 0.32;
}

.editorial-copy blockquote p {
  position: relative;
  margin: 0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Inter Display", system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.2;
}

.doctor-intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 78px;
}

.doctor-mark-card {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 52px;
  overflow: hidden;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 14px 14px 0 var(--lavender), var(--shadow-md);
}

.doctor-mark-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -32px;
  width: 150px;
  height: 150px;
  border: 14px solid var(--coral);
  border-left-color: transparent;
  border-radius: 50%;
}

.doctor-mark-card img {
  width: 78%;
}

.doctor-mark-card p {
  position: absolute;
  right: 42px;
  bottom: 34px;
  margin: 0;
  color: var(--plum);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Inter Display", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  text-align: right;
}

.doctor-intro-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.principle-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.principle-card {
  min-height: 280px;
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.principle-card > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 72px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.principle-card h3 {
  font-size: 1.65rem;
}

.principle-card p {
  margin-bottom: 0;
  line-height: 1.65;
}

.principle-card--coral { color: var(--white); background: var(--coral); }
.principle-card--coral h3 { color: var(--white); }
.principle-card--aqua { color: var(--plum-deep); background: var(--aqua); }
.principle-card--yellow { color: var(--navy); background: var(--yellow); }
.principle-card--green { color: var(--navy); background: var(--green); }

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 90px;
}

.process-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

.process-list {
  margin: 0;
}

.checklist-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 76px;
}

.checklist-feature--reverse .checklist-feature__media {
  order: 2;
}

.checklist-feature__media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 50% 50% var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.checklist-feature__copy > p:not(.eyebrow) {
  color: var(--muted);
}

.tick-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.tick-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--plum-deep);
  font-weight: 800;
}

.tick-list li::before {
  content: "✓";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

/* Care page */
.care-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.care-index a {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
  color: var(--plum);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.care-index a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.care-index span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender-soft);
  font-size: 0.7rem;
}

.pathway-detail {
  border-top: 1px solid var(--line);
}

.pathway-detail--coral { background: var(--pink-soft); }
.pathway-detail--yellow { background: var(--yellow-soft); }
.pathway-detail--aqua { background: var(--aqua-soft); }
.pathway-detail--lavender { background: var(--lavender-soft); }

.pathway-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 80px;
  align-items: start;
}

.pathway-detail__number {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 38px;
  color: var(--white);
  background: var(--plum);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.pathway-detail__heading .lead {
  margin-bottom: 30px;
}

.pathway-detail__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pathway-detail__content > div {
  min-height: 330px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(81, 31, 92, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.pathway-detail__content h3 {
  margin-bottom: 26px;
  font-size: 1.42rem;
}

.plain-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.65;
}

.plain-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(236, 35, 78, 0.12);
}

.split-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
}

.split-cta h2 {
  max-width: 780px;
}

.split-cta p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.06rem;
}

/* Guide page */
.guide-page-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: 56px;
}

.guide-safety {
  position: sticky;
  top: 112px;
  padding: 30px;
  background: var(--yellow-soft);
  border: 1px solid rgba(81, 31, 92, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.guide-safety h2 {
  font-size: clamp(2rem, 3.3vw, 3.25rem);
}

.guide-safety > p:not(.eyebrow) {
  color: var(--muted);
}

.guide-boundary-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.guide-boundary-list p {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  margin: 0;
  color: var(--plum);
  font-weight: 800;
}

.guide-boundary-list span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  font-size: 0.74rem;
}

.guide-app {
  min-height: 610px;
  padding: clamp(26px, 4vw, 44px);
  box-shadow: 10px 10px 0 var(--aqua), var(--shadow-md);
}

.guide-app__label {
  margin-bottom: 10px;
  color: var(--berry);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-app h2 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(2.15rem, 3.6vw, 3.8rem);
}

.guide-options {
  display: grid;
  gap: 12px;
}

.guide-option {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: var(--plum);
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.guide-option:hover,
.guide-option.is-selected {
  transform: translateX(5px);
  background: var(--lavender-soft);
  border-color: rgba(81, 31, 92, 0.32);
}

.guide-option__copy {
  display: grid;
  gap: 4px;
}

.guide-option strong {
  font-size: 1rem;
}

.guide-option small {
  color: var(--muted);
  line-height: 1.45;
}

.guide-option > span:last-child {
  flex: 0 0 auto;
  color: var(--coral);
  font-size: 1.4rem;
  font-weight: 900;
}

.guide-controls {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.guide-result {
  padding: 28px;
  border-radius: var(--radius-md);
}

.guide-result--urgent {
  color: var(--white);
  background: var(--coral);
}

.guide-result--today {
  color: var(--navy);
  background: var(--yellow);
}

.guide-result--request {
  color: var(--plum-deep);
  background: var(--aqua);
}

.guide-result--resources {
  color: var(--plum-deep);
  background: var(--green);
}

.guide-result h3,
.guide-result h4 {
  color: inherit;
}

.guide-result h4 {
  margin-bottom: 12px;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Inter Display", system-ui, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 1;
}

.guide-result > p:not(.guide-result__label) {
  max-width: 700px;
  line-height: 1.7;
}

.guide-result__label {
  margin-bottom: 10px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.guide-result--urgent .button--plum,
.guide-result--urgent .button {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 5px 0 var(--plum-deep);
}

.guide-result--today .button,
.guide-result--request .button,
.guide-result--resources .button {
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 5px 0 rgba(255, 255, 255, 0.5);
}

.noscript-note {
  padding: 18px;
  background: var(--yellow-soft);
  border-radius: 16px;
}

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

.boundary-card {
  min-height: 250px;
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.boundary-card > span {
  display: inline-flex;
  margin-bottom: 54px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.boundary-card h3 {
  font-size: 1.45rem;
}

.boundary-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.boundary-card--yes {
  background: var(--green-soft);
}

.boundary-card--yes > span {
  color: var(--navy);
  background: var(--green);
}

.boundary-card--no {
  background: var(--pink-soft);
}

.boundary-card--no > span {
  color: var(--white);
  background: var(--coral);
}

/* Resources page */
.resource-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 76px;
}

.resource-section-heading {
  position: sticky;
  top: 118px;
}

.resource-section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.print-checklist {
  padding: 34px;
  background: var(--white);
  border: 2px solid var(--plum);
  border-radius: var(--radius-md);
  box-shadow: 10px 10px 0 var(--yellow);
}

.print-checklist__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.print-checklist__header img {
  width: 190px;
  height: auto;
  flex: 0 0 auto;
}

.print-checklist__header span {
  color: var(--berry);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.check-box-list {
  display: grid;
  gap: 16px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.check-box-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--plum-deep);
  font-weight: 800;
}

.check-box-list li > span {
  width: 26px;
  height: 26px;
  border: 2px solid var(--plum);
  border-radius: 7px;
}

.notes-lines {
  display: grid;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.notes-lines strong {
  color: var(--plum);
}

.notes-lines i {
  height: 1px;
  background: var(--line);
}

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

.prompt-card {
  min-height: 230px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.prompt-card > span {
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 900;
}

.prompt-card h3 {
  margin-top: 54px;
  font-size: 1.55rem;
}

.prompt-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-style: italic;
}

.questions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 80px;
}

.questions-copy {
  position: sticky;
  top: 118px;
}

.question-list {
  display: grid;
  gap: 12px;
}

.question-list p {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px 60px 18px 22px;
  color: var(--plum-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  font-weight: 800;
}

.question-list p::after {
  content: "?";
  position: absolute;
  right: 20px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 900;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 80px;
}

.faq-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.accordion-group {
  border-top: 1px solid var(--line-dark);
}

.accordion {
  border-bottom: 1px solid var(--line-dark);
}

.accordion summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  color: var(--white);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Inter Display", system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

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

.accordion summary span {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 1.3rem;
  transition: transform 180ms ease;
}

.accordion[open] summary span {
  transform: rotate(45deg);
}

.accordion > div {
  padding: 0 52px 22px 0;
}

.accordion p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

/* Booking page */
.booking-hero__grid {
  min-height: 390px;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
}

.booking-hero h1 {
  font-size: clamp(3.5rem, 5.2vw, 5.8rem);
}

.booking-hero__media {
  height: 300px;
}

.practice-contact-section {
  padding-block: 34px;
  background: linear-gradient(135deg, rgba(181, 125, 220, 0.1), rgba(255, 183, 0, 0.08));
  border-bottom: 1px solid var(--line);
}

.practice-contact-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.8fr);
  align-items: center;
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border: 1px solid rgba(81, 31, 92, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.practice-contact-panel__heading .eyebrow {
  margin-bottom: 7px;
}

.practice-contact-panel__heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.practice-contact-panel__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.practice-contact-item {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 16px;
  color: var(--plum-deep);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

a.practice-contact-item {
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

a.practice-contact-item:hover {
  border-color: rgba(81, 31, 92, 0.34);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.practice-contact-item > span {
  color: var(--berry);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.practice-contact-item strong {
  font-size: 0.88rem;
  line-height: 1.5;
}

.practice-contact-item small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.4;
}

.booking-page {
  padding-top: 70px;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.booking-steps li {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.booking-steps li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.booking-steps li.is-active,
.booking-steps li.is-complete {
  color: var(--plum);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.booking-steps li.is-active > span {
  color: var(--white);
  background: var(--plum);
}

.booking-steps li.is-complete > span {
  color: var(--navy);
  background: var(--green);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 36px;
}

.booking-support {
  position: sticky;
  top: 112px;
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(181, 125, 220, 0.32), transparent 13rem),
    var(--plum);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.booking-support h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 3.6vw, 3.7rem);
}

.booking-support > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.booking-support__note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  margin: 26px 0;
  padding: 18px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 18px;
}

.booking-support__note > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.booking-support__note p {
  margin: 4px 0 8px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.booking-support__note a {
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.booking-support figure {
  position: relative;
  height: 280px;
  margin: 26px 0 0;
  overflow: hidden;
  border-radius: 20px;
}

.booking-support figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-support figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(0, 19, 62, 0.76);
  border-radius: 12px;
  font-size: 0.64rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.booking-workflow {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.booking-form,
.booking-review {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.form-intro {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.form-intro > span {
  color: var(--berry);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-intro h2 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.form-intro p {
  margin: 0;
  color: var(--muted);
}

.form-field {
  display: grid;
  gap: 8px;
  align-content: start;
  color: var(--plum-deep);
  font-size: 0.88rem;
  font-weight: 900;
}

.form-field--full {
  grid-column: 1 / -1;
}

.field-help {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.5;
}

.appointment-picker {
  position: relative;
}

.appointment-picker__trigger {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 11px;
  padding: 8px 14px 8px 9px;
  color: var(--muted);
  text-align: left;
  background: linear-gradient(135deg, #fffdfa, rgba(181, 125, 220, 0.08));
  border: 1px solid rgba(81, 31, 92, 0.2);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.appointment-picker__trigger:hover,
.appointment-picker__trigger[aria-expanded="true"] {
  color: var(--plum-deep);
  background: var(--white);
  border-color: var(--plum);
  box-shadow: 0 0 0 4px rgba(181, 125, 220, 0.14);
}

.appointment-picker__trigger:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 3px;
}

.appointment-picker__trigger[aria-invalid="true"] {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(236, 35, 78, 0.12);
}

.appointment-picker__trigger.has-value {
  color: var(--ink);
}

.appointment-picker__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--plum);
  background: rgba(181, 125, 220, 0.17);
  border-radius: 11px;
}

.appointment-picker__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.appointment-picker__value {
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.appointment-picker__chevron {
  color: var(--plum);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 150ms ease;
}

.appointment-picker__trigger[aria-expanded="true"] .appointment-picker__chevron {
  transform: rotate(180deg);
}

.appointment-picker__panel {
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  right: 0;
  width: min(440px, calc(100vw - 48px));
  padding: 18px;
  color: var(--plum-deep);
  background: #fffdfa;
  border: 1px solid rgba(81, 31, 92, 0.18);
  border-top: 4px solid var(--lavender);
  border-radius: 18px;
  box-shadow: 0 24px 55px rgba(55, 24, 62, 0.2);
}

.appointment-picker__panel[hidden] {
  display: none;
}

.appointment-picker__heading,
.appointment-picker__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.appointment-picker__heading span,
.appointment-picker__heading strong {
  display: block;
}

.appointment-picker__heading span {
  margin-bottom: 2px;
  color: var(--berry);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.appointment-picker__heading strong {
  font-size: 1.05rem;
}

.appointment-picker__close {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  padding: 0;
  color: var(--plum);
  background: rgba(181, 125, 220, 0.13);
  border: 0;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.appointment-calendar {
  margin: 18px 0 14px;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(81, 31, 92, 0.12);
  border-radius: 14px;
}

.appointment-calendar__header,
.appointment-calendar__navigation {
  display: flex;
  align-items: center;
}

.appointment-calendar__header {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.76rem;
}

.appointment-calendar__navigation {
  gap: 8px;
}

.appointment-calendar__navigation span {
  min-width: 118px;
  color: var(--plum-deep);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 900;
}

.appointment-calendar__navigation button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--plum);
  background: rgba(181, 125, 220, 0.12);
  border: 0;
  border-radius: 9px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.appointment-calendar__navigation button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.appointment-calendar__weekdays,
.appointment-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.appointment-calendar__weekdays {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.appointment-calendar__day,
.appointment-calendar__spacer {
  aspect-ratio: 1;
}

.appointment-calendar__day {
  min-width: 0;
  padding: 0;
  color: var(--plum-deep);
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-size: 0.76rem;
  font-weight: 850;
  cursor: pointer;
  transition: color 140ms ease, background 140ms ease, transform 140ms ease;
}

.appointment-calendar__day:hover:not(:disabled) {
  color: var(--plum-deep);
  background: rgba(181, 125, 220, 0.2);
  transform: translateY(-1px);
}

.appointment-calendar__day.is-selected {
  color: var(--white);
  background: var(--plum);
  box-shadow: inset 0 -3px 0 var(--lavender);
}

.appointment-calendar__day:disabled {
  color: rgba(81, 31, 92, 0.28);
  background: rgba(81, 31, 92, 0.035);
  cursor: not-allowed;
}

.appointment-picker__time {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 900;
}

.appointment-picker__time select {
  min-height: 48px;
  background-color: var(--white);
}

.appointment-picker__panel > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
}

.appointment-picker__panel .appointment-picker__status {
  min-height: 1.1em;
  margin-top: 8px;
  color: var(--coral-deep);
}

.appointment-picker__actions {
  justify-content: flex-end;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.appointment-picker__actions .button {
  min-height: 42px;
  padding: 10px 18px;
}

.conditional-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 18px;
  background: rgba(181, 125, 220, 0.1);
  border: 1px solid rgba(81, 31, 92, 0.14);
  border-radius: 18px;
}

.conditional-fields[hidden] {
  display: none;
}

fieldset.form-field {
  margin: 0;
  padding: 0;
  border: 0;
}

fieldset.form-field legend {
  margin-bottom: 12px;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #fffdfa;
  border: 1px solid rgba(81, 31, 92, 0.2);
  border-radius: 14px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

input,
select {
  min-height: 54px;
  padding: 0 15px;
}

textarea {
  min-height: 130px;
  padding: 15px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--plum);
  box-shadow: 0 0 0 4px rgba(181, 125, 220, 0.18);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(236, 35, 78, 0.12);
}

.care-type-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.care-type-options label {
  position: relative;
  display: block;
  cursor: pointer;
}

.care-type-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.care-type-options label > span {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 16px;
  color: var(--plum);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.care-type-options label:hover > span {
  transform: translateY(-2px);
  border-color: rgba(81, 31, 92, 0.35);
}

.care-type-options input:focus-visible + span {
  outline: 4px solid var(--yellow);
  outline-offset: 3px;
}

.care-type-options input:checked + span {
  color: var(--white);
  background: var(--plum);
  border-color: var(--plum);
  box-shadow: 0 5px 0 var(--lavender);
}

.care-type-options strong,
.care-type-options small {
  display: block;
}

.payment-method-options label > span {
  min-height: 78px;
}

.care-type-options small {
  margin-top: 3px;
  color: inherit;
  opacity: 0.72;
  font-weight: 700;
}

.field-error {
  min-height: 1.1em;
  color: var(--coral-deep);
  font-size: 0.76rem;
  font-weight: 800;
}

.field-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.consent-field {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  color: var(--plum-deep);
  background: var(--yellow-soft);
  border: 1px solid rgba(81, 31, 92, 0.12);
  border-radius: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.consent-field input {
  width: 22px;
  height: 22px;
  min-height: 0;
  margin: 1px 0 0;
}

.form-status {
  padding: 16px;
  color: var(--coral-deep);
  background: var(--pink-soft);
  border-radius: 14px;
  font-weight: 900;
}

.form-actions,
.review-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.booking-review {
  display: block;
}

.booking-review dl {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 0.66fr);
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.booking-review dt,
.booking-review dd {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.booking-review dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.booking-review dd {
  color: var(--plum-deep);
  font-weight: 800;
  white-space: pre-wrap;
}

.submission-status {
  min-height: 24px;
  color: var(--berry);
  font-weight: 800;
}

.submission-status.is-error {
  color: var(--coral-deep);
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.booking-success {
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
}

.booking-success__icon {
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--plum);
  border: 4px solid var(--lavender);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 900;
}

.booking-success h2 {
  max-width: 680px;
  margin-inline: auto;
}

.booking-success > p:not(.eyebrow) {
  max-width: 690px;
  margin: 16px auto 0;
  color: var(--muted);
}

.booking-success__reference {
  padding: 16px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.booking-success__reference strong {
  color: var(--plum-deep);
  letter-spacing: 0.04em;
}

.contact-actions {
  margin-top: 18px;
}

.is-hidden {
  display: none !important;
}

.contact-setup-notice {
  margin-top: 22px;
  padding: 18px;
  color: var(--plum-deep);
  background: var(--yellow-soft);
  border-radius: 16px;
}

.contact-setup-notice p {
  margin: 5px 0 0;
  color: var(--muted);
}

.contact-setup-notice code {
  padding: 2px 5px;
  color: var(--plum);
  background: var(--white);
  border-radius: 6px;
}

/* Urgent page */
body[data-page="urgent"] .emergency-ribbon {
  display: none;
}

.urgent-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, transparent 64%, rgba(0, 19, 62, 0.18) 64%),
    var(--coral);
}

.urgent-hero::after {
  content: "!";
  position: absolute;
  right: -36px;
  bottom: -160px;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Inter Display", system-ui, sans-serif;
  font-size: 32rem;
  font-weight: 700;
  line-height: 1;
}

.urgent-hero__grid {
  min-height: 660px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  gap: 70px;
  padding-block: 80px;
}

.urgent-symbol {
  position: relative;
  z-index: 2;
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  color: var(--coral);
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 14px 14px 0 var(--navy), var(--shadow-lg);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Inter Display", system-ui, sans-serif;
  font-size: 8rem;
  font-weight: 700;
}

.urgent-copy {
  position: relative;
  z-index: 2;
}

.urgent-copy h1 {
  color: var(--white);
}

.urgent-copy > p:not(.eyebrow) {
  max-width: 850px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.65;
}

.urgent-actions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 78px;
}

.urgent-actions-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.urgent-action-cards {
  display: grid;
  gap: 16px;
}

.urgent-action-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.urgent-action-card > span {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 900;
}

.urgent-action-card p {
  margin: 0;
  color: var(--muted);
}

/* Footer */
.site-footer {
  margin-top: 112px;
  color: var(--white);
  background:
    radial-gradient(circle at 0 100%, rgba(236, 35, 78, 0.15), transparent 24rem),
    linear-gradient(135deg, var(--plum-deep), var(--plum));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 0.65fr));
  gap: 50px;
  padding-block: 70px 54px;
}

.footer-brand img {
  width: 260px;
  height: auto;
}

.footer-brand > p {
  max-width: 420px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-socials {
  margin-top: 22px;
}

.footer-socials .social-link {
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-socials .social-link:nth-child(1):hover {
  background: var(--coral);
  border-color: var(--coral);
}

.footer-socials .social-link:nth-child(2):hover {
  color: var(--plum-deep);
  background: var(--lavender);
  border-color: var(--lavender);
}

.footer-socials .social-link:nth-child(3):hover {
  color: var(--navy);
  background: var(--aqua);
  border-color: var(--aqua);
}

.footer-socials .social-link:nth-child(4):hover {
  color: var(--navy);
  background: var(--yellow);
  border-color: var(--yellow);
}

.footer-socials .social-icon {
  width: 21px;
  height: 21px;
}

.footer-brand .footer-disclaimer {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
  line-height: 1.55;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: var(--green);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.55;
}

.footer-column a:hover {
  color: var(--yellow);
}

.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 0.84rem;
  line-height: 1.65;
}

.footer-column address {
  margin: 0;
  font-style: normal;
}

.footer-contact__address {
  display: block;
  font-weight: 800 !important;
}

.footer-contact__phone {
  color: var(--white) !important;
  font-size: 0.96rem !important;
  font-weight: 900 !important;
}

.footer-contact__hours {
  display: grid;
  gap: 5px;
  margin-top: 5px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact__hours p {
  display: grid;
  gap: 1px;
}

.footer-contact__hours p span,
.footer-contact__hours p strong {
  display: block;
}

.footer-contact__hours p strong {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
}

.footer-contact__hours small {
  color: rgba(255, 255, 255, 0.62);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.45;
}

.footer-bottom {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: color 160ms ease, border-color 160ms ease;
}

.footer-bottom a:hover {
  color: var(--yellow);
  border-color: currentColor;
}

.mobile-action {
  display: none;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  max-width: min(380px, calc(100% - 44px));
  padding: 16px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  font-weight: 800;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

html[data-js="false"] .reveal,
html:not([data-js]) .reveal {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1080px) {
  :root {
    --header-height: 84px;
  }

  .site-nav > a {
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  .brand {
    width: 205px;
  }

  .header-socials {
    gap: 3px;
    margin-left: 2px;
    padding-left: 6px;
  }

  .header-socials .social-link {
    width: 30px;
    height: 30px;
  }

  .header-socials .social-icon {
    width: 15px;
    height: 15px;
  }

  .home-hero {
    grid-template-columns: 1fr 0.92fr;
  }

  .home-hero__copy-inner {
    margin-left: 32px;
  }

  .home-hero h1 {
    font-size: clamp(4rem, 7vw, 5.8rem);
  }

  .route-card:nth-child(1),
  .route-card:nth-child(4) {
    grid-column: span 7;
  }

  .route-card:nth-child(2),
  .route-photo {
    grid-column: span 5;
  }

  .route-card:nth-child(5) {
    grid-column: span 12;
  }

  .principle-card-grid,
  .boundary-grid,
  .prompt-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
    gap: 30px;
  }
}

@media (max-width: 920px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 5px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav > a,
  .site-nav .nav-cta {
    margin: 0;
    padding: 14px 16px;
    text-align: left;
    box-shadow: none;
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .site-nav .header-socials {
    justify-content: flex-start;
    gap: 8px;
    margin: 4px 0 0;
    padding: 13px 10px 5px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .header-socials .social-link {
    width: 40px;
    height: 40px;
  }

  .header-socials .social-icon {
    width: 19px;
    height: 19px;
  }

  .home-hero {
    grid-template-columns: 1fr;
  }

  .home-hero__copy,
  .home-hero__media {
    min-height: auto;
  }

  .home-hero__copy-inner {
    width: min(calc(100% - 40px), 720px);
    margin-inline: auto;
    padding-block: 82px;
  }

  .home-hero__media {
    height: 560px;
  }

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

  .principle-strip p:nth-child(2) {
    border-right: 0;
  }

  .principle-strip p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading--split,
  .story-grid,
  .guide-teaser-grid,
  .page-hero__grid,
  .booking-hero__grid,
  .editorial-grid,
  .doctor-intro-grid,
  .process-grid,
  .checklist-feature,
  .pathway-detail__grid,
  .guide-page-grid,
  .resource-section-grid,
  .questions-grid,
  .faq-grid,
  .booking-layout,
  .practice-contact-panel,
  .urgent-actions-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 18px;
  }

  .story-grid,
  .guide-teaser-grid,
  .page-hero__grid,
  .doctor-intro-grid,
  .process-grid,
  .checklist-feature,
  .pathway-detail__grid,
  .guide-page-grid,
  .resource-section-grid,
  .questions-grid,
  .faq-grid,
  .booking-layout,
  .urgent-actions-grid {
    gap: 48px;
  }

  .story-gallery {
    min-height: 540px;
  }

  .page-hero__grid,
  .booking-hero__grid {
    padding-block: 70px;
  }

  .page-hero__copy {
    max-width: 760px;
  }

  .page-hero__media,
  .booking-hero__media {
    height: 420px;
  }

  .editorial-heading,
  .guide-safety,
  .resource-section-heading,
  .questions-copy,
  .booking-support {
    position: static;
  }

  .doctor-mark-card {
    width: min(440px, 100%);
  }

  .checklist-feature--reverse .checklist-feature__media {
    order: initial;
  }

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

  .guide-teaser-grid {
    grid-template-columns: 1fr;
  }

  .guide-preview {
    max-width: 760px;
  }

  .booking-support figure {
    height: 360px;
  }

  .cta-panel,
  .split-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 76px;
  }

  body:not([data-page="booking"]):not([data-page="urgent"]) {
    padding-bottom: 74px;
  }

  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .emergency-ribbon__inner {
    display: block;
    padding-block: 9px 11px;
  }

  .emergency-ribbon p {
    align-items: flex-start;
    font-size: 0.75rem;
  }

  .emergency-ribbon a {
    display: inline-flex;
    margin: 7px 0 0 32px;
    font-size: 0.7rem;
  }

  .site-header__inner {
    gap: 16px;
  }

  .brand {
    width: 176px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  h1 {
    font-size: clamp(3.35rem, 16vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .section {
    padding-block: 78px;
  }

  .section--tight {
    padding-block: 56px;
  }

  .home-hero__copy-inner {
    width: min(calc(100% - 24px), 650px);
    padding-block: 70px;
  }

  .home-hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.2rem);
  }

  .home-hero__copy::before {
    top: 50px;
    right: -130px;
  }

  .home-hero__copy::after {
    top: 30px;
    right: 22px;
    opacity: 0.65;
  }

  .home-hero__media {
    height: 470px;
  }

  .home-hero__badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    grid-template-columns: 58px 1fr;
    padding: 10px 14px 10px 10px;
  }

  .home-hero__badge img {
    width: 58px;
    height: 58px;
  }

  .image-label,
  .page-hero__media figcaption,
  .booking-hero__media figcaption,
  .checklist-feature__media figcaption {
    top: auto;
    right: 10px;
    bottom: 10px;
    font-size: 0.56rem;
  }

  .home-hero__media .image-label {
    bottom: 116px;
  }

  .page-hero--about .page-hero__media figcaption {
    top: auto;
    bottom: 22px;
    max-width: calc(100% - 72px);
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-proof li {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
  }

  .hero-proof span {
    margin: 0;
  }

  .principle-strip__grid,
  .care-index,
  .principle-card-grid,
  .boundary-grid,
  .prompt-grid,
  .resource-preview-grid,
  .booking-steps,
  .care-type-options,
  .pathway-detail__content {
    grid-template-columns: 1fr;
  }

  .principle-strip p {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-strip p:last-child {
    border-bottom: 0;
  }

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

  .route-card,
  .route-photo,
  .route-card:nth-child(n) {
    grid-column: 1;
  }

  .route-card {
    grid-template-columns: auto 1fr;
    min-height: 300px;
  }

  .route-card b {
    position: absolute;
    top: 26px;
    right: 26px;
  }

  .route-card div {
    grid-column: 1 / -1;
    padding-top: 44px;
  }

  .route-photo {
    min-height: 340px;
  }

  .story-gallery {
    min-height: 470px;
  }

  .story-gallery__large {
    right: 10%;
  }

  .story-gallery__small {
    width: 42%;
  }

  .story-gallery__note {
    top: 20px;
    width: 54%;
    padding: 16px;
  }

  .guide-preview,
  .guide-app,
  .print-checklist {
    padding: 22px;
    box-shadow: 6px 6px 0 var(--aqua);
  }

  .cta-panel {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .button-row,
  .form-actions,
  .review-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .form-actions .button,
  .review-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .page-hero::before,
  .booking-hero::before {
    left: 64%;
  }

  .page-hero__grid,
  .booking-hero__grid {
    min-height: auto;
    gap: 36px;
    padding-block: 58px;
  }

  .page-hero h1,
  .booking-hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.7rem);
  }

  .page-hero__media,
  .booking-hero__media {
    height: 340px;
  }

  .doctor-mark-card {
    padding: 38px;
  }

  .doctor-mark-card p {
    right: 28px;
    bottom: 26px;
    font-size: 0.8rem;
  }

  .principle-card {
    min-height: 240px;
  }

  .principle-card > span {
    margin-bottom: 54px;
  }

  .checklist-feature__media {
    min-height: 390px;
  }

  .pathway-detail__content > div {
    min-height: auto;
  }

  .split-cta {
    gap: 30px;
  }

  .guide-page-grid {
    gap: 30px;
  }

  .guide-safety {
    padding: 24px;
  }

  .guide-app {
    min-height: 0;
  }

  .guide-option {
    align-items: flex-start;
  }

  .print-checklist__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .print-checklist__header img {
    width: 170px;
    height:auto;
  }

  .booking-page {
    padding-top: 44px;
  }

  .booking-steps li {
    min-height: 58px;
  }

  .booking-support,
  .booking-form,
  .booking-review {
    padding: 22px;
  }

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

  .conditional-fields {
    grid-template-columns: 1fr;
  }

  .practice-contact-panel__details {
    grid-template-columns: 1fr;
  }

  .appointment-picker__panel {
    right: auto;
    left: 0;
    width: min(350px, calc(100vw - 40px));
  }


  .form-field--full,
  .form-intro {
    grid-column: 1;
  }

  .booking-review dl {
    grid-template-columns: 1fr;
  }

  .booking-review dt {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .booking-review dd {
    padding-top: 4px;
  }

  .booking-support figure {
    height: 300px;
  }

  .urgent-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 64px;
  }

  .urgent-symbol {
    width: 120px;
    height: 120px;
    font-size: 5rem;
    box-shadow: 8px 8px 0 var(--navy), var(--shadow-md);
  }

  .urgent-action-card {
    grid-template-columns: 44px 1fr;
    padding: 20px;
  }

  .urgent-action-card > span {
    width: 40px;
    height: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 58px 44px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-bottom {
    min-height: 88px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-action {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 60;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    background: var(--plum);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    box-shadow: 0 16px 48px rgba(49, 20, 58, 0.32);
    font-weight: 900;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-action.is-hidden-by-section {
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
  }

  body[data-page="booking"] .mobile-action,
  body[data-page="urgent"] .mobile-action {
    display: none;
  }

  .toast {
    right: 12px;
    bottom: 80px;
    left: 12px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

@media (prefers-contrast: more) {
  :root {
    --line: rgba(37, 23, 43, 0.34);
  }

  .button,
  input,
  select,
  textarea,
  .route-card,
  .resource-preview-card,
  .guide-app,
  .print-checklist,
  .booking-workflow {
    border-width: 2px;
  }
}

@media print {
  @page {
    size: A4 portrait;
    margin: 14mm;
  }

  html,
  body {
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 0 !important;
    color: #25172b;
    background: #fff;
  }

  body > * {
    display: none !important;
  }

  body > main,
  body > main > #prepare {
    display: block !important;
  }

  body > main > *:not(#prepare),
  #prepare .resource-section-heading {
    display: none !important;
  }

  #prepare,
  #prepare .shell {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #prepare .resource-section-grid {
    display: block !important;
  }

  #printChecklist {
    position: static;
    width: 100% !important;
    margin: 0;
    padding: 24px;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    box-shadow: none;
    border: 2px solid #000;
    border-radius: 16px;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  #printChecklist .print-checklist__header img {
    width: 180px;
    height: auto !important;
  }
}

/* Mobile emergency copy should read as one continuous sentence. */
@media (max-width: 680px) {
  .emergency-ribbon p {
    position: relative;
    display: block;
    padding-left: 32px;
  }

  .emergency-ribbon p > span {
    position: absolute;
    top: 0;
    left: 0;
  }
}


/* Supplied practice photography + brand pattern */
.brand-pattern { height: 42px; overflow: hidden; background: var(--coral); }
.brand-pattern img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.home-hero__media > img { object-position: 50% 38%; }
.page-hero--about .page-hero__media img { object-position: 50% 28%; }
.booking-hero__media img { object-position: 50% 34%; }
.doctor-photo-card { position: relative; margin: 0; min-height: 560px; overflow: hidden; border-radius: 46% 46% var(--radius-lg) var(--radius-lg); box-shadow: 16px 16px 0 var(--lavender), var(--shadow-md); background: var(--plum-soft); }
.doctor-photo-card img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; object-position: 50% 30%; }
.doctor-photo-card figcaption { position: absolute; left: 20px; right: 20px; bottom: 20px; padding: 14px 18px; color: var(--white); background: rgba(53,19,63,.88); border-radius: 16px; font-weight: 800; line-height: 1.45; backdrop-filter: blur(10px); }
.credential-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 30px 0 28px; }
.credential-grid > div { padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); }
.credential-grid span { display:block; margin-bottom: 10px; color: var(--coral); font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.credential-grid strong { display:block; color: var(--plum); font-size: 1rem; line-height:1.3; }
.credential-grid p { margin: 8px 0 0 !important; color: var(--muted); font-size: .82rem; line-height:1.45 !important; }

/* About services + hospital admission rights */
.about-services {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 12%, rgba(181, 125, 220, 0.12), transparent 26rem),
    var(--white);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 250px;
  padding: 32px 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -46px;
  width: 118px;
  height: 118px;
  border: 18px solid var(--lavender);
  border-radius: 50%;
  opacity: 0.45;
}

.service-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 30px;
  color: var(--plum);
  background: var(--lavender-soft);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--plum);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-card:nth-child(4n + 2) > span,
.service-card:nth-child(4n + 3) > span {
  color: var(--navy);
  background: rgba(252, 184, 0, 0.22);
}

.admission-rights {
  position: relative;
  overflow: hidden;
}

.admission-rights__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 70px;
  padding: clamp(38px, 6vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(252, 184, 0, 0.22), transparent 20rem),
    linear-gradient(135deg, var(--plum-deep), var(--plum));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.admission-rights__copy h2 {
  max-width: 520px;
  margin-bottom: 24px;
  color: var(--white);
}

.admission-rights__copy > p:last-child {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hospital-list {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.hospital-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 19px 22px;
  color: var(--plum-deep);
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.hospital-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--plum);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.hospital-list span svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hospital-list strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

.admission-rights__closing {
  margin: 0;
  color: var(--yellow);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Inter Display", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.25;
}

@media (max-width: 980px){ .credential-grid{grid-template-columns:1fr;} .doctor-photo-card,.doctor-photo-card img{min-height:480px;} }
@media (max-width: 920px){ .admission-rights__panel{grid-template-columns:1fr;gap:38px;} }
@media (max-width: 680px){
  .brand-pattern{height:28px;}
  .doctor-photo-card,.doctor-photo-card img{min-height:430px;}
  .service-card-grid{grid-template-columns:1fr;}
  .service-card{min-height:0;padding:26px 24px;}
  .service-card > span{margin-bottom:22px;}
  .admission-rights__panel{padding:30px 22px;border-radius:24px;}
  .hospital-list li{grid-template-columns:36px minmax(0,1fr);gap:12px;padding:16px;}
  .hospital-list span{width:36px;height:36px;}
}

/* Unified treatment for labels placed over practice photography. */
.image-label,
.page-hero__media figcaption,
.booking-hero__media figcaption,
.checklist-feature__media figcaption,
.route-photo figcaption,
.booking-support figcaption,
.doctor-photo-card figcaption {
  top: auto;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  box-sizing: border-box;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(53, 19, 63, 0.84);
  border-radius: 14px;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transform: none;
}

.home-hero__media .image-label {
  top: 18px;
  right: 18px;
  bottom: auto;
  left: auto;
  width: max-content;
  max-width: calc(100% - 36px);
}

@media (max-width: 680px) {
  .image-label,
  .page-hero__media figcaption,
  .booking-hero__media figcaption,
  .checklist-feature__media figcaption,
  .route-photo figcaption,
  .booking-support figcaption,
  .doctor-photo-card figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 10px 12px;
    font-size: 0.68rem;
  }

  .home-hero__media .image-label {
    top: 10px;
    right: 10px;
    bottom: auto;
    left: auto;
    max-width: calc(100% - 20px);
  }
}

/* Accepted medical aids */
.medical-aids {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(181, 125, 220, 0.16), transparent 25rem),
    linear-gradient(180deg, var(--white), #fffaf6);
}

.medical-aid-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.medical-aid-card {
  min-width: 0;
  min-height: 142px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 72px auto;
  align-items: center;
  gap: 11px;
  padding: 16px 14px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.medical-aid-card img {
  width: 100%;
  height: 72px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.medical-aid-card strong {
  align-self: start;
  color: var(--plum);
  font-size: 0.86rem;
  line-height: 1.35;
}

.medical-aid-card:last-child:nth-child(5n + 1) {
  grid-column: 3;
}

.medical-aids__notice {
  max-width: 930px;
  margin: 24px auto 0;
  padding: 18px 22px;
  color: var(--plum-deep);
  background: rgba(252, 184, 0, 0.16);
  border-left: 4px solid var(--yellow);
  border-radius: 0 16px 16px 0;
  line-height: 1.65;
}

.medical-aids__notice strong {
  color: var(--plum);
}

@media (max-width: 1080px) {
  .medical-aid-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .medical-aid-card:last-child:nth-child(5n + 1) {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .medical-aid-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .medical-aid-card {
    min-height: 128px;
    grid-template-rows: 62px auto;
    padding: 13px 10px 12px;
  }

  .medical-aid-card img {
    height: 62px;
  }

  .medical-aid-card:last-child:nth-child(odd) {
    width: calc(50% - 6px);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .medical-aids__notice {
    padding: 16px 18px;
  }

}

/* Sitewide typography system */
html {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.home-hero__badge strong,
.principle-strip strong,
.story-gallery__note p,
.editorial-copy blockquote p,
.doctor-mark-card p,
.guide-result h4,
.accordion summary,
.admission-rights__closing,
.urgent-hero::after,
.urgent-symbol {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
}

.story-gallery__note span,
.editorial-copy blockquote span {
  font-family: var(--font-accent);
}

.site-nav > a,
.button,
.text-link,
.text-button,
.footer-column a {
  font-size: var(--type-sm);
  font-weight: var(--weight-bold);
}

.button,
.text-link,
.text-button {
  letter-spacing: 0;
}

.form-field,
fieldset.form-field legend,
.consent-field {
  font-size: var(--type-sm);
  font-weight: var(--weight-bold);
  line-height: 1.45;
}

input,
select,
textarea {
  font-size: var(--type-base);
  font-weight: var(--weight-regular);
  line-height: 1.5;
}

.eyebrow,
.footer-column h2,
.guide-result__label,
.resource-card__label,
.form-intro > span,
.credential-grid span {
  font-family: var(--font-body);
  font-size: var(--type-xs);
  font-weight: var(--weight-bold);
  line-height: 1.4;
}

.image-label,
.page-hero__media figcaption,
.booking-hero__media figcaption,
.checklist-feature__media figcaption,
.route-photo figcaption,
.booking-support figcaption,
.doctor-photo-card figcaption {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: var(--weight-bold);
  line-height: 1.4;
}

.medical-aid-card strong {
  font-family: var(--font-body);
  font-size: var(--type-sm);
  font-weight: var(--weight-bold);
  line-height: 1.35;
}
