/*--------------------------------------------------------------
# Nairobi Sculpt — Calo-style two-tier header + site layout
--------------------------------------------------------------*/
:root {
  --ns-topbar-bg: #003959;
  --ns-mainbar-bg: #f7f4ef;
  --ns-mega-sidebar: #ebe4db;
  --ns-mega-panel: #f7f4ef;
  --ns-mega-cat-active: #f7f4ef;
  --ns-ink: #000000;
  --ns-muted: #000000;
  --ns-book: #000000;
  --ns-book-hover: #000000;
  --ns-border: rgba(0, 0, 0, 0.1);
  --ns-page-gutter: 0.875rem;
  --ns-page-max: 1320px;
  --ns-content-inset: var(--ns-page-gutter);
  --ns-font: "Alan Sans", sans-serif;
  --ns-heading-font: "Alan Sans", sans-serif;
  --ns-section-y: 2.25rem;
  --ns-section-bottom: 2.25rem;
  --ns-btn-bg: #d4af37;
  --ns-btn-color: #000000;
  --ns-white: #ffffff;
  --ns-link-underline-offset: 0.2em;
  --ns-link-underline-thickness: 1px;
  /* Keep Bootstrap / template vars on Alan Sans */
  --default-font: "Alan Sans", sans-serif;
  --heading-font: "Alan Sans", sans-serif;
  --nav-font: "Alan Sans", sans-serif;
  --bs-font-sans-serif: "Alan Sans", sans-serif;
  --bs-body-font-family: "Alan Sans", sans-serif;
}

html {
  height: 100%;
  overflow-x: clip;
  font-family: var(--ns-font);
  accent-color: #003959;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  font-family: var(--ns-font);
  color: #000000;
}

select,
.form-select,
.form-control {
  accent-color: #003959;
}

select:focus,
.form-select:focus,
.form-control:focus {
  outline-color: #003959;
}

select option:checked {
  background-color: #003959;
  color: #ffffff;
}

/* Force Alan Sans through header menus, forms, and UI chrome (Bootstrap defaults otherwise win). */
body,
button,
input,
select,
textarea,
.btn,
.form-control,
.form-select,
.dropdown-menu,
.navmenu,
.navmenu a,
.navmenu button,
.site-header,
.site-header a,
.site-header button,
.mega-menu,
.mega-menu a,
.mega-menu button,
.mega-cols,
.mega-cols a,
.mega-cat,
.nav-dropdown-menu,
.nav-dropdown-menu a,
.gallery-flyout,
.gallery-flyout a,
.gallery-flyout-cat,
.mobile-drawer,
.mobile-drawer a,
.mobile-drawer button,
.site-footer,
.site-footer a,
.site-footer button {
  font-family: var(--ns-font) !important;
}

/* Decorative script accents only */
.windsong-regular,
.windsong-medium,
.ns-hero-eyebrow {
  font-family: "WindSong", cursive !important;
}

main.main {
  flex: 1 0 auto;
  width: 100%;
}

/*--------------------------------------------------------------
# Hero — Calo-style layout
--------------------------------------------------------------*/
.ns-hero.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 920px);
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.ns-hero.hero:before {
  display: none;
}

.ns-hero-bg-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #003959;
}

.ns-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.ns-hero-bg--primary {
  z-index: 1;
  opacity: 1;
}

.ns-hero-bg-alt-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #003959;
  opacity: 0;
  animation: ns-hero-crossfade 14s ease-in-out infinite;
}

/* Right-side image panel (desktop) — same pattern as About hero */
.ns-hero-bg-alt-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(48%, 640px);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 12%,
    rgba(0, 0, 0, 0.55) 30%,
    #000 50%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 12%,
    rgba(0, 0, 0, 0.55) 30%,
    #000 50%,
    #000 100%
  );
}

.ns-hero-bg-alt-media .ns-hero-bg--alt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
  opacity: 1;
  -webkit-mask-image: none;
  mask-image: none;
}

@media (max-width: 991px) {
  .ns-hero-bg-alt-media {
    width: min(70%, 360px);
  }
}

.ns-hero-shade-alt {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      #003959 0%,
      rgba(0, 57, 89, 0.97) 42%,
      rgba(0, 57, 89, 0.55) 58%,
      rgba(0, 57, 89, 0.18) 76%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 57, 89, 0.22) 0%,
      transparent 40%,
      transparent 75%,
      rgba(0, 57, 89, 0.28) 100%
    );
}

@media (max-width: 991px) {
  .ns-hero-shade-alt {
    background:
      linear-gradient(
        180deg,
        rgba(0, 57, 89, 0.78) 0%,
        rgba(0, 57, 89, 0.55) 45%,
        rgba(0, 57, 89, 0.82) 100%
      ),
      linear-gradient(
        90deg,
        rgba(0, 57, 89, 0.85) 0%,
        rgba(0, 57, 89, 0.35) 55%,
        transparent 100%
      );
  }
}

@keyframes ns-hero-crossfade {
  0%,
  38% {
    opacity: 0;
  }
  48%,
  88% {
    opacity: 1;
  }
  98%,
  100% {
    opacity: 0;
  }
}

.ns-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.35) 48%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 35%, rgba(0, 0, 0, 0.45) 100%);
  animation: ns-hero-shade-swap 14s ease-in-out infinite;
}

@keyframes ns-hero-shade-swap {
  0%,
  38% {
    opacity: 1;
  }
  48%,
  88% {
    opacity: 0;
  }
  98%,
  100% {
    opacity: 1;
  }
}

.ns-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: inherit;
  padding-top: clamp(6.25rem, 11vh, 8.5rem);
  padding-bottom: clamp(3.25rem, 7vh, 4.75rem);
  overflow: visible;
}

.ns-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 100%;
  overflow: visible;
  padding-top: 0.4em;
  padding-bottom: 0.25em;
}

.windsong-regular {
  font-family: "WindSong", cursive;
  font-weight: 400;
  font-style: normal;
}

.windsong-medium {
  font-family: "WindSong", cursive;
  font-weight: 500;
  font-style: normal;
}

.ns-hero-eyebrow {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-family: "WindSong", cursive;
  font-size: clamp(5.5rem, 15vw, 24rem);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.04em;
  word-spacing: 0.28em;
  text-transform: none;
  line-height: 1.3;
  white-space: nowrap;
  overflow: visible;
  -webkit-text-stroke: 0.4px #ffffff;
  paint-order: stroke fill;
}

@media (min-width: 1200px) {
  .ns-hero-eyebrow {
    font-size: clamp(18rem, 22vw, 34rem);
  }
}

@media (min-width: 1400px) {
  .ns-hero-eyebrow {
    font-size: clamp(22rem, 26vw, 40rem);
  }

  .ns-hero-copy {
    padding-top: 0.75em;
    padding-bottom: 0.45em;
  }

  .ns-hero-inner {
    padding-top: clamp(8rem, 14vh, 11.5rem);
  }
}

@media (max-width: 991px) {
  .ns-hero-eyebrow {
    font-size: clamp(3.75rem, 11vw, 8.5rem);
    word-spacing: 0.2em;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .ns-hero-eyebrow {
    font-size: clamp(3.25rem, 13vw, 5.75rem);
    letter-spacing: 0.03em;
    word-spacing: 0.18em;
    white-space: normal;
    color: #ffffff;
    -webkit-text-stroke: 0.3px #ffffff;
  }
}

.ns-hero-title {
  margin: 0.35rem 0 0;
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.35rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.ns-hero-title .ns-reveal-mask--line .ns-reveal-inner {
  white-space: nowrap;
}

.ns-hero-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  width: 100%;
}

.ns-hero-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(0.82rem, 1.15vw, 0.95rem);
  font-weight: 500;
  line-height: 1.45;
}

.ns-hero-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
  color: #ffffff;
  font-size: 0.85rem;
  line-height: 1;
}

@media (max-width: 991px) {
  .ns-hero.hero {
    min-height: clamp(520px, 78vh, 760px);
  }

  .ns-hero-inner {
    padding-top: 5rem;
    gap: 2.5rem;
  }

  .ns-hero-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 575px) {
  .ns-hero-title {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .ns-hero-highlight {
    font-size: 0.88rem;
  }
}

@media (min-width: 992px) {
  .ns-hero-inner {
    padding-bottom: clamp(5.5rem, 14vh, 9rem);
  }
}

@media (min-width: 1400px) {
  .ns-hero-inner {
    padding-bottom: clamp(6.5rem, 16vh, 10.5rem);
  }
}


/* Reduce left/right padding across the whole site */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  --bs-gutter-x: 0.5rem;
  padding-left: var(--ns-page-gutter) !important;
  padding-right: var(--ns-page-gutter) !important;
}

@media (min-width: 768px) {
  :root {
    --ns-page-gutter: 3rem;
  }

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    --bs-gutter-x: 1rem;
  }
}

