/* ============================================================
   ALTRUISTIC TRANSFORMATIONS — ROSEMARIE BOYNTON
   Single-page website stylesheet
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --cream:        #FAF6F0;
  --cream-dark:   #F2EAE0;
  --blush:        #F0E5D8;
  --rose-pale:    #F7E8E5;
  --rose:         #E8C5BE;
  --white:        #FFFFFF;
  --gold:         #C8973D;
  --gold-dark:    #A67930;
  --gold-light:   #E0C080;
  --gold-pale:    #FAF3E3;
  --dark:         #241810;
  --dark-alt:     #2E2016;
  --text:         #4A3728;
  --text-light:   #7A6254;
  --sage:         #7A9478;

  --font-serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:    'Lato', system-ui, -apple-system, sans-serif;

  --max-w:        1120px;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --transition:   0.35s var(--ease);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.12;
  color: var(--dark);
  font-weight: 500;
}

h1 { font-size: clamp(3rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2.2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }
h4 { font-size: 1.3rem; font-weight: 600; }

em { font-style: italic; }

p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* Eyebrow label */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.eyebrow.light {
  color: var(--gold-light);
}

/* Section header block */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4.5rem;
}

.section-sub {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-light);
}

/* Layout container */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 15px 38px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 151, 61, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-gold {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(224, 192, 128, 0.6);
}

.btn-gold:hover {
  background: rgba(224, 192, 128, 0.12);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up    { transform: translateY(32px); }
.fade-left  { transform: translateX(-32px); }
.fade-right { transform: translateX(32px); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44, 31, 18, 0.08);
  padding: 10px 0;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 62px;
  width: auto;
  transition: var(--transition);
}

.site-header.scrolled .nav-logo img {
  height: 50px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.main-nav a {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color var(--transition);
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.main-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.main-nav a:not(.nav-cta):hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 11px 26px !important;
  border-radius: 2px;
  letter-spacing: 0.12em !important;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 300;
  position: relative;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  background: var(--rose-pale);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 140px 28px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text {
  max-width: 520px;
}

.hero-text .eyebrow {
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.75rem;
  max-width: 400px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero image */
.hero-image {
  position: relative;
  animation: heroImageIn 1s var(--ease) 0.3s both;
}

@keyframes heroImageIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: none; }
}

.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 6px 6px 100px 6px;
  box-shadow: 30px 30px 80px rgba(36, 24, 16, 0.18);
}

/* Hero bottom banner */
.hero-banner {
  position: relative;
  z-index: 1;
  background: var(--gold);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: 16px 28px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-wrap: wrap;
  text-align: center;
}

.banner-dot {
  opacity: 0.5;
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars {
  background: var(--rose-pale);
  padding: 80px 28px;
  border-bottom: 1px solid var(--rose);
}

.pillars-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.pillar {
  text-align: center;
  padding: 0 1rem;
}

.pillar-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  border: 1.5px solid var(--gold-light);
  border-radius: 50%;
}

.pillar h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 110px 0;
  background: var(--cream);
}

.services-category {
  margin-bottom: 4rem;
}

.category-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--gold-light);
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.service-card:hover {
  border-color: rgba(200, 151, 61, 0.3);
  box-shadow: 0 8px 40px rgba(200, 151, 61, 0.09);
  transform: translateY(-3px);
}

.service-card h4 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.94rem;
  color: var(--text-light);
  line-height: 1.72;
}

.service-featured {
  background: var(--gold-pale);
  border-color: rgba(200, 151, 61, 0.2) !important;
}

.service-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.service-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

.service-link:hover {
  color: var(--gold-dark);
}

/* Price list inside service cards */
.price-list {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rose);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--cream-dark);
}

.price-row:last-child { border-bottom: none; }
.price-row span:first-child { color: var(--text); }
.price-row span:last-child { font-weight: 700; color: var(--gold-dark); }

/* Section label dividers for menu tables */
.menu-section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-bottom: 1rem;
  margin: 3rem 0 1.5rem;
  border-bottom: 1px solid var(--gold-light);
  display: block;
}

/* Two-column menu pricing layout */
.menu-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.menu-block {
  background: var(--white);
  padding: 2rem 2.25rem;
  border-radius: 4px;
}

.menu-block-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rose);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--cream-dark);
}

.menu-item:last-child { border-bottom: none; }
.menu-item span:first-child { color: var(--text); }
.menu-item span:last-child {
  font-weight: 700;
  color: var(--gold-dark);
  min-width: 48px;
  text-align: right;
}

.services-footer {
  margin-top: 1.5rem;
  padding: 3.5rem;
  background: var(--rose-pale);
  border-radius: 4px;
  text-align: center;
  border: 1px solid var(--rose);
}

.services-footer p {
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  color: var(--text-light);
}

/* ============================================================
   ONCOLOGY SECTION
   ============================================================ */
