/* Brand palette derived from the Swastik ENT logo. */
:root {
  --navy: #28124a;
  --blue: #4056d8;
  --teal: #b51f78;
  --teal-dark: #7627a8;
  --mint: #faeaf4;
  --ink: #271d33;
  --muted: #6f6378;
  --line: #e8ddea;
  --surface: #fbf7fd;
  --brand-purple: #7627a8;
  --brand-pink: #dc2c86;
  --brand-orange: #f59b0a;
  --brand-blue: #4056d8;
  --shadow: 0 18px 50px rgba(73, 29, 101, .13);
}

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

:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 3px;
}

.care-bar,
.site-footer,
.results-band {
  background: linear-gradient(110deg, #21103c, #3d1763);
}

.care-bar i,
.site-footer .contact-list i {
  color: #ffb52d;
}

.care-bar__right,
.header-social {
  display: flex;
  align-items: center;
}

.header-social {
  gap: 7px;
  margin-left: 22px;
}

.care-bar .header-email,
.care-bar .header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.care-bar .header-email i,
.care-bar .header-phone i {
  margin: 0;
  color: #ffb52d;
}

.care-bar .header-social a {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  margin-left: 0;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.care-bar .header-social a:hover {
  border-color: #ffb52d;
  color: #28124a;
  background: #ffb52d;
  transform: translateY(-1px);
}

.care-bar .header-social i {
  margin: 0;
  color: inherit;
  font-size: 12px;
}

.footer-social a:nth-child(1):hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.footer-social a:nth-child(2):hover { background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7); border-color: #ee2a7b; color: #fff; }
.footer-social a:nth-child(3):hover { background: #ff0000; border-color: #ff0000; color: #fff; }
.footer-social a:nth-child(4):hover { background: #000; border-color: #000; color: #fff; }

.social-x {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.brand__text strong {
  color: var(--navy);
}

.primary-menu .current-menu-item > a,
.primary-menu a:hover,
.eyebrow,
.specialty-icon,
.specialty-grid a,
.text-link,
.doctor-grid span {
  color: var(--brand-pink);
}

.header-cta,
.button--primary {
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-purple));
  box-shadow: 0 10px 25px rgba(181, 31, 120, .26);
}

.appointment-button-static {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.header-cta.appointment-button-static {
  border: 0;
}

.footer-appointment-static {
  padding: 0;
  border: 0;
  color: #b9cbd6;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.footer-appointment-static::before {
  content: "›";
  margin-right: 8px;
  color: #f59b0a;
  font-weight: 800;
}

.appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s, visibility .25s;
}

.appointment-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.appointment-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 10, 41, .76);
  backdrop-filter: blur(5px);
}

.appointment-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(800px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: 37px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(18, 7, 31, .4);
  transform: translateY(15px) scale(.98);
  transition: transform .25s;
}

.appointment-modal.is-open .appointment-modal__dialog {
  transform: none;
}

.appointment-modal__close {
  position: absolute;
  right: 17px;
  top: 17px;
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: #f5edf7;
  cursor: pointer;
}

.appointment-modal__heading {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 17px;
  padding-right: 35px;
}

.appointment-modal__heading > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-pink));
  border-radius: 15px;
  font-size: 24px;
}

.appointment-modal__heading h2 {
  margin-bottom: 7px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.appointment-modal__heading p:last-child {
  margin: 0;
}

.appointment-enquiry-form {
  margin-top: 28px;
}

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

.appointment-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.appointment-form-grid label > span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.appointment-form-grid label b {
  color: #c51f4a;
}

.appointment-form-grid input,
.appointment-form-grid select,
.appointment-form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #d9cddd;
  border-radius: 9px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.appointment-form-grid input:focus,
.appointment-form-grid select:focus,
.appointment-form-grid textarea:focus {
  border-color: var(--brand-purple);
  outline: 3px solid rgba(118, 39, 168, .12);
}

.appointment-form-message {
  grid-column: 1 / -1;
}

.appointment-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.appointment-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 22px;
}

