:root {
  --ink: #123535;
  --petrol: #0e4546;
  --petrol-deep: #082f30;
  --teal: #0d9f9b;
  --aqua: #5bc7c2;
  --mist: #e8f2ef;
  --ivory: #f7f4ed;
  --paper: #fffdfa;
  --line: rgba(14, 69, 70, 0.14);
  --muted: #5c6f6d;
  --font-display: "Cormorant Garamond";
  --font-sans: "Manrope";
}

/* Inner pages */
.inner-page {
  overflow: hidden;
  background: var(--paper);
}

.inner-header {
  width: min(1420px, calc(100% - 48px));
}

.inner-header .desktop-nav {
  gap: 22px;
}

.page-hero {
  position: relative;
  min-height: 610px;
  padding: 200px max(7vw, 48px) 110px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 82% 28%, rgba(91, 199, 194, 0.19), transparent 24%),
    radial-gradient(circle at 8% 90%, rgba(247, 217, 155, 0.1), transparent 26%),
    linear-gradient(135deg, #062c2d 0%, #0b4142 62%, #0e5554 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -9vw;
  bottom: -22vw;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.page-hero > div:last-child {
  position: relative;
  z-index: 2;
  width: min(960px, 80vw);
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0 auto;
  font-family: var(--font-display), serif;
  font-size: clamp(2.625rem, 4.4vw, 4.25rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.page-hero > div:last-child > p:last-child {
  width: min(690px, 100%);
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.06rem;
  line-height: 1.75;
}

.page-hero-orbit {
  position: absolute;
  border: 1px solid rgba(155, 224, 219, 0.18);
  border-radius: 50%;
}

.page-orbit-one {
  top: 155px;
  left: -150px;
  width: 430px;
  height: 430px;
}

.page-orbit-two {
  top: 225px;
  right: 8%;
  width: 110px;
  height: 110px;
  box-shadow: 0 0 0 42px rgba(155, 224, 219, 0.025);
}

.inner-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 90px max(7vw, 40px);
  color: white;
  background: var(--petrol);
}

.inner-cta > div {
  max-width: 780px;
}

.inner-cta h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.profile-page-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) 1.12fr;
  min-height: 900px;
}

.profile-page-image {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  background: var(--mist);
}

.profile-page-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-page-image > div {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 25px;
  color: white;
  background: rgba(8, 47, 48, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.profile-page-image span,
.profile-page-image strong {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-page-copy {
  padding: 110px max(7vw, 70px);
}

.profile-page-copy h2,
.clinic-page-intro h2 {
  max-width: 760px;
  margin: 0 0 36px;
  font-family: var(--font-display), serif;
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.profile-page-copy > p:not(.eyebrow),
.clinic-page-intro > p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.profile-page-copy blockquote {
  margin: 46px 0;
  padding: 28px 0 28px 28px;
  color: var(--petrol);
  border-left: 2px solid var(--teal);
  font-family: var(--font-display), serif;
  font-size: 1.75rem;
  line-height: 1.35;
}

.personal-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  color: white;
  background: var(--petrol-deep);
}

.personal-side > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px max(7vw, 60px);
}

.personal-side h2 {
  margin: 0 0 28px;
  font-family: var(--font-display), serif;
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
}

.personal-side p:last-child {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.personal-side img {
  width: 100%;
  min-height: 640px;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.values-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.values-page-grid article {
  min-height: 430px;
  padding: 80px max(7vw, 60px);
  background: var(--paper);
}

.values-page-grid article:nth-child(2),
.values-page-grid article:nth-child(3) {
  background: var(--ivory);
}

.values-page-grid span,
.specialties-page-grid > article > span {
  display: block;
  margin-bottom: 60px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.values-page-grid h2 {
  margin: 0 0 20px;
  font-family: var(--font-display), serif;
  font-size: clamp(1.875rem, 2.6vw, 2.625rem);
  font-weight: 400;
  line-height: 1.05;
}

.values-page-grid p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.75;
}

.clinic-page-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
  padding: 120px max(7vw, 40px) 80px;
}

.clinic-page-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 16px 110px;
}

.clinic-page-gallery figure {
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}

.clinic-page-gallery .clinic-wide {
  grid-column: 1 / -1;
  min-height: 700px;
  border-radius: 120px 24px 24px;
}

.clinic-page-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.clinic-page-gallery figure:hover img {
  transform: scale(1.025);
}

.specialties-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.specialties-page-grid article {
  min-height: 540px;
  padding: 76px max(6vw, 58px);
  background: var(--paper);
}

.specialties-page-grid article:nth-child(4n + 2),
.specialties-page-grid article:nth-child(4n + 3) {
  background: var(--ivory);
}

.specialties-page-grid h2 {
  max-width: 620px;
  margin: 0 0 18px;
  font-family: var(--font-display), serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.specialties-page-grid p {
  max-width: 600px;
  color: var(--muted);
  line-height: 1.72;
}

.specialties-page-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 42px;
  padding: 0;
  list-style: none;
}

.specialties-page-grid li {
  padding: 10px 14px;
  color: var(--petrol);
  background: var(--mist);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.specialties-page-grid article > a,
.archive-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--petrol);
  font-size: 0.78rem;
  font-weight: 800;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 20px;
  padding: 110px max(6vw, 40px);
}

.team-grid article > div {
  height: 510px;
  margin-bottom: 26px;
  overflow: hidden;
  background: var(--mist);
  border-radius: 18px 70px 18px 18px;
}

.team-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 550ms ease;
}

