:root {
  --bg: #07111d;
  --panel: #0c1a2b;
  --soft: #f8f4ee;
  --line: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --copy: rgba(244, 238, 229, 0.8);
  --dark-copy: #4e4b45;
  --accent: #c8a46d;
  --accent-strong: #d7b177;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

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

.menu-open {
  overflow: hidden;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}

#navbar.scrolled {
  background: rgba(5, 10, 20, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
}

.nav-shell {
  width: min(1480px, calc(100% - 72px));
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.logo-icon {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-text span {
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.nav-links a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

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

.cta-btn {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 18px 45px rgba(200, 164, 109, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  background: var(--accent-strong);
  box-shadow: 0 20px 48px rgba(200, 164, 109, 0.3);
}

.cta-btn .btn-icon-svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
}

.cta-btn .btn-icon-svg svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav-panel {
  display: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 17, 29, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-shell,
.page-shell {
  width: min(1400px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 18px;
}

.topbar-shell {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  line-height: 0.9;
  color: var(--accent);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy span {
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.topnav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.topnav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.topcta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 16px 32px rgba(200, 164, 109, 0.18);
}

.hero-band {
  padding: 82px 0 56px;
  background:
    linear-gradient(180deg, rgba(7, 17, 29, 0.88) 0%, rgba(7, 17, 29, 0.58) 100%),
    radial-gradient(circle at 20% 20%, rgba(200, 164, 109, 0.18) 0%, rgba(200, 164, 109, 0) 32%);
}

.blog-hero-premium {
  padding: 0;
  background: #06111d;
}

.blog-hero-shell {
  width: min(1920px, 100%);
  padding: 0;
}

.blog-hero-card {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(580px, 1.14fr);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 11, 19, 0.98) 0%, rgba(4, 11, 19, 0.97) 42%, rgba(4, 11, 19, 0.76) 58%, rgba(4, 11, 19, 0.3) 74%, rgba(4, 11, 19, 0.08) 100%),
    radial-gradient(circle at 16% 20%, rgba(200, 164, 109, 0.08) 0%, transparent 22%),
    linear-gradient(180deg, #081321 0%, #050d17 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 470px;
  padding: 78px 28px 64px 64px;
}

.blog-hero-copy .eyebrow {
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.blog-hero-title {
  margin-top: 18px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.4rem, 5.2vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #f8f3eb;
}

.blog-hero-title span {
  display: block;
}

.blog-hero-title span + span {
  margin-top: 0.06em;
}

.blog-hero-description {
  margin-top: 24px;
  max-width: 310px;
  color: rgba(244, 238, 229, 0.84);
  font-size: 1.02rem;
  line-height: 1.65;
}

.blog-hero-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 66% 18%, rgba(255, 198, 120, 0.1) 0%, rgba(255, 198, 120, 0.02) 12%, transparent 26%),
    linear-gradient(180deg, rgba(6, 12, 21, 0.02) 0%, rgba(6, 12, 21, 0.38) 100%);
}

.blog-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 20, 0.12) 0%, rgba(5, 12, 20, 0.02) 18%, rgba(5, 12, 20, 0.22) 100%),
    radial-gradient(circle at 70% 22%, rgba(255, 201, 124, 0.08) 0%, transparent 16%);
}

.blog-hero-room-glow {
  position: absolute;
  right: 16%;
  top: 11%;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 199, 122, 0.18) 0%, rgba(255, 199, 122, 0.03) 36%, transparent 70%);
  filter: blur(20px);
}

.blog-hero-lamp {
  position: absolute;
  left: 31%;
  top: 28%;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 214, 155, 0.8) 0%, rgba(255, 188, 92, 0.28) 44%, rgba(255, 188, 92, 0.04) 68%, transparent 100%);
  box-shadow: 0 0 34px rgba(255, 196, 102, 0.22);
}

.blog-hero-lamp::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -32px;
  width: 72px;
  height: 72px;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.86) 0%, rgba(13, 13, 13, 0.96) 100%);
  transform: translateX(-50%);
  filter: blur(0.2px);
}

.blog-hero-shelf {
  position: absolute;
  right: 6%;
  width: 22%;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(29, 35, 44, 0.96) 0%, rgba(11, 16, 23, 0.98) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  opacity: 0.9;
}

.blog-hero-shelf::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(231, 176, 98, 0.16) 12% 18%, transparent 18% 38%, rgba(255, 255, 255, 0.05) 38% 44%, transparent 44% 68%, rgba(255, 255, 255, 0.04) 68% 74%, transparent 74% 100%);
}

.blog-hero-shelf-one {
  top: 5%;
  height: 28%;
}

.blog-hero-shelf-two {
  top: 39%;
  height: 24%;
}

.blog-hero-shelf-three {
  top: 70%;
  height: 18%;
}

.blog-hero-image {
  position: absolute;
  right: 8%;
  bottom: 0;
  z-index: 3;
  width: min(56vw, 760px);
  max-width: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 36px 54px rgba(0, 0, 0, 0.38));
}

.about-hero-premium {
  height: calc(100vh - 82px);
  min-height: calc(100vh - 82px);
  max-height: calc(100vh - 82px);
  padding: 0;
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(3, 10, 18, 1) 0%, rgba(4, 11, 20, 1) 100%);
}

.about-hero-shell {
  width: min(1920px, 100%);
  padding: 0;
  display: flex;
}

.about-hero-card {
  position: relative;
  height: 100%;
  min-height: calc(100vh - 82px);
  max-height: calc(100vh - 82px);
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(620px, 1.1fr);
  align-items: stretch;
  background:
    radial-gradient(circle at 14% 24%, rgba(201, 152, 73, 0.08) 0%, rgba(201, 152, 73, 0) 24%),
    linear-gradient(180deg, #040b14 0%, #08111b 100%);
  border: 1px solid rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.about-hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  pointer-events: none;
}

.about-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 10, 18, 0.98) 0%, rgba(3, 10, 18, 0.96) 27%, rgba(3, 10, 18, 0.84) 42%, rgba(3, 10, 18, 0.46) 56%, rgba(3, 10, 18, 0.14) 72%, rgba(3, 10, 18, 0.03) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 18%),
    radial-gradient(circle at 16% 24%, rgba(200, 164, 109, 0.06) 0%, transparent 26%);
}

.about-hero-copy {
  position: relative;
  z-index: 3;
  padding: 124px 32px 42px 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
}

.about-hero-copy .eyebrow {
  color: var(--accent);
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
}

.about-hero-premium .hero-title {
  margin-top: 18px;
  font-size: clamp(3.2rem, 4.3vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  max-width: 520px;
  color: #f7f0e7;
}

.accent-text {
  color: var(--accent-strong);
}

.about-hero-premium .hero-copy {
  margin-top: 18px;
  max-width: 350px;
  color: rgba(244, 238, 229, 0.72);
  font-size: 0.96rem;
  line-height: 1.58;
}

.hero-divider {
  width: 74px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(200, 164, 109, 0.9), rgba(200, 164, 109, 0.18));
}

.about-hero-bottom-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 1px;
  background: rgba(255, 255, 255, 0.78);
}

.about-hero-visual {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 44px 0 0;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.about-hero-visual::before {
  content: none;
}

.about-hero-glow {
  position: absolute;
  z-index: 1;
  right: 18%;
  top: 12%;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(200, 164, 109, 0.1) 0%, rgba(200, 164, 109, 0.015) 42%, transparent 72%);
  filter: blur(22px);
}

.about-hero-portrait {
  position: relative;
  z-index: 2;
  width: min(42vw, 700px);
  max-width: 100%;
  height: calc(100% - 30px);
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(0.88) brightness(0.7) contrast(1.02);
  transform: translateY(10px);
}

.about-hero-image {
  display: none;
}

.mr-hospital-page #navbar {
  background: transparent;
  border-bottom: 0;
}

.mr-hospital-page #navbar.scrolled {
  background: rgba(5, 10, 20, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mr-hospital-page .nav-shell {
  width: min(1680px, calc(100% - 48px));
  grid-template-columns: auto 1fr auto;
  gap: 28px;
}

.mrh-nav-brand {
  gap: 10px;
}

.mrh-nav-brand .logo-icon {
  font-size: 3rem;
  color: var(--accent);
}

.mrh-nav-brand .logo-text {
  gap: 0;
}

.mrh-nav-brand .logo-text span {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.mr-hospital-page .nav-links {
  gap: 34px;
}

.mr-hospital-page .nav-links a {
  font-size: 0.9rem;
}

.mrh-nav-cta {
  padding: 14px 22px;
  border: 1px solid rgba(200, 164, 109, 0.6);
  background: rgba(6, 18, 30, 0.38);
  color: #f7f1e8;
  box-shadow: none;
}

.mrh-nav-cta:hover {
  background: rgba(15, 29, 45, 0.78);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.mrh-hero {
  padding: 0;
  background:
    linear-gradient(90deg, rgba(3, 10, 18, 0.96) 0%, rgba(3, 10, 18, 0.92) 21%, rgba(3, 10, 18, 0.58) 34%, rgba(3, 10, 18, 0.18) 46%, rgba(3, 10, 18, 0.02) 58%, rgba(3, 10, 18, 0) 70%),
    radial-gradient(circle at 72% 12%, rgba(132, 170, 233, 0.16) 0%, rgba(132, 170, 233, 0) 28%),
    url("images/mr-hospital-hero-final-bg.png") center center / cover no-repeat;
}

.mrh-hero-shell {
  position: relative;
  width: min(1680px, calc(100% - 48px));
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: 118px 28px 26px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mrh-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 77% 14%, rgba(112, 154, 224, 0.12) 0%, rgba(112, 154, 224, 0) 24%),
    linear-gradient(180deg, rgba(4, 10, 18, 0.06) 0%, rgba(4, 10, 18, 0.1) 100%);
  pointer-events: none;
}

.mrh-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
  padding: 0 0 64px;
}

.mrh-hero-eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.mrh-hero-title {
  margin-top: 18px;
  color: #f7f1e8;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.45rem, 4.35vw, 4.55rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.mrh-hero-title span {
  display: block;
}

.mrh-hero-title span + span {
  margin-top: 0.08em;
}

.mrh-hero-title .mrh-line-keep {
  white-space: nowrap;
}

.mrh-hero-title em {
  font-style: normal;
  color: var(--accent);
}

.mrh-hero-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(248, 243, 235, 0.94);
  font-size: 0.95rem;
  font-weight: 500;
}

.mrh-hero-location-icon,
.mrh-hero-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mrh-hero-location-icon svg,
.mrh-hero-btn-icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mrh-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.mrh-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  min-width: 174px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.mrh-hero-btn:hover {
  transform: translateY(-2px);
}

