/* ============================================================
   HEALTHYNOW — Aesthetic & Plastic Surgery
   style.css — Production Stylesheet
   ============================================================ */

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

:root {
  --gold:       #C9A84C;
  --gold-hover: #e8c96d;
  --gold-light: #f5f0e8;
  --gold-pale:  #faf7f0;
  --text-dark:  #1a1a1a;
  --text-mid:   #555;
  --text-light: #888;
  --white:      #ffffff;
  --border:     #e8dcc8;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;
  --max-w:      1200px;
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

address { font-style: normal; }

/* ─── TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
}

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; }

em { font-style: italic; color: var(--gold); }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 1rem; }

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
}

.body-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

/* ─── LAYOUT UTILITIES ──────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 0;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-full { width: 100%; text-align: center; }

.card-link {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition), gap var(--transition);
  margin-top: auto;
}
.card-link:hover { color: var(--gold-hover); }

/* ─── SCROLL ANIMATIONS ─────────────────────────────────── */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ─── HEADER / NAV ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  padding: 0.85rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.header-inner {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color var(--transition);
}
.site-header.scrolled .logo-main { color: var(--text-dark); }

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.site-header.scrolled .logo-sub { color: var(--text-light); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.main-nav a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a:hover { color: var(--white); }
.site-header.scrolled .main-nav a { color: var(--text-mid); }
.site-header.scrolled .main-nav a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.65rem 1.5rem;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  border: 1px solid var(--gold);
  transition: background var(--transition), border-color var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-hover) !important;
  border-color: var(--gold-hover) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-dark);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 0 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center 22% / cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,12,7,0.48) 0%, rgba(15,12,7,0.18) 45%, rgba(15,12,7,0.65) 100%),
    radial-gradient(ellipse at center, rgba(15,12,7,0.25) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hero-magazine-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.45);
  padding: 0.45rem 1.4rem;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  text-shadow: 0 4px 30px rgba(0,0,0,0.65);
}
.hero-title em { color: var(--gold); font-style: italic; }

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.hero-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}
.magazine-frame:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 65px rgba(0,0,0,0.18), 0 0 45px rgba(201, 168, 76, 0.25);
}

.magazine-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.magazine-cover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.cover-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.cover-sub {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text-mid);
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    padding-top: 5rem;
  }
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-model-tag {
    justify-content: center;
  }
  .magazine-frame {
    max-width: 290px;
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll-hint span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: var(--text-dark);
  padding: 3rem 0;
}

.stats-inner {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 3.5rem;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.stat-divider {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.1);
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about-section {
  padding: 7rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-img-placeholder {
  position: relative;
  border-radius: 2px;
  overflow: visible;
}

.about-img-inner {
  background: var(--gold-light);
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-inner svg { width: 100%; height: 100%; object-fit: cover; }

.about-img-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.2rem 1.8rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  box-shadow: 0 8px 32px rgba(201,168,76,0.25);
}

.about-text { padding-left: 1rem; }

/* ─── TREATMENTS ─────────────────────────────────────────── */
.treatments-section {
  padding: 7rem 0;
  background: var(--gold-pale);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.treatment-card {
  background: var(--white);
  padding: 2.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.treatment-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.treatment-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); }
.treatment-card:hover::before { transform: scaleX(1); }

.treatment-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
}
.treatment-icon svg { width: 100%; height: 100%; }

.treatment-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
}
.treatment-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.8;
  flex-grow: 1;
}

/* ─── BEFORE & AFTER ─────────────────────────────────────── */
.results-section {
  padding: 7rem 0;
  background: var(--white);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.ba-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.ba-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-img { position: relative; aspect-ratio: 2/3; overflow: hidden; }

.ba-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
}

