/* ============================================================
   LARAIB HEALTH CLINIC — V3
   Premium healthcare website design
   Design principles: quiet luxury, generous whitespace,
   cinematic scroll choreography, editorial typography
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Color system — inspired by premium medical sites:
     The Aurora (Vienna): sophisticated neutrals + refined palette
     The Longevity Doctor: royal blue + gold for luxury/medical
     Strong Medical: clean modern with clinical whites
   
     Our palette: warm ivory base, deep charcoal text,
     muted gold accent, soft sage green secondary
     Think: clinical warmth, not sterile cold
  */
  
  --color-cream: #FAFAF8;
  --color-warm: #F5F0E8;
  --color-ivory: #FDFDFB;
  --color-stone-100: #F0EDE8;
  --color-stone-200: #E0DCD4;
  --color-stone-300: #C8C2B6;
  --color-stone-400: #A89F90;
  --color-stone-500: #7A7264;
  --color-stone-600: #5C554A;
  --color-stone-700: #4A433A;
  --color-stone-800: #332E28;
  --color-stone-900: #1C1915;
  --color-stone-950: #0F0E0C;
  --color-olive: #7A844F;
  --color-olive-light: #9FA672;
  --color-gold: #C89A70;
  --color-gold-light: #E0C8B0;
  --color-rose: #C4A0A0;
  --color-rose-light: #E0C8C0;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Easing curves — premium feel comes from easing */
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
  
  /* Spacing scale — generous, like premium sites */
  --page-padding: clamp(1.5rem, 4vw, 5rem);
  --section-padding: clamp(8rem, 15vh, 14rem);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: hidden;
  width: 100vw;
  scrollbar-width: thin;
  scrollbar-color: var(--color-stone-300) var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767px) { html { font-size: 14px; } }
@media (max-width: 480px) { html { font-size: 13px; } }

body {
  font-family: var(--font-sans);
  background: var(--color-cream);
  color: var(--color-stone-900);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100vw;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--color-olive-light); color: var(--color-stone-900); }

/* ---- Typography Scale ---- */
/* Editorial typography — not default browser text */

.type-hero {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: var(--color-stone-900);
}

@media (min-width: 1280px) { .type-hero { font-size: clamp(5.5rem, 10vw, 11rem); } }
@media (min-width: 768px) and (max-width: 1279px) { .type-hero { font-size: clamp(3.5rem, 10vw, 5.5rem); } }
@media (max-width: 767px) { .type-hero { font-size: clamp(2.8rem, 14vw, 4rem); } }

.type-section {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.92;
}

@media (min-width: 1280px) { .type-section { font-size: clamp(2.8rem, 4.5vw, 4.8rem); } }
@media (min-width: 768px) and (max-width: 1279px) { .type-section { font-size: clamp(2.2rem, 6vw, 3rem); } }
@media (max-width: 767px) { .type-section { font-size: clamp(1.8rem, 8vw, 2.4rem); } }

.type-serif-lg {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-stone-900);
}

@media (min-width: 1280px) { .type-serif-lg { font-size: clamp(1.6rem, 2.5vw, 2.4rem); } }
@media (max-width: 767px) { .type-serif-lg { font-size: clamp(1.4rem, 4vw, 1.8rem); } }

.type-body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-stone-600);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
}

.type-body-sm {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-stone-500);
  font-size: clamp(0.78rem, 0.85vw, 0.88rem);
}

.type-label {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: clamp(0.55rem, 0.6vw, 0.68rem);
}

.type-label-warm {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-size: clamp(0.55rem, 0.6vw, 0.68rem);
}

.type-italic {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-stone-500);
  line-height: 1.7;
}