.mrh-hero-btn-primary {
  background: linear-gradient(135deg, #d9ac65 0%, #c89546 100%);
  color: #0d1724;
  box-shadow: 0 18px 34px rgba(200, 164, 109, 0.24);
}

.mrh-hero-btn-primary .mrh-hero-btn-icon {
  color: #0d1724;
}

.mrh-hero-btn-secondary {
  background: rgba(7, 19, 33, 0.44);
  border: 1px solid rgba(200, 164, 109, 0.6);
  color: #f6f0e7;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

@media (max-width: 820px) {
  .mrh-hero-shell,
  .page-shell {
    width: calc(100% - 24px);
    padding-left: 12px;
    padding-right: 12px;
  }

  .mrh-hero-shell {
    min-height: 0;
    border-radius: 22px;
    background-position: 62% center;
  }

  .mrh-hero-copy {
    max-width: 100%;
    padding: 34px 18px 22px;
  }

  .mrh-hero-title {
    font-size: clamp(2.3rem, 9vw, 3.5rem);
    line-height: 0.95;
  }

  .mrh-hero-location {
    margin-top: 18px;
    font-size: 0.9rem;
  }

  .mrh-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 20px;
  }

  .mrh-hero-btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 0 18px;
    justify-content: space-between;
    font-size: 0.92rem;
  }

  .mrh-about-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mrh-about-copy {
    max-width: 100%;
    padding: 0;
  }

  .mrh-about-title,
  .mrh-services-title,
  .mrh-visit-card .section-title {
    font-size: clamp(2rem, 8vw, 2.7rem);
    line-height: 1.02;
  }

  .mrh-about-text {
    max-width: 100%;
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .mrh-about-image {
    border-radius: 16px;
  }

  .mrh-about-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 24px;
  }

  .mrh-about-feature {
    padding: 18px 12px 0;
  }

  .mrh-about-feature:nth-child(odd) {
    border-left: 0;
  }

  .mrh-about-feature:nth-child(3),
  .mrh-about-feature:nth-child(4) {
    border-top: 1px solid rgba(17, 25, 34, 0.08);
  }

  .mrh-services-section,
  .mrh-inside-section {
    padding-top: 44px;
    padding-bottom: 46px;
  }

  .mrh-services-shell,
  .mrh-inside-shell {
    gap: 22px;
  }

  .mrh-services-grid,
  .mrh-inside-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .mrh-service-card {
    min-height: 208px;
    padding: 20px 16px 16px;
    border-radius: 14px;
  }

  .mrh-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .mrh-service-icon svg {
    width: 32px;
    height: 32px;
  }

  .mrh-service-card h3 {
    margin-top: 14px;
    font-size: 0.94rem;
  }

  .mrh-service-card p {
    margin-top: 8px;
    font-size: 0.84rem;
    line-height: 1.52;
  }

  .mrh-inside-card {
    min-height: 240px;
    border-radius: 16px;
  }

  .mrh-inside-card img {
    min-height: 240px;
  }

  .mrh-inside-card-copy {
    padding: 16px 16px 14px;
  }

  .mrh-inside-card-copy h3 {
    font-size: 1rem;
  }

  .mrh-inside-card-copy p {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .mrh-visit-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mrh-visit-frame {
    padding: 16px;
  }

  .mrh-visit-card {
    padding: 0;
  }

  .mrh-visit-list {
    margin-top: 14px;
  }

  .mrh-visit-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
  }

  .mrh-visit-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .mrh-visit-icon svg {
    width: 16px;
    height: 16px;
  }

  .mrh-visit-copy p {
    font-size: 0.84rem;
  }

  .mrh-visit-map,
  .mrh-visit-map .map-frame {
    min-height: 280px;
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .mrh-hero-copy {
    padding: 26px 16px 18px;
  }

  .mrh-hero-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .mrh-hero-location {
    font-size: 0.86rem;
  }

  .mrh-about-features,
  .mrh-services-grid,
  .mrh-inside-grid {
    grid-template-columns: 1fr;
  }

  .mrh-about-feature {
    padding: 16px 0 0;
  }

  .mrh-about-feature + .mrh-about-feature,
  .mrh-about-feature:nth-child(3),
  .mrh-about-feature:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(17, 25, 34, 0.08);
  }

  .mrh-about-title,
  .mrh-services-title,
  .mrh-visit-card .section-title {
    font-size: clamp(1.8rem, 8.6vw, 2.3rem);
  }

  .mrh-about-text,
  .mrh-visit-copy p {
    font-size: 0.88rem;
  }

  .mrh-service-card {
    min-height: 0;
  }

  .mrh-inside-card,
  .mrh-inside-card img {
    min-height: 220px;
  }

  .mrh-services-section,
  .mrh-inside-section {
    padding-top: 36px;
    padding-bottom: 38px;
  }

  .mrh-visit-frame {
    padding: 12px;
  }

  .mrh-visit-map,
  .mrh-visit-map .map-frame {
    min-height: 240px;
  }
}

@media (max-width: 960px) {
  .mrh-hero-shell {
    width: calc(100% - 28px);
    min-height: auto;
    padding: 108px 14px 24px;
  }

  .mrh-hero-copy {
    max-width: none;
    padding: 0 8px;
  }

  .mrh-hero-title .mrh-line-keep {
    white-space: normal;
  }

  .mrh-hero-title {
    font-size: clamp(2.7rem, 7.8vw, 3.75rem);
  }

  .mrh-hero-location {
    margin-top: 24px;
    font-size: 0.94rem;
  }

  .mrh-hero-actions {
    margin-top: 20px;
    align-items: stretch;
    flex-direction: column;
  }

  .mrh-hero-btn {
    min-width: 0;
    width: 100%;
    font-size: 0.92rem;
  }
}

@media (max-width: 640px) {
  .mrh-hero-copy {
    padding: 0 4px;
  }

  .mrh-hero-title {
    font-size: clamp(2.2rem, 9.8vw, 3rem);
    line-height: 0.92;
  }
}

.contact-hero-premium {
  padding: 82px 0 0;
  background: #06111d;
}

.contact-hero-shell {
  width: min(1920px, 100%);
  padding: 0;
}

.contact-hero-card {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(380px, 0.8fr) minmax(640px, 1.2fr);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 11, 19, 0.98) 0%, rgba(4, 11, 19, 0.97) 30%, rgba(4, 11, 19, 0.88) 44%, rgba(4, 11, 19, 0.5) 58%, rgba(4, 11, 19, 0.12) 75%, rgba(4, 11, 19, 0.04) 100%),
    radial-gradient(circle at 16% 22%, rgba(200, 164, 109, 0.09) 0%, transparent 26%),
    linear-gradient(180deg, #071321 0%, #040c16 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  padding: 66px 28px 54px 72px;
}

.about-hero-copy {
  max-width: 760px;
}

.about-hero-copy .contact-hero-title {
  font-size: clamp(2.9rem, 4.4vw, 4.8rem);
  line-height: 0.98;
}

.about-hero-copy .contact-hero-description {
  max-width: 540px;
}

.contact-hero-title {
  margin-top: 18px;
  color: #f8f3eb;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.8rem, 5.3vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.contact-hero-title > span {
  display: block;
}

.contact-hero-description {
  margin-top: 24px;
  max-width: 470px;
  color: rgba(244, 238, 229, 0.86);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.contact-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-hero-btn:hover {
  transform: translateY(-2px);
}

.contact-hero-btn-primary {
  background: linear-gradient(180deg, #e1ad56 0%, #c8923f 100%);
  color: #fff9f0;
  box-shadow: 0 16px 30px rgba(200, 146, 63, 0.22);
}

.contact-hero-btn-secondary {
  border: 1px solid rgba(200, 164, 109, 0.48);
  background: rgba(255, 255, 255, 0.02);
  color: #f6efe4;
}

.contact-hero-btn-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-hero-btn-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-hero-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 18%, rgba(255, 198, 120, 0.16) 0%, rgba(255, 198, 120, 0.02) 15%, transparent 28%),
    linear-gradient(180deg, rgba(6, 12, 21, 0.02) 0%, rgba(6, 12, 21, 0.36) 100%);
}

.contact-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 12, 20, 0.14) 0%, rgba(5, 12, 20, 0.02) 18%, rgba(5, 12, 20, 0.14) 100%),
    radial-gradient(circle at 82% 22%, rgba(255, 206, 134, 0.14) 0%, transparent 14%);
  pointer-events: none;
}

.contact-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.contact-info-strip-section {
  position: relative;
  z-index: 4;
  margin-top: -42px;
  padding: 0 0 8px;
  background: transparent;
}

.contact-info-strip-shell {
  width: min(1760px, calc(100% - 36px));
  padding: 0 32px;
}

.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 251, 244, 0.98) 100%);
  border: 1px solid rgba(200, 164, 109, 0.18);
  box-shadow: 0 24px 54px rgba(7, 17, 29, 0.16);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 156px;
  padding: 34px 32px 28px;
  color: #101826;
  transition: background 0.25s ease;
}

.contact-info-item + .contact-info-item {
  border-left: 1px solid rgba(16, 24, 38, 0.08);
}

.contact-info-item:hover {
  background: rgba(200, 164, 109, 0.05);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 2px solid rgba(200, 164, 109, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-copy h3 {
  color: #161a20;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.2;
}

.contact-info-primary {
  margin-top: 10px;
  color: #1e232c;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
}

.contact-info-secondary {
  margin-top: 8px;
  color: #696156;
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-message-section {
  padding: 58px 0;
  background:
    linear-gradient(180deg, #07111d 0%, #06101b 100%);
}

.contact-message-shell {
  width: min(1760px, calc(100% - 36px));
  padding: 0 32px;
}

.contact-message-card {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(320px, 0.66fr);
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 11, 19, 0.98) 0%, rgba(4, 11, 19, 0.98) 58%, rgba(15, 25, 37, 0.98) 100%);
  border: 1px solid rgba(200, 164, 109, 0.18);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.24);
}

.contact-message-form-pane {
  padding: 42px 48px 38px;
}

.contact-message-title {
  margin-top: 14px;
  color: #f8f3eb;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 3.6vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.contact-message-form {
  margin-top: 28px;
}

.contact-message-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(200, 164, 109, 0.42);
  background: rgba(3, 10, 18, 0.56);
}

.contact-input-icon {
  width: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-input-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-input-wrap input,
.contact-input-wrap textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f7f2ea;
  font: inherit;
  padding: 0 18px 0 0;
}

.contact-input-wrap input::placeholder,
.contact-input-wrap textarea::placeholder {
  color: rgba(244, 238, 229, 0.72);
}

.contact-textarea-wrap {
  align-items: flex-start;
  min-height: 160px;
  margin-top: 18px;
  padding-top: 16px;
}

.contact-textarea-wrap textarea {
  min-height: 126px;
  padding-top: 2px;
  resize: vertical;
}

.contact-message-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  margin-top: 20px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #e1ad56 0%, #c8923f 100%);
  color: #16120c;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(200, 146, 63, 0.24);
  cursor: pointer;
}

.contact-message-submit .btn-icon-svg {
  border-color: rgba(23, 16, 7, 0.16);
  background: rgba(255, 255, 255, 0.22);
  color: #16120c;
}

.contact-message-profile {
  position: relative;
  padding: 48px 46px 38px;
  border-left: 1px solid rgba(200, 164, 109, 0.12);
  background:
    radial-gradient(circle at 92% 76%, rgba(200, 164, 109, 0.18) 0%, rgba(200, 164, 109, 0.02) 18%, transparent 42%),
    linear-gradient(180deg, rgba(20, 30, 42, 0.98) 0%, rgba(15, 24, 35, 0.98) 100%);
}