@media (min-width: 1200px) {
  :root {
    --ns-page-gutter: 4rem;
    --ns-content-inset: max(
      var(--ns-page-gutter),
      calc((100vw - var(--ns-page-max)) / 2 + var(--ns-page-gutter))
    );
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: var(--ns-page-max);
  }
}

.site-header {
  position: sticky;
  top: 0;
  padding: 0 !important;
  background: var(--ns-mainbar-bg) !important;
  color: var(--ns-ink);
  z-index: 1030;
  box-shadow: none;
  overflow: visible;
}

.scrolled .site-header {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.site-topbar {
  background: var(--ns-topbar-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 40px;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.site-topbar-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  min-width: 0;
}

.site-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
}

a.site-topbar-item:hover {
  color: #ffffff;
}

.site-topbar-item i {
  font-size: 0.85rem;
  flex-shrink: 0;
  color: #ffffff;
}

.site-topbar-social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.site-topbar-social a {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.site-topbar-social a:hover {
  color: #ffffff;
}

.site-mainbar {
  background: var(--ns-mainbar-bg);
  border-bottom: 1px solid var(--ns-border);
  position: relative;
  overflow: visible;
}

.site-mainbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 84px;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.site-logo {
  position: relative;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  line-height: 0;
  text-decoration: none;
  max-width: min(180px, 44vw);
  overflow: visible;
}

.site-logo:hover {
  color: inherit;
  opacity: 0.96;
}

.site-logo img {
  display: block;
  width: auto;
  max-width: none;
  height: 82px;
  object-fit: contain;
  object-position: center;
  margin-top: -18px;
  margin-bottom: -18px;
  pointer-events: none;
}

.site-navmenu {
  margin-left: auto;
}

.site-book-btn,
.site-book-btn:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ns-btn-bg);
  color: var(--ns-btn-color) !important;
  border: 1px solid var(--ns-btn-bg);
  font-family: "Alan Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1rem;
  border-radius: 0;
  transition: color 0.2s ease;
}

.site-book-btn:hover,
.site-book-btn:focus:hover {
  background: var(--ns-btn-bg);
  color: var(--ns-btn-color) !important;
}

/* Desktop primary nav + mega menu */
@media (min-width: 1200px) {
  .site-mainbar-inner {
    align-items: stretch;
  }

  .site-logo,
  .site-book-btn,
  .site-book-btn:focus {
    align-self: center;
  }

  .site-header .navmenu ul {
    gap: 0.55rem;
  }

  .site-header .navmenu > ul > li > a,
  .site-header .navmenu > ul > li > a:focus {
    color: var(--ns-ink);
    font-family: "Alan Sans", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.85rem 1.05rem;
    position: relative;
  }

  .site-header .navmenu > ul > li > a::after {
    content: "";
    position: absolute;
    left: 1.05rem;
    right: 1.05rem;
    bottom: calc(0.85rem - var(--ns-link-underline-offset));
    height: var(--ns-link-underline-thickness);
    background: var(--ns-ink);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.15s ease;
  }

  .site-header .navmenu > ul > li > a:hover::after,
  .site-header .navmenu > ul > li > a.active::after,
  .site-header .navmenu > ul > li > a.active:focus::after {
    transform: scaleX(1);
  }

  .site-header .navmenu li:hover > a,
  .site-header .navmenu .active,
  .site-header .navmenu .active:focus {
    color: var(--ns-ink);
  }

  .site-header .navmenu > ul > .mega-parent {
    position: static;
  }

  /* Full-bleed mega menu matching reference image */
  .site-header .mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: auto;
    margin-left: 0;
    background: var(--ns-mega-panel);
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1000;
  }

  /* Invisible hover bridge so menu does not flicker */
  .site-header .mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
  }

  .site-header .mega-parent:hover > a::after,
  .site-header .mega-parent:focus-within > a::after {
    transform: scaleX(1);
  }

  .site-header .mega-parent:hover .mega-menu,
  .site-header .mega-parent:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Gallery simple hover dropdown — align flush with mainbar bottom */
  .site-header .site-navmenu,
  .site-header .navmenu > ul.site-desktop-nav {
    align-self: stretch;
    height: auto;
    min-height: 100%;
  }

  .site-header .navmenu > ul.site-desktop-nav {
    align-items: stretch;
  }

  .site-header .navmenu > ul > li {
    display: flex;
    align-items: center;
  }

  .site-header .navmenu > ul > .nav-dropdown {
    position: relative;
    align-self: stretch;
  }

  .site-header .nav-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 1.15rem 0;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15rem;
    position: absolute;
    left: 0;
    top: calc(100% + 0.65rem);
    min-width: 15.5rem;
    background: var(--ns-mega-panel);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--ns-border);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity 0.18s ease, visibility 0s linear 0.18s;
    z-index: 1100;
  }

  .site-header .nav-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: calc(-0.65rem - 12px);
    height: calc(0.65rem + 12px);
  }

  .site-header .nav-dropdown:hover > .nav-dropdown-menu,
  .site-header .nav-dropdown:focus-within > .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: opacity 0.18s ease, visibility 0s linear 0s;
  }

  .site-header .nav-dropdown:hover > .nav-dropdown-toggle::after,
  .site-header .nav-dropdown:focus-within > .nav-dropdown-toggle::after {
    transform: scaleX(1);
  }

  .site-header .nav-dropdown-menu li {
    width: 100%;
    text-align: left;
  }

  .site-header .nav-dropdown-menu a,
  .site-header .nav-dropdown-menu a:focus {
    display: inline-block !important;
    width: auto !important;
    max-width: 100%;
    padding: 0 !important;
    margin: 0 1.25rem !important;
    color: #000000 !important;
    font-family: "Alan Sans", sans-serif !important;
    font-size: 1.02rem !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    text-decoration: none !important;
    text-align: left !important;
    line-height: 1.4;
    white-space: nowrap;
    background: transparent !important;
    box-shadow: none !important;
    justify-content: flex-start !important;
    position: relative;
    transition: color 0.15s ease;
  }

  .site-header .nav-dropdown-menu a::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(-1 * var(--ns-link-underline-offset));
    height: var(--ns-link-underline-thickness);
    background: #000000;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.15s ease;
  }

  .site-header .nav-dropdown-menu a:hover,
  .site-header .nav-dropdown-menu a:focus:hover {
    opacity: 1;
    color: #000000 !important;
    background: transparent !important;
  }

  .site-header .nav-dropdown-menu a:hover::after,
  .site-header .nav-dropdown-menu a:focus:hover::after {
    transform: scaleX(1);
  }

  .site-header .gallery-flyout {
    display: grid;
    grid-template-columns: minmax(15.5rem, 17.5rem);
    position: absolute;
    left: 0;
    top: calc(100% + 0.65rem);
    min-width: 0;
    background: var(--ns-mega-panel);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--ns-border);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity 0.18s ease, visibility 0s linear 0.18s;
    z-index: 1100;
  }

  .site-header .gallery-flyout.has-side {
    grid-template-columns: minmax(15.5rem, 17.5rem) minmax(14rem, 16.5rem);
  }

  .site-header .gallery-flyout::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: calc(-0.65rem - 12px);
    height: calc(0.65rem + 12px);
  }

  .site-header .gallery-dropdown:hover > .gallery-flyout,
  .site-header .gallery-dropdown:focus-within > .gallery-flyout {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.18s ease, visibility 0s linear 0s;
  }

  .site-header .gallery-flyout-cats {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
  }

  .site-header .gallery-flyout.has-side .gallery-flyout-cats {
    border-right: 1px solid rgba(0, 0, 0, 0.14);
  }

  .site-header .gallery-flyout-cat {
    display: inline-block;
    width: auto;
    max-width: 100%;
    border: 0;
    background: transparent;
    color: #000000;
    font-family: "Alan Sans", sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0;
    text-align: left;
    text-transform: none;
    text-decoration: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    position: relative;
    line-height: 1.4;
  }

  .site-header .gallery-flyout-cat::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(-1 * var(--ns-link-underline-offset));
    height: var(--ns-link-underline-thickness);
    background: #000000;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.15s ease;
    pointer-events: none;
  }

  .site-header .gallery-flyout-cat:hover::after {
    transform: scaleX(1);
  }

  .site-header .gallery-flyout-panels {
    display: none;
    position: relative;
    min-height: 100%;
    padding: 1rem 1.25rem;
    text-align: left;
  }

  .site-header .gallery-flyout.has-side .gallery-flyout-panels {
    display: block;
  }

  .site-header .gallery-flyout-panel {
    display: none;
    text-align: left;
  }

  .site-header .gallery-flyout-panel.is-active {
    display: block;
  }

  .site-header .gallery-flyout-panel[hidden] {
    display: none !important;
  }

  .site-header .gallery-flyout-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .site-header .gallery-flyout-panel li {
    width: auto;
    max-width: 100%;
    text-align: left;
  }

  .site-header .gallery-flyout-panel a,
  .site-header .gallery-flyout-panel a:focus {
    display: inline-block !important;
    width: auto !important;
    max-width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    color: #000000 !important;
    font-family: "Alan Sans", sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-decoration: none !important;
    text-transform: none !important;
    text-align: left !important;
    line-height: 1.4;
    white-space: nowrap;
    justify-content: flex-start !important;
    background: transparent !important;
    box-shadow: none !important;
    position: relative;
  }

  .site-header .gallery-flyout-panel a::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(-1 * var(--ns-link-underline-offset));
    height: var(--ns-link-underline-thickness);
    background: #000000;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.15s ease;
  }

  .site-header .gallery-flyout-panel a:hover::after {
    transform: scaleX(1);
  }

  .mega-menu-inner {
    display: grid;
    grid-template-columns: clamp(250px, 24vw, 320px) 1fr;
    align-items: stretch;
    min-height: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .mega-cats {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: transparent;
    border-right: 1px solid rgba(0, 0, 0, 0.14);
    padding: 0.55rem 0;
    padding-left: max(0.35rem, calc((100vw - var(--ns-page-max)) / 2));
  }

  .mega-cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--ns-ink);
    font-family: var(--ns-font) !important;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    text-align: left;
    padding: 0.4rem 1.25rem 0.4rem 0.85rem;
    cursor: pointer;
    transition: background 0.12s ease, font-weight 0.12s ease;
  }

  .mega-cat i {
    font-size: 0.85rem;
    color: #000000;
    flex-shrink: 0;
  }

  .mega-cat:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  .mega-cat.is-active {
    font-weight: 600;
  }

  .mega-panels {
    background: var(--ns-mega-panel);
    padding: 0.85rem max(var(--ns-page-gutter), calc((100vw - var(--ns-page-max)) / 2 + var(--ns-page-gutter))) 0.85rem 2rem;
  }

  .mega-panel[hidden] {
    display: none !important;
  }

  .mega-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 3.5rem;
    row-gap: 0;
    max-width: 980px;
    justify-items: start;
    align-items: start;
  }

  .mega-cols ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .mega-cols li {
    width: auto;
    max-width: 100%;
    text-align: left;
  }

  .site-header .mega-cols a,
  .site-header .mega-cols a:focus {
    display: inline-block !important;
    width: auto !important;
    max-width: 100%;
    color: #000000 !important;
    font-family: var(--ns-font) !important;
    font-size: 0.88rem !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1.4;
    white-space: nowrap;
    justify-content: flex-start !important;
    background: transparent !important;
    box-shadow: none !important;
    position: relative;
    transition: color 0.15s ease;
  }

  .site-header .mega-cols a::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: calc(-1 * var(--ns-link-underline-offset)) !important;
    height: var(--ns-link-underline-thickness) !important;
    width: auto !important;
    background: #000000 !important;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.15s ease;
  }

  .site-header .mega-cols a:hover {
    opacity: 1;
    color: #000000 !important;
  }

  .site-header .mega-cols a:hover::after {
    transform: scaleX(1);
  }
}