.team-grid article:hover img {
  transform: scale(1.025);
}

.team-grid span,
.videos-grid span {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-grid h2 {
  margin: 9px 0 4px;
  font-family: var(--font-display), serif;
  font-size: 1.875rem;
  font-weight: 400;
}

.team-grid p {
  margin: 0;
  color: var(--muted);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 100px max(6vw, 40px);
  background: var(--ivory);
}

.videos-grid article {
  overflow: hidden;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(8, 47, 48, 0.08);
}

.videos-grid video {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  background: var(--petrol-deep);
}

.videos-grid article > div {
  padding: 28px 30px 34px;
}

.videos-grid h2 {
  margin: 10px 0 0;
  font-family: var(--font-display), serif;
  font-size: 1.75rem;
  font-weight: 400;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 690px;
}

.contact-page-card,
.contact-page-details {
  padding: 110px max(7vw, 60px);
}

.contact-page-card {
  background: var(--ivory);
}

.contact-page-card > span,
.contact-page-details span {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-page-card h2 {
  margin: 20px 0;
  font-family: var(--font-display), serif;
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  font-weight: 400;
}

.contact-page-card p {
  max-width: 520px;
  margin-bottom: 38px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-page-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
}

.contact-page-details > div {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.contact-page-details strong,
.contact-page-details a:not(.text-link) {
  display: block;
  margin-top: 9px;
  font-size: 1.12rem;
}

.contact-page-details p {
  margin: 7px 0 0;
  color: var(--muted);
}

/* Blog archive */
.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  gap: 0;
  margin: 0;
  background: var(--ivory);
}

.blog-featured-image {
  min-height: 680px;
  overflow: hidden;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px max(7vw, 55px);
}

.post-category {
  display: block;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-featured h2 {
  margin: 0 0 22px;
  font-family: var(--font-display), serif;
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.blog-featured p {
  color: var(--muted);
  line-height: 1.8;
}

.post-meta {
  display: flex;
  gap: 18px;
  margin: 20px 0 32px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-archive {
  padding: 120px max(6vw, 40px);
}

.archive-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}

.archive-heading h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

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

.archive-card {
  min-width: 0;
}

.archive-image {
  display: block;
  height: 320px;
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 18px 54px 18px 18px;
}

.archive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.archive-card:hover .archive-image img {
  transform: scale(1.035);
}

.archive-card .post-meta {
  justify-content: space-between;
  margin: 0 0 16px;
}

.archive-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display), serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.1;
}

.archive-card p {
  color: var(--muted);
  line-height: 1.65;
}

/* Individual posts */
.post-page {
  background: var(--paper);
}

.post-hero {
  position: relative;
  padding: 190px max(7vw, 42px) 220px;
  color: white;
  background:
    radial-gradient(circle at 86% 25%, rgba(91, 199, 194, 0.18), transparent 24%),
    var(--petrol-deep);
}

.post-hero > div {
  width: min(1050px, 100%);
  margin: 0 auto;
}

.post-back {
  display: inline-block;
  margin-bottom: 60px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 700;
}

.post-hero h1 {
  max-width: 1000px;
  margin: 0 0 30px;
  font-family: var(--font-display), serif;
  font-size: clamp(3.6rem, 7vw, 7.2rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.post-hero > div > p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.75;
}

.post-hero .post-meta {
  color: #9be0db;
}

.post-cover {
  position: relative;
  z-index: 2;
  width: min(1260px, calc(100% - 48px));
  height: min(68vw, 720px);
  margin: -135px auto 0;
  overflow: hidden;
  border-radius: 28px 110px 28px 28px;
  box-shadow: 0 38px 90px rgba(8, 47, 48, 0.18);
}

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

.post-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 760px);
  justify-content: center;
  gap: 95px;
  padding: 110px max(6vw, 40px) 130px;
}

.post-layout aside {
  position: sticky;
  top: 30px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: var(--ivory);
  border-radius: 18px;
}

.post-layout aside > strong {
  margin-bottom: 8px;
  font-family: var(--font-display), serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.post-layout aside > a {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.post-layout aside > div {
  margin: 14px -28px -28px;
  padding: 25px 28px;
  color: white;
  background: var(--petrol);
  border-radius: 0 0 18px 18px;
}

.post-layout aside > div span {
  display: block;
  margin-bottom: 9px;
  color: #9be0db;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.post-layout aside > div a {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

.post-content section {
  scroll-margin-top: 40px;
  padding: 0 0 58px;
}

.post-content section > span {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.post-content h2 {
  margin: 14px 0 24px;
  font-family: var(--font-display), serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.04;
}

.post-content p,
.post-content li {
  color: #415b59;
  font-size: 1.02rem;
  line-height: 1.88;
}

.post-content ul {
  margin: 26px 0 0;
  padding: 26px 30px 26px 50px;
  background: var(--mist);
  border-radius: 14px;
}

.post-content li + li {
  margin-top: 10px;
}

.medical-disclaimer {
  padding: 26px 30px;
  color: white;
  background: var(--petrol);
  border-radius: 18px;
}

.medical-disclaimer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.related-posts {
  padding: 100px max(6vw, 40px) 120px;
  background: var(--ivory);
}

.related-posts > h2 {
  margin: 0 0 48px;
  font-family: var(--font-display), serif;
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  font-weight: 400;
}

.related-posts > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.related-posts article img {
  width: 100%;
  height: 280px;
  margin-bottom: 22px;
  object-fit: cover;
  border-radius: 16px 52px 16px 16px;
}

.related-posts article > span {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-posts h3 {
  margin: 10px 0 0;
  font-family: var(--font-display), serif;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.1;
}

/* Native Gutenberg article */
.gutenberg-shell {
  padding: 90px max(5vw, 24px);
  background: var(--ivory);
}

.gutenberg-content {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 82px clamp(24px, 6vw, 92px);
  background: #fff;
  border: 1px solid rgba(14, 69, 70, 0.08);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(8, 47, 48, 0.08);
}

.gutenberg-content .entry-content {
  color: #222;
  font-size: 16px;
  line-height: 1.7;
}

.gutenberg-content .entry-content h2,
.gutenberg-content .entry-content h3,
.gutenberg-content .entry-content h4 {
  line-height: 1.3;
}

.gutenberg-content .entry-content img {
  height: auto;
}

.gutenberg-content .aligncenter {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.gutenberg-content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.gutenberg-content .is-content-justification-center {
  justify-content: center;
}

.gutenberg-content .wp-block-button__link {
  display: inline-block;
  padding: 0.65em 1.35em;
  border-radius: 999px;
}

.gutenberg-content .has-text-align-center {
  text-align: center;
}

.gutenberg-content .has-text-align-left {
  text-align: left;
}

.gutenberg-content .has-small-font-size {
  font-size: 0.8125em;
}

.gutenberg-content figure {
  max-width: 100%;
}

.gutenberg-content .wp-block-image img {
  max-width: 100%;
}

.gutenberg-unavailable {
  padding: 55px 0;
  text-align: center;
}

@media (max-width: 1120px) {
  .inner-header .desktop-nav {
    display: none;
  }

  .profile-page-section,
  .personal-side,
  .blog-featured,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .profile-page-image {
    min-height: 760px;
  }

  .personal-side img {
    max-height: 760px;
  }

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

@media (max-width: 760px) {
  .page-hero {
    min-height: 520px;
    padding: 165px 20px 80px;
  }

  .page-hero > div:last-child {
    width: 100%;
  }

  .page-hero h1,
  .post-hero h1 {
    font-size: 2.35rem;
  }

  .inner-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 70px 20px;
  }

  .inner-cta h2 {
    font-size: 2rem;
  }

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

  .profile-page-image {
    min-height: 620px;
  }

  .profile-page-image > div {
    flex-direction: column;
  }

  .profile-page-copy,
  .personal-side > div,
  .contact-page-card,
  .contact-page-details {
    padding: 75px 20px;
  }

  .profile-page-copy h2,
  .clinic-page-intro h2,
  .personal-side h2 {
    font-size: 2rem;
  }

  .personal-side {
    grid-template-columns: 1fr;
  }

  .personal-side img {
    min-height: 520px;
  }

  .values-page-grid,
  .specialties-page-grid,
  .videos-grid,
  .archive-grid,
  .team-grid,
  .related-posts > div {
    grid-template-columns: 1fr;
  }

  .values-page-grid article,
  .specialties-page-grid article {
    min-height: 0;
    padding: 60px 20px;
  }

  .values-page-grid span,
  .specialties-page-grid > article > span {
    margin-bottom: 38px;
  }

  .clinic-page-intro,
  .archive-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 80px 20px 50px;
  }

  .clinic-page-gallery {
    grid-template-columns: 1fr;
    padding: 0 12px 80px;
  }

  .clinic-page-gallery .clinic-wide {
    grid-column: auto;
    min-height: 460px;
    border-radius: 24px 70px 24px 24px;
  }

  .clinic-page-gallery figure {
    min-height: 340px;
  }

  .team-grid,
  .videos-grid,
  .blog-archive,
  .related-posts {
    padding: 75px 20px;
  }

  .team-grid article > div {
    height: 480px;
  }

  .videos-grid video {
    height: 360px;
  }

  .blog-featured-image {
    min-height: 430px;
  }

  .blog-featured > div {
    padding: 65px 20px;
  }

  .blog-featured h2,
  .archive-heading h2,
  .related-posts > h2 {
    font-size: 2rem;
  }

  .archive-heading {
    margin-bottom: 45px;
  }

  .archive-image {
    height: 280px;
  }

  .post-hero {
    padding: 160px 20px 160px;
  }

  .post-back {
    margin-bottom: 45px;
  }

  .post-cover {
    width: calc(100% - 24px);
    height: 62vw;
    min-height: 340px;
    margin-top: -95px;
    border-radius: 18px 70px 18px 18px;
  }

  .post-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 80px 20px 95px;
  }

  .post-layout aside {
    position: static;
  }

  .gutenberg-shell {
    padding: 38px 12px;
  }

  .gutenberg-content {
    padding: 45px 20px;
    border-radius: 14px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans), sans-serif;
  font-size: 16px;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 22px;
  left: 50%;
  width: min(1440px, calc(100% - 40px));
  min-height: 74px;
  padding: 10px 12px 10px 22px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  background: rgba(255, 253, 250, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(5, 37, 38, 0.13);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 205px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.82rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width 220ms ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.mobile-menu {
  position: relative;
  display: none;
  justify-self: end;
}

.mobile-menu summary {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: white;
  background: var(--petrol);
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
  box-shadow: 0 10px 24px rgba(8, 47, 48, 0.2);
}

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

.mobile-menu-icon {
  display: grid;
  gap: 4px;
  width: 20px;
}

.mobile-menu-icon i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu[open] .mobile-menu-icon i:first-child {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu[open] .mobile-menu-icon i:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] .mobile-menu-icon i:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(320px, calc(100vw - 24px));
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 253, 250, 0.98);
  border: 1px solid rgba(14, 69, 70, 0.12);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(8, 47, 48, 0.2);
  backdrop-filter: blur(18px);
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 11px;
  font-size: 0.96rem;
  font-weight: 700;
}

.mobile-menu nav a + a {
  border-top: 1px solid rgba(14, 69, 70, 0.08);
}

.mobile-menu nav a:hover {
  color: var(--teal);
  background: var(--mist);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button span {
  font-size: 1.1rem;
}

.button-header {
  justify-self: end;
  min-height: 48px;
  color: white;
  background: var(--petrol);
  box-shadow: 0 10px 22px rgba(8, 47, 48, 0.18);
}

.button-primary {
  color: var(--petrol-deep);
  background: #f7d99b;
  box-shadow: 0 14px 35px rgba(5, 30, 30, 0.24);
}

.hero {
  position: relative;
  min-height: 890px;
  padding: 180px max(5vw, 32px) 160px;
  overflow: hidden;
  background: var(--petrol-deep);
  color: white;
}

.hero-background,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background {
  opacity: 0.9;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 37, 38, 0.97) 0%, rgba(5, 37, 38, 0.83) 35%, rgba(5, 37, 38, 0.24) 67%, rgba(5, 37, 38, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 37, 38, 0.32), transparent 42%);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(670px, 49vw);
  margin-left: max(2vw, 10px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #9be0db;
}

.hero h1 {
  margin-bottom: 24px;
  font-family: var(--font-display), serif;
  font-size: clamp(2.75rem, 4.6vw, 4.75rem);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: #b7e7df;
  font-weight: 500;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  font-size: 0.77rem;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.text-link-light {
  color: rgba(255, 255, 255, 0.82);
}

.medical-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 20px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.medical-credentials span + span::before {
  content: "•";
  margin-right: 20px;
  color: var(--aqua);
}

.hero-doctor {
  position: absolute;
  z-index: 3;
  right: 5.7vw;
  bottom: 74px;
  width: min(37vw, 520px);
}

.portrait-frame {
  position: relative;
  aspect-ratio: 0.78;
  overflow: hidden;
  border-radius: 260px 260px 30px 30px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(238, 242, 240, 0.2);
  box-shadow: 0 35px 100px rgba(3, 28, 29, 0.3);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(6, 45, 46, 0.13);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
}

.floating-note {
  position: absolute;
  left: -86px;
  bottom: 74px;
  display: flex;
  align-items: center;
  gap: 13px;
  width: 242px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 15px;
  background: rgba(255, 253, 250, 0.92);
  color: var(--petrol-deep);
  box-shadow: 0 18px 50px rgba(7, 39, 39, 0.25);
  backdrop-filter: blur(14px);
  font-size: 0.73rem;
  font-weight: 700;
}

.floating-note small {
  display: block;
  margin-bottom: 3px;
  color: var(--teal);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note-icon {
  display: grid;
  flex: 0 0 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--teal);
}

.hero-rail {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  padding-left: max(6vw, 42px);
  background: rgba(6, 45, 46, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
}

.hero-rail div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 86px;
  padding: 0 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-rail strong {
  color: var(--aqua);
  font-family: var(--font-display), serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.hero-rail span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.intent-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 42px;
  padding: 26px max(6vw, 32px);
  background: #e6f1ee;
  border-bottom: 1px solid var(--line);
}

.intent-strip p {
  margin: 0;
  color: var(--petrol);
  font-family: var(--font-display), serif;
  font-size: 1.15rem;
}

.intent-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intent-marquee span {
  padding: 9px 14px;
  border: 1px solid rgba(14, 69, 70, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: #42615f;
  font-size: 0.68rem;
  font-weight: 700;
}

.section {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-family: var(--font-display), serif;
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.035em;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

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

.specialty-card {
  min-height: 220px;
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, white, #f2f7f5);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.specialty-card:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 25px 60px rgba(13, 69, 70, 0.11);
}

.card-number {
  align-self: start;
  color: var(--teal);
  font-family: var(--font-display), serif;
  font-size: 1.2rem;
}

.specialty-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-display), serif;
  font-size: 1.75rem;
  font-weight: 600;
}

.specialty-card p {
  max-width: 400px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.specialty-card > a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--petrol);
}

.button-dark {
  color: white;
  background: var(--petrol);
  box-shadow: 0 12px 28px rgba(8, 47, 48, 0.14);
}

.button-light {
  color: var(--petrol-deep);
  background: white;
}

.button-outline {
  margin-top: 38px;
  border: 1px solid var(--line);
  background: white;
  color: var(--petrol);
}

.reasons-section {
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(0, 1.13fr);
  min-height: 820px;
  background: var(--ivory);
}

.reasons-visual {
  position: relative;
  min-height: 760px;
  padding: 70px 0 70px max(5vw, 32px);
}

.reasons-image {
  width: 84%;
  height: 100%;
  max-height: 720px;
  overflow: hidden;
  border-radius: 28px 220px 28px 28px;
  background: #d5dadb;
}

.reasons-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.reasons-seal {
  position: absolute;
  right: 4%;
  bottom: 18%;
  display: grid;
  width: 180px;
  height: 180px;
  place-content: center;
  padding: 25px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  text-align: center;
  box-shadow: 0 25px 70px rgba(13, 159, 155, 0.28);
}

.reasons-seal strong {
  font-family: var(--font-display), serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.reasons-seal span {
  margin-top: 6px;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reasons-copy {
  align-self: center;
  padding: 90px max(8vw, 70px) 90px 7vw;
}

.reasons-copy h2,
.doctor-copy h2,
.clinic-copy h2,
.telemedicine-section h2,
.faq-heading h2,
.contact-intro h2 {
  margin-bottom: 26px;
  font-family: var(--font-display), serif;
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.035em;
}

.reasons-intro {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.8;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 34px;
  border-top: 1px solid var(--line);
}

.reason-list > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  min-height: 86px;
  padding: 18px 20px 18px 0;
  border-bottom: 1px solid var(--line);
}

.reason-list > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.reason-list > div:nth-child(even) {
  padding-left: 20px;
}

.reason-list span {
  color: var(--teal);
  font-family: var(--font-display), serif;
  font-size: 1.05rem;
}

.reason-list p {
  margin-bottom: 0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
}

.doctor-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 900px;
  background: var(--petrol-deep);
  color: white;
}

.doctor-copy {
  align-self: center;
  padding: 110px 8vw;
}

.doctor-copy h2 {
  max-width: 660px;
}

.doctor-lead {
  max-width: 660px;
  color: white !important;
  font-family: var(--font-display), serif;
  font-size: 1.55rem !important;
  line-height: 1.35 !important;
}

.doctor-copy > p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  line-height: 1.82;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.values-grid > div {
  padding: 23px 30px 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.values-grid > div + div {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.values-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--aqua);
  font-family: var(--font-display), serif;
}

.values-grid strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display), serif;
  font-size: 1.25rem;
}

.values-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  line-height: 1.6;
}

.doctor-portrait {
  position: relative;
  min-height: 860px;
  overflow: hidden;
}

.doctor-portrait::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 47, 48, 0.3), transparent 40%);
}