.appointment-form-footer p {
  max-width: 390px;
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.appointment-form-footer p i {
  color: var(--brand-purple);
}

.appointment-form-footer .button {
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.appointment-modal-open {
  overflow: hidden;
}

.appointment-notice {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 11000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  max-width: 520px;
  padding: 16px 17px;
  border-radius: 11px;
  color: #fff;
  background: #7627a8;
  box-shadow: var(--shadow);
}

.appointment-notice--sent {
  background: #18794e;
}

.appointment-notice button {
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.header-cta:hover,
.button--primary:hover {
  background: linear-gradient(135deg, #c3217f, #642094);
}

.home-hero {
  background: #21103c;
}

.home-hero {
  width: 100%;
  min-height: clamp(560px, 72svh, 740px);
  isolation: isolate;
}

.hero-slides,
.hero-slide {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero-slide {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.home-hero__content {
  width: min(1180px, calc(100% - 40px));
  padding-top: clamp(70px, 10vh, 105px);
  padding-bottom: clamp(90px, 12vh, 125px);
}

.home-hero__content h1 {
  font-size: clamp(2.55rem, 5vw, 4.8rem);
}

.home-hero .hero-actions {
  align-items: center;
}

.hero-slide {
  background-image: linear-gradient(90deg, rgba(34, 14, 61, .94) 0%, rgba(48, 19, 78, .79) 48%, rgba(64, 35, 90, .18) 100%), var(--hero-image);
}

.home-hero .eyebrow,
.trust-row i,
.results-grid strong {
  color: #ffb52d;
}

.home-hero__content .eyebrow {
  margin-bottom: 15px;
}

.home-hero__content h1 {
  margin-bottom: 22px;
}

.home-hero__content .hero-lead {
  margin: 0;
  max-width: 690px;
}

.hero-dots button.is-active {
  border-color: #ffb52d;
  background: #ffb52d;
}

.info-grid i {
  color: var(--brand-purple);
}

.specialty-icon {
  background: linear-gradient(145deg, #fff0f7, #f1e9ff);
}

.specialty-grid article:hover {
  border-color: #d9b6e8;
}

.specialty-grid article::after {
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-pink), var(--brand-purple), var(--brand-blue));
}

.services-overview .section-heading {
  display: block;
  max-width: 980px;
  margin: 0 auto 48px;
  text-align: center;
}

.services-overview .section-heading > div {
  max-width: none;
}

.services-overview .section-heading .eyebrow {
  margin-bottom: 14px;
}

.services-overview .section-heading h2 {
  margin-bottom: 18px;
  white-space: nowrap;
}

.services-overview .section-heading > p {
  max-width: none;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.65;
  white-space: nowrap;
}

.about-preview,
.page-hero {
  background: linear-gradient(135deg, #fff8fc, #f6f1ff 55%, #eef1ff);
}

.page-hero--image {
  background: linear-gradient(90deg, rgba(40, 18, 74, .93), rgba(101, 35, 137, .58)), var(--page-bg) center/cover;
}

.page-hero {
  width: 100%;
  min-height: clamp(320px, 38svh, 430px);
  display: flex;
  align-items: center;
  padding-top: clamp(60px, 8vh, 90px);
  padding-bottom: clamp(60px, 8vh, 90px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page-hero > .sec-container {
  width: min(1180px, calc(100% - 40px));
}

.page-hero h1 {
  max-width: 950px;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
}

.page-hero .page-hero__lead {
  max-width: min(900px, 100%);
  line-height: 1.6;
}

.page-hero .breadcrumbs {
  flex-wrap: wrap;
  margin-top: 20px;
}

.about-image span {
  background: linear-gradient(145deg, #321653, #6c2796);
}

.check-list i {
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-purple));
}

.results-grid > div {
  border-color: rgba(255, 255, 255, .18);
}

.doctor-grid article:hover {
  border-color: #d5b5e3;
  box-shadow: 0 20px 50px rgba(73, 29, 101, .16);
}

.doctors-section .doctor-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.doctors-section .doctor-grid img,
.doctors-section .doctor-photo {
  height: 300px;
}

.doctors-section .doctor-grid article > div:last-child {
  padding: 21px;
}

.doctors-section .doctor-grid h3 {
  font-size: 1.15rem;
}

.doctor-photo {
  width: 100%;
  height: 350px;
  background-repeat: no-repeat;
}

.doctor-photo--abhishek {
  background-image: url('../images/team/expert-doctors.jpg');
  background-size: 376% auto;
  background-position: 12% 42%;
}

.doctor-card__photo {
  display: block;
  overflow: hidden;
  background: #f5eff8;
}

.doctor-card__photo img {
  transition: transform .4s ease;
}

.doctor-card:hover .doctor-card__photo img {
  transform: scale(1.035);
}

.doctor-card h3 a {
  color: var(--navy);
}

.doctor-card h3 a:hover,
.doctor-card__link {
  color: var(--brand-pink);
}

.doctor-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  font-size: 14px;
  font-weight: 800;
}

.doctor-profile-hero {
  padding: 85px 0;
  background: linear-gradient(135deg, #fff8fc, #f4edff 60%, #eef1ff);
}

.doctor-profile-hero,
.specialty-profile-hero,
.cochlear-hero {
  width: 100%;
  min-height: clamp(500px, 62svh, 720px);
  display: flex;
  align-items: center;
}

.doctor-profile-grid {
  display: grid;
  grid-template-columns: minmax(320px, 470px) 1fr;
  gap: 75px;
  align-items: center;
}

.doctor-profile-photo img {
  display: block;
  width: 100%;
  height: 530px;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.doctor-profile-intro h1 {
  max-width: 720px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.doctor-profile-role {
  color: var(--brand-pink);
  font-size: 20px;
  font-weight: 800;
}

.doctor-qualification {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 610px;
  margin: 27px 0;
  padding: 18px 20px;
  border: 1px solid #e3d3eb;
  border-radius: 13px;
  background: rgba(255, 255, 255, .78);
}

.doctor-qualification i {
  color: var(--brand-purple);
  font-size: 25px;
}

.doctor-qualification span {
  display: flex;
  flex-direction: column;
}

.doctor-qualification small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.doctor-qualification strong {
  color: var(--navy);
}

.doctor-profile-summary {
  max-width: 680px;
  font-size: 18px;
}

.doctor-call {
  color: var(--navy);
  border: 1px solid #cdbbd7;
  background: #fff;
  box-shadow: none;
}

.doctor-profile-content {
  min-height: 420px;
  padding: 80px 0 95px;
}

.doctor-profile-content__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 75px;
  align-items: start;
}

.doctor-profile-content .editor-content {
  max-width: none;
}

.doctor-profile-content .editor-content h2:first-child {
  margin-top: 0;
}

.doctor-profile-content .editor-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  padding: 0;
  list-style: none;
}

.doctor-profile-content .editor-content li {
  position: relative;
  padding: 14px 15px 14px 43px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.doctor-profile-content .editor-content li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--brand-pink);
  font-weight: 900;
}

.doctor-profile-aside {
  position: sticky;
  top: 145px;
  padding: 30px 27px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(135deg, #fff8fc, #f4edff);
  box-shadow: 0 14px 38px rgba(73, 29, 101, .09);
}

.doctor-profile-aside > span {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  margin-bottom: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-pink));
  border-radius: 14px;
  font-size: 23px;
}

.doctor-profile-aside h2 {
  font-size: 1.55rem;
}

.doctor-profile-aside .button {
  width: 100%;
  margin: 8px 0 17px;
}

.doctor-profile-aside > a:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
}

.about-page-hero .sec-container {
  max-width: 1180px;
}

.about-page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  padding: 7px 13px;
  color: #28124a;
  background: #ffb52d;
  border-radius: 999px;
  letter-spacing: .1em;
}

.about-page-hero .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-pink);
}

.about-page-hero h1 {
  margin-bottom: 18px;
}

.about-page-hero .page-hero__lead {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(17px, 1.65vw, 21px);
}

.page-hero__lead {
  max-width: 650px;
  margin: -5px 0 18px;
  color: #ece3f4;
  font-size: 19px;
}

.about-page {
  overflow: hidden;
}

.about-page__content {
  padding-top: 90px;
  padding-bottom: 100px;
}

.about-story {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 75px;
  align-items: center;
}

.about-story__image {
  position: relative;
}

.about-story__image::before {
  content: "Since 2006";
  position: absolute;
  right: -22px;
  bottom: 25px;
  z-index: 2;
  padding: 15px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-purple));
  border-radius: 10px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.about-story__image img {
  display: block;
  width: 100%;
  height: 510px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.about-story__content h2,
.about-strengths h2 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.about-intro {
  color: #45344f;
  font-size: 20px;
  font-weight: 600;
}

.about-values {
  margin: 100px calc(50% - 50vw) 0;
  padding: 90px max(20px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, #fff8fc, #f4edff 60%, #eef1ff);
}

.about-video-section {
  margin-top: 100px;
}

.about-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.about-video-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #28124a;
  box-shadow: var(--shadow);
}

.about-video-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 480px;
  object-fit: contain;
  background: #160b27;
}