/* ---- Page Loader ---- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-logo {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.04em;
  color: var(--color-stone-900);
  display: flex;
}

.loader-logo span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}

.loader-line {
  width: 0;
  height: 1px;
  background: var(--color-stone-900);
  margin-top: 1.5rem;
  opacity: 0.15;
}

.loader-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  color: var(--color-stone-500);
  margin-top: 1rem;
  opacity: 0;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 2rem var(--page-padding);
  transition: all 0.6s var(--ease-expo);
}

.nav--scrolled {
  padding: 1rem var(--page-padding);
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(28, 25, 21, 0.06);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  transition: opacity 0.3s ease;
}

.nav-logo:hover { opacity: 0.7; }

.nav-logo-main {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  letter-spacing: -0.02em;
  color: var(--color-stone-900);
}

.nav-logo-sub {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(0.42rem, 0.5vw, 0.55rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-stone-400);
}

.nav-cta {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(0.55rem, 0.65vw, 0.68rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-stone-900);
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--color-stone-900);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-expo);
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-stone-900);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-expo);
  z-index: -1;
}

.nav-cta:hover { color: var(--color-cream); }
.nav-cta:hover::before { transform: scaleX(1); }

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
  filter: saturate(0.3) brightness(0.9);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 250, 248, 0.6) 0%,
    rgba(250, 250, 248, 0.3) 30%,
    rgba(250, 250, 248, 0.2) 60%,
    rgba(250, 250, 248, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--page-padding);
  max-width: 1100px;
  margin: 0 auto;
}

.hero-chapter {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-size: clamp(0.55rem, 0.65vw, 0.68rem);
  margin-bottom: 2.5rem;
  opacity: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.85;
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(105%);
}

.hero-line {
  width: 0;
  height: 1px;
  background: var(--color-stone-900);
  margin: 0 auto 2rem;
  opacity: 0.15;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-stone-500);
  max-width: 400px;
  margin: 0 auto 2.5rem;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  line-height: 1.5;
  opacity: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
}

/* ---- Buttons ---- */
.btn-primary {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(0.65rem, 0.75vw, 0.78rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-stone-900);
  padding: 1.1rem 2.8rem;
  border: 1.5px solid var(--color-stone-900);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.5s var(--ease-expo);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-stone-900);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-expo);
  z-index: -1;
}

.btn-primary:hover {
  color: var(--color-cream);
}

.btn-primary:hover::before {
  transform: scaleX(1);
}

.btn-primary--light {
  color: var(--color-cream);
  border-color: rgba(250, 250, 248, 0.15);
}

.btn-primary--light::before {
  background: var(--color-cream);
}

.btn-primary--light:hover {
  color: var(--color-stone-950);
  border-color: var(--color-cream);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-expo);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-location {
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-stone-400);
  font-size: clamp(0.5rem, 0.6vw, 0.6rem);
  margin-top: 3rem;
  opacity: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.25;
  z-index: 5;
}

.hero-scroll-text {
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.55rem;
  color: var(--color-stone-400);
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--color-stone-400), transparent);
}

/* ---- Service Sections ---- */
.service-section {
  position: relative;
  overflow: hidden;
}

.service-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-section:nth-child(odd) .service-bg {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-warm) 50%, var(--color-cream) 100%);
}

.service-section:nth-child(even) .service-bg {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-stone-100) 50%, var(--color-cream) 100%);
}

.service-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.atmo-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.atmo-blur--1 {
  width: 40vw;
  height: 50vh;
  top: 10%;
  left: 60%;
  background: radial-gradient(ellipse, rgba(200, 154, 112, 0.06) 0%, transparent 70%);
}

.atmo-blur--2 {
  width: 30vw;
  height: 40vh;
  bottom: 10%;
  left: 5%;
  background: radial-gradient(ellipse, rgba(122, 132, 79, 0.05) 0%, transparent 70%);
}

.service-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-padding) var(--page-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

@media (max-width: 900px) {
  .service-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: clamp(5rem, 10vh, 8rem) var(--page-padding);
  }
  .service-visual { order: -1; }
}

.service-text { max-width: 420px; }

.service-chapter {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-size: clamp(0.55rem, 0.65vw, 0.68rem);
  margin-bottom: 1.5rem;
}

.service-title {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.92;
  color: var(--color-stone-900);
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  margin-bottom: 1rem;
}