.doctor-portrait > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.doctor-name-card {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 17px;
  background: rgba(255, 253, 250, 0.9);
  color: var(--petrol-deep);
  backdrop-filter: blur(15px);
}

.doctor-name-card > span {
  color: var(--teal);
  font-family: var(--font-display), serif;
  font-size: 2rem;
  font-style: italic;
}

.doctor-name-card strong,
.doctor-name-card small {
  display: block;
}

.doctor-name-card strong {
  font-family: var(--font-display), serif;
  font-size: 1.55rem;
}

.doctor-name-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.journey-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 130px 0;
}

.journey-heading {
  position: sticky;
  top: 40px;
  align-self: start;
}

.journey-heading h2 {
  margin-bottom: 0;
  font-family: var(--font-display), serif;
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.journey-steps {
  border-top: 1px solid var(--line);
}

.journey-steps article {
  display: grid;
  grid-template-columns: 70px 0.6fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}

.journey-steps span {
  color: var(--teal);
  font-family: var(--font-display), serif;
  font-size: 1.3rem;
}

.journey-steps h3 {
  margin-bottom: 0;
  font-family: var(--font-display), serif;
  font-size: 1.625rem;
  font-weight: 600;
}

.journey-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.clinic-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 6vw;
  align-items: center;
  padding: 110px max(6vw, 40px);
  background: var(--mist);
}