/* Mobile adjustments + Calo-style drill-down drawer */
@media (max-width: 1199px) {
  .site-topbar-inner {
    gap: 0.75rem;
  }

  .site-topbar-info {
    gap: 0.65rem 1rem;
  }

  .site-mainbar-inner {
    min-height: 72px;
    gap: 0.75rem;
  }

  .site-logo {
    max-width: min(148px, 44vw);
  }

  .site-logo img {
    height: 68px;
    margin-top: -14px;
    margin-bottom: -14px;
  }

  .site-book-btn {
    display: none !important;
  }

  /* Hide desktop mega nav on small screens — never show as a popup */
  .site-header .site-desktop-nav {
    display: none !important;
  }

  .site-header .mega-menu {
    display: none !important;
  }

  .site-header .mobile-nav-toggle {
    color: var(--ns-ink);
    margin: 0;
    order: 3;
    position: relative;
    z-index: 10001;
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
  }

  .site-header .navmenu {
    order: 3;
    padding: 0;
  }

  /* Drawer shell: off-screen until hamburger opens it */
  .site-header .mobile-drawer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: auto;
    width: min(86vw, 340px);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 4.75rem 0 2rem;
    background: #e9e9e9;
    box-shadow: 12px 0 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    transform: translate3d(-105%, 0, 0);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: transform 0.35s ease, visibility 0s linear 0.35s, opacity 0.2s ease;
    z-index: 10000;
  }

  .mobile-nav-active .site-header .mobile-drawer {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transition: transform 0.35s ease, visibility 0s linear 0s, opacity 0.2s ease;
  }

  .mobile-nav-active .site-header .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.45);
    z-index: 9999;
    transition: background 0.3s ease;
  }

  .mobile-nav-active .site-header .mobile-nav-toggle {
    color: #000000 !important;
    position: fixed;
    top: 1.1rem;
    left: min(calc(86vw - 3rem), 300px);
    right: auto;
    margin: 0;
    z-index: 10002;
  }

  .site-header .mobile-drawer-panels {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  /* Override Mentor .navmenu ul { display: none } so drawer lists render */
  .site-header .mobile-drawer ul.mobile-panel,
  .site-header .navmenu .mobile-panel {
    display: block !important;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #e9e9e9;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0s linear 0.3s;
    z-index: 1;
  }

  .site-header .mobile-drawer ul.mobile-panel.is-active,
  .site-header .navmenu .mobile-panel.is-active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s ease, visibility 0s linear 0s;
    z-index: 2;
  }

  .site-header .mobile-drawer ul.mobile-panel.is-exit-left,
  .site-header .navmenu .mobile-panel.is-exit-left {
    transform: translateX(-30%);
    visibility: visible;
    pointer-events: none;
    z-index: 1;
  }

  .site-header .mobile-panel > li {
    width: 100%;
    border: 0;
  }

  .site-header .mobile-panel > li > a,
  .site-header .mobile-panel > li > a:focus,
  .site-header .mobile-drill-link,
  .site-header .mobile-drill-back {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 1.5rem !important;
    color: #000000 !important;
    font-family: "Alan Sans", sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    text-decoration: none !important;
    line-height: 1.3;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    text-align: left;
    cursor: pointer;
    box-shadow: none !important;
  }

  .site-header .mobile-drill-back {
    justify-content: flex-start;
    gap: 0.55rem;
    font-weight: 600 !important;
    background: rgba(0, 0, 0, 0.05) !important;
  }

  .site-header .mobile-panel > li > a i,
  .site-header .mobile-panel > li > a:focus i,
  .site-header .mobile-drill-link i,
  .site-header .mobile-drill-back i {
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    border-radius: 0 !important;
    font-size: 0.78rem !important;
    color: #000000 !important;
    flex-shrink: 0;
  }

  .site-header .mobile-panel > li > a::after,
  .site-header .mobile-drill-link::after {
    display: none !important;
  }

  .site-header .mobile-panel > li > a:hover,
  .site-header .mobile-drill-link:hover {
    background: rgba(0, 0, 0, 0.04) !important;
  }
}

@media (min-width: 1200px) {
  .site-header .mobile-drawer,
  .site-header .mobile-nav-toggle {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .site-topbar-item span {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 575px) {
  .site-topbar-info .site-topbar-address {
    display: none;
  }
}

/*--------------------------------------------------------------
# Footer — dark navy top + existing bottom bar
--------------------------------------------------------------*/
.site-footer,
#footer.site-footer.footer,
#footer.site-footer {
  background: transparent !important;
  color: #000000;
  padding: 0;
  padding-top: 1.5rem;
  margin: 0;
  margin-top: auto;
  border: 0;
  flex-shrink: 0;
  width: 100%;
}

.site-footer-top {
  background: #003959;
  color: #ffffff;
  padding: clamp(2rem, 4vw, 2.75rem) 0 clamp(1.75rem, 3.5vw, 2.5rem);
}

.site-footer-top-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.95fr) minmax(200px, 1.15fr) minmax(160px, 0.85fr) minmax(170px, 0.9fr);
  gap: 2.5rem 2.75rem;
  align-items: start;
}

.site-footer-col-title {
  margin: 0 0 0.9rem;
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.2;
}

.site-footer-logo {
  display: inline-block;
  max-width: 240px;
  width: 100%;
}

.site-footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.site-footer-place {
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
}

.site-footer-place-name {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0 0 0.55rem;
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.site-footer-place-name i {
  margin-top: 0.12rem;
  font-size: 1rem;
  line-height: 1;
}

.site-footer-place p {
  margin: 0;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
}

.site-footer-place-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.7rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
}