.ba-before .ba-placeholder { background: linear-gradient(160deg, #e8e0d0 0%, #d5c9b0 100%); }
.ba-after  .ba-placeholder { background: linear-gradient(160deg, #f5f0e8 0%, #ede0c0 100%); }

.ba-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: rgba(255,255,255,0.9);
  padding: 0.35rem 0.8rem;
  border-radius: 1px;
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.ba-procedure {
  padding: 0.9rem 1.2rem;
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
  text-align: center;
}

.ba-disclaimer {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
}

/* ─── DOCTORS ─────────────────────────────────────────────── */
.doctors-section {
  padding: 7rem 0;
  background: var(--gold-pale);
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.doctor-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.doctor-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); }

.doctor-photo { aspect-ratio: 4/5; overflow: hidden; }
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.doctor-card:hover .doctor-photo img { transform: scale(1.04); }

.doctor-info { padding: 1.8rem; }
.doctor-info h3 { font-size: 1.4rem; margin-bottom: 0.35rem; }
.doctor-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.doctor-bio { font-size: 0.85rem; color: var(--text-mid); line-height: 1.8; }

/* ─── BLOG ────────────────────────────────────────────────── */
.blog-section {
  padding: 7rem 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}

.blog-card {
  background: var(--gold-pale);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
}
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }

.blog-card--featured {
  grid-row: 1 / 3;
}

.blog-thumb { position: relative; overflow: hidden; height: 220px; }
.blog-thumb--featured { height: 340px; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }

.blog-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 0.35rem 0.8rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.blog-body { padding: 2rem; display: flex; flex-direction: column; gap: 0.75rem; flex-grow: 1; }
.blog-body time { font-size: 0.68rem; letter-spacing: 0.12em; color: var(--text-light); text-transform: uppercase; }
.blog-body h3 { font-size: 1.25rem; line-height: 1.35; }
.blog-body p  { font-size: 0.875rem; color: var(--text-mid); line-height: 1.8; flex-grow: 1; }

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact-section {
  padding: 7rem 0 0;
  background: var(--gold-pale);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
  padding-bottom: 5rem;
}

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}
.contact-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-item div { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-item strong {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.contact-item span { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  padding: 3rem;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-note {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
}

.form-success {
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  transition: opacity var(--transition);
}
.hidden { display: none; }

/* Map */
.map-wrap { margin-top: 0; }
.map-placeholder {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.map-overlay-cta {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-brand .logo-main { color: var(--white); }
.footer-brand .logo-sub  { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 0.85rem; margin-top: 1rem; line-height: 1.8; color: rgba(255,255,255,0.45); }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.social-links a:hover { border-color: var(--gold); background: rgba(201,168,76,0.12); }
.social-links svg { width: 16px; height: 16px; color: rgba(255,255,255,0.6); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--gold); }

.footer-col address, .footer-col p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card--featured { grid-row: auto; }
}

@media (max-width: 768px) {
  /* Nav */
  .hamburger { display: flex; z-index: 101; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem 2.5rem;
    gap: 1.8rem;
    transition: right 0.35s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    z-index: 100;
  }
  .main-nav.open { right: 0; }
  .main-nav a { color: var(--text-dark) !important; font-size: 0.8rem; }
  .nav-cta {
    width: 100%;
    text-align: center;
    display: block;
    padding: 0.9rem 1.5rem !important;
  }

  /* Sections */
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { order: -1; }
  .about-img-badge { right: 0; bottom: -1rem; }

  .treatments-grid { grid-template-columns: 1fr; }
  .ba-grid         { grid-template-columns: 1fr; }
  .doctors-grid    { grid-template-columns: 1fr; }
  .blog-grid       { grid-template-columns: 1fr; gap: 1.5rem; }

  .stats-inner { gap: 1rem; }
  .stat { padding: 1rem 2rem; }
  .stat-divider { display: none; }

  .contact-form-wrap { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; }
  .contact-form-wrap { padding: 1.5rem; }
  .stat { padding: 0.75rem 1.5rem; }
  .section-header { margin-bottom: 2.5rem; }

  .about-section,
  .treatments-section,
  .results-section,
  .doctors-section,
  .blog-section,
  .contact-section { padding: 4rem 0; }
}

/* ─── FACELIFT FEATURE SECTION ───────────────────────────── */
.facelift-section {
  padding: 8rem 0 6rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}

/* Intro grid */
.fl-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-bottom: 7rem;
}

.fl-intro-text {}

.fl-intro-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fl-visual-card {
  border: 1px solid var(--border);
  overflow: hidden;
}

.fl-visual-top svg {
  width: 100%;
  height: auto;
  display: block;
}

.fl-visual-label {
  background: var(--gold-light);
  padding: 0.9rem 1.4rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.fl-quote-block {
  border-left: 2px solid var(--gold);
  padding: 1.2rem 1.6rem;
  background: var(--gold-pale);
}

.fl-quote-block blockquote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.fl-quote-block cite {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* What it treats */
.fl-treats {
  margin-bottom: 7rem;
}

.fl-treats-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 3.5rem;
}

.fl-treats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.fl-treat-item {
  display: flex;
  gap: 1.25rem;
  padding: 2rem 1.8rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.fl-treat-item:nth-child(3n) { border-right: none; }
.fl-treat-item:nth-child(4),
.fl-treat-item:nth-child(5),
.fl-treat-item:nth-child(6) { border-bottom: none; }

.fl-treat-item:hover { background: var(--gold-pale); }

.fl-treat-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.fl-treat-body strong {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.fl-treat-body p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}

/* Techniques */
.fl-techniques {
  margin-bottom: 7rem;
}

.fl-tech-header {
  margin-bottom: 3rem;
}

.fl-tech-header h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.fl-tech-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fl-tech-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.fl-tech-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.1);
}

.fl-tech-card--featured {
  background: var(--gold-pale);
  border-color: var(--gold);
  position: relative;
}

.fl-tech-tag {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.fl-tech-card h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: 0;
}

.fl-tech-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Philosophy */
.fl-philosophy {
  padding-top: 5rem;
  border-top: 1px solid var(--border);
}

.fl-phil-header {
  margin-bottom: 3.5rem;
}

.fl-phil-header h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-top: 0.5rem;
}

.fl-phil-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.fl-phil-item {}

.fl-phil-icon {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
}

.fl-phil-icon svg {
  width: 100%;
  height: 100%;
}

.fl-phil-item h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.fl-phil-item p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ─── FACELIFT FAQ SECTION ───────────────────────────────── */
.facelift-faq {
  padding: 8rem 0;
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto 4rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-question[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.faq-cta {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  max-width: 820px;
  margin: 0 auto;
}

.faq-cta p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

/* ─── FACELIFT RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  .fl-intro-grid { gap: 3.5rem; }
  .fl-phil-grid  { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .fl-tech-cards { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 768px) {
  .facelift-section { padding: 5rem 0 4rem; }
  .facelift-faq     { padding: 5rem 0; }

  .fl-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }

  .fl-treats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fl-treat-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .fl-treat-item:nth-child(2n) { border-right: none; }
  .fl-treat-item:nth-child(4),
  .fl-treat-item:nth-child(5) { border-bottom: 1px solid var(--border); }
  .fl-treat-item:nth-child(5),
  .fl-treat-item:nth-child(6) { border-bottom: none; }

  .fl-phil-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .fl-techniques { margin-bottom: 4rem; }
  .fl-treats     { margin-bottom: 4rem; }
}

@media (max-width: 480px) {
  .fl-treats-grid { grid-template-columns: 1fr; }
  .fl-treat-item  { border-right: none !important; }
  .fl-treat-item:not(:last-child) { border-bottom: 1px solid var(--border) !important; }
}


/* ─── MULTI-PAGE & DROPDOWN NAV STYLES ───────────────────── */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.dropdown-toggle .arrow {
  font-size: 0.6rem;
  transition: transform var(--transition);
}

.nav-item-dropdown:hover .dropdown-toggle .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  min-width: 240px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  padding: 0.6rem 0;
  z-index: 1001;
  margin-top: 0.5rem;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block !important;
  padding: 0.7rem 1.5rem !important;
  color: var(--text-dark) !important;
  font-size: 0.72rem !important;
  text-transform: none !important;
  letter-spacing: 0.04em !important;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition) !important;
}

.dropdown-menu a::after { display: none !important; }

.dropdown-menu a:hover {
  background: var(--gold-pale);
  color: var(--gold) !important;
}

/* Page Hero */
.page-hero {
  padding: 11rem 0 5.5rem;
  background: linear-gradient(135deg, #181512 0%, #2a2318 50%, #14120e 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Treatment Detail Section */
.treatments-detail-section,
.treatment-page-section,
.blog-page-section {
  padding: 6rem 0;
  background: var(--white);
}

.treatment-overview-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--border);
}

.treatment-overview-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.to-card-reverse {
  grid-template-columns: 1.2fr 1fr;
}

.to-card-reverse .to-card-visual {
  order: 2;
}

.to-card-visual {
  border: 1px solid var(--border);
  overflow: hidden;
}

.to-card-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.to-feature-list {
  margin: 1.5rem 0;
  padding-left: 0;
}

.to-feature-list li {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.6rem;
  list-style: none;
}

.to-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* CTA Banner */
.cta-banner-section {
  padding: 6rem 0;
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-banner-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.cta-banner-card p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .treatment-overview-card,
  .to-card-reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .to-card-reverse .to-card-visual {
    order: 0;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    display: block;
    background: transparent;
  }
}


/* ─── REAL PHOTOGRAPHY IMAGE STYLING ────────────────────── */
.about-img-box {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-box:hover .about-img {
  transform: scale(1.03);
}

.doctor-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-thumb--featured .blog-img {
  height: 340px;
}

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

.to-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.to-card-visual:hover .to-card-img {
  transform: scale(1.03);
}

.fl-visual-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* ─── SINGLE ARTICLE POST STYLING (SEO & EDITORIAL) ─────── */
.article-page {
  padding: 5rem 0 7rem;
  background: var(--white);
}

.article-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.article-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.article-breadcrumb a { color: var(--gold); }
.article-breadcrumb a:hover { text-decoration: underline; }

.article-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-mid);
}
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.article-tag {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.article-featured-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border: 1px solid var(--border);
  margin-bottom: 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.article-body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--text-dark);
  margin: 3rem 0 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.article-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-dark);
  margin: 2rem 0 0.8rem;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
  margin: 1.2rem 0 2rem 1.5rem;
  padding-left: 0.5rem;
}

.article-body li {
  margin-bottom: 0.6rem;
  line-height: 1.75;
}

.article-body strong {
  color: var(--text-dark);
  font-weight: 600;
}

.article-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.article-body a:hover {
  color: var(--gold-hover);
}

.article-callout {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
}
.article-callout p {
  margin: 0;
  font-style: italic;
  color: var(--text-dark);
}

.article-author-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--gold-pale);
  padding: 2rem;
  margin: 4rem 0 2rem;
  border: 1px solid var(--border);
}
.article-author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.article-author-info h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.article-author-info p {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.5;
}

.article-cta-box {
  background: linear-gradient(135deg, #1f1b14 0%, #15120c 100%);
  color: var(--white);
  padding: 3rem;
  text-align: center;
  margin-top: 3.5rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.article-cta-box h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.article-cta-box p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.8rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .article-title { font-size: 2rem; }
  .article-author-card { flex-direction: column; text-align: center; }
  .article-cta-box { padding: 2rem 1.5rem; }
}