.about-video-grid figcaption {
  padding: 15px 19px;
  color: #fff;
  background: linear-gradient(90deg, #28124a, #5a2181);
  font-size: 14px;
  font-weight: 700;
}

.about-section-heading {
  max-width: 760px;
  margin: 0 auto 45px;
  text-align: center;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.value-grid article {
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(73, 29, 101, .08);
}

.value-grid article > span {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  margin-bottom: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-pink));
  border-radius: 14px;
  font-size: 22px;
}

.about-strengths {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 75px;
  align-items: center;
  padding-top: 100px;
}

.strength-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.strength-list > div {
  display: flex;
  gap: 14px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.strength-list i {
  color: var(--brand-purple);
  font-size: 22px;
}

.strength-list span {
  display: flex;
  flex-direction: column;
}

.strength-list strong {
  color: var(--navy);
}

.strength-list small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.about-page > .edit-page-link {
  margin-top: -65px;
  margin-bottom: 45px;
}

.service-page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  padding: 7px 13px;
  color: #28124a;
  background: #ffb52d;
  border-radius: 999px;
  letter-spacing: .1em;
}

.service-page-hero .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-pink);
}

.service-page-hero h1 {
  margin-bottom: 18px;
}

.service-page-hero .page-hero__lead {
  max-width: none;
  white-space: nowrap;
}

.service-page {
  overflow: hidden;
}

.service-page__content {
  padding-top: 90px;
  padding-bottom: 100px;
}

.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.service-intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.service-intro > p {
  margin: 0;
  font-size: 18px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.service-detail-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 15px 42px rgba(73, 29, 101, .09);
}

.service-detail-card img {
  display: block;
  width: 100%;
  height: 275px;
  object-fit: cover;
}

.service-detail-card > div {
  padding: 31px;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-purple));
  border-radius: 50%;
  font-weight: 800;
}

.service-detail-card h2 {
  font-size: 1.8rem;
}

.service-detail-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-card li {
  position: relative;
  padding-left: 21px;
  color: #493b52;
  font-size: 15px;
}

.service-detail-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-pink);
  font-weight: 900;
}

.diagnostic-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 75px;
  align-items: center;
  margin: 100px calc(50% - 50vw) -100px;
  padding: 90px max(20px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, #fff8fc, #f4edff 60%, #eef1ff);
}