.site-footer-place-phone:hover {
  opacity: 0.7;
  color: #ffffff;
}

.site-footer-col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer-col-list li,
.site-footer-col-list a {
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
}

.site-footer-col-list a:hover {
  opacity: 0.7;
  color: #ffffff;
}

.site-footer-reviews {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0 0 1.35rem;
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer-reviews:hover {
  opacity: 0.8;
  color: #ffffff;
}

.site-footer-stars {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  color: #caa26a;
  font-size: 0.95rem;
  line-height: 1;
}

.site-footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}

.site-footer-social a {
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1;
  text-decoration: none;
}

.site-footer-social a:hover {
  opacity: 0.7;
  color: #ffffff;
}

@media (max-width: 991px) {
  .site-footer-top-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 2.25rem;
  }

  .site-footer-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-footer-logo {
    margin-inline: auto;
  }

  .site-footer-place-name,
  .site-footer-place-phone {
    justify-content: center;
  }

  .site-footer-reviews {
    align-items: center;
  }

  .site-footer-social {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Intro Showcase (below hero)
--------------------------------------------------------------*/
.intro-showcase {
  background: #f5f2ec;
  padding: var(--ns-section-y) 0;
  position: relative;
  overflow: hidden;
}

.intro-showcase::before {
  content: "n";
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(18rem, 28vw, 30rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 0, 0, 0.035);
  pointer-events: none;
  user-select: none;
}

.intro-showcase-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2rem 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.intro-showcase-copy {
  min-width: 0;
  width: 100%;
}

.intro-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 1rem;
  line-height: 1;
}

.intro-brand-name {
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--ns-btn-bg);
  letter-spacing: -0.02em;
  text-transform: lowercase;
  width: max-content;
}

.intro-brand-tag,
.intro-brand-sub {
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(0.72rem, 1.2vw, 0.85rem);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ns-btn-bg);
  margin-top: 0.4rem;
}

.intro-brand-tag {
  letter-spacing: 0.28em;
}

.intro-brand-sub {
  width: 0;
  min-width: 100%;
  letter-spacing: 0;
  white-space: nowrap;
  box-sizing: border-box;
}

.intro-showcase-copy p {
  margin: 0;
  width: 100%;
  max-width: none;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  word-spacing: 0.02em;
}

.intro-showcase-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-width: 0;
}

.intro-showcase-collage {
  position: relative;
  width: 100%;
  aspect-ratio: 189 / 87;
  height: auto;
  margin: 0;
  background: transparent;
}

.intro-collage-item {
  position: absolute;
  overflow: hidden;
  background: #e8e4de;
}

.intro-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.intro-collage-item--face img {
  object-position: center 18%;
}

.intro-collage-item--body img {
  object-position: center 35%;
}

.intro-collage-item--clinic img {
  object-position: center 40%;
}

.intro-collage-item:nth-child(1) { left: 11.6402%; top: 12.6437%; width: 15.8730%; height: 35.6322%; }
.intro-collage-item:nth-child(2) { left: 29.6296%; top: 0; width: 27.5132%; height: 48.2759%; }
.intro-collage-item:nth-child(3) { left: 59.2593%; top: 6.8966%; width: 19.0476%; height: 41.3793%; }
.intro-collage-item:nth-child(4) { left: 80.4233%; top: 16.0920%; width: 19.5767%; height: 32.1839%; }
.intro-collage-item:nth-child(5) { left: 0; top: 51.7241%; width: 19.5767%; height: 32.1839%; }
.intro-collage-item:nth-child(6) { left: 21.6931%; top: 51.7241%; width: 18.5185%; height: 41.3793%; }
.intro-collage-item:nth-child(7) { left: 42.3280%; top: 51.7241%; width: 28.0423%; height: 48.2759%; }
.intro-collage-item:nth-child(8) { left: 72.4868%; top: 51.7241%; width: 15.8730%; height: 35.6322%; }

@media (max-width: 991px) {
  .intro-showcase-inner {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .intro-showcase-media {
    justify-content: flex-end;
  }

  .intro-showcase-collage {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Feature Spotlight (Body category panel)
--------------------------------------------------------------*/
.feature-spotlight {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  min-height: clamp(340px, 48vh, 520px);
  background: #003959;
}

.feature-spotlight-bg {
  position: absolute;
  top: 0;
  right: var(--ns-content-inset);
  bottom: 0;
  width: min(58%, 720px);
  height: 100%;
  object-fit: contain;
  object-position: right top;
  display: block;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

.feature-spotlight-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0, 57, 89, 0.96) 0%,
      rgba(0, 57, 89, 0.82) 34%,
      rgba(0, 57, 89, 0.58) 62%,
      rgba(0, 57, 89, 0.48) 100%
    ),
    rgba(0, 57, 89, 0.28);
}

.feature-spotlight-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: stretch;
  min-height: inherit;
}

.feature-spotlight-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--ns-section-y) 0;
  max-width: none;
  min-width: 0;
}

.feature-spotlight-title {
  margin: 0 0 1.35rem;
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.feature-spotlight-title > span,
.feature-spotlight-title > strong {
  display: block;
}

.feature-spotlight-title strong {
  font-weight: 800;
}

.feature-spotlight-category {
  margin: 0 0 1.1rem;
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
}

.feature-spotlight-text {
  margin: 0 0 1.5rem;
  max-width: none;
  width: 100%;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.75;
  color: #ffffff;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.feature-spotlight-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.15rem;
  margin-top: auto;
  padding-top: 1rem;
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.feature-spotlight-links a {
  color: #ffffff !important;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: var(--ns-link-underline-offset);
  text-decoration-thickness: var(--ns-link-underline-thickness);
  white-space: normal;
  flex-shrink: 1;
  transition: opacity 0.15s ease;
}

.feature-spotlight-links a:hover {
  opacity: 0.7;
}

.feature-spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: end;
  gap: 0.75rem;
  padding: 0 0 var(--ns-section-y);
}

.feature-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 1.55rem;
  border-radius: 0;
  background: var(--ns-btn-bg);
  color: var(--ns-btn-color) !important;
  border: 1px solid var(--ns-btn-bg);
  transition: color 0.2s ease;
}

.feature-btn-solid,
.feature-btn-ghost {
  background: var(--ns-btn-bg);
  color: var(--ns-btn-color) !important;
  border: 1px solid var(--ns-btn-bg);
}

.feature-btn:hover,
.feature-btn-solid:hover,
.feature-btn-ghost:hover {
  background: var(--ns-btn-bg);
  color: var(--ns-btn-color) !important;
}

/* Small screens: all text CTAs match Explore All Services size + left align */
@media (max-width: 991px) {
  .feature-btn,
  .feature-btn-solid,
  .feature-btn-ghost,
  .patient-reviews-btn,
  .team-card-btn,
  .pricing .btn-buy,
  .contact .php-email-form button[type=submit],
  .contact-split-form button[type=submit],
  .book-consult-form button[type=submit],
  .doctor-consult-form button[type=submit],
  .procedure-details-page .procedure-page-actions .feature-btn,
  .error-actions .feature-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    max-width: 100%;
    flex: 0 0 auto !important;
    align-self: flex-start;
    box-sizing: border-box;
    font-family: var(--ns-font) !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    text-align: center;
    white-space: nowrap;
    padding: 0.9rem 1.55rem !important;
    border-radius: 0;
  }

  .feature-spotlight-actions,
  .patient-reviews-footer,
  .error-actions,
  .procedure-details-page .procedure-page-actions .container-xl,
  .pricing .btn-wrap,
  .about-story-copy,
  .contact .php-email-form .text-center,
  .contact .php-email-form .text-start,
  .book-consult-form .text-start {
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .patient-reviews-btn {
    min-width: 0;
  }

  .patient-reviews-nav {
    margin-left: auto;
  }

  .pricing .btn-wrap {
    text-align: left !important;
  }
}

@media (max-width: 575px) {
  .feature-btn,
  .feature-btn-solid,
  .feature-btn-ghost,
  .patient-reviews-btn,
  .team-card-btn,
  .pricing .btn-buy,
  .contact .php-email-form button[type=submit],
  .contact-split-form button[type=submit],
  .book-consult-form button[type=submit],
  .doctor-consult-form button[type=submit],
  .procedure-details-page .procedure-page-actions .feature-btn,
  .error-actions .feature-btn {
    font-size: 0.68rem !important;
    padding: 0.8rem 1.25rem !important;
  }
}

