/* ==========================================================================
   Clinical Den — Landing Page Stylesheet
   Palette: Navy #1B2A4A | Sky Blue #C7DCE8 | Accent Green #4CAF50
   Headings: Poppins | Body: Inter | Wordmark: logo image only
   ========================================================================== */

:root {
  --navy: #1B2A4A;
  --navy-dark: #142038;
  --sky: #C7DCE8;
  --sky-light: #E9F2F6;
  --green: #4CB944;
  --blue-gray: #AFC3D6;
  --white: #FFFFFF;
  --off-white: #F7F9FB;
  --text-dark: #22314F;
  --text-muted: #5B6B85;
  --yellow-pastel: #F6E27A;
  --lavender-pastel: #D9D3EC;
  --cyan-pastel: #BFE8ED;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-card: 0 20px 45px rgba(27, 42, 74, 0.12);
  --shadow-soft: 0 10px 30px rgba(27, 42, 74, 0.08);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px;
}

p { margin: 0 0 16px; color: var(--text-muted); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(27,42,74,0.25); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: 14px; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(27,42,74,0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.brand-text .name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  display: block;
}
.brand-text .tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.15s ease;
  white-space: nowrap;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-pay-rent {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  white-space: nowrap;
}
.nav-pay-rent:hover { color: var(--green); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  background: var(--sky);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 640px;
  position: relative;
}
.hero-content {
  padding: 80px 48px 80px 0;
  max-width: 560px;
  margin-left: auto;
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content .container { padding: 0; max-width: none; }
.hero h1 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 18px;
}
.hero-lead { font-size: 16px; max-width: 480px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  margin: 28px 0 32px;
}
.hero-grid-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}
.hero-grid-item .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  font-size: 16px;
}
.hero-media {
  position: relative;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
  background: linear-gradient(135deg, #26405f, #0d1a30);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 640px;
}
.hero-media .placeholder-note {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255,255,255,0.85);
  color: var(--navy);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
}

.accent-bar { height: 8px; width: 100%; background: var(--green); }

/* ---------- Mission band ---------- */
.mission-band {
  background: var(--navy);
  padding: 56px 0;
}
.mission-band p {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 2.2vw, 22px);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---------- Two column intro + checklist ---------- */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.bg-off { background: var(--off-white); }

.intro-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 48px;
}
.intro-row h2 { font-size: clamp(24px, 3vw, 32px); }

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
}
.checklist-grid.cols-3 { grid-template-columns: repeat(3, 1fr); gap: 32px 28px; }
.checklist-item { display: flex; gap: 16px; }
.checklist-item .check {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-top: 2px;
}
.checklist-item h3 { font-size: 16px; margin-bottom: 6px; }
.checklist-item p { font-size: 14.5px; margin: 0; }

/* ---------- Stat card ---------- */
.stat-card-wrap { margin-top: -64px; position: relative; z-index: 5; }
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 40px 20px;
  text-align: center;
}
.stat-card .stat { padding: 0 16px; position: relative; }
.stat-card .stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(27,42,74,0.12);
}
.stat-card .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy);
  display: block;
}
.stat-card .label {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- Centered heading ---------- */
.centered-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

/* ---------- Feature cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feature-card .photo {
  height: 170px;
  overflow: hidden;
  margin: 14px 14px 0;
  border-radius: var(--radius-md);
}
.feature-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-card .body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card .underline {
  width: 34px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 12px;
}
.feature-card p { font-size: 14px; flex: 1; }
.feature-card .btn { align-self: flex-start; margin-top: 8px; }

/* ---------- Urgency split ---------- */
.urgency {
  background: var(--blue-gray);
}
.urgency-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 420px;
}
.urgency-content { padding: 56px 48px 56px 0; }
.urgency-content .eyebrow { margin-bottom: 12px; display: block; }
.urgency-content h2 { font-size: clamp(26px, 3.4vw, 36px); }
.urgency-content .phone {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}
.urgency-content .phone a { color: var(--navy); text-decoration: underline; }
.urgency-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.urgency-media { height: 100%; min-height: 420px; }
.urgency-media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }

/* ---------- Process (navy section w/ white card) ---------- */
.process-section { background: var(--navy); padding: 88px 0; }
.process-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 48px;
}
.process-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.process-head .badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--sky);
}
.process-head .badge img { width: 100%; height: 100%; object-fit: cover; }
.process-head p { margin: 0; font-size: 15px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-step {
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.process-step h3 { font-size: 20px; margin-bottom: 12px; }
.process-step p { font-size: 14px; margin: 0; color: var(--text-dark); opacity: 0.85; }
.process-step.step-1 { background: var(--yellow-pastel); }
.process-step.step-2 { background: var(--lavender-pastel); }
.process-step.step-3 { background: var(--cyan-pastel); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.cta-band h2 { color: var(--white); margin: 0; font-size: clamp(20px, 2.6vw, 26px); }

/* ---------- Property Manager section ---------- */
.pm-section { padding: 88px 0; background: var(--sky-light); }
.pm-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 40px;
}
.pm-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 40px;
  margin: 0 auto;
}
.pm-photo img { width: 100%; height: 100%; object-fit: cover; }
.pm-info h2, .pm-info h3 { font-size: 22px; margin-bottom: 2px; }
.pm-info .role { color: var(--green); font-weight: 600; font-size: 14px; margin-bottom: 14px; display: block; }
.pm-contact-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.pm-contact-list li { font-size: 14.5px; color: var(--text-dark); }
.pm-contact-list a { color: var(--navy); font-weight: 600; }
.pm-actions { display: flex; flex-direction: column; gap: 12px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer h4 { color: var(--white); font-size: 16px; margin-bottom: 18px; }
.footer-about p { color: rgba(255,255,255,0.65); font-size: 14px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 14px;
  transition: background 0.15s ease;
}
.footer-social a:hover { background: var(--green); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 14.5px; }
.footer-links a:hover { color: var(--white); }
.footer-address li { display: flex; gap: 12px; margin-bottom: 14px; color: rgba(255,255,255,0.75); font-size: 14.5px; align-items: flex-start; }
.footer-address .fi { flex-shrink: 0; color: var(--green); margin-top: 2px; }
.footer-address a { color: rgba(255,255,255,0.75); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); margin-left: 20px; }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Contact page specific ---------- */
.page-hero {
  background: var(--navy);
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero .eyebrow { color: var(--sky); }
.page-hero h1 { color: var(--white); margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
}
.contact-info-card {
  background: var(--sky-light);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info-card h2 { font-size: 18px; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin: 20px 0 28px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 14.5px; }
.contact-info-list .fi { color: var(--navy); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.contact-info-list strong { display: block; color: var(--navy); font-size: 14px; }
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(27,42,74,0.1);
  margin-top: 8px;
}
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(27,42,74,0.15);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; border: none; }
.form-note { font-size: 12.5px; color: var(--text-muted); margin-top: 12px; text-align: center; }
.form-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  display: none;
}
.form-status.success { display: block; background: #E6F6E6; color: #256B25; }
.form-status.error { display: block; background: #FBE7E7; color: #9C2B2B; }

/* ---------- Room / residence cards (Residences page) ---------- */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 32px 28px;
  border-top: 4px solid var(--green);
}
.room-card .room-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sky-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.room-card h3 { font-size: 18px; margin-bottom: 10px; }
.room-card p { font-size: 14.5px; margin: 0; }

.tour-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 9;
  background: var(--navy-dark);
}
.tour-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.notice-card {
  background: var(--sky-light);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  border-left: 4px solid var(--navy);
  font-size: 14.5px;
}
.notice-card strong { color: var(--navy); }

/* ---------- Hospital / institution list (Medical District page) ---------- */
.hospital-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.hospital-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px 26px;
}
.hospital-card h3 { font-size: 16px; margin-bottom: 8px; }
.hospital-card p { font-size: 14px; margin: 0; }