.diagnostic-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.diagnostic-list > div {
  display: flex;
  gap: 14px;
  padding: 23px 19px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.diagnostic-list i {
  color: var(--brand-purple);
  font-size: 22px;
}

.diagnostic-list span {
  display: flex;
  flex-direction: column;
}

.diagnostic-list strong {
  color: var(--navy);
}

.diagnostic-list small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.contact-page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  padding: 7px 13px;
  color: #28124a;
  background: #ffb52d;
  border-radius: 999px;
  letter-spacing: .1em;
}

.contact-page-hero .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-pink);
}

.contact-page-hero h1 {
  margin-bottom: 18px;
}

.contact-page-hero .page-hero__lead {
  max-width: none;
  white-space: nowrap;
}

.contact-page {
  overflow: hidden;
}

.contact-page__content {
  padding-top: 90px;
}

.contact-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 55px;
}

.contact-intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.contact-intro > p {
  margin: 0;
  font-size: 18px;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-card-grid article {
  display: flex;
  flex-direction: column;
  padding: 31px 28px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(73, 29, 101, .08);
}

.contact-card-grid article > span {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  margin-bottom: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-pink));
  border-radius: 14px;
  font-size: 22px;
}

.contact-card-grid h3 {
  margin-bottom: 10px;
}

.contact-card-grid p {
  flex-grow: 1;
}

.contact-card-grid a {
  overflow-wrap: anywhere;
  color: var(--brand-purple);
  font-weight: 700;
}

.contact-card-grid article > a {
  display: block;
  width: fit-content;
  margin-top: 5px;
  line-height: 1.45;
}

.contact-phone-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.contact-phone-lines a {
  display: block;
  line-height: 1.4;
}

.contact-email-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.contact-email-lines a {
  display: block;
  line-height: 1.4;
}

.visit-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 85px 0;
}

.visit-hours,
.visit-action {
  padding: 42px;
  border-radius: 19px;
}

.visit-hours {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff8fc, #f6f0ff);
}

.hours-list > div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 14px 0;
  border-bottom: 1px solid #e6d9e9;
}

.hours-list strong {
  color: var(--navy);
}

.visit-note {
  margin: 22px 0 0;
  font-size: 14px;
}

.visit-note i {
  color: var(--brand-orange);
}

.visit-action {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #351653, #7627a8 58%, #b51f78);
}

.visit-action h2,
.visit-action p {
  color: #fff;
}

.visit-action .eyebrow {
  color: #ffd27a;
}

.visit-action__icon {
  position: absolute;
  right: 25px;
  top: 20px;
  color: rgba(255, 255, 255, .13);
  font-size: 85px;
}

.visit-action .button {
  position: relative;
  background: #fff;
  color: var(--brand-purple);
  box-shadow: none;
}

.contact-call-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 18px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.contact-map-section {
  margin: 0 calc(50% - 50vw);
  padding: 85px max(20px, calc((100vw - 1180px) / 2)) 100px;
  background: #f8f4fa;
}

.contact-map-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 35px;
}

.contact-map-heading h2,
.contact-map-heading p {
  margin-bottom: 0;
}

.contact-map {
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  display: block;
  width: 100%;
}

.specialty-profile-hero {
  padding: 90px 0;
  background: linear-gradient(135deg, #fff8fc, #f4edff 60%, #eef1ff);
}

.specialty-profile-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 70px;
  align-items: center;
}

.specialty-profile-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-pink), var(--brand-purple));
  border-radius: 19px;
  box-shadow: 0 13px 30px rgba(181, 31, 120, .2);
  font-size: 30px;
}

.specialty-profile-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.specialty-profile-lead {
  max-width: 700px;
  font-size: 20px;
}

.specialty-profile-image img {
  display: block;
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.specialty-profile-content {
  min-height: 440px;
  padding: 80px 0 95px;
}

.specialty-profile-content .editor-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 30px;
  margin-top: 25px;
  padding: 0;
  list-style: none;
}