@media (max-width: 991px) {
  .feature-spotlight {
    min-height: clamp(320px, 52vh, 460px);
  }

  .feature-spotlight-grid {
    grid-template-columns: 1fr;
  }

  .feature-spotlight-copy {
    max-width: none;
    padding: var(--ns-section-y) 0 1.25rem;
  }

  .feature-spotlight-text {
    margin-bottom: 1.75rem;
  }

  .feature-spotlight-shade {
    background:
      linear-gradient(
        180deg,
        rgba(0, 57, 89, 0.92) 0%,
        rgba(0, 57, 89, 0.72) 38%,
        rgba(0, 57, 89, 0.5) 68%,
        rgba(0, 57, 89, 0.58) 100%
      ),
      rgba(0, 57, 89, 0.28);
  }

  .feature-spotlight-actions {
    justify-content: flex-start;
    padding: 0 0 var(--ns-section-y);
  }

  .feature-spotlight-bg {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .feature-spotlight-links {
    flex-wrap: wrap;
    overflow: visible;
    white-space: normal;
    gap: 0.55rem 0.9rem;
  }

  .feature-spotlight-links a {
    white-space: normal;
    flex-shrink: 1;
  }
}

@media (max-width: 575px) {
  .feature-spotlight-links {
    gap: 0.5rem 0.85rem;
  }

  .feature-spotlight-links a {
    font-size: 0.82rem;
  }
}


/*--------------------------------------------------------------
# Inner page heroes (shared height; home uses .ns-hero)
--------------------------------------------------------------*/
.page-title {
  --ns-page-hero-height: clamp(18rem, 34vh, 23rem);
  display: flex;
  flex-direction: column;
  min-height: var(--ns-page-hero-height);
  height: var(--ns-page-hero-height);
  overflow: hidden;
}

.page-title > .heading {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding: clamp(1.25rem, 3vh, 2rem) 0;
  min-height: 0;
}

.page-title > nav.breadcrumbs {
  flex: 0 0 auto;
  padding: 0.7rem 0;
  background-color: transparent;
  background-image: linear-gradient(
    to right,
    #002f4a 0%,
    #002f4a 8%,
    rgba(0, 47, 74, 0.78) 28%,
    rgba(0, 47, 74, 0.3) 48%,
    transparent 68%
  );
}

/*--------------------------------------------------------------
# About page hero + testimonials grid
--------------------------------------------------------------*/
.about-page-hero.page-title {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --background-color: transparent;
  --ns-page-hero-height: clamp(18rem, 34vh, 23rem);
  color: #ffffff;
  background: transparent;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: var(--ns-page-hero-height);
  height: var(--ns-page-hero-height);
}

.about-page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-page-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.about-page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 57, 89, 0.55) 0%,
      rgba(0, 57, 89, 0.38) 45%,
      rgba(0, 57, 89, 0.62) 100%
    ),
    rgba(0, 57, 89, 0.28);
}

.about-page-hero-copy,
.about-page-hero-crumbs {
  position: relative;
  z-index: 1;
}

/* Split hero: image on the right (About, Surgeons, etc.) */
.about-page-hero.page-title.about-page-hero--split,
.about-page-hero.page-title.procedure-page-hero,
.about-page-hero.page-title.testimonial-page-hero {
  --background-color: #003959;
  background: #003959;
  background-color: #003959;
}

.about-page-hero--split .about-page-hero-media--right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(54%, 760px);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 12%,
    rgba(0, 0, 0, 0.55) 30%,
    #000 50%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 12%,
    rgba(0, 0, 0, 0.55) 30%,
    #000 50%,
    #000 100%
  );
}

.about-page-hero--split .about-page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-page-hero--split .about-page-hero-shade--split {
  background:
    linear-gradient(
      90deg,
      #003959 0%,
      rgba(0, 57, 89, 0.95) 18%,
      rgba(0, 57, 89, 0.55) 42%,
      rgba(0, 57, 89, 0.18) 68%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 57, 89, 0.22) 0%,
      transparent 40%,
      transparent 75%,
      rgba(0, 57, 89, 0.28) 100%
    );
}

.about-page-hero--split .heading {
  text-align: left;
}

.about-page-hero--split .about-page-hero-text {
  max-width: 34rem;
}

.about-page-hero--split .heading h1,
.about-page-hero--split .about-page-hero-eyebrow,
.about-page-hero--split .about-page-hero-lead {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.about-page-hero--split .about-page-hero-lead {
  max-width: 100%;
}

@media (max-width: 991px) {
  .about-page-hero--split .about-page-hero-media--right {
    width: 100%;
    left: 0;
    right: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .about-page-hero--split .about-page-hero-shade--split {
    background:
      linear-gradient(
        180deg,
        rgba(0, 57, 89, 0.78) 0%,
        rgba(0, 57, 89, 0.65) 45%,
        rgba(0, 57, 89, 0.82) 100%
      );
  }

  .about-page-hero--split .about-page-hero-text {
    max-width: 100%;
  }
}

.about-page-hero .heading {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding: clamp(1.25rem, 3vh, 2rem) 0;
  border-top: 0;
  min-height: 0;
}

.about-page-hero-eyebrow {
  margin: 0 0 0.85rem;
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-page-hero .heading h1 {
  margin: 0 0 0.7rem;
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.about-page-hero-lead {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 500;
  line-height: 1.55;
}

.about-page-hero .breadcrumbs,
.about-page-hero-crumbs {
  position: relative;
  z-index: 1;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  padding: 0.7rem 0;
}

.about-page-hero .breadcrumbs::before,
.about-page-hero-crumbs::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    #002f4a 0%,
    #002f4a 8%,
    rgba(0, 47, 74, 0.78) 28%,
    rgba(0, 47, 74, 0.3) 48%,
    transparent 68%
  );
}

.about-page-hero .breadcrumbs,
.about-page-hero-crumbs,
.about-page-hero .breadcrumbs a,
.about-page-hero-crumbs a,
.about-page-hero .breadcrumbs ol,
.about-page-hero-crumbs ol,
.about-page-hero .breadcrumbs li,
.about-page-hero-crumbs li,
.about-page-hero .breadcrumbs .current,
.about-page-hero-crumbs .current {
  color: #ffffff;
}

.about-page-hero .breadcrumbs ol li+li::before,
.about-page-hero-crumbs ol li+li::before {
  color: rgba(255, 255, 255, 0.55);
}

/*--------------------------------------------------------------
# About page content
--------------------------------------------------------------*/
.about-story {
  padding: 2.25rem 0;
  background:
    linear-gradient(165deg, #f7f4ef 0%, #ffffff 48%, #f3eee6 100%);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.about-story-copy {
  width: 100%;
  min-width: 0;
}

@media (min-width: 992px) {
  .about-story-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }

  .about-story-copy--second {
    padding-top: 0.35rem;
  }
}

.about-story-title,
.about-approach-title,
.about-place-title {
  margin: 0 0 1.1rem;
  color: #003959;
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-story-copy p,
.about-story-kicker,
.about-approach-lead,
.about-approach-item p,
.about-place-inner > p {
  margin: 0 0 1rem;
  color: #1a1a1a;
  font-family: "Alan Sans", sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}

.about-story-kicker {
  color: #003959;
  font-weight: 600;
  text-align: left;
}

.about-story-passage {
  margin: 0 0 1rem;
  color: #1a1a1a;
  font-family: "Alan Sans", sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.about-story-points {
  margin: 0.35rem 0 1.5rem;
  padding: 0 0 0 1.15rem;
  color: #1a1a1a;
  font-family: "Alan Sans", sans-serif;
  font-size: 1.02rem;
  line-height: 1.7;
  text-align: left;
}

.about-story-points li {
  margin-bottom: 0.45rem;
}

.about-story-points li::marker {
  color: var(--ns-btn-bg, #d4af37);
}

.about-story-copy .feature-btn {
  margin-top: 0.25rem;
}

.about-story-visual {
  position: relative;
  overflow: visible;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-story-image {
  display: block;
  width: 100%;
  max-width: 22rem;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  object-position: center center;
}

@media (min-width: 992px) {
  .about-story-image {
    max-width: 24rem;
  }
}

.about-approach {
  padding: 2.75rem 0;
  background: #003959;
}

.about-approach-title {
  color: #ffffff;
}

.about-approach-lead {
  max-width: 42rem;
  margin: 0 0 2.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  text-align: left;
  text-justify: auto;
}

.about-approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem 1.5rem;
}

@media (min-width: 768px) {
  .about-approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .about-approach-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem 1.35rem;
  }

  .about-approach-icon {
    width: 2.65rem;
    height: 2.65rem;
    font-size: 1.05rem;
  }

  .about-approach-item {
    gap: 0.75rem;
  }

  .about-approach-item h3 {
    font-size: 0.95rem;
  }

  .about-approach-item p {
    font-size: 0.84rem;
    line-height: 1.5;
  }
}

.about-approach-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-approach-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #ffffff;
  color: #003959;
  font-size: 1.2rem;
  line-height: 1;
}

.about-approach-copy {
  min-width: 0;
  padding-top: 0.1rem;
}

.about-approach-item h3 {
  margin: 0 0 0.4rem;
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.25;
}

.about-approach-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: left;
  text-justify: auto;
}

.about-page .meet-team {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.ns-testimonials {
  background: #fff;
  padding-top: 0;
}

.ns-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.ns-testimonial {
  padding: 1.75rem 1.35rem;
  background: #fff;
  border: 0;
}

.ns-testimonial:nth-child(odd) {
  background: #f3f3f3;
}

.ns-testimonial-text {
  margin: 0 0 1rem;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.65;
}

.ns-testimonial-author {
  margin: 0 0 0.55rem;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

.ns-testimonial-stars {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  color: #d4af37;
  font-size: 0.85rem;
  line-height: 1;
}

/* Testimonials hero: image on right, shorter height */
.testimonial-page .testimonial-page-hero {
  --ns-page-hero-height: clamp(15rem, 28vh, 19rem);
  background: #003959;
}

.testimonial-page .testimonial-page-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(54%, 760px);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 12%,
    rgba(0, 0, 0, 0.55) 30%,
    #000 50%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 12%,
    rgba(0, 0, 0, 0.55) 30%,
    #000 50%,
    #000 100%
  );
}

.testimonial-page .testimonial-page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  display: block;
}

.testimonial-page .testimonial-page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      #003959 0%,
      rgba(0, 57, 89, 0.95) 18%,
      rgba(0, 57, 89, 0.55) 42%,
      rgba(0, 57, 89, 0.18) 68%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 57, 89, 0.22) 0%,
      transparent 40%,
      transparent 75%,
      rgba(0, 57, 89, 0.28) 100%
    );
}