.oncology {
  background: var(--dark);
  padding: 110px 0;
  overflow: hidden;
}

.oncology-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

/* Oncology image column */
.oncology-image {
  position: relative;
}

.oncology-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center 10%;
  border-radius: 100px 6px 6px 6px;
  filter: brightness(0.88) contrast(1.04);
}

.oncology-quote {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  padding: 1.75rem 2.25rem;
  border-radius: 4px;
  max-width: 270px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.oncology-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.45;
  margin: 0;
}

/* Oncology content column */
.oncology-content h2 {
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.oncology-lead {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(224, 192, 128, 0.7);
  margin-bottom: 2rem;
  display: block;
}

.oncology-content > p {
  color: rgba(250, 246, 240, 0.78);
  font-size: 1.02rem;
  margin-bottom: 2.5rem;
}

.oncology-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.benefit {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.benefit-marker {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.65rem;
}

.benefit h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.benefit p {
  color: rgba(250, 246, 240, 0.7);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
  padding: 110px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-content .eyebrow {
  margin-bottom: 0.85rem;
}

.about-content h2 {
  margin-bottom: 0.35rem;
}

.about-title-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: 0.99rem;
}

.about-content em {
  color: var(--gold-dark);
}

.about-credentials-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--rose);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.credential {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cred-label {
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  min-width: 110px;
  padding-top: 2px;
}

/* About image column */
.about-image {
  position: relative;
  margin-top: 2rem;
}

.about-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center 8%;
  border-radius: 6px 6px 80px 6px;
  box-shadow: -24px 24px 60px rgba(36, 24, 16, 0.1);
}

.about-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--gold);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.9;
  text-align: center;
  box-shadow: 0 8px 24px rgba(200, 151, 61, 0.3);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--cream);
  padding: 110px 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-cards-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
}

.contact-location {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem 2.5rem;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}

.contact-card:hover {
  border-color: rgba(200, 151, 61, 0.3);
  box-shadow: 0 8px 40px rgba(200, 151, 61, 0.09);
  transform: translateY(-3px);
}

.contact-card-info {
  cursor: default;
}

.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border: 1.5px solid var(--gold-light);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: background var(--transition);
}

.contact-card:hover .contact-icon {
  background: var(--rose-pale);
}

.contact-card h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.contact-value {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.96rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.contact-hint {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-alt);
  color: rgba(250, 246, 240, 0.65);
  padding: 64px 28px 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 246, 240, 0.08);
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 54px;
  width: auto;
  mix-blend-mode: lighten;
  opacity: 0.85;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(250, 246, 240, 0.85);
  line-height: 1.3;
  margin: 0;
}

.footer-tagline-small {
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.5);
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-nav a {
  font-size: 0.83rem;
  color: rgba(250, 246, 240, 0.6);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-contact p {
  font-size: 0.83rem;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.footer-contact a {
  color: rgba(250, 246, 240, 0.6);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
  color: rgba(250, 246, 240, 0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold-light);
  opacity: 0.8;
}

/* ============================================================
   RESPONSIVE — TABLET (≤960px)
   ============================================================ */
@media (max-width: 960px) {
  /* Nav */
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 250;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .main-nav a {
    font-size: 1rem;
  }

  .main-nav a::after { display: none; }

  .nav-cta {
    padding: 14px 40px !important;
    font-size: 0.9rem !important;
  }

  /* Hero */
  .hero-bg-accent { display: none; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 120px 28px 60px;
    gap: 3rem;
  }

  .hero-image { order: -1; }

  .hero-image img {
    height: 420px;
    border-radius: 6px 6px 60px 6px;
    box-shadow: 0 20px 50px rgba(36, 24, 16, 0.15);
  }

  .hero-text { max-width: 100%; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }

  /* Pillars */
  .pillars-inner {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 2.5rem;
  }

  /* Oncology */
  .oncology-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .oncology-image img {
    height: 460px;
    border-radius: 6px;
  }

  .oncology-quote {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    margin-top: 1.25rem;
    box-shadow: none;
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image { order: -1; }

  .about-image img {
    height: 420px;
    border-radius: 6px;
  }

  .about-badge {
    position: relative;
    bottom: auto;
    left: auto;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: none;
  }

  /* Contact */
  .contact-cards,
  .contact-cards-two { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤540px)
   ============================================================ */
@media (max-width: 540px) {
  .hero h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }

  .hero-image img { height: 320px; }
  .oncology-image img { height: 340px; }
  .about-image img { height: 340px; }

  .hero-banner {
    flex-direction: column;
    gap: 0.5rem;
  }

  .banner-dot { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .menu-row { grid-template-columns: 1fr; }

  .services-footer { padding: 2.5rem 1.5rem; }

  .btn { padding: 14px 30px; }

  .section-inner { padding: 0 20px; }

  .footer-brand { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