.specialty-profile-content .editor-content li {
  position: relative;
  padding: 13px 16px 13px 45px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.specialty-profile-content .editor-content li::before {
  content: "✓";
  position: absolute;
  left: 17px;
  color: var(--brand-pink);
  font-weight: 900;
}

.doctors-section .section-heading > div {
  max-width: none;
}

.doctors-section .section-heading {
  display: block;
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.doctors-section .section-heading .eyebrow {
  margin-bottom: 14px;
}

.doctors-section .section-heading h2 {
  margin-bottom: 18px;
  white-space: nowrap;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.doctors-section .section-heading > p {
  max-width: none;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.65;
  white-space: nowrap;
}

.appointment-banner {
  background: linear-gradient(115deg, #5f2390 0%, #b51f78 55%, #dc2c86 100%);
}

.appointment-banner .eyebrow {
  color: #ffd27a;
}

.appointment-banner .sec-container > div:last-child {
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
}

.appointment-banner .button {
  min-width: 178px;
  padding: 15px 20px;
  white-space: nowrap;
  font-size: 15px;
  text-align: center;
}

.appointment-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.appointment-phone small {
  display: inline;
  color: #f8dff0;
  font-size: 13px;
}

.button--white {
  color: #7627a8;
}

.footer-social a:hover {
  color: #ffb52d;
  border-color: #ffb52d;
}

.site-footer a:hover {
  color: #ffb52d;
}

.primary-menu a[href*="cochlear-implant"] {
  margin: 0 4px;
  padding: 11px 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-orange), #ef6c16);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(245, 155, 10, .24);
}

.primary-menu a[href*="cochlear-implant"]:hover,
.primary-menu .current-menu-item > a[href*="cochlear-implant"] {
  color: #fff;
  background: linear-gradient(135deg, #dc2c86, #7627a8);
}

.cochlear-program-bar {
  display: block;
  color: #fff;
  background: linear-gradient(90deg, #6f269f, #b51f78 52%, #dc2c86);
}

.cochlear-program-bar:hover {
  color: #fff;
}

.cochlear-program-bar > span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.cochlear-program-bar span > span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cochlear-program-bar span > span > i {
  color: #ffd27a;
  font-size: 20px;
}

.cochlear-program-bar small {
  color: #f7deef;
}

.cochlear-program-bar b {
  color: #fff;
  white-space: nowrap;
  font-size: 13px;
}

.footer-program-link {
  margin-bottom: 16px !important;
  padding: 11px 12px;
  border: 1px solid rgba(255, 181, 45, .35);
  border-radius: 8px;
  background: rgba(245, 155, 10, .08);
}

.footer-program-link a {
  color: #ffd27a !important;
  font-weight: 800;
}

.footer-program-link a::before {
  display: none;
}

.footer-cochlear-button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  max-width: 330px;
  margin-top: 22px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 181, 45, .45);
  border-radius: 10px;
  color: #fff !important;
  background: linear-gradient(135deg, rgba(245, 155, 10, .18), rgba(220, 44, 134, .2));
}

.footer-cochlear-button > i:first-child {
  color: #ffd27a;
  font-size: 22px;
}

.footer-cochlear-button span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.footer-cochlear-button strong {
  color: #fff;
  font-size: 14px;
}

.footer-cochlear-button small {
  margin-top: 3px;
  color: #d8c9df;
  font-size: 11px;
}

.footer-cochlear-button > i:last-child {
  color: #ffd27a;
  font-size: 12px;
}

.footer-cochlear-button:hover {
  border-color: #ffd27a;
  transform: translateY(-2px);
}

.cochlear-hero {
  padding: 95px 0;
  background: radial-gradient(circle at 85% 20%, rgba(220, 44, 134, .16), transparent 30%), linear-gradient(135deg, #fff8fc, #f4edff 58%, #eef1ff);
}

.cochlear-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
}

.cochlear-hero h1 {
  max-width: 800px;
  font-size: clamp(3rem, 5.6vw, 5.1rem);
}

.cochlear-hero__lead {
  max-width: 720px;
  font-size: 20px;
}

.cochlear-hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 390px;
  padding: 35px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #371654, #7627a8 55%, #b51f78);
  border-radius: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.cochlear-hero__visual > span {
  display: grid;
  place-items: center;
  width: 145px;
  height: 145px;
  margin-bottom: 28px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  font-size: 68px;
}

.cochlear-hero__visual strong,
.cochlear-hero__visual small {
  display: block;
}

.cochlear-hero__visual strong {
  font-size: 24px;
}

.cochlear-hero__visual small {
  margin-top: 7px;
  color: #eedff5;
}

.cochlear-page {
  overflow: hidden;
}

.cochlear-page__content {
  padding-top: 90px;
  padding-bottom: 100px;
}

.cochlear-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.cochlear-intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.cochlear-intro > p {
  margin: 0;
  font-size: 18px;
}

.cochlear-surgeon-address {
  margin-top: 90px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(73, 29, 101, .11);
}

.cochlear-address-tabs {
  margin-top: 90px;
}

.cochlear-address-tabs > .cochlear-section-heading {
  margin-bottom: 35px;
}

.surgeon-tab-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 940px;
  margin: 0 auto 30px;
}

.surgeon-tab {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 13px 17px;
  border: 2px solid var(--line);
  border-radius: 14px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 10px 30px rgba(73, 29, 101, .07);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.surgeon-tab:hover {
  transform: translateY(-3px);
  border-color: #d8b5e6;
  box-shadow: 0 15px 35px rgba(73, 29, 101, .12);
}

.surgeon-tab.is-active {
  border-color: var(--brand-pink);
  background: linear-gradient(135deg, #fff8fc, #f4edff);
}

.surgeon-tab img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center top;
  border-radius: 11px;
}

.surgeon-tab span {
  display: flex;
  flex-direction: column;
}

.surgeon-tab strong {
  font-size: 17px;
}

.surgeon-tab small {
  margin-top: 4px;
  color: var(--muted);
}

.surgeon-tab > i {
  color: var(--brand-pink);
  transition: transform .2s;
}

.surgeon-tab.is-active > i {
  transform: rotate(180deg);
}

.surgeon-tab-panels .cochlear-surgeon-address {
  margin-top: 0;
}

.surgeon-tab-panel[hidden] {
  display: none;
}

.surgeon-address-header {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 38px;
  align-items: center;
  padding: 38px;
  background: linear-gradient(135deg, #fff8fc, #f4edff 60%, #eef1ff);
}

.surgeon-address-header img {
  display: block;
  width: 210px;
  height: 225px;
  object-fit: cover;
  object-position: center top;
  border: 6px solid #fff;
  border-radius: 18px;
  box-shadow: 0 13px 32px rgba(73, 29, 101, .16);
}

.surgeon-address-header h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

#surgeon-panel-abhishek .surgeon-address-header .eyebrow,
#surgeon-panel-abhishek .surgeon-address-header h2,
#surgeon-panel-abhishek .surgeon-address-role {
  white-space: nowrap;
}

#surgeon-panel-rajesh .surgeon-address-header .eyebrow,
#surgeon-panel-rajesh .surgeon-address-header h2,
#surgeon-panel-rajesh .surgeon-address-role {
  white-space: nowrap;
}

#surgeon-panel-rajesh .surgeon-address-header h2 {
  font-size: clamp(1.4rem, 2.15vw, 2.05rem);
  letter-spacing: -.02em;
}

#surgeon-panel-rajesh .surgeon-address-role {
  font-size: 15px;
}