.testimonial-page .testimonial-page-hero .heading {
  text-align: left;
}

.testimonial-page .testimonial-page-hero-copy {
  max-width: 34rem;
}

.testimonial-page .testimonial-page-hero .heading h1,
.testimonial-page .testimonial-page-hero .about-page-hero-eyebrow,
.testimonial-page .testimonial-page-hero .about-page-hero-lead {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.testimonial-page .testimonial-page-hero .about-page-hero-lead {
  max-width: 100%;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
}

.testimonial-page .testimonial-page-hero .heading h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  margin-bottom: 0.55rem;
}

.testimonial-page .testimonial-page-hero .about-page-hero-eyebrow {
  margin-bottom: 0.45rem;
}

.testimonial-page .ns-testimonials {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

@media (max-width: 991px) {
  .testimonial-page .testimonial-page-hero {
    --ns-page-hero-height: clamp(14.5rem, 34vh, 18rem);
  }

  .testimonial-page .testimonial-page-hero-media {
    width: 100%;
    left: 0;
    right: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .testimonial-page .testimonial-page-hero-shade {
    background:
      linear-gradient(
        180deg,
        rgba(0, 57, 89, 0.78) 0%,
        rgba(0, 57, 89, 0.65) 45%,
        rgba(0, 57, 89, 0.82) 100%
      );
  }

  .testimonial-page .testimonial-page-hero-copy {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .ns-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ns-testimonial {
    padding: 2rem 1.75rem;
  }

  .ns-testimonial:nth-child(4n + 1),
  .ns-testimonial:nth-child(4n + 2) {
    background: #f3f3f3;
  }

  .ns-testimonial:nth-child(4n + 3),
  .ns-testimonial:nth-child(4n + 4) {
    background: #fff;
  }
}

/*--------------------------------------------------------------
# Patient Reviews (split testimonial)
--------------------------------------------------------------*/
.patient-reviews {
  background: transparent;
  overflow: visible;
}

.patient-reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(360px, 46vh, 480px);
  align-items: stretch;
}

.patient-reviews-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.patient-reviews-image {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 46vh, 480px);
  object-fit: cover;
  object-position: center center;
  display: block;
}

.patient-reviews-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-width: 0;
  width: 100%;
  background: transparent;
  padding: var(--ns-section-y) var(--ns-content-inset) var(--ns-section-y) clamp(1.5rem, 4vw, 3rem);
  overflow: visible;
  box-sizing: border-box;
}

.patient-reviews-swiper {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.patient-reviews-swiper .swiper-wrapper {
  align-items: stretch;
}

.patient-reviews-swiper .swiper-slide {
  height: auto !important;
  box-sizing: border-box;
}

.patient-review {
  margin: 0;
  max-width: 34rem;
  width: 100%;
}

.patient-review-quote {
  margin: 0 0 1.15rem;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  word-wrap: break-word;
}

.patient-review-stars {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  margin-bottom: 1.35rem;
  color: #d4af37;
  font-size: 1.05rem;
  line-height: 1;
}

.patient-review-text {
  margin: 0 0 1.5rem;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

.patient-review-author {
  display: block;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
}

.patient-reviews-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.patient-reviews-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ns-btn-bg);
  color: var(--ns-btn-color) !important;
  border: 1px solid var(--ns-btn-bg);
  border-radius: 0;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 1.55rem;
  white-space: normal;
  text-align: center;
  transition: color 0.2s ease;
}

.patient-reviews-btn:hover {
  background: var(--ns-btn-bg);
  color: var(--ns-btn-color) !important;
}

.patient-reviews-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  flex-shrink: 0;
}

.patient-reviews-prev,
.patient-reviews-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 0;
  border-radius: 0;
  background: var(--ns-btn-bg);
  color: var(--ns-btn-color);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.patient-reviews-prev:hover,
.patient-reviews-next:hover {
  background: var(--ns-btn-bg);
  color: var(--ns-btn-color);
}

@media (max-width: 991px) {
  .patient-reviews-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .patient-reviews-media {
    min-height: 260px;
    max-height: 340px;
  }

  .patient-reviews-image {
    min-height: 260px;
  }

  .patient-reviews-panel {
    padding: var(--ns-section-y) var(--ns-content-inset);
    gap: 1.25rem;
  }

  .patient-review-quote {
    font-size: clamp(1.35rem, 6.5vw, 1.85rem);
    margin-bottom: 0.9rem;
  }

  .patient-review-text {
    font-size: 0.95rem;
    margin-bottom: 1.15rem;
  }

  .patient-reviews-footer {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .patient-reviews-nav {
    margin-left: auto;
    width: auto;
    flex-shrink: 0;
    justify-content: flex-end;
  }
}

@media (max-width: 575px) {
  .patient-reviews-media {
    min-height: 220px;
    max-height: 280px;
  }

  .patient-reviews-image {
    min-height: 220px;
  }

  .patient-reviews-panel {
    padding: var(--ns-section-y) var(--ns-content-inset);
  }

  .patient-review-stars {
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }

  .patient-reviews-prev,
  .patient-reviews-next {
    width: 2.35rem;
    height: 2.35rem;
  }
}

/*--------------------------------------------------------------
# Cuberto-style text / media reveals (line-based, layout-safe)
--------------------------------------------------------------*/
.ns-reveal {
  opacity: 0;
}

.ns-reveal.is-ready {
  opacity: 1;
}

.ns-reveal-mask--line {
  display: block;
  overflow: hidden;
  padding: 0.05em 0;
  margin: -0.05em 0;
}

.ns-reveal-inner {
  display: block;
  transform: translate3d(0, 110%, 0);
  will-change: transform;
  transition: transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

.ns-reveal.is-inview .ns-reveal-inner {
  transform: translate3d(0, 0, 0);
}

.ns-reveal-word-measure {
  display: inline;
}

.ns-media-reveal {
  overflow: hidden;
}

.ns-media-reveal > img,
.ns-media-reveal-img {
  transform: scale(1.12);
  transform-origin: center center;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.ns-media-reveal.is-inview > img,
.ns-media-reveal.is-inview .ns-media-reveal-img {
  transform: scale(1);
}

.ns-hero.ns-media-reveal > .ns-hero-bg-stack .ns-hero-bg {
  transform: scale(1.14);
  transition: transform 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ns-hero.ns-media-reveal.is-inview > .ns-hero-bg-stack .ns-hero-bg {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .ns-reveal,
  .ns-reveal.is-ready {
    opacity: 1;
  }

  .ns-reveal-inner,
  .ns-media-reveal > img,
  .ns-media-reveal-img,
  .ns-hero.ns-media-reveal > .ns-hero-bg-stack .ns-hero-bg {
    transform: none !important;
    transition: none !important;
  }

  .ns-hero-bg-alt-layer,
  .ns-hero-shade {
    animation: none !important;
  }

  .ns-hero-bg-alt-layer {
    opacity: 0 !important;
  }

  .ns-hero-shade {
    opacity: 1 !important;
  }
}

/*--------------------------------------------------------------
# Meet the Team carousel
--------------------------------------------------------------*/
.meet-team {
  background: transparent;
  overflow: hidden;
  padding: 0 0 0.5rem;
  margin-top: -0.85rem;
}

.surgeons-page .meet-team--listing {
  margin-top: 0;
  padding: 2.25rem 0 2.25rem;
  background: #ffffff;
}

.meet-team-heading {
  margin-bottom: 1.75rem;
  margin-top: 0;
}

.meet-team-title {
  margin: 0;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.meet-team-carousel {
  padding-top: 0;
  padding-bottom: 0;
}

.meet-team-swiper {
  width: 100%;
  overflow: hidden;
}

.meet-team-swiper .swiper-slide {
  height: auto;
}

.team-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #ddd;
  cursor: pointer;
}

.team-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s ease;
}

.team-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 1.35rem 1.15rem 1.35rem;
  color: #ffffff;
}

.team-card-name {
  margin: 0;
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  transition: transform 0.4s ease;
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.72) 100%);
  transition: background 0.35s ease;
}