.service-line {
  width: 0;
  height: 1px;
  background: var(--color-stone-900);
  opacity: 0.15;
  margin-bottom: 1.5rem;
}

.service-desc {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-stone-500);
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  line-height: 1.6;
}

/* ---- Service Visual Panel ---- */
.service-visual {
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.visual-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  filter: saturate(0.4) brightness(1.05) grayscale(0.2);
  transition: transform 0.8s var(--ease-expo);
}

.service-visual:hover .visual-image img {
  transform: scale(1.03);
}

.visual-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(250, 250, 248, 0.5) 0%,
    rgba(250, 250, 248, 0.2) 40%,
    rgba(250, 250, 248, 0.6) 100%
  );
}

/* Remove old visual-bg classes */
.visual-blur-1,
.visual-blur-2,
.visual-line {
  display: none;
}

/* Alternating layout */
.service-reverse .service-inner { direction: rtl; }
.service-reverse .service-inner > * { direction: ltr; }

/* ---- Doctors Section ---- */
.doctors-section {
  background: var(--color-stone-100);
  position: relative;
  overflow: hidden;
}

.doctors-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-padding) var(--page-padding);
}

.doctors-header { text-align: center; margin-bottom: clamp(4rem, 6vh, 6rem); }

.section-chapter {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-size: clamp(0.55rem, 0.65vw, 0.68rem);
  margin-bottom: 1.5rem;
}

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

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.92;
  color: var(--color-stone-900);
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  margin-bottom: 1rem;
}

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

.section-line {
  width: 0;
  height: 1px;
  background: var(--color-stone-900);
  opacity: 0.15;
  margin: 0 auto;
}

.section-line--light { background: var(--color-cream); }

.doctors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .doctors-grid { grid-template-columns: 1fr; max-width: 500px; }
}

/* ---- Doctor Card ---- */
.doctor-card {
  background: var(--color-cream);
  border: 1px solid rgba(28, 25, 21, 0.06);
  border-radius: 2px;
  padding: clamp(2rem, 3vw, 2.8rem);
  position: relative;
  overflow: hidden;
}

.doctor-card-bg {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: var(--color-stone-300);
  opacity: 0.05;
  filter: blur(30px);
}

.doctor-card-bg--olive { background: var(--color-olive-light); }

.doctor-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--color-stone-200);
}

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

.doctor-initials {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(122, 132, 79, 0.04) 0%, var(--color-warm) 100%);
  margin-bottom: 1.5rem;
  position: relative;
}

.doctor-initials::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 15%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background: var(--color-olive-light);
  opacity: 0.08;
  filter: blur(20px);
}

.doctor-initials span,
.doctor-initials {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: -0.03em;
  color: var(--color-stone-900);
  opacity: 0.07;
}

.doctor-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--color-stone-900);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.doctor-title {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-size: clamp(0.55rem, 0.65vw, 0.68rem);
  margin-bottom: 1rem;
}

.doctor-divider {
  width: 40px;
  height: 1px;
  background: var(--color-stone-300);
  margin-bottom: 1rem;
}

.doctor-hours-label,
.doctor-focus-label {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-stone-400);
  font-size: clamp(0.55rem, 0.6vw, 0.65rem);
  margin-bottom: 0.3rem;
  margin-top: 1rem;
}

.doctor-hours {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  color: var(--color-stone-700);
  margin-bottom: 0.5rem;
}

.doctor-focus {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.doctor-focus span {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-stone-600);
  padding-left: 1rem;
  position: relative;
}

.doctor-focus span::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-stone-400);
}

.doctor-training {
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-stone-600);
  line-height: 1.8;
}

.doctor-certs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.cert {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  background: var(--color-stone-100);
  border: 1px solid var(--color-stone-200);
  color: var(--color-stone-500);
  border-radius: 1px;
}

/* ---- Location Section ---- */
.location-section {
  position: relative;
  overflow: hidden;
}