.surgeon-address-role {
  display: flex;
  align-items: center;
  gap: 8px;
}

.surgeon-address-role span {
  color: var(--brand-orange);
  font-weight: 900;
}

.surgeon-address-header p:last-child {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 17px;
}

.surgeon-address-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 55px 55px 60px;
}

.surgeon-address-body p {
  color: #51445a;
  font-size: 18px;
  line-height: 1.85;
}

.surgeon-address-body .address-greeting {
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
}

.surgeon-address-body h3 {
  margin-top: 38px;
  font-size: 1.65rem;
}

.surgeon-address-body blockquote {
  position: relative;
  margin: 40px 0;
  padding: 28px 32px 28px 70px;
  border: 0;
  border-left: 5px solid var(--brand-orange);
  border-radius: 0 14px 14px 0;
  color: var(--navy);
  background: linear-gradient(135deg, #fff8ea, #fff3f8);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
}

.surgeon-address-body blockquote::before {
  content: "“";
  position: absolute;
  left: 22px;
  top: 5px;
  color: var(--brand-pink);
  font-family: Georgia, serif;
  font-size: 60px;
}

.surgeon-signature {
  display: flex;
  flex-direction: column;
  margin-top: 45px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  line-height: 1.55;
}

.surgeon-signature strong {
  color: var(--navy);
  font-size: 21px;
}

.surgeon-signature span {
  color: var(--muted);
}

.rajesh-cochlear-address {
  margin-top: 55px;
}

.rajesh-cochlear-address .surgeon-address-header {
  background: linear-gradient(135deg, #fff8ed, #fff1f7 55%, #f3eeff);
}

.cochlear-team-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 25px 0 38px;
  padding: 0;
  list-style: none;
}

.cochlear-team-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  background: #fff;
  font-weight: 700;
}

.cochlear-team-list i {
  width: 25px;
  color: var(--brand-pink);
  text-align: center;
}