.team-card-intro,
.team-card-btn {
  opacity: 1;
  visibility: visible;
  max-height: none;
  overflow: hidden;
  transform: none;
  transition:
    opacity 0.35s ease,
    transform 0.4s ease,
    visibility 0.35s ease,
    max-height 0.4s ease,
    margin 0.4s ease,
    color 0.2s ease;
}

.team-card-intro {
  margin: 0.85rem 0 1.15rem;
  max-width: 18rem;
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.55;
}

.team-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ns-btn-bg);
  border-radius: 0;
  background: var(--ns-btn-bg);
  color: var(--ns-btn-color) !important;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.2rem;
}

.team-card-btn:hover {
  background: var(--ns-btn-bg);
  color: var(--ns-btn-color) !important;
}

@media (min-width: 992px) {
  /* Default: name sits low on the card */
  .team-card-name {
    transform: translateY(0);
  }

  .team-card-intro,
  .team-card-btn {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
    transform: translateY(12px);
    pointer-events: none;
  }

  .team-card-overlay {
    background:
      linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.58) 100%);
  }

  .team-card:hover .team-card-image,
  .team-card:focus-within .team-card-image {
    transform: scale(1.04);
  }

  .team-card:hover .team-card-overlay,
  .team-card:focus-within .team-card-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.78) 100%);
  }

  /* Hover: name rises as intro + button expand into the space below */
  .team-card:hover .team-card-name,
  .team-card:focus-within .team-card-name {
    transform: translateY(-0.35rem);
  }

  .team-card:hover .team-card-intro,
  .team-card:focus-within .team-card-intro {
    opacity: 1;
    visibility: visible;
    max-height: 9rem;
    margin: 0.75rem 0 1rem;
    transform: translateY(0);
    pointer-events: auto;
  }

  .team-card:hover .team-card-btn,
  .team-card:focus-within .team-card-btn {
    opacity: 1;
    visibility: visible;
    max-height: 3.5rem;
    padding: 0.75rem 1.2rem;
    border-width: 1px;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0.05s;
  }

  .team-card:hover .team-card-btn:hover,
  .team-card:focus-within .team-card-btn:hover {
    color: var(--ns-btn-color) !important;
    background: var(--ns-btn-bg);
  }
}


.site-footer-bottom {
  background: #003959;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding: 1.15rem 0 1.25rem;
}

.site-footer-bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem 1.5rem;
}

.site-footer-copy {
  margin: 0;
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
}

.site-footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}

.site-footer-legal a {
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer-legal a:hover {
  opacity: 0.7;
  color: #ffffff;
}

.site-footer-credit {
  margin: 0;
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: right;
  justify-self: end;
}

.site-footer-credit a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: var(--ns-link-underline-offset);
  text-decoration-thickness: var(--ns-link-underline-thickness);
}

.site-footer-credit a:hover {
  opacity: 0.7;
  color: #ffffff;
}

@media (max-width: 991px) {
  .site-footer-bottom-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer-legal {
    justify-content: center;
  }

  .site-footer-credit {
    text-align: center;
    justify-self: center;
  }
}

/*--------------------------------------------------------------
# Procedure page — before/after gallery (2 rows × 3 pairs)
--------------------------------------------------------------*/
.procedure-ba-gallery.section {
  padding-top: 1.5rem;
  padding-bottom: 1.75rem;
  background: #f7f4ef;
}

.procedure-ba-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem 1.5rem;
}

.procedure-ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem;
  margin: 0;
  min-width: 0;
}

.procedure-ba-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e8e2d8;
}

.procedure-ba-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.procedure-ba-label {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  margin: 0;
  padding: 0.28rem 0.65rem;
  border-radius: 0.35rem;
  background: rgba(20, 20, 20, 0.82);
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .procedure-ba-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.1rem;
  }
}

@media (max-width: 575px) {
  .procedure-ba-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .procedure-ba-label {
    font-size: 0.68rem;
    padding: 0.24rem 0.55rem;
  }
}

.gallery-details-actions {
  padding-top: 0.5rem;
  padding-bottom: 2.25rem;
  background: #f7f4ef;
}

.gallery-details-actions-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.procedure-overview {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  background: #ffffff;
}

.procedure-overview-copy h2 {
  margin: 0 0 1rem;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 0.7rem;
}

.procedure-overview-copy h2::before,
.procedure-overview-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
}

.procedure-overview-copy h2::before {
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.procedure-overview-copy h2::after {
  width: 3.75rem;
  background: #caa26a;
}

.procedure-kicker {
  margin: 0 0 0.55rem;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.procedure-overview-copy p {
  margin: 0 0 0.95rem;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: justify;
}

/* Procedure heroes: image on right (desktop), blue fades into image */
.procedure-details-page .procedure-page-hero {
  --procedure-hero-blue: #003959;
  --procedure-hero-height: var(--ns-page-hero-height, clamp(18rem, 34vh, 23rem));
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: #ffffff;
  background: var(--procedure-hero-blue);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: var(--procedure-hero-height);
  height: var(--procedure-hero-height);
}

.procedure-details-page .procedure-page-hero .procedure-page-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(54%, 760px);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 12%,
    rgba(0, 0, 0, 0.55) 30%,
    #000 50%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 12%,
    rgba(0, 0, 0, 0.55) 30%,
    #000 50%,
    #000 100%
  );
}

.procedure-details-page .procedure-page-hero .procedure-page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.procedure-details-page .procedure-page-hero .procedure-page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      #003959 0%,
      rgba(0, 57, 89, 0.95) 18%,
      rgba(0, 57, 89, 0.55) 42%,
      rgba(0, 57, 89, 0.18) 68%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 57, 89, 0.22) 0%,
      transparent 40%,
      transparent 75%,
      rgba(0, 57, 89, 0.28) 100%
    );
}

.procedure-details-page .procedure-page-hero .heading {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 0;
  border-top: 0;
  min-height: 0;
}

.procedure-details-page .procedure-page-hero .heading .container-xl {
  width: 100%;
}

.procedure-details-page .procedure-page-hero .heading .procedure-page-hero-copy {
  max-width: 34rem;
}

.procedure-details-page .procedure-page-hero .heading h1 {
  margin: 0 0 0.7rem;
  color: #ffffff;
  text-align: left;
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  line-height: 1.1;
}

.procedure-details-page .procedure-page-hero .procedure-page-hero-lead,
.procedure-details-page .procedure-page-hero .about-page-hero-lead {
  max-width: 100%;
  margin: 0;
  color: #ffffff;
  text-align: left;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  font-weight: 400;
  line-height: 1.6;
}

.procedure-details-page .procedure-page-hero .about-page-hero-crumbs {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  padding: 0.7rem 0;
  color: #ffffff;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.procedure-details-page .procedure-page-hero .about-page-hero-crumbs::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    #002f4a 0%,
    #002f4a 6%,
    rgba(0, 47, 74, 0.82) 24%,
    rgba(0, 47, 74, 0.32) 44%,
    transparent 65%
  );
}

.procedure-details-page .procedure-page-hero .about-page-hero-crumbs a,
.procedure-details-page .procedure-page-hero .about-page-hero-crumbs li,
.procedure-details-page .procedure-page-hero .about-page-hero-crumbs .current {
  color: #ffffff;
}

.procedure-details-page .procedure-page-hero .about-page-hero-crumbs ol {
  font-size: 0.9rem;
  line-height: 1.35;
  color: #ffffff;
}

