/* Public website only. Patient, booking and staff screens retain their own UI. */
:root {
    --ink: #19374c;
    --muted: #5c6d77;
    --wine: #873d50;
    --paper: #fff;
    --cream: #f5f1eb;
    --soft: #eef2f1;
    --line: #dbe1e2;
    --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --serif: Georgia, "Times New Roman", serif;
    --gutter: clamp(22px, 5vw, 80px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 16px/1.65 var(--sans); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, summary { cursor: pointer; }
button { color: inherit; }
figure, blockquote { margin: 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 600; line-height: 1.18; letter-spacing: -.035em; text-wrap: balance; }
h1 { font-size: clamp(31px, 3.7vw, 48px); }
h2 { font-size: clamp(26px, 2.8vw, 37px); }
h3 { font-size: 22px; }
h1 em, h2 em { font-family: var(--serif); font-weight: 400; }
p { margin-bottom: 1em; }
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible { outline: 3px solid #b16b7d; outline-offset: 5px; }
[hidden] { display: none !important; }
.shell { width: calc(100% - var(--gutter) * 2); max-width: 1360px; margin-inline: auto; }
.section-pad { padding-block: clamp(58px, 6vw, 92px); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--wine); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; line-height: 1.5; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 48px; padding: 13px 23px; border: 1px solid transparent; border-radius: 4px; font-size: 13px; font-weight: 600; line-height: 1.5; transition: background .2s, color .2s, transform .2s; }
.button > span { font-size: 19px; }
.button:hover { transform: translateY(-2px); }
.button-dark, .button-coral { background: var(--wine); color: white; }
.button-dark:hover, .button-coral:hover { background: #6e2e40; }
.button-light { background: white; color: var(--ink); }
.button-light:hover { background: var(--cream); }
.button-secondary { border-color: var(--ink); color: var(--ink); }
.button-secondary:hover { background: var(--ink); color: white; }
.arrow-link { display: inline-flex; align-items: center; gap: 20px; padding-block: 11px; font-size: 13px; font-weight: 600; border-bottom: 1px solid currentColor; line-height: 1.5; }
.arrow-link span { transition: transform .2s; }
.arrow-link:hover span { transform: translateX(4px); }
.skip-link { position: fixed; z-index: 100; left: 20px; top: -100px; padding: 12px 18px; background: var(--ink); color: white; }
.skip-link:focus { top: 10px; }
.topline { display: flex; justify-content: space-between; align-items: center; min-height: 33px; padding: 5px var(--gutter); background: var(--ink); color: #e6edef; font-size: 10px; letter-spacing: .02em; }
.topline-separator { margin-inline: 8px; color: #d3a1af; }
.topline a:hover { text-decoration: underline; }
.nav-wrap { position: sticky; z-index: 40; top: 0; min-height: 91px; padding: 14px var(--gutter); display: flex; align-items: center; gap: 28px; background: #fff; border-bottom: 1px solid #e6e9e8; transition: box-shadow .2s; }
.nav-wrap.scrolled { box-shadow: 0 4px 20px #19374c0c; }
.brand { flex: none; display: inline-flex; gap: 10px; align-items: center; margin-right: auto; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand strong { display: block; font-size: 20px; font-weight: 650; letter-spacing: -.035em; line-height: 1.25; }
.brand small { display: block; font-size: 10px; color: var(--muted); margin-top: 4px; letter-spacing: .045em; }
.main-nav { display: flex; align-items: center; gap: clamp(15px, 1.6vw, 25px); }
.main-nav > a { position: relative; padding-block: 12px; font-size: 12px; font-weight: 500; white-space: nowrap; }
.main-nav > a::after { content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 1px; background: var(--wine); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.main-nav > a:hover::after, .main-nav > a.active::after { transform: scaleX(1); }
.nav-cta { min-height: 43px; font-size: 12px; padding: 10px 17px; }
.nav-toggle, .main-nav .mobile-booking { display: none; }
.hospital-intro { background: var(--cream); overflow: hidden; }
.hospital-intro-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 565px; max-width: 1800px; margin-inline: auto; }
.hospital-intro-copy { align-self: center; padding: 62px 40px 62px var(--gutter); }
.hospital-intro-copy .eyebrow { margin-bottom: 23px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--wine); box-shadow: 0 0 0 5px #873d500c; }
.hospital-intro-copy h1 { margin-bottom: 22px; line-height: 1.15; }
.hospital-intro-copy h1 em { color: var(--wine); }
.hospital-intro-copy > p:not(.eyebrow) { max-width: 435px; font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.hero-actions { display: flex; align-items: center; gap: 23px; flex-wrap: wrap; }
.hero-actions .arrow-link { border-bottom: 0; gap: 13px; }
.intro-contact { position: relative; display: grid; grid-template-columns: auto auto; justify-content: start; gap: 2px 20px; padding: 20px 0 0 18px; margin-top: 31px; border-top: 1px solid #d7dad7; max-width: 390px; }
.intro-contact::before { content: ''; position: absolute; width: 3px; top: 25px; bottom: 5px; left: 0; background: var(--wine); }
.intro-contact > span { font-size: 10px; color: var(--muted); }
.intro-contact a { grid-column: 1; font-size: 15px; font-weight: 600; letter-spacing: .015em; }
.intro-contact small { grid-column: 2; grid-row: 1/3; align-self: center; font-size: 10px; color: var(--muted); max-width: 100px; }
.hospital-building { position: relative; min-width: 0; margin: 24px 24px 24px 0; border-radius: 180px 8px 8px 8px; overflow: hidden; background: #dde3e6; }
.hospital-building > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: 52% center; }
.hospital-building::after { content: ''; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, #102c40cb); pointer-events: none; }
.hospital-building figcaption { position: absolute; bottom: 28px; left: 32px; right: 28px; z-index: 1; color: #fff; display: grid; grid-template-columns: 1fr auto; gap: 3px; font-size: 19px; font-weight: 500; letter-spacing: -.02em; }
.hospital-building .image-caption-label { font-size: 10px; font-weight: 400; letter-spacing: .04em; opacity: .9; }
.hospital-building figcaption > span { grid-column: 1; }
.hospital-building figcaption a { grid-column: 2; grid-row: 1/3; width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid #ffffff70; border-radius: 50%; transition: background .2s; }
.hospital-building figcaption a:hover { background: var(--wine); }
.care-shortcuts { padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border-bottom: 1px solid var(--line); }
.care-shortcuts > a { padding: 27px 26px; display: flex; gap: 20px; align-items: center; transition: background .2s; border-right: 1px solid var(--line); }
.care-shortcuts > a:first-child { padding-left: 0; }
.care-shortcuts > a:last-child { border: 0; padding-right: 0; }
.shortcut-number { font: italic 25px var(--serif); color: var(--wine); }
.care-shortcuts strong, .care-shortcuts small { display: block; }
.care-shortcuts strong { font-size: 14px; font-weight: 600; }
.care-shortcuts small { font-size: 11px; color: var(--muted); margin-top: 3px; }
.shortcut-arrow { margin-left: auto; font-size: 22px; color: var(--wine); transition: transform .2s; }
.care-shortcuts a:hover .shortcut-arrow { transform: translate(3px, -3px); }
.compact-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 44px; }
.compact-section-heading h2 { margin: 12px 0 0; }
.compact-section-heading > p { margin: 0; max-width: 375px; font-size: 14px; color: var(--muted); }
.compact-section-heading > .arrow-link { flex: none; }
.home-services { background: var(--ink); color: #fff; }
.home-services .eyebrow { color: #e0b1bc; }
.home-services .compact-section-heading > p { color: #c7d3db; }
.care-paths { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.care-path { padding: 0 35px; border-right: 1px solid #ffffff28; min-width: 0; }
.care-path:first-child { padding-left: 0; }
.care-path:last-child { padding-right: 0; border: 0; }
.care-path-number { display: flex; justify-content: space-between; font: italic 32px var(--serif); color: #cf9cab; margin-bottom: 35px; }
.care-path-number > span { color: #ffffff36; font-size: 25px; }
.care-path h3 { font-size: 25px; margin-bottom: 13px; min-height: 58px; max-width: 290px; }
.care-path p { color: #c7d3db; font-size: 13px; min-height: 44px; margin-bottom: 28px; }
.care-path ul { list-style: none; padding: 0; margin: 0; }
.care-path li { border-top: 1px solid #ffffff2b; }
.care-path li a { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-block: 14px; min-height: 52px; font-size: 12px; }
.care-path li a > span:last-child { color: #ddaabb; font-size: 17px; flex: none; }
.care-path li a:hover { color: #f0c6d1; }
.section-tail { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 39px; padding-top: 20px; border-top: 1px solid #ffffff2b; }
.section-tail > span { font-size: 12px; color: #c7d3db; }
.section-tail .arrow-link { border: 0; }
.home-doctors { background: #fff; }
.consultant-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 45px; }
.consultant-card { display: grid; grid-template-columns: minmax(135px, .82fr) minmax(0, 1fr); align-items: center; gap: 28px; }
.public-editorial .doctor-portrait { border-radius: 90px 90px 5px 5px; background: #e8ece9; }
.consultant-copy { min-width: 0; }
.consultant-copy h3 { margin: 0 0 10px; font-size: 23px; }
.consultant-copy p { font-size: 12px; color: var(--muted); margin-bottom: 10px; line-height: 1.65; }
.consultant-copy .consultant-speciality { color: var(--wine); font-size: 13px; font-weight: 600; }
.consultant-copy .consultant-experience { padding-top: 8px; }
.consultant-booking { display: inline-flex; align-items: center; gap: 20px; font-size: 12px; font-weight: 600; margin-top: 9px; min-height: 44px; border-bottom: 1px solid #a9b5bd; }
.consultant-booking:hover { color: var(--wine); border-color: var(--wine); }
.doctors-help { display: flex; justify-content: center; gap: 10px; margin-top: 38px; font-size: 12px; }
.doctors-help p { margin: 0; color: var(--muted); }
.doctors-help a { font-weight: 600; color: var(--wine); }
.doctors-help a span { margin-left: 7px; }
.hospital-about { background: var(--cream); }
.hospital-about-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(35px, 6vw, 90px); align-items: center; }
.hospital-reception { position: relative; }
.hospital-reception img { width: 100%; aspect-ratio: 1.2; object-fit: cover; border-radius: 5px 5px 110px 5px; }
.hospital-reception figcaption { font-size: 11px; color: var(--muted); padding-top: 15px; }
.hospital-about-copy h2 { margin: 16px 0 25px; }
.hospital-about-copy h2 em { color: var(--wine); }
.hospital-about-copy > p { font-size: 14px; color: var(--muted); }
.about-checks { list-style: none; margin: 25px 0; padding: 0; display: grid; gap: 9px; }
.about-checks li { font-size: 12px; display: flex; align-items: center; gap: 12px; }
.about-checks li::before { content: ''; width: 5px; height: 5px; background: var(--wine); border-radius: 50%; flex: none; }
.home-facilities { background: #fff; }
.facility-preview-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.facility-preview-grid figure { overflow: hidden; border-radius: 4px; }
.facility-preview-grid img { width: 100%; aspect-ratio: 1.18; object-fit: cover; transition: transform .55s; }
.facility-preview-grid a:nth-child(even) { padding-top: 24px; }
.facility-preview-grid a:hover img { transform: scale(1.035); }
.facility-preview-grid h3 { font-size: 15px; font-weight: 500; display: flex; justify-content: space-between; gap: 10px; margin: 17px 0 0; letter-spacing: -.02em; }
.facility-preview-grid h3 span { color: var(--wine); }
.consultation-band { background: #6e3547; color: white; position: relative; overflow: hidden; }
.consultation-band::after { content: ''; position: absolute; left: -250px; top: -310px; width: 650px; height: 650px; border: 1px solid #ffffff13; border-radius: 50%; box-shadow: 0 0 0 70px #ffffff04; pointer-events: none; }
.consultation-band-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; position: relative; z-index: 1; }
.consultation-intro .eyebrow { color: #efcfd8; }
.consultation-intro h2 { font-size: clamp(31px, 3.1vw, 43px); margin: 20px 0 30px; }
.booking-steps { margin: 0; padding: 0; list-style: none; }
.booking-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 21px 0; border-top: 1px solid #ffffff36; }
.booking-steps li:first-child { padding-top: 0; border: 0; }
.booking-steps li:last-child { padding-bottom: 0; }
.booking-steps li > span { font: italic 22px var(--serif); color: #e8b8c6; }
.booking-steps h3 { font-size: 17px; font-weight: 500; letter-spacing: -.01em; margin: 0 0 7px; }
.booking-steps p { font-size: 12px; color: #f0dce2; margin: 0; line-height: 1.7; }
.patient-feedback { background: var(--cream); }
.feedback-mark { font: 100px/.5 var(--serif); color: #bea096; padding-top: 10px; }
.feedback-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 80px; row-gap: 40px; }
.feedback-grid blockquote { border-top: 1px solid #d9d2cd; padding-top: 27px; }
.feedback-grid p { font-size: 15px; line-height: 1.9; color: #4a5d69; }
.feedback-grid footer { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; margin-top: 23px; }
.feedback-grid footer span { display: inline-block; width: 18px; height: 1px; background: var(--wine); }
.more-feedback { margin-top: 35px; }
.more-feedback summary { display: flex; align-items: center; gap: 25px; list-style: none; padding-block: 12px; font-size: 12px; font-weight: 600; width: fit-content; border-bottom: 1px solid #a7b0b4; }
.more-feedback summary::-webkit-details-marker { display: none; }
.more-feedback summary span { font-size: 20px; }
.more-feedback[open] summary { margin-bottom: 30px; }
.more-feedback[open] summary span { transform: rotate(45deg); }
.appointment-banner { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding-block: 63px; }
.appointment-banner h2 { font-size: clamp(25px, 2.5vw, 33px); margin: 11px 0 11px; }
.appointment-banner p { color: var(--muted); font-size: 13px; margin: 0; }
.appointment-banner-actions { display: grid; justify-items: center; gap: 14px; flex: none; }
.appointment-banner-actions > a:last-child { font-size: 13px; }
.footer { background: #173247; color: white; }
.footer-main { display: grid; grid-template-columns: 1.2fr .8fr 1fr 1.2fr; gap: 45px; padding-block: 54px; }
.footer-brand img { width: 65px; height: 65px; object-fit: contain; background: #fff; padding: 5px; border-radius: 4px; margin-bottom: 20px; }
.footer p { font-size: 12px; color: #c6d2da; line-height: 1.8; }
.footer h2 { font-size: 12px; letter-spacing: 0; font-weight: 600; margin: 6px 0 21px; }
.footer-main > div:not(:first-child) > a { display: block; font-size: 11px; color: #c6d2da; padding-block: 5px; overflow-wrap: anywhere; }
.footer a:hover { color: #efc4d0; }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 18px; border-top: 1px solid #ffffff21; font-size: 10px; color: #b5c6d1; }
.toast { position: fixed; bottom: 25px; right: 25px; z-index: 60; max-width: calc(100% - 50px); padding: 16px 22px; background: var(--ink); color: white; box-shadow: 0 8px 24px #0002; transition: opacity .3s; }
.toast.hide { opacity: 0; pointer-events: none; }
/* Inner pages share the same typography, open rows and clear next action. */
.inner-hero { position: relative; padding-block: 63px 58px; background: var(--cream); overflow: hidden; border-bottom: 1px solid #e8e3dc; }
.inner-hero::after { content: '+'; position: absolute; right: 7vw; top: 18px; font: 250px/1 var(--sans); font-weight: 200; color: #19374c05; pointer-events: none; }
.inner-hero .shell { position: relative; z-index: 1; }
.inner-hero h1 { margin: 13px 0 17px; max-width: 900px; font-size: clamp(31px, 3.5vw, 44px); }
.inner-hero p { color: var(--muted); font-size: 14px; max-width: 675px; margin: 0; }
.inner-hero a.eyebrow:hover { text-decoration: underline; text-underline-offset: 4px; }
.service-directory { padding-top: 35px; }
.service-directory-tools { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 33px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.service-jump { display: flex; gap: 20px; flex-wrap: wrap; }
.service-jump a { padding-block: 8px; font-size: 12px; font-weight: 600; border-bottom: 1px solid #bbc6ca; }
.service-jump a:hover { color: var(--wine); border-color: var(--wine); }
.service-search { flex: 1 0 230px; max-width: 300px; }
.service-search label { font-size: 11px; display: block; font-weight: 600; margin-bottom: 5px; }
.service-search input { width: 100%; padding: 11px 14px; border: 1px solid #bcc8cf; border-radius: 4px; background: #fff; font-size: 13px; color: var(--ink); }
.service-search-status { margin: 12px 0 0; font-size: 12px; color: var(--muted); }
.service-search-status:empty { display: none; }
.service-group { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; padding-block: 55px; border-bottom: 1px solid var(--line); }
.service-group:last-child { padding-bottom: 0; border: 0; }
.service-group-heading h2 { margin: 13px 0 16px; font-size: 29px; max-width: 360px; }
.service-group-heading p { color: var(--muted); font-size: 13px; max-width: 350px; }
.service-link-list { list-style: none; padding: 0; margin: 0; }
.service-link-list li { border-bottom: 1px solid var(--line); }
.service-link-list li:last-child { border: 0; }
.service-link-list a { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 19px 0; font-size: 15px; line-height: 1.6; transition: color .2s, padding .2s; }
.service-link-list a:hover { color: var(--wine); padding-left: 7px; }
.service-link-list a > span:last-child { color: var(--wine); font-size: 19px; }
.service-detail-content { display: grid; grid-template-columns: 1.4fr .8fr; gap: 80px; align-items: start; }
.service-detail-overview h2 { font-size: 27px; }
.service-detail-overview > p { font-size: 14px; line-height: 1.9; color: var(--muted); }
.service-detail-content > figure { position: sticky; top: 120px; background: var(--soft); border-radius: 8px 80px 8px 8px; padding: 30px; }
.service-detail-content > figure img { width: 100%; height: auto; max-height: 330px; object-fit: contain; }
.clinical-note { margin-block: 32px; padding: 25px; background: var(--cream); border-left: 3px solid var(--wine); }
.clinical-note h3 { font-size: 20px; margin: 0 0 10px; }
.clinical-note p { font-size: 13px; color: var(--muted); }
.clinical-note .button { margin-top: 6px; }
.service-back-link::before { content: '←'; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 75px; }
.about-story figure { overflow: hidden; border-radius: 4px 100px 4px 4px; }
.about-story img { width: 100%; aspect-ratio: 1.28; object-fit: cover; }
.about-story h2 { font-size: 32px; margin-bottom: 22px; }
.about-story p { font-size: 14px; color: var(--muted); }
.approach-section { padding-top: 0; }
.approach-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.approach-grid article { border-top: 2px solid #b29ca0; padding-top: 25px; }
.approach-grid h3 { font-size: 21px; margin-bottom: 14px; }
.approach-grid p { font-size: 13px; color: var(--muted); margin: 0; }
.doctors.section-pad { padding-top: 0; }
.facility-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 55px 45px; }
.facility-card { scroll-margin-top: 120px; }
.facility-card:nth-child(even) { padding-top: 38px; }
.facility-card figure { overflow: hidden; border-radius: 5px; background: var(--cream); }
.facility-card img { width: 100%; aspect-ratio: 1.55; object-fit: cover; }
.facility-card > div { padding-top: 23px; }
.facility-card h2 { font-size: 25px; margin-bottom: 13px; }
.facility-card p { color: var(--muted); font-size: 14px; margin: 0; }
.contact-details-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; margin-bottom: 50px; }
.contact-details-grid > div { padding: 0 25px 0 0; border-right: 1px solid var(--line); min-width: 0; }
.contact-details-grid > div:last-child { border: 0; }
.contact-details-grid h2 { font-size: 20px; margin-bottom: 14px; }
.contact-details-grid a { font-size: 15px; color: var(--wine); overflow-wrap: anywhere; }
.contact-details-grid p { font-size: 13px; color: var(--muted); }
.contact-information-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding-top: 50px; border-top: 1px solid var(--line); }
.contact-information-card h2 { font-size: 28px; margin-bottom: 20px; }
.contact-information-card p, .contact-information-card address { font-size: 14px; color: var(--muted); font-style: normal; line-height: 1.9; }
.contact-information-card address { margin-bottom: 22px; }
.contact-information-card small { display: block; margin-top: 18px; font-size: 12px; color: var(--muted); }
.contact-information-card small a { color: var(--wine); text-decoration: underline; text-underline-offset: 3px; }
@media (prefers-reduced-motion: no-preference) {
    [data-reveal].reveal-ready { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
    [data-reveal].is-visible { opacity: 1; transform: none; }
}
@media (min-width: 1600px) { .hospital-intro-copy { padding-left: max(var(--gutter), calc((100vw - 1360px) / 2)); } }
@media (max-width: 1180px) {
    .nav-wrap { gap: 18px; }
    .brand strong { font-size: 18px; }
    .brand img { width: 47px; height: 47px; }
    .main-nav { gap: 14px; }
    .main-nav a { font-size: 11px; }
    .nav-cta { padding-inline: 12px; }
    .hero-actions { gap: 14px; }
    .hospital-intro-copy { padding-right: 28px; }
    .consultant-grid { gap: 35px; }
    .consultant-card { gap: 22px; grid-template-columns: minmax(140px, .8fr) 1fr; }
    .consultant-copy h3 { font-size: 21px; }
    .footer-main { gap: 28px; }
}
@media (max-width: 1050px) {
    .nav-wrap { min-height: 78px; }
    .nav-toggle { display: grid; place-content: center; gap: 6px; width: 44px; height: 44px; padding: 9px; border: 1px solid var(--line); border-radius: 4px; background: #fff; }
    .nav-toggle span { display: block; width: 21px; height: 1px; background: var(--ink); }
    .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
    .nav-cta { order: 1; }
    .nav-toggle { order: 2; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 18px var(--gutter) 25px; border-bottom: 1px solid var(--line); box-shadow: 0 12px 15px #19374c0a; gap: 0; max-height: calc(100dvh - 110px); overflow: auto; }
    .main-nav.open { display: grid; grid-template-columns: 1fr 1fr; gap: 0 25px; }
    .main-nav > a { font-size: 14px; min-height: 46px; border-bottom: 1px solid var(--line); }
    .main-nav > a::after { display: none; }
    .main-nav > a.active { color: var(--wine); }
    .main-nav .mobile-booking { display: block; color: var(--wine); }
    .hospital-intro-grid { min-height: 535px; grid-template-columns: 1.05fr .95fr; }
    .hospital-intro-copy { padding-block: 43px; }
    .hospital-building { border-top-left-radius: 125px; margin-right: 18px; }
    .hospital-building figcaption { left: 22px; right: 18px; font-size: 17px; }
    .care-shortcuts > a { gap: 12px; padding: 24px 18px; }
    .care-shortcuts small { max-width: 150px; }
    .compact-section-heading { gap: 30px; }
    .compact-section-heading > p { max-width: 300px; }
    .care-path { padding-inline: 25px; }
    .care-path h3 { font-size: 23px; }
    .care-path p { min-height: 63px; }
    .consultant-card { grid-template-columns: minmax(0, 1fr); gap: 22px; }
    .consultant-card .doctor-portrait { width: min(100%, 300px); }
    .consultant-copy h3 { font-size: 24px; }
    .consultant-copy p { max-width: 310px; }
    .hospital-about-grid { gap: 40px; }
    .consultation-band-inner { gap: 50px; }
    .service-group { gap: 45px; }
    .service-detail-content { gap: 45px; }
    .about-story { gap: 40px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 30px 70px; }
}
@media (max-width: 720px) {
    html { scroll-padding-top: 95px; }
    .topline { min-height: 29px; font-size: 9px; }
    .topline > span { white-space: nowrap; }
    .topline-separator, .topline > a { display: none; }
    .topline > span { font-size: 0; }
    .topline > span::before { content: 'Sector 28, Faridabad · Appointments & enquiries'; font-size: 9px; }
    .nav-wrap { min-height: 73px; padding-block: 11px; gap: 12px; }
    .brand img { width: 44px; height: 44px; }
    .brand strong { font-size: 18px; }
    .brand small { font-size: 9px; }
    .nav-cta { display: none; }
    .main-nav.open { grid-template-columns: 1fr; }
    .hospital-intro-grid { grid-template-columns: 1fr; }
    .hospital-intro-copy { padding: 41px var(--gutter) 30px; }
    .hospital-intro-copy .eyebrow { font-size: 9px; margin-bottom: 18px; }
    .hospital-intro-copy h1 { font-size: clamp(32px, 7.7vw, 44px); margin-bottom: 18px; }
    .hospital-intro-copy > p:not(.eyebrow) { max-width: 510px; font-size: 14px; margin-bottom: 22px; }
    .hero-actions { gap: 12px 22px; }
    .hero-actions .button { font-size: 12px; padding-inline: 18px; gap: 14px; }
    .hero-actions .arrow-link { font-size: 12px; gap: 8px; }
    .intro-contact { margin-top: 25px; padding-top: 15px; max-width: none; }
    .intro-contact::before { top: 19px; }
    .intro-contact small { max-width: none; }
    .hospital-building { min-height: 315px; margin: 0 var(--gutter) 25px; border-radius: 90px 4px 4px 4px; }
    .hospital-building > img { object-position: center 46%; }
    .hospital-building figcaption { bottom: 22px; }
    .care-shortcuts { grid-template-columns: 1fr; }
    .care-shortcuts > a, .care-shortcuts > a:first-child, .care-shortcuts > a:last-child { padding: 18px 0; gap: 22px; border-right: 0; border-bottom: 1px solid var(--line); }
    .care-shortcuts > a:last-child { border-bottom: 0; }
    .care-shortcuts strong { font-size: 13px; }
    .care-shortcuts small { max-width: none; font-size: 10px; }
    .shortcut-number { font-size: 22px; }
    .shortcut-arrow { font-size: 21px; }
    .compact-section-heading { display: block; margin-bottom: 32px; }
    .compact-section-heading h2 { margin-top: 12px; }
    .compact-section-heading > p { margin-top: 18px; max-width: 520px; font-size: 13px; }
    .compact-section-heading > .arrow-link { margin-top: 20px; }
    .care-paths { grid-template-columns: 1fr; }
    .care-path, .care-path:first-child, .care-path:last-child { display: grid; grid-template-columns: 32px 1fr; gap: 0 18px; padding: 29px 0; border: 0; border-top: 1px solid #ffffff2b; }
    .care-path-number { margin: 0; font-size: 25px; }
    .care-path-number > span { display: none; }
    .care-path h3 { min-height: 0; font-size: 24px; margin: 0 0 12px; }
    .care-path p { min-height: 0; font-size: 12px; margin-bottom: 19px; }
    .care-path ul { grid-column: 2; }
    .care-path li a { padding-block: 12px; min-height: 44px; }
    .section-tail { flex-direction: column; align-items: start; gap: 6px; margin-top: 0; }
    .section-tail > span { font-size: 11px; }
    .consultant-grid { gap: 30px; grid-template-columns: 1fr; }
    .consultant-card { grid-template-columns: minmax(0, .75fr) minmax(0, 1fr); gap: 20px; align-items: start; }
    .public-editorial .doctor-portrait { border-radius: 65px 65px 4px 4px; }
    .consultant-copy h3 { font-size: 21px; margin-top: 5px; }
    .consultant-copy p { font-size: 11px; margin-bottom: 8px; }
    .consultant-copy .consultant-speciality { font-size: 12px; }
    .consultant-copy .consultant-experience { padding-top: 0; }
    .consultant-booking { font-size: 11px; gap: 8px; margin-top: 0; }
    .doctors-help { justify-content: start; flex-wrap: wrap; font-size: 11px; gap: 5px 10px; margin-top: 28px; }
    .hospital-about-grid { grid-template-columns: 1fr; gap: 30px; }
    .hospital-reception img { aspect-ratio: 1.35; border-bottom-right-radius: 75px; }
    .hospital-reception figcaption { font-size: 10px; }
    .hospital-about-copy h2 { margin-block: 15px 20px; }
    .hospital-about-copy > p { font-size: 13px; }
    .facility-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px 16px; }
    .facility-preview-grid a:nth-child(even) { padding-top: 18px; }
    .facility-preview-grid h3 { font-size: 13px; gap: 6px; margin-top: 13px; }
    .consultation-band-inner { grid-template-columns: 1fr; gap: 37px; }
    .consultation-intro h2 { font-size: 34px; margin: 18px 0 24px; }
    .booking-steps li { grid-template-columns: 30px 1fr; gap: 15px; }
    .booking-steps h3 { font-size: 16px; }
    .feedback-mark { display: none; }
    .feedback-grid { grid-template-columns: 1fr; gap: 30px; }
    .feedback-grid p { font-size: 14px; }
    .appointment-banner { align-items: start; flex-direction: column; gap: 25px; padding-block: 45px; }
    .appointment-banner-actions { justify-items: start; gap: 13px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px 25px; padding-block: 40px; }
    .footer-brand { grid-column: 1/-1; display: flex; gap: 20px; align-items: center; }
    .footer-brand img { width: 57px; height: 57px; margin-bottom: 0; flex: none; }
    .footer-brand p { margin: 0; max-width: 250px; }
    .footer-main > div:last-child { grid-column: 1/-1; }
    .footer h2 { margin-bottom: 15px; }
    .footer-bottom { gap: 15px; font-size: 9px; }
    .inner-hero { padding-block: 40px 35px; }
    .inner-hero::after { font-size: 190px; top: 20px; }
    .inner-hero h1 { font-size: 33px; }
    .inner-hero p { font-size: 13px; }
    .service-directory-tools { align-items: start; gap: 24px; }
    .service-jump { gap: 7px 20px; }
    .service-search { max-width: none; flex-basis: 100%; }
    .service-group { grid-template-columns: 1fr; gap: 13px; padding-block: 35px; }
    .service-group-heading h2 { margin-block: 10px 12px; font-size: 27px; }
    .service-group-heading p { max-width: none; }
    .service-link-list a { padding-block: 15px; font-size: 14px; }
    .service-detail-content { display: flex; flex-direction: column-reverse; gap: 32px; }
    .service-detail-content > figure { position: static; width: 100%; padding: 24px; }
    .service-detail-content > figure img { max-height: 240px; }
    .service-detail-overview h2 { font-size: 25px; }
    .service-detail-overview > p { font-size: 13px; }
    .clinical-note { padding: 22px; }
    .about-story { grid-template-columns: 1fr; gap: 28px; }
    .about-story h2 { font-size: 28px; }
    .about-story p { font-size: 13px; }
    .approach-grid { grid-template-columns: 1fr; gap: 25px; }
    .approach-grid h3 { font-size: 20px; }
    .facility-cards { grid-template-columns: 1fr; gap: 35px; }
    .facility-card:nth-child(even) { padding-top: 0; }
    .facility-card h2 { font-size: 23px; }
    .facility-card p { font-size: 13px; }
    .contact-details-grid { grid-template-columns: 1fr; gap: 25px; margin-bottom: 35px; }
    .contact-details-grid > div { padding: 0 0 23px; border: 0; border-bottom: 1px solid var(--line); }
    .contact-details-grid > div:last-child { padding: 0; }
    .contact-details-grid h2 { font-size: 18px; margin-bottom: 9px; }
    .contact-information-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 32px; }
    .contact-information-card h2 { font-size: 25px; }
    .contact-information-card p, .contact-information-card address { font-size: 13px; }
}
@media (max-width: 380px) {
    .hospital-intro-copy h1 { font-size: 30px; }
    .hero-actions { gap: 9px 16px; }
    .hero-actions .button { padding-inline: 14px; font-size: 11px; }
    .hero-actions .arrow-link { font-size: 11px; }
    .consultant-card { grid-template-columns: 112px minmax(0, 1fr); gap: 17px; }
    .consultant-copy h3 { font-size: 19px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
}