.clinic-copy h2 {
  max-width: 570px;
}

.clinic-copy > p {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

.clinic-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 250px);
  gap: 12px;
}

.clinic-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
}

.clinic-gallery .gallery-tall {
  grid-row: 1 / 3;
  border-radius: 28px 120px 28px 28px;
}

.clinic-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.clinic-gallery figure:hover img {
  transform: scale(1.035);
}

.telemedicine-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 560px;
  background: var(--petrol);
  color: white;
}

.telemedicine-section > div:first-child {
  align-self: center;
  padding: 90px 7vw;
}

.telemedicine-section h2 {
  max-width: 630px;
}

.telemedicine-section p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.87rem;
  line-height: 1.8;
}

.telemedicine-art {
  position: relative;
  display: grid;
  overflow: hidden;
  place-content: center;
  min-height: 560px;
  background:
    radial-gradient(circle at center, rgba(91, 199, 194, 0.28), transparent 37%),
    linear-gradient(135deg, #0f5b5c, #062f30);
  text-align: center;
}

.telemedicine-art::before,
.telemedicine-art::after,
.tele-line {
  content: "";
  position: absolute;
  border: 1px solid rgba(150, 225, 219, 0.28);
  border-radius: 50%;
}

.telemedicine-art::before {
  width: 420px;
  height: 420px;
  top: 70px;
  left: calc(50% - 210px);
}

.telemedicine-art::after {
  width: 300px;
  height: 300px;
  top: 130px;
  left: calc(50% - 150px);
}

.tele-line-one {
  width: 520px;
  height: 520px;
  top: 20px;
  left: calc(50% - 260px);
}

.tele-line-two {
  width: 220px;
  height: 220px;
  top: 170px;
  left: calc(50% - 110px);
}

.telemedicine-art span,
.telemedicine-art strong {
  position: relative;
  z-index: 2;
  display: block;
}

.telemedicine-art span {
  color: #9ee4df;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.telemedicine-art strong {
  font-family: var(--font-display), serif;
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 500;
  line-height: 0.9;
}

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

.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}