.procedure-details-page .procedure-page-hero .about-page-hero-crumbs ol li + li::before {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 991px) {
  .procedure-details-page .procedure-page-hero {
    --procedure-hero-height: clamp(17rem, 36vh, 21rem);
  }

  .procedure-details-page .procedure-page-hero .procedure-page-hero-media {
    width: 100%;
    left: 0;
    right: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .procedure-details-page .procedure-page-hero .procedure-page-hero-shade {
    background:
      linear-gradient(
        180deg,
        rgba(0, 57, 89, 0.78) 0%,
        rgba(0, 57, 89, 0.65) 45%,
        rgba(0, 57, 89, 0.82) 100%
      );
  }

  .procedure-details-page .procedure-page-hero .heading .procedure-page-hero-copy {
    max-width: 100%;
  }

  .procedure-details-page .procedure-page-hero .about-page-hero-crumbs {
    padding: 0.65rem 0;
  }

  .procedure-details-page .procedure-page-hero .about-page-hero-crumbs ol {
    font-size: 0.72rem;
    line-height: 1.4;
    row-gap: 0.15rem;
  }

  .procedure-details-page .procedure-page-hero .about-page-hero-crumbs ol li + li::before {
    margin-right: 0.35rem;
    margin-left: 0.15rem;
  }
}

@media (max-width: 575px) {
  .procedure-details-page .procedure-page-hero .about-page-hero-crumbs ol {
    font-size: 0.66rem;
    letter-spacing: 0.01em;
  }
}

.procedure-details-page .procedure-page-actions {
  padding-top: 0.5rem;
  padding-bottom: 2.25rem;
}

.procedure-details-page .procedure-page-actions .container-xl {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.75rem;
}

.procedure-details-page .procedure-page-actions .feature-btn {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  text-align: center;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

.procedure-details-page .procedure-tabs .details h3 {
  margin: 0 0 0.75rem;
  color: var(--ns-btn-bg, #d4af37);
  font-family: "Alan Sans", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.procedure-details-page .procedure-tabs .details p,
.procedure-tab-lead {
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.98rem;
  line-height: 1.75;
  text-align: justify;
}

.procedure-tab-lead {
  font-style: italic;
  font-weight: 500;
  margin-bottom: 0.95rem;
}

.procedure-tab-cue {
  margin: 0 0 0.85rem;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
}

.procedure-tab-bullets {
  margin: 0 0 1.15rem;
  padding: 0 0 0 1.25rem;
  list-style: disc;
  color: #000000;
}

.procedure-tab-bullets li {
  margin: 0 0 0.55rem;
  padding-left: 0.15rem;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
}

.procedure-tab-bullets li::marker {
  color: var(--ns-btn-bg, #d4af37);
}

.procedure-details-page .tabs {
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
}

@media (max-width: 991px) {
  .procedure-details-page .procedure-page-actions .container-xl {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .procedure-details-page .procedure-page-actions .container-xl {
    gap: 0.55rem;
  }
}

.area-highlights {
  padding-top: 0;
  padding-bottom: 1.5rem;
  background: #ffffff;
}

.area-highlights h2,
.area-procedures h2 {
  margin: 0 0 1.25rem;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 0.7rem;
}

.area-highlights h2::before,
.area-procedures h2::before,
.area-highlights h2::after,
.area-procedures h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
}

.area-highlights h2::before,
.area-procedures h2::before {
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.area-highlights h2::after,
.area-procedures h2::after {
  width: 3.75rem;
  background: #caa26a;
}

.area-highlights ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.area-highlights li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.35rem;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
}

.area-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.55rem;
  height: 1px;
  background: #caa26a;
}

.area-procedures {
  padding-top: 1rem;
  padding-bottom: 1.25rem;
  background: #ffffff;
}

.area-procedure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
}

.area-procedure-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #000000;
}

.area-procedure-card h3 {
  margin: 0;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.area-procedure-card p {
  margin: 0;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: justify;
}

.area-procedure-card span {
  margin-top: auto;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.area-procedure-card:hover h3,
.area-procedure-card:hover span {
  color: #caa26a;
}

.area-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  margin-top: 1.75rem;
}

.area-hub-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.6rem 0 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: #000000;
}

.area-hub-card .procedure-kicker {
  margin-bottom: 0;
}

.area-hub-card h3 {
  margin: 0;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.area-hub-card p {
  margin: 0;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: justify;
}

.area-hub-card span {
  font-family: "Alan Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.area-hub-card:hover h3,
.area-hub-card:hover span {
  color: #caa26a;
}

.plastic-surgery-groups {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.75rem 1.5rem;
  margin-top: 2.25rem;
  align-items: start;
}

.plastic-surgery-group h3 {
  margin: 0 0 0.85rem;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 0.55rem;
}

.plastic-surgery-group h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 1px;
  background: #caa26a;
}

.plastic-surgery-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.plastic-surgery-group a {
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.plastic-surgery-group a:hover,
.plastic-surgery-group a:focus-visible {
  color: #caa26a;
}

@media (max-width: 991px) {
  .plastic-surgery-groups {
    gap: 1.35rem 1rem;
  }

  .plastic-surgery-group h3 {
    font-size: 1rem;
  }

  .plastic-surgery-group a {
    font-size: 0.88rem;
  }
}

@media (max-width: 767px) {
  .plastic-surgery-groups {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }

  .plastic-surgery-group {
    flex: 0 0 8.75rem;
  }
}

.error-section {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  background: #ffffff;
  min-height: 58vh;
  text-align: left;
}

.error-section .container-xl {
  text-align: left;
}

.error-section-inner {
  max-width: 42rem;
  margin: 0;
  text-align: left;
}

.error-kicker {
  margin: 0 0 0.85rem;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
}

.error-code {
  margin: 0 0 0.35rem;
  color: #caa26a;
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-align: left;
}

.error-section h1 {
  margin: 0 0 1rem;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  position: relative;
  padding-bottom: 0.75rem;
  text-align: left;
}

.error-section h1::before,
.error-section h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
}

.error-section h1::before {
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.error-section h1::after {
  width: 3.75rem;
  background: #caa26a;
}

.error-copy {
  margin: 0 0 1.75rem;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: left;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem;
}

@media (max-width: 575px) {
  .error-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.surgeons-page-hero .about-page-hero-image {
  object-position: center center;
}

.surgeons-listing {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  background: #ffffff;
}

.surgeons-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem 1.15rem;
  align-items: start;
}

.surgeons-card {
  display: flex;
  flex-direction: column;
  color: #000000;
  text-decoration: none;
}

.surgeons-card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #ddd;
  border-radius: 0;
}

.surgeons-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.surgeons-card-copy {
  padding-top: 1.1rem;
}

.surgeons-card-copy h2 {
  margin: 0 0 0.3rem;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.surgeons-card-role {
  margin: 0;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.surgeons-card:hover h2 {
  color: #caa26a;
}

@media (max-width: 991px) {
  .surgeons-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .surgeons-card {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0, 57, 89, 0.12);
  }

  .surgeons-card:last-child {
    border-bottom: 0;
  }

  .surgeons-card-photo {
    flex: 0 0 5.25rem;
    width: 5.25rem;
    aspect-ratio: 1;
  }

  .surgeons-card-copy {
    padding-top: 0;
    min-width: 0;
    flex: 1 1 auto;
  }

  .surgeons-card-role {
    order: -1;
    margin: 0 0 0.25rem;
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  .surgeons-card-copy h2 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .book-consult-pick-cta {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 767px) {
  .surgeons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: visible;
    margin: 0;
    padding-bottom: 0;
  }

  .surgeons-card {
    flex: none;
    width: 100%;
    max-width: none;
  }
}

/* Surgeons page — mobile list (image left, text right) */
.surgeons-mobile-list {
  padding: 1.5rem 0 2.25rem;
  background: #ffffff;
}

.surgeons-mobile-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0, 57, 89, 0.12);
  color: #000000;
  text-decoration: none;
}

.surgeons-mobile-item:last-child {
  border-bottom: 0;
}

.surgeons-mobile-thumb {
  flex: 0 0 5.5rem;
  width: 5.5rem;
  height: 5.5rem;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #e8e8e8;
}

.surgeons-mobile-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.surgeons-mobile-meta {
  margin: 0 0 0.28rem;
  color: rgba(0, 0, 0, 0.55);
  font-family: "Alan Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}

.surgeons-mobile-name {
  margin: 0;
  color: #000000;
  font-family: "Alan Sans", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.surgeons-mobile-item:hover .surgeons-mobile-name {
  color: #caa26a;
}

.surgeons-mobile-item--meet {
  align-items: flex-start;
}

.surgeons-mobile-intro {
  margin: 0.28rem 0 0;
  color: rgba(0, 0, 0, 0.62);
  font-family: "Alan Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.45;
}

.surgeons-mobile-cta {
  display: inline-block;
  margin-top: 0.4rem;
  color: #003959;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}

.surgeons-mobile-item:hover .surgeons-mobile-cta {
  color: #caa26a;
}

.meet-team .meet-team-mobile-list {
  padding-top: 0.35rem;
  padding-bottom: 2rem;
}

.book-consult-pick .book-consult-mobile-list {
  padding-top: 0.25rem;
  padding-bottom: 2rem;
}