/* ---------- Split photo + text block (Medical District page) ---------- */
.split-media {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 44px;
  align-items: center;
}
.split-media.reverse { grid-template-columns: 1fr minmax(240px, 360px); }
.split-media.reverse .split-media-photo { order: 2; }
.split-media-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
}
.split-media-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-media-caption {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
}

.subpage-block { margin-bottom: 64px; }
.subpage-block:last-child { margin-bottom: 0; }
.subpage-block h2 { font-size: clamp(22px, 2.8vw, 28px); margin-bottom: 18px; }
.subpage-block > p.lead { font-size: 15.5px; max-width: 820px; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(27,42,74,0.12);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.faq-question .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sky-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-item.open .faq-question .plus { transform: rotate(45deg); background: var(--green); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer-inner { padding: 0 4px 22px; }
.faq-answer-inner p, .faq-answer-inner li { font-size: 14.5px; }
.faq-answer-inner ul { margin: 10px 0; padding-left: 20px; list-style: disc; }
.faq-answer-inner li { margin-bottom: 6px; color: var(--text-muted); }

.faq-category {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 40px 0 8px;
}
.faq-category:first-child { margin-top: 0; }

/* ---------- Temporary logo mark + image placeholders (until real assets are re-hosted) ---------- */
.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sky-light);
  color: var(--navy);
  border: 1.5px solid var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark.sm { width: 56px; height: 56px; }

.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--sky-light), var(--sky));
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  text-align: center;
  padding: 16px;
}
.img-placeholder svg { opacity: 0.65; }

/* ---------- Rent / current-resident notice ---------- */
.pay-rent-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pay-rent-card h2 { color: var(--white); font-size: 20px; margin-bottom: 6px; }
.pay-rent-card p { color: rgba(255,255,255,0.7); margin: 0; max-width: 480px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) and (min-width: 721px) {
  .nav-links { gap: 15px; }
  .nav-links a { font-size: 13.5px; }
  .nav-pay-rent { display: none; }
  .brand-text .tagline { display: none; }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { margin: 0; max-width: none; padding: 56px 24px 40px; }
  .hero-media { clip-path: none; min-height: 320px; }
  .hero-media img { min-height: 320px; }
  .intro-row { grid-template-columns: 1fr; gap: 28px; }
  .checklist-grid, .checklist-grid.cols-3 { grid-template-columns: 1fr; }
  .stat-card { grid-template-columns: 1fr; gap: 24px; }
  .stat-card .stat:not(:last-child)::after { display: none; }
  .stat-card .stat:not(:last-child) { border-bottom: 1px solid rgba(27,42,74,0.12); padding-bottom: 20px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .urgency-inner { grid-template-columns: 1fr; min-height: auto; }
  .urgency-content { padding: 48px 24px; }
  .urgency-media { min-height: 280px; }
  .urgency-media img { min-height: 280px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-card { padding: 32px 24px; }
  .pm-card { grid-template-columns: 1fr; text-align: center; padding: 32px; }
  .pm-actions { align-items: center; }
  .pm-contact-list { align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr; }
  .hospital-grid { grid-template-columns: 1fr; }
  .pay-rent-card { justify-content: center; text-align: center; }
  .split-media, .split-media.reverse { grid-template-columns: 1fr; }
  .split-media-photo { order: -1; aspect-ratio: 16 / 10; }
  .split-media.reverse .split-media-photo { order: -1; }
}

@media (max-width: 720px) {
  .nav-links { position: fixed; top: 84px; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 12px; gap: 4px; box-shadow: 0 12px 24px rgba(27,42,74,0.1); transform: translateY(-130%); opacity: 0; transition: transform 0.2s ease, opacity 0.2s ease; z-index: 90; }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { padding: 12px; border-radius: 8px; }
  .nav-links a::after { display: none; }
  .nav-links a.active { background: var(--sky-light); }
  .nav-toggle { display: flex; }
  .nav-cta .btn-sm-desktop { display: none; }
  .nav-pay-rent { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .stat-card-wrap { margin-top: -40px; }
  .cta-band-inner { justify-content: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .brand-text .name { font-size: 17px; }
}