.contact-profile-name {
  color: var(--accent-strong);
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.contact-profile-role {
  margin-top: 22px;
  color: #f2ebe1;
  font-size: 0.96rem;
  line-height: 1.55;
}

.contact-profile-copy {
  margin-top: 22px;
  color: rgba(244, 238, 229, 0.92);
  font-size: 0.98rem;
  line-height: 1.6;
}

.contact-profile-signature {
  width: 200px;
  max-width: 100%;
  margin-top: 16px;
  opacity: 0.96;
}

.contact-profile-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.contact-profile-social {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(200, 164, 109, 0.62);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f6efe4;
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-profile-social:hover {
  transform: translateY(-2px);
  background: rgba(200, 164, 109, 0.12);
}

.contact-profile-social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.visit-hospital-section {
  padding: 0 0 58px;
  background:
    linear-gradient(180deg, #07111d 0%, #07111d 34%, #f8f4ee 34%, #f8f4ee 100%);
}

.visit-hospital-shell {
  width: min(1760px, calc(100% - 36px));
  padding: 0 32px;
}

.visit-hospital-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(520px, 1.1fr);
  align-items: stretch;
  gap: 28px;
  padding: 26px 28px;
  border-radius: 0;
  background: linear-gradient(180deg, #fffdfa 0%, #fffaf4 100%);
  border: 1px solid rgba(15, 24, 36, 0.08);
  box-shadow: 0 18px 44px rgba(16, 24, 38, 0.08);
}

.visit-hospital-copy {
  padding: 6px 4px 6px 4px;
}

.visit-hospital-title {
  color: #121720;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.visit-hospital-copy .hero-divider {
  margin-top: 18px;
}

.visit-hospital-list {
  display: grid;
  gap: 2px;
  margin-top: 18px;
}

.visit-hospital-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: start;
  gap: 16px;
  padding: 14px 0;
}

.visit-hospital-item + .visit-hospital-item {
  border-top: 1px solid rgba(16, 24, 38, 0.08);
}

.visit-hospital-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(180deg, #071220 0%, #030b14 100%);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(7, 17, 29, 0.14);
}

.visit-hospital-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visit-hospital-item p {
  color: #21262f;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 500;
}

.visit-hospital-map-wrap {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border-radius: 24px;
  background: #08131f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.visit-hospital-map {
  width: 100%;
  height: 100%;
  min-height: 370px;
  border: 0;
  filter: saturate(0.96) contrast(1.02);
}

.visit-hospital-directions {
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  width: 158px;
  height: 158px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(200, 164, 109, 0.92) 0%, rgba(185, 145, 77, 0.88) 52%, rgba(138, 104, 47, 0.84) 100%);
  color: #fffaf0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  box-shadow: 0 20px 36px rgba(104, 74, 26, 0.28);
}

.visit-hospital-directions-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.visit-hospital-directions-icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visit-hospital-directions span:last-child {
  max-width: 92px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  margin-top: 18px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero-copy {
  margin-top: 18px;
  max-width: 760px;
  color: var(--copy);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-dark,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 600;
}

.btn-dark {
  background: var(--accent);
  color: #fff;
}

.btn-light {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.section-light {
  background: var(--soft);
  color: #101826;
  padding: 58px 0;
}

.about-letter-section {
  position: relative;
  overflow: hidden;
  padding: 52px 0 56px;
  background:
    radial-gradient(circle at 14% 18%, rgba(224, 194, 146, 0.18) 0%, rgba(224, 194, 146, 0.04) 18%, transparent 42%),
    linear-gradient(180deg, #fbf8f2 0%, #f7f2ea 100%);
  color: #141922;
}

.about-letter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.08) 22%, rgba(255, 255, 255, 0.3) 46%, rgba(255, 255, 255, 0) 70%),
    repeating-linear-gradient(120deg, rgba(186, 154, 108, 0.025) 0 2px, transparent 2px 20px);
  opacity: 0.9;
  pointer-events: none;
}

.about-letter-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(460px, 1.22fr);
  gap: 42px;
  align-items: center;
}

.about-letter-copy {
  max-width: 470px;
  padding-left: 8px;
}

.about-letter-quote-mark {
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 5.4rem;
  line-height: 0.7;
}

.about-letter-title {
  margin-top: 6px;
  color: #1b1c1f;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.15rem, 3.2vw, 3.2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.about-letter-divider {
  width: 72px;
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(214, 168, 95, 1) 0%, rgba(214, 168, 95, 0.12) 100%);
}

.about-letter-text {
  margin-top: 18px;
  color: #50545c;
  font-size: 0.98rem;
  line-height: 1.68;
}

.about-letter-signature {
  display: block;
  width: 172px;
  margin-top: 18px;
}

.about-letter-role {
  margin-top: 8px;
  color: #5f6670;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.about-letter-visual-wrap {
  position: relative;
  padding: 18px 22px 26px 0;
}

.about-letter-frame {
  position: absolute;
  top: 34px;
  right: 0;
  bottom: 14px;
  left: 42px;
  border: 1px solid rgba(215, 176, 115, 0.34);
}

.about-letter-visual {
  position: relative;
  z-index: 1;
  width: 92%;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(18, 22, 29, 0.14);
  background: #0d1015;
  box-shadow: 0 28px 54px rgba(17, 22, 30, 0.12);
}

.about-letter-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
  filter: grayscale(1);
}

.about-letter-dots {
  position: absolute;
  z-index: 0;
  width: 116px;
  height: 116px;
  background-image: radial-gradient(rgba(220, 180, 116, 0.9) 1.2px, transparent 1.2px);
  background-size: 10px 10px;
  opacity: 0.55;
}

.about-letter-dots-bottom {
  right: -8px;
  bottom: -2px;
}

.mrh-about-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.mrh-about-copy {
  max-width: 520px;
  padding: 10px 4px 10px 0;
}

.mrh-about-title {
  margin-top: 16px;
  color: #131922;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 3.8vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.mrh-about-text {
  max-width: 430px;
  margin-top: 22px;
  color: #4d535c;
  font-size: 1rem;
  line-height: 1.75;
}

.mrh-about-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(17, 25, 34, 0.08);
}

.mrh-about-feature {
  padding: 24px 16px 0;
  display: grid;
  justify-items: start;
  gap: 10px;
}

.mrh-about-feature + .mrh-about-feature {
  border-left: 1px solid rgba(17, 25, 34, 0.08);
}

.mrh-about-feature-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(200, 164, 109, 0.14) 0%, rgba(200, 164, 109, 0.06) 100%);
  box-shadow: inset 0 0 0 1px rgba(200, 164, 109, 0.12);
}

.mrh-about-feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mrh-about-feature h3 {
  color: #262c35;
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 700;
}

.mrh-about-feature p {
  color: #717780;
  font-size: 0.85rem;
  line-height: 1.45;
}

.mrh-about-visual {
  position: relative;
}

.mrh-about-image {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(200, 164, 109, 0.18);
  box-shadow: 0 24px 54px rgba(20, 24, 31, 0.1);
}

.mrh-services-section {
  background: linear-gradient(180deg, #fcfaf6 0%, #f8f4ee 100%);
  color: #111823;
  padding: 64px 0 70px;
}

.mrh-services-shell {
  display: grid;
  gap: 34px;
}

.mrh-services-head {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
}

.mrh-services-title {
  color: #151b24;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.mrh-services-divider {
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d4a35a 0%, #e6c17a 100%);
}

.mrh-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mrh-service-card {
  min-height: 248px;
  padding: 28px 22px 22px;
  border-radius: 16px;
  border: 1px solid rgba(17, 25, 34, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, #ffffff 100%);
  box-shadow: 0 14px 34px rgba(20, 24, 31, 0.045);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.mrh-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 163, 90, 0.24);
  box-shadow: 0 18px 40px rgba(20, 24, 31, 0.08);
}

.mrh-service-icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d29b45;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(210, 155, 69, 0.06) 0%, rgba(210, 155, 69, 0.01) 100%);
  box-shadow: inset 0 0 0 1px rgba(210, 155, 69, 0.08);
}

.mrh-service-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.24s ease;
}

.mrh-service-card:hover .mrh-service-icon {
  background: linear-gradient(180deg, rgba(210, 155, 69, 0.12) 0%, rgba(210, 155, 69, 0.03) 100%);
  box-shadow: inset 0 0 0 1px rgba(210, 155, 69, 0.14);
}

.mrh-service-card:hover .mrh-service-icon svg {
  transform: scale(1.05);
}

.mrh-service-card h3 {
  margin-top: 20px;
  color: #1b212b;
  font-size: 1rem;
  line-height: 1.34;
  font-weight: 700;
}

.mrh-service-card p {
  margin-top: 12px;
  max-width: 178px;
  color: #5b6573;
  font-size: 0.9rem;
  line-height: 1.62;
}

.mrh-service-arrow {
  margin-top: auto;
  padding-top: 18px;
  color: #d29b45;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.24s ease, color 0.24s ease;
}

.mrh-service-card:hover .mrh-service-arrow {
  transform: translateX(4px);
  color: #c88f34;
}

.mrh-inside-section {
  background: linear-gradient(180deg, #fffdf9 0%, #f7f0e6 100%);
  color: #111823;
  padding: 68px 0 76px;
}

.mrh-inside-shell {
  display: grid;
  gap: 34px;
}

.mrh-inside-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mrh-inside-card {
  position: relative;
  min-height: 290px;
  border-radius: 22px;
  overflow: hidden;
  background: #d9d2c6;
  box-shadow: 0 18px 42px rgba(20, 24, 31, 0.12);
}

.mrh-inside-card img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  display: block;
  transition: transform 0.32s ease;
}

.mrh-inside-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 22, 0.06) 0%, rgba(8, 14, 22, 0.14) 45%, rgba(8, 14, 22, 0.78) 100%);
}

.mrh-inside-card:hover img {
  transform: scale(1.04);
}

.mrh-inside-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 20px 20px 18px;
}

.mrh-inside-card-copy h3 {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 700;
}

.mrh-inside-card-copy p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.58;
}

.testimonials-section {
  background: linear-gradient(180deg, #f8f6f2 0%, #f1ede7 100%);
  padding: 42px 0 44px;
  border-top: 1px solid rgba(18, 23, 31, 0.04);
  border-bottom: 1px solid rgba(18, 23, 31, 0.04);
}

.testimonials-shell {
  width: min(1660px, calc(100% - 44px));
  margin: 0 auto;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 50px;
  gap: 18px;
  align-items: start;
}

.testimonials-intro {
  position: relative;
  padding: 8px 44px 0 6px;
  min-height: 244px;
}

.testimonials-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #d2a96f;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.testimonials-heading {
  color: #16181d;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.testimonials-copy {
  max-width: 250px;
  margin-top: 14px;
  color: #5f5a52;
  font-size: 0.93rem;
  line-height: 1.58;
  font-weight: 400;
}