.cochlear-steps {
  margin: 90px calc(50% - 50vw) 0;
  padding: 85px max(20px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, #fff8fc, #f4edff 60%, #eef1ff);
}

.cochlear-section-heading {
  max-width: 800px;
  margin: 0 auto 45px;
  text-align: center;
}

.cochlear-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cochlear-step-grid article {
  position: relative;
  padding: 31px 27px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 13px 35px rgba(73, 29, 101, .07);
}

.cochlear-step-grid article > span {
  position: absolute;
  right: 22px;
  top: 18px;
  color: #eadcec;
  font-size: 32px;
  font-weight: 900;
}

.cochlear-step-grid article > i {
  margin-bottom: 20px;
  color: var(--brand-pink);
  font-size: 28px;
}

.cochlear-candidates {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 70px;
  align-items: start;
  padding-top: 90px;
}

.cochlear-candidates ul {
  padding-left: 22px;
}

.cochlear-candidates aside {
  padding: 30px;
  color: #fff;
  background: linear-gradient(145deg, #351653, #7627a8);
  border-radius: 17px;
  box-shadow: var(--shadow);
}

.cochlear-candidates aside > i {
  color: #ffd27a;
  font-size: 28px;
}

.cochlear-candidates aside h3,
.cochlear-candidates aside p,
.cochlear-candidates aside a {
  color: #fff;
}

.cochlear-candidates aside a {
  font-weight: 800;
}

.footer-bottom {
  border-color: rgba(255, 255, 255, .13);
}

.footer-callout {
  background: linear-gradient(90deg, #f59b0a, #f27816);
}

.footer-callout__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #28124a;
}

.footer-callout__inner > div,
.footer-callout__inner > a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-callout__inner > div > i {
  font-size: 31px;
}

.footer-callout__inner span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.footer-callout__inner small {
  font-size: 13px;
}

.footer-callout__inner strong {
  font-size: 19px;
}

.footer-callout__inner > a {
  padding: 12px 19px;
  color: #fff;
  background: #28124a;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 800;
}

.footer-grid--complete {
  grid-template-columns: 1.3fr .65fr .85fr 1.1fr;
  gap: 44px;
}

.footer-column h2 {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 12px;
}

.footer-column h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  background: linear-gradient(90deg, #f59b0a, #dc2c86);
  border-radius: 3px;
}

.footer-menu li {
  margin: 10px 0;
}

.footer-menu a::before {
  content: "›";
  margin-right: 8px;
  color: #f59b0a;
  font-weight: 800;
}

.footer-contact .contact-list li {
  margin-bottom: 16px;
}

.footer-bottom b {
  margin: 0 8px;
  color: #f59b0a;
}

.footer-credit {
  margin-left: 7px;
}

.footer-credit a {
  color: #ffd27a;
  font-weight: 800;
}

.appointment-banner + .site-footer,
.appointment-banner {
  margin-bottom: 0;
}

.edit-page-link a {
  border-color: var(--brand-purple);
}

@media (max-width: 980px) {
  .site-navigation {
    border-top: 3px solid var(--brand-pink);
  }

  .primary-menu a[href*="cochlear-implant"] {
    margin: 5px 0;
  }

  .cochlear-program-bar small {
    display: none;
  }

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

  .home-hero {
    min-height: clamp(570px, 72svh, 680px);
  }

  .page-hero {
    min-height: 340px;
    background-position: 58% center;
  }

  .doctor-profile-hero,
  .specialty-profile-hero,
  .cochlear-hero {
    min-height: auto;
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .hero-slide {
    background-position: 58% center;
  }

  .hero-dots {
    right: 25px;
    bottom: 35px;
  }

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

  .footer-grid--complete .footer-about {
    grid-column: 1 / -1;
  }

  .doctor-profile-grid {
    grid-template-columns: minmax(260px, 380px) 1fr;
    gap: 40px;
  }

  .doctor-profile-content__inner {
    grid-template-columns: 1fr 290px;
    gap: 40px;
  }

  .doctors-section .doctor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-story,
  .about-strengths {
    gap: 42px;
  }

  .service-intro,
  .diagnostic-section {
    gap: 42px;
  }

  .contact-intro {
    gap: 42px;
  }

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

  .about-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card-grid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .doctors-section .section-heading h2 {
    white-space: normal;
  }

  .doctors-section .section-heading {
    margin-bottom: 36px;
  }

  .doctors-section .section-heading > p {
    font-size: 16px;
    white-space: normal;
  }

  .footer-callout__inner {
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid--complete {
    grid-template-columns: 1fr;
  }

  .footer-grid--complete .footer-about {
    grid-column: auto;
  }

  .doctor-profile-grid {
    grid-template-columns: 1fr;
  }

  .doctor-profile-content__inner,
  .doctor-profile-content .editor-content ul {
    grid-template-columns: 1fr;
  }

  .doctor-profile-aside {
    position: static;
  }

  .doctor-profile-photo img {
    height: 430px;
  }

  .doctors-section .doctor-grid {
    grid-template-columns: 1fr;
  }

  .doctors-section .doctor-grid img,
  .doctors-section .doctor-photo {
    height: 350px;
  }

  .about-page__content {
    padding-top: 65px;
    padding-bottom: 75px;
  }

  .about-page-hero .page-hero__lead {
    white-space: normal;
  }

  .services-overview .section-heading {
    margin-bottom: 36px;
  }

  .services-overview .section-heading h2,
  .services-overview .section-heading > p {
    white-space: normal;
  }

  .services-overview .section-heading > p {
    font-size: 16px;
  }

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

  .about-story__image img {
    height: 390px;
  }

  .about-story__image::before {
    right: 12px;
  }

  .about-values {
    margin-top: 70px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .about-video-section {
    margin-top: 70px;
  }

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

  .value-grid,
  .strength-list {
    grid-template-columns: 1fr;
  }

  .about-strengths {
    padding-top: 70px;
  }

  .service-page-hero .page-hero__lead {
    white-space: normal;
  }

  .appointment-banner .sec-container > div:last-child {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .appointment-banner .button {
    min-width: 148px;
    padding: 12px 13px;
    font-size: 13px;
  }

  .appointment-phone {
    gap: 4px;
    font-size: 15px;
  }

  .appointment-phone small {
    font-size: 11px;
  }

  .service-page__content {
    padding-top: 65px;
    padding-bottom: 75px;
  }

  .service-intro,
  .service-detail-grid,
  .diagnostic-section,
  .diagnostic-list {
    grid-template-columns: 1fr;
  }

  .service-intro {
    gap: 24px;
  }

  .service-detail-card img {
    height: 230px;
  }

  .service-detail-card ul {
    grid-template-columns: 1fr;
  }

  .diagnostic-section {
    margin-top: 70px;
    margin-bottom: -75px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .contact-page-hero .page-hero__lead {
    white-space: normal;
  }

  .contact-page__content {
    padding-top: 65px;
  }

  .contact-intro,
  .contact-card-grid,
  .visit-section,
  .contact-map-heading {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    gap: 24px;
  }

  .contact-card-grid article:last-child {
    grid-column: auto;
  }

  .visit-hours,
  .visit-action {
    padding: 30px 24px;
  }

  .hours-list > div {
    flex-direction: column;
    gap: 2px;
  }

  .contact-call-link {
    display: flex;
    margin: 17px 0 0;
  }

  .contact-map-section {
    padding-top: 70px;
    padding-bottom: 75px;
  }

  .specialty-profile-grid {
    grid-template-columns: 1fr;
  }

  .specialty-profile-content .editor-content ul {
    grid-template-columns: 1fr;
  }

  .cochlear-program-bar > span {
    padding: 10px 0;
  }

  .appointment-modal {
    padding: 10px;
  }

  .appointment-modal__dialog {
    max-height: calc(100svh - 20px);
    padding: 27px 20px;
    border-radius: 15px;
  }

  .appointment-modal__heading {
    grid-template-columns: 45px 1fr;
    padding-right: 20px;
  }

  .appointment-modal__heading > span {
    width: 45px;
    height: 45px;
    font-size: 19px;
  }

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

  .appointment-form-message {
    grid-column: auto;
  }

  .appointment-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .appointment-form-footer .button {
    width: 100%;
  }

  .appointment-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cochlear-program-bar b {
    display: none;
  }

  .cochlear-program-bar span > span {
    line-height: 1.25;
  }

  .cochlear-hero__grid,
  .cochlear-intro,
  .cochlear-step-grid,
  .cochlear-candidates {
    grid-template-columns: 1fr;
  }

  .cochlear-hero {
    padding: 70px 0;
  }

  .cochlear-hero__visual {
    min-height: 320px;
  }

  .cochlear-page__content {
    padding-top: 65px;
    padding-bottom: 75px;
  }

  .cochlear-intro {
    gap: 25px;
  }

  .cochlear-surgeon-address {
    margin-top: 65px;
  }

  .cochlear-address-tabs {
    margin-top: 65px;
  }

  .surgeon-tab-list {
    grid-template-columns: 1fr;
  }

  .surgeon-address-header {
    grid-template-columns: 1fr;
    padding: 28px 23px;
  }

  #surgeon-panel-abhishek .surgeon-address-header .eyebrow,
  #surgeon-panel-abhishek .surgeon-address-header h2,
  #surgeon-panel-abhishek .surgeon-address-role {
    white-space: normal;
  }

  #surgeon-panel-rajesh .surgeon-address-header .eyebrow,
  #surgeon-panel-rajesh .surgeon-address-header h2,
  #surgeon-panel-rajesh .surgeon-address-role {
    white-space: normal;
  }

  .surgeon-address-role {
    display: block;
  }

  .surgeon-address-role span {
    margin: 0 5px;
  }

  .surgeon-address-header img {
    width: 180px;
    height: 195px;
  }

  .surgeon-address-body {
    padding: 38px 23px 45px;
  }

  .surgeon-address-body p {
    font-size: 16px;
  }

  .surgeon-address-body blockquote {
    padding: 24px 20px 24px 50px;
    font-size: 18px;
  }

  .surgeon-address-body blockquote::before {
    left: 14px;
  }

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

  .cochlear-steps {
    margin-top: 70px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .cochlear-candidates {
    gap: 35px;
    padding-top: 70px;
  }

  .home-hero {
    min-height: clamp(560px, 78svh, 680px);
  }

  .page-hero {
    min-height: 300px;
    padding-top: 52px;
    padding-bottom: 52px;
    background-position: 62% center;
  }

  .page-hero > .sec-container {
    width: min(100% - 28px, 1180px);
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
    line-height: 1.08;
  }

  .page-hero .page-hero__lead {
    max-width: 100%;
    font-size: 16px;
    white-space: normal;
  }

  .page-hero .eyebrow {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.3;
  }

  .doctor-profile-hero,
  .specialty-profile-hero,
  .cochlear-hero {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 65px;
  }

  .home-hero__content {
    width: min(100% - 28px, 1180px);
    padding-top: 58px;
    padding-bottom: 85px;
  }

  .home-hero__content h1 {
    max-width: 620px;
    font-size: clamp(2.25rem, 10.5vw, 3.5rem);
    line-height: 1.08;
  }

  .home-hero__content .hero-lead {
    max-width: 570px;
    font-size: 16px;
    line-height: 1.55;
  }

  .home-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 310px;
  }

  .home-hero .hero-actions .button {
    width: 100%;
  }

  .hero-slide {
    background-position: 62% center;
  }

  .hero-dots {
    right: auto;
    left: 14px;
    bottom: 24px;
  }

  .trust-row {
    margin-top: 28px;
  }
}

@media (max-width: 420px) {
  .home-hero {
    min-height: 620px;
  }

  .home-hero__content h1 {
    font-size: clamp(2.05rem, 10vw, 2.7rem);
  }

  .home-hero__content .eyebrow {
    font-size: 11px;
    letter-spacing: .11em;
  }

  .hero-slide {
    background-position: 66% center;
  }
}

@media (min-width: 1600px) {
  .home-hero {
    min-height: 760px;
  }

  .home-hero__content {
    padding-top: 120px;
    padding-bottom: 135px;
  }
}