.article-image {
  display: block;
  height: 245px;
  overflow: hidden;
  background: var(--mist);
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.article-card:hover .article-image img {
  transform: scale(1.04);
}

.article-card > div {
  padding: 25px;
}

.article-card > div > span {
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-card h3 {
  min-height: 74px;
  margin: 12px 0 20px;
  font-family: var(--font-display), serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.08;
}

.article-card > div > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 800;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
  padding: 120px max(7vw, 40px);
  background: var(--ivory);
}

.faq-heading {
  align-self: start;
}

.faq-heading p:not(.eyebrow) {
  max-width: 400px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display), serif;
  font-size: 1.45rem;
  font-weight: 600;
}

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

.faq-list summary span {
  display: grid;
  flex: 0 0 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  font-family: var(--font-sans), sans-serif;
  font-size: 1.1rem;
  transition: transform 220ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  padding: 0 70px 25px 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.75;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8vw;
  padding: 120px max(7vw, 40px);
  background: var(--petrol-deep);
  color: white;
}

.contact-intro h2 {
  max-width: 760px;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.8;
}

.contact-details {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details > div {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details span {
  color: #94d8d2;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  line-height: 1.7;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.1fr;
  gap: 70px;
  align-items: end;
  padding: 65px max(7vw, 40px);
  background: #e5efec;
}

.site-footer img {
  width: 210px;
}

.site-footer > div:first-child p {
  max-width: 320px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.65;
}

.footer-credentials {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.66rem;
}

.footer-credentials strong {
  margin-bottom: 5px;
  color: var(--petrol);
  font-family: var(--font-display), serif;
  font-size: 1.1rem;
}

.footer-note {
  color: var(--muted);
  font-size: 0.61rem;
  line-height: 1.6;
}

.footer-note p {
  max-width: 470px;
  margin-bottom: 14px;
}

.whatsapp-float {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: var(--petrol);
  color: white;
  box-shadow: 0 14px 40px rgba(6, 45, 46, 0.25);
  font-size: 0.72rem;
  font-weight: 700;
}

.whatsapp-float span {
  color: #64d68a;
}

/* WordPress and Elementor integration */
.site,
.front-page-content,
.inner-page {
  overflow: clip;
}

.elementor,
.elementor-location-single,
.elementor-location-archive {
  width: 100%;
}

.elementor-widget-html > .elementor-widget-container {
  width: 100%;
}

.dsa-import-root.e-con,
.dsa-import-root > .e-con-inner {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
}

.dsa-import-root .elementor-widget-html {
  width: 100%;
  max-width: none;
}

.desktop-nav-list,
.mobile-nav-list,
.desktop-nav-list ul,
.mobile-nav-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav-list > li {
  position: relative;
}

.desktop-nav-list .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -18px;
  display: none;
  min-width: 220px;
  padding: 10px;
  background: rgba(255, 253, 250, 0.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(8, 47, 48, 0.16);
}

.desktop-nav-list li:hover > .sub-menu,
.desktop-nav-list li:focus-within > .sub-menu {
  display: grid;
}

.desktop-nav-list .sub-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 9px;
  white-space: nowrap;
}

.desktop-nav-list .sub-menu a:hover {
  color: var(--teal);
  background: var(--mist);
}

.mobile-nav-list .sub-menu {
  padding-left: 14px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: #fff;
  background: var(--petrol-deep);
  border-radius: 8px;
}

.generic-content {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 180px 0 100px;
}

.generic-content-center {
  padding-top: 70px;
  text-align: center;
}

.navigation.pagination {
  margin-top: 52px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.page-numbers {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  padding: 0 12px;
  color: var(--petrol);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.page-numbers.current {
  color: #fff;
  background: var(--petrol);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .button-header {
    display: none;
  }

  .mobile-menu {
    display: block;
    grid-column: 2;
  }

  .hero {
    min-height: 980px;
    padding-top: 165px;
  }

  .hero-copy {
    width: 63vw;
  }

  .hero-doctor {
    right: 2vw;
    width: 42vw;
  }

  .floating-note {
    left: -50px;
  }

  .hero-rail {
    padding-left: 0;
  }

  .section-heading {
    gap: 50px;
  }

  .reasons-copy {
    padding-right: 50px;
  }

  .doctor-copy {
    padding: 90px 6vw;
  }

  .clinic-section {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
  }

  .site-footer {
    gap: 35px;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 64px;
    padding: 8px 9px 8px 15px;
    border-radius: 14px;
  }

  .brand img {
    width: 140px;
  }

  .button-header {
    display: none;
  }

  .mobile-menu summary {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 1120px;
    padding: 120px 20px 300px;
  }

  .hero-background {
    object-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(5, 37, 38, 0.98) 0%, rgba(5, 37, 38, 0.88) 48%, rgba(5, 37, 38, 0.28) 82%);
  }

  .hero-copy {
    width: 100%;
    margin-left: 0;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.2rem);
  }

  .hero-lead {
    font-size: 0.92rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .medical-credentials {
    display: grid;
  }

  .medical-credentials span + span::before {
    display: none;
  }

  .hero-doctor {
    right: 18px;
    bottom: 86px;
    width: 55vw;
  }

  .floating-note {
    left: -125px;
    bottom: 24px;
    width: 210px;
  }

  .hero-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-rail div {
    min-height: 76px;
    padding: 10px;
    gap: 7px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .hero-rail strong {
    font-size: 1rem;
  }

  .hero-rail span {
    font-size: 0.52rem;
    line-height: 1.3;
  }

  .intent-strip {
    display: block;
    padding: 24px 20px;
  }

  .intent-strip p {
    margin-bottom: 15px;
  }

  .section {
    width: calc(100% - 40px);
    padding: 84px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 38px;
  }

  .section-heading h2 {
    margin-bottom: 24px;
    font-size: 2rem;
  }

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

  .specialty-card {
    min-height: 190px;
    padding: 22px;
    gap: 16px;
  }

  .specialty-card h3 {
    font-size: 1.6rem;
  }

  .reasons-section,
  .doctor-section,
  .journey-section,
  .clinic-section,
  .telemedicine-section,
  .faq-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .reasons-visual {
    min-height: 570px;
    padding: 50px 0 0 20px;
  }

  .reasons-image {
    width: 88%;
    max-height: 520px;
  }

  .reasons-seal {
    right: 14px;
    bottom: 24px;
    width: 140px;
    height: 140px;
  }

  .reasons-seal strong {
    font-size: 1.2rem;
  }

  .reasons-copy,
  .doctor-copy,
  .clinic-section,
  .telemedicine-section > div:first-child,
  .faq-section,
  .contact-section {
    padding: 84px 20px;
  }

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

  .reason-list > div:nth-child(odd) {
    border-right: 0;
  }

  .reason-list > div:nth-child(even) {
    padding-left: 0;
  }

  .reasons-copy h2,
  .doctor-copy h2,
  .clinic-copy h2,
  .telemedicine-section h2,
  .faq-heading h2,
  .contact-intro h2 {
    font-size: 2rem;
  }

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

  .values-grid > div + div {
    padding-left: 0;
    border-left: 0;
  }

  .doctor-portrait {
    min-height: 650px;
  }

  .doctor-name-card {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .doctor-name-card strong {
    font-size: 1.2rem;
  }

  .journey-section {
    width: calc(100% - 40px);
    gap: 50px;
    padding: 84px 0;
  }

  .journey-heading {
    position: static;
  }

  .journey-heading h2 {
    font-size: 2rem;
  }

  .journey-steps article {
    grid-template-columns: 44px 1fr;
  }

  .journey-steps p {
    grid-column: 2;
  }

  .clinic-gallery {
    grid-template-rows: 300px 180px;
  }

  .clinic-gallery .gallery-tall {
    grid-row: auto;
    grid-column: 1 / 3;
    border-radius: 24px 80px 24px 24px;
  }

  .telemedicine-art {
    min-height: 420px;
  }

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

  .faq-section,
  .contact-section {
    gap: 55px;
  }

  .contact-details > div {
    grid-template-columns: 92px 1fr;
  }

  .site-footer {
    gap: 38px;
    padding: 60px 20px 90px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
}