.google-review-summary {
  margin-top: 22px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 24, 38, 0.06);
  box-shadow: 0 12px 28px rgba(18, 23, 31, 0.05);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.google-wordmark {
  display: inline-flex;
  align-items: center;
  font-size: 1.14rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.g-blue { color: #4285F4; }
.g-red { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green { color: #34A853; }

.google-badge-label {
  color: #5f6368;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.google-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.google-rating-value {
  color: #202124;
  font-size: 1.95rem;
  line-height: 1;
  font-weight: 700;
}

.google-stars,
.testimonial-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #fbbc04;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.google-rating-meta {
  margin-top: 8px;
  color: #6f675d;
  font-size: 0.82rem;
  line-height: 1.5;
}

.testimonials-prev,
.testimonials-next {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #e6ded1;
  background: #fff;
  color: #9aa0a6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(18, 23, 31, 0.04);
  cursor: pointer;
}

.testimonials-prev {
  position: absolute;
  right: 0;
  top: 74px;
}

.testimonials-next {
  margin-top: 88px;
}

.testimonials-track {
  min-width: 0;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
  gap: 16px;
  transition: transform .5s ease;
  will-change: transform;
}

.testimonial-link-card {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.testimonial-card {
  min-height: 292px;
  height: 100%;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(218, 220, 224, 0.95);
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.testimonial-link-card:hover .testimonial-card {
  transform: translateY(-4px);
  border-color: rgba(66, 133, 244, 0.34);
  box-shadow: 0 10px 18px rgba(60, 64, 67, 0.08);
}

.testimonial-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 14px rgba(18, 23, 31, 0.12);
}

.testimonial-avatar.patient { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
.testimonial-avatar.leader { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.testimonial-avatar.community { background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%); }
.testimonial-avatar.doctor { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }

.testimonial-name {
  color: #202124;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
}

.testimonial-role {
  margin-top: 4px;
  color: #80868b;
  font-size: 0.76rem;
  line-height: 1.2;
}

.testimonial-card-brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #5f6368;
  font-size: 0.76rem;
  font-weight: 500;
  white-space: nowrap;
}

.testimonial-google-logo {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.testimonial-time {
  margin-top: 7px;
  color: #80868b;
  font-size: 0.78rem;
  line-height: 1.3;
}

.testimonial-quote {
  margin-top: 14px;
  color: #202124;
  font-size: 0.94rem;
  line-height: 1.62;
  flex: 1;
}

.testimonial-inline-more {
  color: #1a73e8;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.testimonials-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(95, 99, 104, 0.22);
}

.testimonials-dot.active {
  background: #4285F4;
}

.section-dark {
  background: var(--bg);
  color: #fff;
  padding: 58px 0;
}

.turning-points-head {
  text-align: center;
}

.turning-points-head .eyebrow {
  display: inline-block;
}

.turning-points-head .section-title {
  margin-top: 10px;
  color: #f4ede3;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
}

.turning-points-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.turning-point-card {
  position: relative;
  min-height: 274px;
  overflow: hidden;
  border: 1px solid rgba(212, 173, 115, 0.18);
  background: #0a1522;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.turning-point-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.35s ease;
}

.turning-point-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.05) 0%, rgba(5, 10, 18, 0.16) 34%, rgba(5, 10, 18, 0.78) 100%),
    linear-gradient(180deg, rgba(214, 168, 95, 0.02) 0%, rgba(214, 168, 95, 0.12) 100%);
  transition: background 0.35s ease, opacity 0.35s ease;
}

.turning-point-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  transition: transform 0.35s ease;
}

.turning-point-copy h3 {
  margin: 0;
  color: #e0af62;
  font-size: 1.06rem;
  font-weight: 700;
  transition: color 0.35s ease, letter-spacing 0.35s ease;
}

.turning-point-copy p {
  margin: 10px 0 0;
  color: rgba(244, 238, 229, 0.88);
  font-size: 0.9rem;
  line-height: 1.55;
  transition: color 0.35s ease;
}

.turning-point-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 180, 108, 0.38);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.32);
}

.turning-point-card:hover .turning-point-image {
  transform: scale(1.06);
  filter: saturate(1.04) brightness(1.02);
}

.turning-point-card:hover .turning-point-overlay {
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.02) 0%, rgba(5, 10, 18, 0.12) 28%, rgba(5, 10, 18, 0.84) 100%),
    linear-gradient(180deg, rgba(224, 180, 108, 0.04) 0%, rgba(224, 180, 108, 0.18) 100%);
}

.turning-point-card:hover .turning-point-copy {
  transform: translateY(-4px);
}

.turning-point-card:hover .turning-point-copy h3 {
  color: #f0c57d;
  letter-spacing: 0.01em;
}

.turning-point-card:hover .turning-point-copy p {
  color: rgba(248, 242, 233, 0.96);
}

.core-values-head {
  text-align: center;
}

.core-values-head .eyebrow {
  display: inline-block;
}

.core-values-head .section-title {
  margin-top: 10px;
  color: #1c1e22;
  font-size: clamp(2.15rem, 3.3vw, 3.3rem);
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.core-value-card {
  padding: 24px 18px 18px;
  border: 1px solid rgba(220, 192, 148, 0.42);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(193, 170, 134, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.core-value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 168, 95, 0.58);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 42px rgba(193, 170, 134, 0.14);
}

.core-value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d6a85f;
  transition: transform 0.3s ease, color 0.3s ease;
}

.core-value-card:hover .core-value-icon {
  transform: translateY(-2px) scale(1.04);
  color: #c9913f;
}

.core-value-icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.core-value-card h3 {
  margin: 0;
  color: #1f2125;
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  line-height: 1.1;
}

.core-value-card p {
  margin: 10px auto 0;
  max-width: 180px;
  color: #6c7077;
  font-size: 0.88rem;
  line-height: 1.5;
}

.journey-glimpses-section {
  position: relative;
  overflow: hidden;
  padding: 52px 0 58px;
  background:
    radial-gradient(circle at 18% 16%, rgba(224, 194, 146, 0.18) 0%, rgba(224, 194, 146, 0.03) 20%, transparent 42%),
    linear-gradient(180deg, #fbf8f2 0%, #f7f2ea 100%);
}

.journey-glimpses-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.06) 22%, rgba(255, 255, 255, 0.24) 46%, rgba(255, 255, 255, 0) 70%),
    repeating-linear-gradient(120deg, rgba(186, 154, 108, 0.022) 0 2px, transparent 2px 20px);
  pointer-events: none;
}

.journey-glimpses-section-secondary {
  padding-top: 0;
  margin-top: -22px;
}

.journey-glimpses-head {
  position: relative;
  z-index: 1;
  text-align: center;
}

.journey-glimpses-head .eyebrow {
  display: inline-block;
}

.journey-glimpses-head .section-title {
  margin-top: 10px;
  color: #1b1d21;
  font-size: clamp(2.15rem, 3.25vw, 3.25rem);
}

.journey-glimpses-viewport {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  overflow: hidden;
}

.journey-glimpses-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: journey-glimpses-scroll 34s linear infinite;
}

.journey-glimpses-track-reverse {
  animation-name: journey-glimpses-scroll-reverse;
}

.journey-glimpses-viewport:hover .journey-glimpses-track {
  animation-play-state: paused;
}

.journey-glimpse-card {
  flex: 0 0 min(210px, 15.8vw);
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(220, 192, 148, 0.4);
  background: #14171d;
  box-shadow: 0 14px 32px rgba(24, 24, 24, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.journey-glimpse-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 168, 95, 0.55);
  box-shadow: 0 22px 42px rgba(24, 24, 24, 0.14);
}

.journey-glimpse-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.journey-glimpse-card:hover .journey-glimpse-image {
  transform: scale(1.05);
}

@keyframes journey-glimpses-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 5px));
  }
}

@keyframes journey-glimpses-scroll-reverse {
  from {
    transform: translateX(calc(-50% - 5px));
  }
  to {
    transform: translateX(0);
  }
}

.featured-platforms-section {
  padding: 42px 0 40px;
  background:
    radial-gradient(circle at 18% 18%, rgba(214, 168, 95, 0.08) 0%, transparent 24%),
    linear-gradient(180deg, #071321 0%, #081423 100%);
  color: #fff;
}

.featured-platforms-head {
  text-align: center;
}

.featured-platforms-head .eyebrow {
  display: inline-block;
}

.featured-platforms-head .section-title {
  margin-top: 8px;
  color: #f4ede3;
  font-size: clamp(2rem, 3vw, 3rem);
}

.featured-platforms-divider {
  width: 34px;
  height: 2px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, rgba(214, 168, 95, 0.2) 0%, rgba(214, 168, 95, 1) 50%, rgba(214, 168, 95, 0.2) 100%);
}

.featured-platforms-viewport {
  margin-top: 22px;
  overflow: hidden;
}

.featured-platforms-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: featured-platforms-scroll 28s linear infinite;
}

.featured-platforms-viewport:hover .featured-platforms-track {
  animation-play-state: paused;
}

.featured-platform-card {
  flex: 0 0 150px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(214, 168, 95, 0.16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: transform 0.28s ease, opacity 0.28s ease, filter 0.28s ease;
}

.featured-platform-card:hover {
  transform: translateY(-3px);
  filter: brightness(1.02);
}

.featured-platform-card img {
  max-width: 100%;
  max-height: 32px;
  object-fit: contain;
  opacity: 1;
}

@keyframes featured-platforms-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.mrh-purpose-section {
  padding: 34px 0 42px;
  background:
    radial-gradient(circle at 16% 20%, rgba(214, 168, 95, 0.08) 0%, transparent 22%),
    linear-gradient(180deg, #071321 0%, #081423 100%);
}

.mrh-purpose-card {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(340px, 0.96fr);
  align-items: center;
  gap: 34px;
  padding: 20px;
  border: 1px solid rgba(214, 168, 95, 0.16);
  background: rgba(5, 12, 20, 0.56);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
}

.mrh-purpose-visual {
  overflow: hidden;
  border: 1px solid rgba(214, 168, 95, 0.14);
  background: #0b1118;
}

.mrh-purpose-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
}

.mrh-purpose-copy {
  max-width: 500px;
  padding-right: 8px;
}

.mrh-purpose-copy .section-title {
  margin-top: 8px;
  color: #f4ede3;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
}

.mrh-purpose-divider {
  width: 74px;
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(214, 168, 95, 1) 0%, rgba(214, 168, 95, 0.18) 100%);
}

.mrh-purpose-copy .section-copy.light {
  margin-top: 16px;
  max-width: 470px;
  color: rgba(240, 234, 224, 0.84);
  font-size: 0.98rem;
  line-height: 1.65;
}

.mrh-purpose-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 10px;
  background: linear-gradient(180deg, #e1ad56 0%, #c8923f 100%);
  color: #fff8ef;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(200, 146, 63, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.mrh-purpose-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(200, 146, 63, 0.28);
}


.blogs-content-shell {
  padding-left: 32px;
  padding-right: 32px;
}

.featured-article-head {
  margin-bottom: 18px;
}

.featured-article-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(380px, 1.08fr);
  min-height: 392px;
  overflow: hidden;
  border-radius: 22px;
  background: #071321;
  border: 1px solid rgba(13, 25, 40, 0.08);
  box-shadow: 0 24px 60px rgba(18, 23, 31, 0.12);
}

.featured-article-copy {
  position: relative;
  padding: 30px 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(5, 12, 20, 0.98) 0%, rgba(7, 18, 30, 0.98) 100%);
}

.featured-article-copy::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 68px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 164, 109, 0.45), rgba(200, 164, 109, 0.12));
}

.featured-article-title {
  max-width: 410px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.58rem, 2.2vw, 2.2rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #f8f3eb;
}

.featured-article-text {
  max-width: 365px;
  margin-top: 14px;
  color: rgba(244, 238, 229, 0.84);
  font-size: 0.9rem;
  line-height: 1.56;
}

.featured-article-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 16px;
  color: rgba(244, 238, 229, 0.82);
  font-size: 0.84rem;
  font-weight: 500;
}

.featured-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.featured-meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.featured-meta-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.featured-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(244, 238, 229, 0.34);
}

.featured-article-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
}

.featured-article-visual {
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(5, 12, 20, 0.08) 0%, rgba(5, 12, 20, 0.02) 24%, rgba(5, 12, 20, 0.14) 100%),
    url('images/mr-hospital-static-clean.png') center center / cover no-repeat;
  background-color: #09131f;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 22px;
  align-items: end;
  margin-top: 40px;
}

.feature-grid-title {
  margin-top: 10px;
}

.feature-grid-copy {
  margin-top: 0;
}

.topics-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-top: 42px;
}

.topics-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.topic-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(16, 24, 38, 0.08);
  box-shadow: 0 6px 18px rgba(18, 23, 31, 0.04);
  color: #252a32;
  font-size: 0.92rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
}

.topic-chip.active {
  background: #071321;
  color: #fff;
  box-shadow: 0 12px 24px rgba(7, 19, 33, 0.16);
}

.topic-card[hidden] {
  display: none;
}

.topics-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.topic-card {
  min-height: 382px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 24, 38, 0.08);
  box-shadow: 0 16px 34px rgba(18, 23, 31, 0.06);
}

.topic-card-image {
  height: 176px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(16, 24, 38, 0.06);
}