.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-padding) var(--page-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

@media (max-width: 900px) {
  .location-inner { grid-template-columns: 1fr; }
}

.location-text { max-width: 400px; }

.location-map {
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
  background: var(--color-stone-200);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Appointment Section ---- */
.appointment-section {
  background: var(--color-stone-950);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.appointment-glow {
  position: absolute;
  width: 50vw;
  height: 50vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(122, 132, 79, 0.12) 0%, transparent 70%);
  filter: blur(80px);
}

.appointment-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--section-padding) var(--page-padding);
  text-align: center;
}

.appointment-text {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: rgba(250, 250, 248, 0.45);
  max-width: 500px;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.8;
}

.appointment-doctors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin: 3rem auto 0;
}

@media (max-width: 767px) {
  .appointment-doctors { grid-template-columns: 1fr; }
}

.appointment-doctor-card {
  background: rgba(250, 250, 248, 0.03);
  border: 1px solid rgba(250, 250, 248, 0.06);
  padding: 1.8rem;
  text-align: left;
  border-radius: 2px;
}

.appointment-doctor-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: rgba(250, 250, 248, 0.85);
  margin-bottom: 0.4rem;
}

.appointment-doctor-title {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-olive-light);
  font-size: clamp(0.5rem, 0.6vw, 0.62rem);
  margin-bottom: 1rem;
}

.appointment-doctor-divider {
  width: 30px;
  height: 1px;
  background: rgba(250, 250, 248, 0.15);
  margin-bottom: 1rem;
}

.appointment-doctor-hours {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  color: rgba(250, 250, 248, 0.55);
}

/* ---- Footer ---- */
.footer {
  background: var(--color-stone-900);
  color: var(--color-stone-200);
  padding: clamp(4rem, 8vh, 6rem) var(--page-padding);
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 250, 248, 0.06);
}

@media (max-width: 767px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.footer-logo-sub {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: clamp(0.45rem, 0.55vw, 0.55rem);
  color: rgba(240, 237, 232, 0.25);
  margin-bottom: 1.5rem;
}

.footer-address {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: rgba(240, 237, 232, 0.35);
  line-height: 1.9;
}

.footer-label {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: clamp(0.5rem, 0.6vw, 0.6rem);
  color: rgba(240, 237, 232, 0.25);
  margin-bottom: 1rem;
}

.footer-phone {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  color: rgba(240, 237, 232, 0.55);
  transition: color 0.3s;
}

.footer-phone:hover { color: var(--color-cream); }

.footer-nav a {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: rgba(240, 237, 232, 0.4);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy, .footer-credit {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(0.5rem, 0.6vw, 0.6rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.2);
}

.footer-credit a {
  color: rgba(240, 237, 232, 0.35);
  transition: color 0.3s;
  border-bottom: 1px solid rgba(240, 237, 232, 0.15);
}

.footer-credit a:hover { color: var(--color-cream); border-color: rgba(240, 237, 232, 0.4); }

/* ---- Custom Cursor ---- */
.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--color-stone-900);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  filter: invert(1);
  transition: width 0.3s var(--ease-expo), height 0.3s var(--ease-expo);
  display: none;
}

.cursor-ring {
  position: fixed;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  filter: invert(1);
  transition: width 0.3s var(--ease-expo), height 0.3s var(--ease-expo), border-color 0.3s;
  display: none;
}

@media (min-width: 1024px) {
  .cursor-dot, .cursor-ring { display: block; }
}

.cursor-ring.cursor--hover {
  width: 55px;
  height: 55px;
  margin-top: -10px;
  border-color: rgba(26, 26, 26, 0.25);
}

/* ---- Magnetic Button ---- */
[data-magnetic] {
  display: inline-block;
  position: relative;
  transition: transform 0.3s var(--ease-expo);
}

/* ---- Responsive tweaks ---- */
@media (max-width: 767px) {
  .hero-content { padding: 6rem var(--page-padding); }
  .hero-scroll-indicator { display: none; }
  .hero-location { font-size: 0.48rem; }
}