.topic-card-image-healthcare {
  background:
    linear-gradient(180deg, rgba(8, 14, 22, 0.1) 0%, rgba(8, 14, 22, 0.18) 100%),
    url('images/social-mr-hospital-poster.jpg') center center / cover no-repeat;
  filter: saturate(0.46) brightness(0.76);
}

.topic-card-image-hospital {
  background:
    linear-gradient(180deg, rgba(8, 14, 22, 0.02) 0%, rgba(8, 14, 22, 0.08) 100%),
    url('images/mr-hospital-feature-new.png') center 58% / cover no-repeat;
}

.topic-card-image-leadership {
  background:
    linear-gradient(180deg, rgba(8, 14, 22, 0.16) 0%, rgba(8, 14, 22, 0.2) 100%),
    url('images/about-section-real.jpg') center 24% / cover no-repeat;
}

.topic-card-image-entrepreneur-street {
  background:
    linear-gradient(180deg, rgba(8, 14, 22, 0.08) 0%, rgba(8, 14, 22, 0.16) 100%),
    url('images/journey-entrepreneur.png') center center / cover no-repeat;
}

.topic-card-image-daily-beat {
  background:
    linear-gradient(180deg, rgba(8, 14, 22, 0.08) 0%, rgba(8, 14, 22, 0.12) 100%),
    url('images/media-daily-beat-feature.png') center 28% / cover no-repeat;
}

.topic-card-image-influencive {
  background:
    linear-gradient(180deg, rgba(8, 14, 22, 0.08) 0%, rgba(8, 14, 22, 0.14) 100%),
    url('images/media-influencive-india-feature.png') center 28% / cover no-repeat;
}

.topic-card-image-hindustan-bytes {
  background:
    linear-gradient(180deg, rgba(8, 14, 22, 0.08) 0%, rgba(8, 14, 22, 0.14) 100%),
    url('images/media-punjab-bytes-feature.png') center 26% / cover no-repeat;
}

.topic-card-image-hindustan-insider {
  background:
    linear-gradient(180deg, rgba(8, 14, 22, 0.08) 0%, rgba(8, 14, 22, 0.14) 100%),
    url('images/media-hindustan-insider-feature.png') center 22% / cover no-repeat;
}

.topic-card-image-prime-news,
.topic-card-image-indian-prime,
.topic-card-image-trend-insider,
.topic-card-image-nt-business,
.topic-card-image-urban-chronicle,
.topic-card-image-desi-spotlight,
.topic-card-image-india-buzz {
  background:
    linear-gradient(180deg, rgba(8, 14, 22, 0.08) 0%, rgba(8, 14, 22, 0.14) 100%),
    url('images/journey-institution.png') center 30% / cover no-repeat;
}

.topic-card-image-hindustan-metro,
.topic-card-image-tptv,
.topic-card-image-insta-story,
.topic-card-image-viral-bytes {
  background:
    linear-gradient(180deg, rgba(8, 14, 22, 0.08) 0%, rgba(8, 14, 22, 0.14) 100%),
    url('images/mr-hospital-static-clean.png') center 58% / cover no-repeat;
}

.topic-card-image-dh {
  background:
    linear-gradient(180deg, rgba(8, 14, 22, 0.08) 0%, rgba(8, 14, 22, 0.14) 100%),
    url('images/media-hub-feature.png') center 30% / cover no-repeat;
}

.topic-card-body {
  display: flex;
  flex-direction: column;
  min-height: 206px;
  padding: 18px 18px 16px;
}

.topic-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #9b8b74;
  font-size: 0.76rem;
  font-weight: 500;
}

.topic-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topic-card-title {
  min-height: 4.9em;
  margin-top: 12px;
  color: #111721;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.02rem, 1.18vw, 1.28rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.topic-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 24, 38, 0.08);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
}

.insight-quote-section {
  padding: 0 0 58px;
  background: var(--soft);
}

.insight-quote-shell {
  width: min(1920px, 100%);
  padding-left: 0;
  padding-right: 0;
}

.insight-quote-card {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 11, 19, 0.98) 0%, rgba(4, 11, 19, 0.96) 34%, rgba(4, 11, 19, 0.82) 56%, rgba(4, 11, 19, 0.46) 76%, rgba(4, 11, 19, 0.22) 100%),
    linear-gradient(180deg, #071220 0%, #06101b 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.insight-quote-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
  padding: 26px 28px 22px;
}

.insight-quote-mark {
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 4.8rem;
  line-height: 0.7;
}

.insight-quote-text {
  margin-top: -8px;
  color: #f7f2ea;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.insight-quote-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--accent);
  font-size: 0.98rem;
  font-weight: 700;
}

.insight-quote-line {
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, rgba(200, 164, 109, 0.95), rgba(200, 164, 109, 0.32));
}

.insight-quote-visual {
  position: absolute;
  inset: 0 0 0 auto;
  width: 48%;
  background:
    linear-gradient(90deg, rgba(6, 16, 27, 0) 0%, rgba(6, 16, 27, 0.14) 24%, rgba(6, 16, 27, 0.38) 100%),
    url('images/social-medium-poster.jpg') center 34% / cover no-repeat;
  opacity: 0.38;
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(18, 23, 31, 0.08);
}

.card-dark {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.section-copy {
  margin-top: 16px;
  color: var(--dark-copy);
  font-size: 0.98rem;
  line-height: 1.7;
}

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

.list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.list-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(200, 164, 109, 0.08);
  color: #1b2028;
  font-size: 0.94rem;
  line-height: 1.55;
}

.metric-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.metric-card,
.blog-card {
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 23, 31, 0.08);
}

.metric-value {
  color: var(--accent);
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.metric-label {
  margin-top: 10px;
  color: #2f343c;
  font-size: 0.92rem;
  line-height: 1.5;
}

.blog-card h3,
.contact-card h3 {
  color: #101826;
  font-size: 1.06rem;
  line-height: 1.35;
}

.blog-card p,
.contact-card p {
  margin-top: 12px;
  color: #59554e;
  font-size: 0.92rem;
  line-height: 1.68;
}

.map-card {
  overflow: hidden;
  border-radius: 22px;
  min-height: 360px;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.mrh-visit-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 20px;
  align-items: start;
}

.mrh-visit-frame {
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.98) 0%, rgba(252, 247, 239, 0.96) 100%);
  border: 1px solid rgba(213, 196, 171, 0.24);
  box-shadow: 0 26px 60px rgba(7, 16, 27, 0.18);
}

.mrh-visit-card {
  max-width: none;
  padding: 6px 10px 2px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mrh-visit-card .eyebrow {
  color: #c5a06a;
}

.mrh-visit-card .section-title {
  color: #121925;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.mrh-visit-divider {
  display: inline-block;
  width: 48px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, rgba(212, 163, 90, 0.92), rgba(212, 163, 90, 0.18));
}

.mrh-visit-list {
  margin-top: 18px;
}

.mrh-visit-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 24, 34, 0.09);
}

.mrh-visit-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.mrh-visit-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d4a35a;
  background: linear-gradient(180deg, #091321 0%, #08111c 100%);
  box-shadow: 0 14px 28px rgba(8, 14, 22, 0.16);
}

.mrh-visit-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mrh-visit-copy p {
  color: #182130;
  font-size: 0.88rem;
  line-height: 1.34;
}

.mrh-visit-copy p + p {
  margin-top: 2px;
}

.mrh-visit-map {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(16, 24, 38, 0.12);
  box-shadow: none;
  background: #f3efe7;
}

.mrh-visit-map .map-frame {
  height: 100%;
  min-height: 420px;
}

.contact-card {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(18, 23, 31, 0.08);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-line {
  color: #2f343c;
  font-size: 0.94rem;
  line-height: 1.6;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(200, 164, 109, 0.12);
  color: #1f2835;
  font-size: 0.82rem;
  font-weight: 600;
}

.timeline-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.timeline-item {
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.7);
}

.timeline-year {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-title {
  margin-top: 10px;
  color: #101826;
  font-size: 1rem;
  font-weight: 700;
}

.timeline-copy {
  margin-top: 8px;
  color: #555149;
  font-size: 0.92rem;
  line-height: 1.68;
}

.feature-grid,
.department-grid,
.gallery-grid,
.faq-grid {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.feature-card,
.department-card,
.gallery-card,
.faq-card {
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(18, 23, 31, 0.08);
}

.feature-card h3,
.department-card h3,
.gallery-card h3,
.faq-card h3 {
  color: #101826;
  font-size: 1.02rem;
  line-height: 1.35;
}

.feature-card p,
.department-card p,
.gallery-card p,
.faq-card p {
  margin-top: 10px;
  color: #57534c;
  font-size: 0.92rem;
  line-height: 1.68;
}

.gallery-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(7, 17, 29, 0.05) 0%, rgba(7, 17, 29, 0.22) 100%),
    url('images/mr-hospital-feature.png') center center / cover no-repeat;
  overflow: hidden;
}

.gallery-card h3,
.gallery-card p {
  color: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.review-card {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(18, 23, 31, 0.08);
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.reviewer {
  color: #101826;
  font-size: 0.98rem;
  font-weight: 700;
}

.review-meta {
  margin-top: 4px;
  color: #80868b;
  font-size: 0.78rem;
}

.review-stars {
  color: #fbbc04;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.review-body {
  margin-top: 14px;
  color: #4f4b45;
  font-size: 0.92rem;
  line-height: 1.72;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.field,
.field-full {
  display: grid;
  gap: 8px;
}

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

.field label,
.field-full label {
  color: #1d2633;
  font-size: 0.82rem;
  font-weight: 600;
}

.field input,
.field-full input,
.field-full textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(16, 24, 38, 0.12);
  border-radius: 14px;
  background: #fff;
  color: #101826;
  font: inherit;
}

.field-full textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(180deg, #25d366 0%, #19b95a 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.25);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.btn-icon-svg {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon-svg svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:is(.cta-btn, .contact-hero-btn, .mrh-hero-btn, .mrh-purpose-cta, .collab-cta-button, .footer-cta, .footer-submit) {
  position: relative;
  overflow: hidden;
}

:is(.cta-btn, .contact-hero-btn, .mrh-hero-btn, .mrh-purpose-cta, .collab-cta-button, .footer-cta, .footer-submit)::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 52%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.24) 48%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.42s ease;
  pointer-events: none;
}

:is(.cta-btn, .contact-hero-btn, .mrh-hero-btn, .mrh-purpose-cta, .collab-cta-button, .footer-cta, .footer-submit) .btn-icon-svg,
:is(.cta-btn, .mrh-purpose-cta, .footer-cta, .footer-submit) .btn-icon-svg,
:is(.contact-hero-btn, .mrh-hero-btn) :is(.contact-hero-btn-icon, .mrh-hero-btn-icon) {
  transition: transform 0.26s ease, background 0.26s ease, border-color 0.26s ease;
}

:is(.cta-btn, .contact-hero-btn, .mrh-hero-btn, .mrh-purpose-cta, .collab-cta-button, .footer-cta, .footer-submit):hover::after {
  left: 130%;
}

:is(.cta-btn, .mrh-purpose-cta, .footer-cta, .footer-submit):hover .btn-icon-svg,
:is(.contact-hero-btn:hover .contact-hero-btn-icon, .mrh-hero-btn:hover .mrh-hero-btn-icon),
:is(.collab-cta-button, .footer-cta, .footer-submit):hover .btn-icon-svg {
  transform: translateX(3px);
}

:is(.cta-btn, .contact-hero-btn, .mrh-hero-btn, .mrh-purpose-cta, .footer-cta, .footer-submit):hover {
  box-shadow: 0 20px 48px rgba(200, 164, 109, 0.24);
}

.page-section {
  background: #07111d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-shell {
  width: min(1760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 32px;
}

.collab-cta-section {
  padding: 0 0 56px;
  background: var(--soft);
}

.collab-cta-shell {
  width: min(1760px, calc(100% - 36px));
  padding: 0 32px;
}

.collab-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 124px;
  padding: 24px 32px;
  border: 1px solid rgba(15, 24, 36, 0.08);
  border-radius: 0;
  background:
    radial-gradient(circle at 14% 28%, rgba(200, 164, 109, 0.12), transparent 36%),
    linear-gradient(180deg, #fffdfa 0%, #fffaf4 100%);
  box-shadow: 0 14px 36px rgba(16, 24, 38, 0.06);
}

.collab-cta-copy {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.collab-cta-icon {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: linear-gradient(180deg, #071220 0%, #030b14 100%);
  box-shadow: 0 14px 28px rgba(5, 16, 29, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.collab-cta-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.collab-cta-title {
  color: #171717;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.collab-cta-text {
  margin-top: 10px;
  color: #62594d;
  font-size: 0.98rem;
  line-height: 1.55;
}

.collab-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 278px;
  min-height: 72px;
  padding: 0 28px;
  border-radius: 10px;
  background: linear-gradient(180deg, #071220 0%, #030b14 100%);
  color: #f9f2e7;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(5, 16, 29, 0.18);
}

.collab-cta-button .btn-icon-svg {
  border-color: rgba(200, 164, 109, 0.28);
  background: rgba(200, 164, 109, 0.08);
  color: var(--accent);
}

.footer-section {
  background: linear-gradient(180deg, #021326 0%, #041b35 100%);
  border-top: 1px solid rgba(212, 169, 95, 0.25);
}

.footer-recognition {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.footer-recognition-title {
  color: #f3e7d2;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-recognition-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.footer-recognition-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: footerMarquee 28s linear infinite;
}

.footer-recognition-chip {
  min-width: 176px;
  height: 62px;
  padding: 10px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(212, 169, 95, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 10px 22px rgba(0, 0, 0, 0.14);
}

.footer-recognition-chip img {
  max-width: 100%;
  max-height: 30px;
  object-fit: contain;
}

@keyframes footerMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.footer-panel {
  display: grid;
  grid-template-columns: 1.15fr 1.08fr 1.2fr 1.25fr;
  gap: 24px;
  padding: 38px 0 26px;
}

.footer-column {
  min-width: 0;
  padding: 0 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-column:first-child {
  padding-left: 0;
  border-left: 0;
}

.footer-column:last-child {
  padding-right: 0;
}

.footer-signature {
  width: 252px;
  max-width: 100%;
  margin-bottom: 18px;
  opacity: 0.98;
  filter: drop-shadow(0 6px 16px rgba(255, 255, 255, 0.06));
}

.footer-roleline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(235, 225, 210, 0.92);
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
}

.footer-roleline span + span::before {
  content: "\2022";
  margin-right: 10px;
  color: var(--accent);
}

.footer-copy,
.footer-note,
.footer-news-copy {
  color: rgba(236, 229, 216, 0.82);
  font-size: 0.96rem;
  line-height: 1.68;
  font-weight: 400;
}

.footer-copy {
  max-width: 320px;
}

.footer-note {
  margin-top: 0;
  color: rgba(236, 229, 216, 0.68);
}

.footer-title {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}

.footer-links-group {
  display: grid;
  gap: 10px;
}

.footer-links-label {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  line-height: 1.2;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-link:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-contact-card {
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.footer-contact-list {
  display: grid;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  line-height: 1.35;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(212, 169, 95, 0.34);
  background: radial-gradient(circle at 30% 30%, rgba(212, 169, 95, 0.18), rgba(212, 169, 95, 0.06));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #f1e4cb;
}

.footer-contact-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 100%;
  min-height: 50px;
  padding: 0 18px;
  margin-top: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d7a55a 0%, #c99647 100%);
  color: #fffaf0;
  font-size: 0.98rem;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(215, 165, 90, 0.2);
}

.footer-news-copy {
  max-width: 250px;
  margin-bottom: 16px;
}

.footer-newsletter {
  display: grid;
  gap: 12px;
  max-width: 320px;
  margin-bottom: 18px;
}

.footer-newsletter input {
  width: 100%;
  height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  outline: 0;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.94rem;
  font-family: inherit;
  backdrop-filter: blur(12px);
}

.footer-newsletter input::placeholder {
  color: rgba(236, 229, 216, 0.46);
}

.footer-submit {
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #d7a55a 0%, #c99647 100%);
  color: #fffaf0;
  font-size: 0.98rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 14px 28px rgba(215, 165, 90, 0.18);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.footer-social {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.footer-social:hover {
  transform: translateY(-4px);
  filter: saturate(1.04) brightness(1.03);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(212, 169, 95, 0.18);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.footer-social.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d5bd3 100%);
}

.footer-social.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 32%, #d6249f 62%, #285aeb 92%);
}

.footer-social.youtube {
  background: linear-gradient(135deg, #ff3b30 0%, #e31612 100%);
}

.footer-social.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #16b857 100%);
}

.footer-quote {
  padding: 10px 0 24px;
  text-align: center;
  color: #f4ead8;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-quote-text {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.footer-quote-author {
  margin-top: 10px;
  color: rgba(200, 164, 109, 0.92);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal-link {
  color: rgba(236, 229, 216, 0.72);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-legal-link:hover {
  color: var(--accent);
}

@media (max-width: 1280px) {
  .section-shell,
  .collab-cta-shell,
  .contact-info-strip-shell {
    width: min(100% - 40px, 1400px);
  }

  .footer-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 0;
  }

  .footer-column:nth-child(3) {
    border-left: 0;
    padding-left: 26px;
  }
}

@media (max-height: 820px) and (min-width: 961px) {
  .hospital-hero-copy {
    max-width: 430px;
    padding: 30px 22px 24px 48px;
  }

  .hospital-hero-title {
    font-size: clamp(2.65rem, 3.7vw, 3.9rem);
  }

  .hospital-hero-location {
    margin-top: 16px;
  }

  .hospital-hero-actions {
    margin-top: 14px;
  }

  .hospital-hero-btn {
    min-height: 42px;
    font-size: 0.86rem;
  }
}

@media (max-width: 960px) {
  .mrh-purpose-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mrh-purpose-copy {
    max-width: 100%;
    padding-right: 0;
  }

  .featured-platform-card {
    flex-basis: 136px;
  }

  .journey-glimpse-card {
    flex-basis: min(190px, 32vw);
  }

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

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

  .about-letter-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-letter-copy {
    max-width: 100%;
    padding-left: 0;
  }

  .about-letter-visual-wrap {
    padding: 18px 18px 26px 0;
  }

  .about-letter-frame {
    top: 34px;
    left: 32px;
  }

  .topbar-shell,
  .page-shell,
  .section-shell,
  .collab-cta-shell {
    width: calc(100% - 28px);
    padding: 0 14px;
  }

  .topbar-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .grid-two,
  .contact-grid,
  .metric-grid,
  .blog-grid,
  .feature-grid,
  .department-grid,
  .gallery-grid,
  .review-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 18px;
  }

  .featured-article-card,
  .section-heading-row,
  .topics-grid {
    grid-template-columns: 1fr;
  }

  .blogs-content-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .topics-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-article-card {
    min-height: 0;
  }

  .featured-article-copy {
    padding: 26px 22px 20px;
  }

  .featured-article-copy::after {
    left: 22px;
    right: 22px;
    bottom: 70px;
  }

  .featured-article-title {
    max-width: 520px;
    font-size: clamp(1.9rem, 4.2vw, 2.45rem);
  }

  .featured-article-text {
    max-width: 520px;
  }

  .featured-article-visual {
    min-height: 300px;
  }

  .featured-article-link {
    margin-left: 0;
  }

  .topic-card-image {
    height: 210px;
  }

  .topic-card {
    min-height: 0;
  }

  .topic-card-body {
    min-height: 0;
    padding: 18px 18px 16px;
  }

  .insight-quote-card {
    min-height: 214px;
  }

  .insight-quote-copy {
    max-width: 100%;
    padding: 24px 22px 20px;
  }

  .insight-quote-text {
    font-size: clamp(1.65rem, 4.6vw, 2.4rem);
  }

  .insight-quote-visual {
    width: 42%;
    opacity: 0.3;
  }

  .collab-cta-section {
    padding-bottom: 44px;
  }

  .collab-cta-card {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    min-height: 0;
    padding: 22px 18px;
  }

  .collab-cta-copy {
    align-items: flex-start;
    gap: 16px;
  }

  .collab-cta-icon {
    width: 62px;
    height: 62px;
  }

  .collab-cta-title {
    font-size: clamp(1.7rem, 7vw, 2.35rem);
  }

  .collab-cta-text {
    font-size: 0.92rem;
  }

  .collab-cta-button {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    padding: 0 20px;
  }

  .footer-recognition {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .footer-panel {
    grid-template-columns: 1fr;
    gap: 18px 0;
    padding: 20px 0 10px;
  }

  .footer-column,
  .footer-column:first-child,
  .footer-column:nth-child(3) {
    padding: 0 10px 18px;
    border-left: 0;
  }

  .footer-signature {
    width: 184px;
  }

  .footer-copy,
  .footer-note,
  .footer-news-copy,
  .footer-link,
  .footer-contact-item,
  .footer-legal-link {
    font-size: 0.88rem;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
  }

  .footer-roleline {
    gap: 8px;
  }

  .footer-roleline span + span::before {
    margin-right: 8px;
  }

  .footer-newsletter,
  .footer-contact-card {
    max-width: none;
  }

  .footer-cta {
    min-width: 0;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0 6px;
  }

  .blog-hero-card {
    min-height: 760px;
    grid-template-columns: 1fr;
  }

  .contact-hero-card {
    min-height: 760px;
    grid-template-columns: 1fr;
  }

  .hospital-hero-card {
    min-height: 660px;
    grid-template-columns: 1fr;
  }

  .hospital-hero-copy {
    max-width: none;
    padding: 42px 28px 20px;
  }

  .hospital-hero-title {
    font-size: clamp(2.8rem, 6.3vw, 3.9rem);
  }

  .hospital-hero-visual {
    min-height: 360px;
  }

  .hospital-hero-arc {
    left: 4%;
    top: -14%;
    width: 32%;
    height: 116%;
  }

  .contact-hero-copy {
    max-width: none;
    padding: 46px 28px 24px;
  }

  .contact-hero-title {
    font-size: clamp(3rem, 7vw, 4.35rem);
  }

  .contact-hero-description {
    max-width: 430px;
  }

  .contact-hero-visual {
    min-height: 360px;
  }

  .contact-info-strip-shell {
    width: calc(100% - 28px);
    padding: 0 14px;
  }

  .contact-info-strip-section {
    margin-top: -32px;
  }

  .contact-info-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-info-item {
    min-height: 0;
    padding: 26px 22px 24px;
  }

  .contact-info-item:nth-child(3),
  .contact-info-item:nth-child(4) {
    border-top: 1px solid rgba(16, 24, 38, 0.08);
  }

  .mrh-about-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mrh-about-copy {
    max-width: none;
    padding: 0;
  }

  .mrh-about-title {
    font-size: clamp(2.3rem, 6vw, 3.5rem);
  }

  .mrh-about-text {
    max-width: 520px;
  }

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

  .mrh-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

  .testimonials-shell {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .testimonials-intro {
    min-height: 0;
    padding: 0 56px 0 0;
  }

  .testimonials-prev {
    top: 0;
  }

  .testimonials-next {
    display: none;
  }

  .testimonials-grid {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .mrh-visit-card {
    min-height: 0;
    padding: 10px 8px 0;
    max-width: none;
  }

  .mrh-visit-grid {
    grid-template-columns: 1fr;
  }

  .mrh-visit-frame {
    padding: 18px 16px;
  }

  .mrh-visit-card .section-title {
    font-size: clamp(2.2rem, 6vw, 2.9rem);
  }

  .mrh-visit-item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 0;
  }

  .mrh-visit-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .mrh-visit-icon svg {
    width: 20px;
    height: 20px;
  }

  .mrh-visit-copy p {
    font-size: 0.9rem;
  }

  .mrh-visit-map,
  .mrh-visit-map .map-frame {
    min-height: 420px;
  }

  .mrh-services-title {
    font-size: clamp(2.1rem, 5.6vw, 3rem);
  }

  .mrh-service-card {
    min-height: 224px;
    padding: 24px 20px 20px;
  }

  .mrh-about-feature:nth-child(3),
  .mrh-about-feature:nth-child(4) {
    border-top: 1px solid rgba(17, 25, 34, 0.08);
  }

  .mrh-about-feature:nth-child(3) {
    border-left: 0;
  }

  .contact-info-item:nth-child(3) {
    border-left: 0;
  }

  .contact-message-shell {
    width: calc(100% - 28px);
    padding: 0 14px;
  }

  .contact-message-card {
    grid-template-columns: 1fr;
  }

  .contact-message-profile {
    border-left: 0;
    border-top: 1px solid rgba(200, 164, 109, 0.12);
  }

  .visit-hospital-shell {
    width: calc(100% - 28px);
    padding: 0 14px;
  }

  .visit-hospital-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 20px;
  }

  .visit-hospital-map-wrap,
  .visit-hospital-map {
    min-height: 320px;
  }

  .visit-hospital-directions {
    right: 20px;
    width: 132px;
    height: 132px;
  }

  .blog-hero-copy {
    max-width: none;
    padding: 46px 28px 24px;
  }

  .blog-hero-title {
    font-size: clamp(3rem, 7vw, 4.35rem);
  }

  .blog-hero-description {
    max-width: 430px;
  }

  .blog-hero-visual {
    min-height: 360px;
  }

  .blog-hero-image {
    right: 50%;
    width: min(76vw, 620px);
    transform: translateX(50%);
  }

  .blog-hero-shelf {
    right: 8%;
    width: 28%;
  }

  .blog-hero-lamp {
    left: 20%;
    top: 18%;
  }

  .about-hero-backdrop {
    object-position: center 18%;
  }

  .about-hero-copy {
    max-width: none;
    padding: 112px 28px 24px;
  }

  .about-hero-premium .hero-title {
    max-width: none;
    font-size: clamp(3rem, 7vw, 4.2rem);
  }

  .about-hero-premium .hero-copy {
    max-width: 460px;
  }

  .about-hero-visual {
    min-height: 320px;
    padding: 0;
    justify-content: center;
    align-items: flex-end;
  }

  .about-hero-portrait {
    width: min(66vw, 520px);
    height: 100%;
    transform: translateY(6px);
  }

  .about-hero-image {
    display: none;
  }
}

@media (max-width: 640px) {
  .mrh-purpose-section {
    padding: 26px 0 34px;
  }

  .mrh-purpose-card {
    padding: 14px;
  }

  .mrh-purpose-copy .section-title {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
  }

  .mrh-purpose-copy .section-copy.light {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .featured-platforms-track {
    gap: 14px;
  }

  .featured-platform-card {
    flex-basis: 124px;
    min-height: 52px;
    padding: 6px 10px;
  }

  .featured-platform-card img {
    max-height: 28px;
  }

  .journey-glimpses-track {
    gap: 8px;
  }

  .journey-glimpse-card {
    flex-basis: min(170px, 62vw);
  }

  .core-values-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .core-value-card {
    padding: 22px 16px 16px;
  }

  .turning-points-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .turning-point-card {
    min-height: 248px;
  }

  .turning-point-copy {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .about-letter-section {
    padding: 54px 0 58px;
  }

  .about-letter-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .about-letter-text {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .about-letter-signature {
    width: 160px;
  }

  .about-letter-role {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .about-letter-visual-wrap {
    padding: 14px 14px 22px 0;
  }

  .about-letter-frame {
    top: 24px;
    left: 20px;
    bottom: 10px;
  }

  .about-letter-dots {
    width: 84px;
    height: 84px;
    background-size: 8px 8px;
  }

  .hero-band {
    padding: 58px 0 44px;
  }

  .about-hero-premium {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 0 0 14px;
    display: block;
  }

  .about-hero-card {
    height: auto;
    min-height: 0;
    max-height: none;
    border-radius: 18px;
  }

  .blog-hero-card {
    min-height: 0;
  }

  .contact-hero-card {
    min-height: 0;
  }

  .hospital-hero-card {
    min-height: 0;
  }

  .hospital-hero-copy {
    padding: 34px 18px 14px;
  }

  .hospital-hero-title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    line-height: 0.94;
  }

  .hospital-hero-location {
    margin-top: 20px;
    font-size: 0.92rem;
  }

  .hospital-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hospital-hero-btn {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
  }

  .hospital-hero-visual {
    min-height: 280px;
  }

  .hospital-hero-arc {
    left: 3%;
    top: -6%;
    width: 24%;
    height: 96%;
  }

  .contact-hero-copy {
    padding: 34px 18px 14px;
  }

  .contact-hero-title {
    font-size: clamp(2.5rem, 10vw, 3.8rem);
    line-height: 0.94;
  }

  .contact-hero-description {
    max-width: 280px;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .contact-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 24px;
  }

  .contact-hero-btn {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    justify-content: flex-start;
    font-size: 0.92rem;
  }

  .contact-hero-visual {
    min-height: 280px;
  }

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

  .contact-info-strip-section {
    margin-top: -18px;
    padding-bottom: 0;
  }

  .contact-info-strip {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .contact-info-item {
    gap: 14px;
    padding: 20px 18px;
  }

  .contact-info-item + .contact-info-item,
  .contact-info-item:nth-child(3),
  .contact-info-item:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(16, 24, 38, 0.08);
  }

  .contact-info-icon {
    width: 50px;
    height: 50px;
  }

  .contact-info-icon svg {
    width: 22px;
    height: 22px;
  }

  .contact-info-copy h3 {
    font-size: 1rem;
  }

  .contact-info-primary,
  .contact-info-secondary {
    font-size: 0.9rem;
  }

  .contact-message-section {
    padding: 44px 0;
  }

  .contact-message-form-pane,
  .contact-message-profile {
    padding: 28px 20px 24px;
  }

  .contact-message-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .contact-message-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-input-wrap {
    min-height: 52px;
  }

  .contact-textarea-wrap {
    min-height: 144px;
    margin-top: 14px;
  }

  .contact-profile-name {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .contact-profile-socials {
    gap: 12px;
  }

  .contact-profile-social {
    width: 44px;
    height: 44px;
  }

  .visit-hospital-section {
    padding-bottom: 44px;
  }

  .visit-hospital-card {
    padding: 18px 16px;
    gap: 18px;
  }

  .visit-hospital-title {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .visit-hospital-item {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    padding: 12px 0;
  }

  .visit-hospital-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .visit-hospital-icon svg {
    width: 20px;
    height: 20px;
  }

  .visit-hospital-item p {
    font-size: 0.92rem;
  }

  .visit-hospital-map-wrap,
  .visit-hospital-map {
    min-height: 260px;
    border-radius: 18px;
  }

  .visit-hospital-directions {
    right: 14px;
    top: auto;
    bottom: 14px;
    transform: none;
    width: 108px;
    height: 108px;
    gap: 6px;
  }

  .visit-hospital-directions-icon svg {
    width: 28px;
    height: 28px;
  }

  .visit-hospital-directions span:last-child {
    max-width: 72px;
    font-size: 0.82rem;
  }

  .mrh-about-title {
    font-size: clamp(2rem, 9vw, 2.9rem);
    line-height: 1.12;
  }

  .mrh-about-text {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .mrh-about-features {
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
  }

  .mrh-about-feature {
    padding: 18px 10px 0;
    gap: 10px;
  }

  .mrh-about-feature h3 {
    font-size: 0.88rem;
  }

  .mrh-about-feature p {
    font-size: 0.8rem;
  }

  .mrh-about-image {
    border-radius: 16px;
  }

  .mrh-services-section {
    padding: 48px 0 52px;
  }

  .mrh-inside-section {
    padding: 48px 0 56px;
  }

  .mrh-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mrh-inside-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mrh-service-card {
    min-height: 0;
    padding: 22px 16px 18px;
  }

  .mrh-inside-card,
  .mrh-inside-card img {
    min-height: 260px;
  }

  .testimonials-section {
    padding: 38px 0 40px;
  }

  .testimonials-shell {
    width: min(100%, calc(100% - 24px));
    padding: 0 6px;
  }

  .testimonials-intro {
    padding: 0 52px 0 0;
  }

  .testimonials-grid {
    grid-auto-columns: 100%;
  }

  .testimonial-card {
    min-height: 0;
  }

  .mrh-visit-card {
    min-height: 0;
    padding: 6px 0 0;
  }

  .mrh-visit-item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 0;
  }

  .mrh-visit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .mrh-visit-icon svg {
    width: 20px;
    height: 20px;
  }

  .mrh-visit-copy p {
    font-size: 0.92rem;
    line-height: 1.38;
  }

  .mrh-visit-frame {
    padding: 16px 12px;
  }

  .mrh-visit-map,
  .mrh-visit-map .map-frame {
    min-height: 300px;
  }

  .mrh-service-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .mrh-service-icon svg {
    width: 36px;
    height: 36px;
  }

  .mrh-service-card h3 {
    margin-top: 16px;
    font-size: 0.94rem;
  }

  .mrh-service-card p {
    margin-top: 10px;
    max-width: 240px;
    font-size: 0.88rem;
  }

  .mrh-service-arrow {
    padding-top: 16px;
    font-size: 1.35rem;
  }

  .blog-hero-copy {
    padding: 34px 18px 14px;
  }

  .blog-hero-title {
    font-size: clamp(2.5rem, 10.2vw, 3.6rem);
    line-height: 0.94;
  }

  .blog-hero-description {
    max-width: 260px;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .blog-hero-visual {
    min-height: 280px;
  }

  .blog-hero-image {
    width: min(88vw, 500px);
  }

  .blog-hero-shelf {
    width: 34%;
    opacity: 0.72;
  }

  .blog-hero-lamp {
    left: 16%;
    top: 16%;
    width: 46px;
    height: 46px;
  }

  .featured-article-copy {
    padding: 22px 16px 16px;
  }

  .blogs-content-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .featured-article-copy::after {
    left: 16px;
    right: 16px;
    bottom: 76px;
  }

  .featured-article-title {
    font-size: clamp(1.46rem, 6vw, 1.95rem);
  }

  .featured-article-text {
    font-size: 0.86rem;
    line-height: 1.52;
  }

  .featured-article-meta {
    gap: 12px;
    margin-top: 18px;
    padding-top: 14px;
    font-size: 0.8rem;
  }

  .featured-meta-dot {
    display: none;
  }

  .featured-article-visual {
    min-height: 220px;
  }

  .section-heading-row {
    margin-top: 30px;
  }

  .topics-header {
    margin-top: 30px;
  }

  .topics-chip-row {
    gap: 10px;
  }

  .topic-chip {
    min-height: 36px;
    padding: 0 16px;
    font-size: 0.84rem;
  }

  .topics-view-all {
    font-size: 0.92rem;
  }

  .topics-grid {
    margin-top: 24px;
  }

  .topic-card-image {
    height: 172px;
  }

  .topic-card-body {
    padding: 16px 16px 14px;
  }

  .topic-card-title {
    min-height: auto;
    font-size: clamp(0.98rem, 4.8vw, 1.18rem);
    line-height: 1.2;
    -webkit-line-clamp: 3;
  }

  .topic-card-link {
    margin-top: 14px;
    padding-top: 14px;
    font-size: 0.88rem;
  }

  .insight-quote-section {
    padding-bottom: 44px;
  }

  .insight-quote-card {
    min-height: 186px;
  }

  .insight-quote-copy {
    padding: 18px 16px 16px;
  }

  .insight-quote-mark {
    font-size: 3.6rem;
  }

  .insight-quote-text {
    margin-top: -2px;
    font-size: clamp(1.2rem, 6vw, 1.7rem);
    line-height: 1.08;
  }

  .insight-quote-author {
    margin-top: 16px;
    font-size: 0.84rem;
  }

  .insight-quote-line {
    width: 42px;
  }

  .insight-quote-visual {
    width: 46%;
    background-position: 58% 36%;
    opacity: 0.22;
  }

  .collab-cta-card {
    padding: 18px 16px;
    gap: 18px;
  }

  .collab-cta-copy {
    flex-direction: column;
    gap: 14px;
  }

  .collab-cta-icon {
    width: 58px;
    height: 58px;
  }

  .collab-cta-icon svg {
    width: 24px;
    height: 24px;
  }

  .collab-cta-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .collab-cta-text {
    margin-top: 8px;
    font-size: 0.88rem;
  }

  .collab-cta-button {
    min-height: 58px;
    padding: 0 18px;
    font-size: 0.94rem;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-social {
    width: 48px;
    height: 48px;
  }

  .footer-quote-text {
    font-size: clamp(1.2rem, 5.8vw, 1.55rem);
    line-height: 1.42;
  }

  .about-hero-copy {
    padding: 108px 18px 16px;
  }

  .about-hero-premium .hero-title {
    font-size: clamp(2.35rem, 9.5vw, 3.5rem);
    line-height: 1.02;
  }

  .about-hero-premium .hero-copy {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .about-hero-visual {
    min-height: 260px;
    padding: 0;
  }

  .about-hero-backdrop {
    object-position: center 16%;
  }

  .about-hero-portrait {
    width: min(82vw, 400px);
    height: 100%;
    transform: translateY(2px);
  }

  .about-hero-image {
    display: none;
  }

  .hero-copy,
  .section-copy,
  .section-copy.light {
    font-size: 0.92rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .topcta,
  .btn-dark,
  .btn-light {
    width: 100%;
  }

  .card,
  .card-dark,
  .metric-card,
  .blog-card,
  .contact-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .map-card,
  .map-frame {
    min-height: 280px;
  }

  .feature-card,
  .department-card,
  .gallery-card,
  .faq-card,
  .review-card {
    padding: 20px 18px;
    border-radius: 18px;
  }

.whatsapp-float {
  right: 14px;
  bottom: 14px;
  width: 54px;
  height: 54px;
}
}

@media (max-width: 820px) {
  .contact-hero-shell,
  .page-shell {
    width: calc(100% - 24px);
    padding-left: 12px;
    padding-right: 12px;
  }

  .contact-hero-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-hero-copy {
    max-width: 100%;
  }

  .contact-hero-copy {
    padding: 34px 18px 18px;
  }

  .about-hero-copy .contact-hero-title {
    font-size: clamp(2.35rem, 9vw, 3.6rem);
    line-height: 0.96;
  }

  .about-hero-copy .contact-hero-description {
    max-width: 360px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .contact-hero-actions {
    gap: 12px;
    margin-top: 22px;
  }

  .contact-hero-btn {
    min-height: 54px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .contact-hero-visual {
    min-height: 300px;
  }

  .contact-hero-image {
    object-position: 62% center;
  }

  .about-letter-section,
  .section-light,
  .section-dark,
  .journey-glimpses-section,
  .featured-platforms-section,
  .mrh-purpose-section {
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .journey-glimpses-section-secondary {
    padding-top: 0;
    margin-top: -18px;
  }

  .about-letter-shell {
    gap: 24px;
  }

  .about-letter-quote-mark {
    font-size: 4.2rem;
  }

  .about-letter-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.04;
  }

  .about-letter-text {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .about-letter-signature {
    width: 156px;
    margin-top: 16px;
  }

  .about-letter-role {
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .about-letter-visual-wrap {
    padding: 12px 12px 18px 0;
  }

  .about-letter-frame {
    top: 22px;
    left: 18px;
    bottom: 8px;
  }

  .about-letter-image {
    aspect-ratio: 1.45 / 1;
  }

  .turning-points-head .section-title,
  .core-values-head .section-title,
  .journey-glimpses-head .section-title,
  .featured-platforms-head .section-title,
  .mrh-purpose-copy .section-title {
    font-size: clamp(1.95rem, 7.8vw, 2.55rem);
    line-height: 1.02;
  }

  .turning-points-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }

  .turning-point-card {
    min-height: 234px;
  }

  .turning-point-copy {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .turning-point-copy h3 {
    font-size: 1rem;
  }

  .turning-point-copy p {
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }

  .core-value-card {
    padding: 20px 16px 16px;
  }

  .core-value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .core-value-icon svg {
    width: 32px;
    height: 32px;
  }

  .core-value-card h3 {
    font-size: 1.02rem;
  }

  .core-value-card p {
    max-width: 240px;
    font-size: 0.84rem;
  }

  .journey-glimpses-viewport,
  .featured-platforms-viewport {
    margin-top: 18px;
  }

  .journey-glimpse-card {
    flex-basis: 168px;
  }

  .journey-glimpse-image {
    aspect-ratio: 1.1 / 1;
  }

  .featured-platform-card {
    flex-basis: 122px;
    min-height: 50px;
    padding: 6px 10px;
  }

  .featured-platform-card img {
    max-height: 24px;
  }

  .mrh-purpose-card {
    gap: 18px;
    padding: 14px;
  }

  .mrh-purpose-image {
    aspect-ratio: 1.55 / 1;
  }

  .mrh-purpose-copy .section-copy.light {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .mrh-purpose-cta {
    width: 100%;
    min-height: 48px;
  }

  .footer-recognition {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .footer-panel {
    grid-template-columns: 1fr;
    gap: 18px 0;
    padding: 20px 0 10px;
  }

  .footer-column,
  .footer-column:first-child,
  .footer-column:nth-child(3) {
    padding: 0 10px 18px;
    border-left: 0;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-cta,
  .footer-submit {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .blog-hero-premium {
    padding-top: 84px;
  }

  .blog-hero-shell,
  .blogs-content-shell {
    width: min(100% - 24px, 1200px);
    padding-left: 12px;
    padding-right: 12px;
  }

  .blog-hero-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 28px;
    overflow: hidden;
  }

  .blog-hero-copy {
    max-width: 100%;
    padding: 36px 20px 18px;
  }

  .blog-hero-title {
    max-width: 100%;
    font-size: clamp(2.35rem, 9vw, 3.5rem);
    line-height: 0.96;
  }

  .blog-hero-description {
    max-width: 360px;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .blog-hero-visual {
    min-height: 300px;
  }

  .blog-hero-image {
    right: 50%;
    width: min(88vw, 520px);
    transform: translateX(50%);
    object-position: center top;
  }

  .blog-hero-room-glow {
    opacity: 0.48;
    filter: blur(48px);
  }

  .blog-hero-shelf,
  .blog-hero-lamp {
    opacity: 0.55;
    transform: scale(0.88);
    transform-origin: center;
  }

  .featured-article-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .featured-article-copy {
    padding: 22px 18px 18px;
  }

  .featured-article-copy::after {
    right: 18px;
    bottom: 74px;
    left: 18px;
  }

  .featured-article-title {
    font-size: clamp(1.6rem, 6.8vw, 2.1rem);
    line-height: 1.04;
  }

  .featured-article-text {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .featured-article-meta {
    gap: 10px 14px;
    flex-wrap: wrap;
  }

  .featured-article-link {
    width: 100%;
    justify-content: center;
  }

  .featured-article-visual {
    min-height: 240px;
  }

  .topics-header {
    gap: 14px;
    align-items: flex-start;
  }

  .topics-chip-row {
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
  }

  .topic-chip {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

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

  .topic-card {
    min-height: 0;
  }

  .topic-card-image {
    height: 190px;
  }

  .topic-card-body {
    padding: 16px;
  }

  .topic-card-title {
    font-size: 1rem;
    line-height: 1.35;
  }

  .topic-card-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .blog-hero-shell,
  .blogs-content-shell {
    width: min(100% - 18px, 1200px);
    padding-left: 9px;
    padding-right: 9px;
  }

  .blog-hero-premium {
    padding-top: 78px;
  }

  .blog-hero-copy {
    padding: 30px 16px 16px;
  }

  .blog-hero-title {
    font-size: clamp(2.05rem, 10.4vw, 2.8rem);
    line-height: 0.98;
  }

  .blog-hero-description {
    max-width: 100%;
    font-size: 0.88rem;
  }

  .blog-hero-visual {
    min-height: 260px;
  }

  .blog-hero-image {
    width: min(90vw, 430px);
  }

  .blog-hero-shelf,
  .blog-hero-lamp {
    display: none;
  }

  .featured-article-copy {
    padding: 20px 14px 16px;
  }

  .featured-article-copy::after {
    right: 14px;
    bottom: 72px;
    left: 14px;
  }

  .featured-article-title {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .featured-article-text {
    font-size: 0.86rem;
    line-height: 1.54;
  }

  .featured-article-visual {
    min-height: 210px;
  }

  .topic-card-image {
    height: 172px;
  }

  .topic-card-body {
    padding: 14px;
  }

  .topic-card-title {
    font-size: 0.96rem;
  }

  .topic-card-link {
    margin-top: 12px;
    min-height: 44px;
  }
}

@media (max-width: 820px) {
  body.menu-open {
    overflow: hidden;
  }

  body {
    overflow-x: hidden;
  }

  #navbar {
    padding: 12px 0;
  }

  #navbar.scrolled,
  #navbar.menu-open {
    background: rgba(5, 10, 20, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-shell {
    width: calc(100% - 28px);
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    gap: 16px;
    padding: 0 10px;
  }

  .logo {
    justify-self: start;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    flex-direction: column;
  }

  .nav-links,
  .nav-shell > .cta-btn {
    display: none;
  }

  .mobile-nav-panel {
    display: grid;
    grid-column: 1 / -1;
    gap: 18px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.38s ease, opacity 0.28s ease, padding 0.28s ease, margin-top 0.28s ease;
    margin-top: 0;
    border-radius: 22px;
    background: rgba(9, 18, 31, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  }

  #navbar.menu-open .mobile-nav-panel {
    max-height: 80vh;
    opacity: 1;
    pointer-events: auto;
    padding: 18px;
    margin-top: 8px;
  }

  #navbar.menu-open .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  #navbar.menu-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }

  #navbar.menu-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav-links {
    display: grid;
    gap: 8px;
  }

  .mobile-nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 500;
  }

  .mobile-nav-links a::after {
    content: "\2192";
    color: var(--accent);
    font-size: 1rem;
  }

  .mobile-nav-cta {
    width: 100%;
    justify-content: center;
  }

  .mobile-nav-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .mobile-nav-social {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }

  .mobile-nav-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }
}
