/* =====================================================
   DR. MICHAEL K. NEWMAN — Site Design System
   Warm luxury editorial aesthetic
   ===================================================== */

:root {
  --ivory: #FAF8F4;
  --cream: #F0EAE1;
  --cream-mid: #E8DDD3;
  --dark: #1A1714;
  --dark-mid: #2C2825;
  --gold: #C9A96E;
  --gold-hover: #B8923A;
  --gold-light: #F0E2C3;
  --gold-muted: #E8D4A0;
  --warm-gray: #6B6460;
  --warm-gray-light: #ABA6A2;
  --warm-gray-pale: #D5CFC9;
  --white: #FFFFFF;
  --black-btn: #1A1714;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

body {
  background: var(--ivory);
  color: var(--dark);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

/* =====================================================
   TYPOGRAPHY SCALE
   ===================================================== */

.t-display   { font-size: clamp(3.5rem, 8vw, 7rem); }
.t-hero      { font-size: clamp(3rem, 6vw, 5.5rem); }
.t-xl        { font-size: clamp(2.5rem, 4vw, 4rem); }
.t-lg        { font-size: clamp(2rem, 3vw, 3rem); }
.t-md        { font-size: clamp(1.5rem, 2vw, 2rem); }
.t-sm        { font-size: 1.25rem; }
.t-xs        { font-size: 1rem; }
.t-label     { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-family: 'Inter', sans-serif; font-weight: 500; }
.t-body      { font-size: 1.0625rem; line-height: 1.75; font-weight: 300; }

/* =====================================================
   LAYOUT
   ===================================================== */

.container   { max-width: 1400px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 5rem); }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 4rem); }
.section     { padding: clamp(4rem, 8vw, 8rem) 0; }
.section-sm  { padding: clamp(2rem, 4vw, 4rem) 0; }

/* =====================================================
   COLORS
   ===================================================== */

.bg-ivory    { background: var(--ivory); }
.bg-cream    { background: var(--cream); }
.bg-dark     { background: var(--dark); color: var(--ivory); }
.bg-dark-mid { background: var(--dark-mid); color: var(--ivory); }
.bg-white    { background: var(--white); }
.bg-gold     { background: var(--gold); color: var(--dark); }
.text-gold   { color: var(--gold); }
.text-gray   { color: var(--warm-gray); }
.text-light  { color: var(--warm-gray-light); }

/* =====================================================
   NAV
   ===================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 1.25rem 0;
}

.nav.scrolled {
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--cream-mid);
  padding: 0.875rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color 0.3s;
  white-space: nowrap;
}

.nav.scrolled .nav-logo-name { color: var(--dark); }

.nav-logo-cred {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.85);
  transition: color 0.2s;
}

.nav.scrolled .nav-links a { color: var(--warm-gray); }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); position: relative; }
.nav-links a.active::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--gold); }
.nav.scrolled .nav-links a.active { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(250, 248, 244, 0.7);
  transition: color 0.3s;
  white-space: nowrap;
}

.nav.scrolled .nav-phone { color: var(--warm-gray); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.25s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover { background: var(--gold-hover); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

.btn-dark {
  background: var(--dark);
  color: var(--ivory);
}
.btn-dark:hover { background: var(--dark-mid); }

.btn-ghost-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-ghost-gold:hover { background: var(--gold); color: var(--dark); }

/* Nav hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.nav.scrolled .nav-toggle span { background: var(--dark); }

/* =====================================================
   HERO
   ===================================================== */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 17, 15, 0.35) 0%,
    rgba(20, 17, 15, 0.2) 40%,
    rgba(20, 17, 15, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-eyebrow-line {
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 16ch;
}

.hero-sub {
  color: rgba(250, 248, 244, 0.8);
  font-size: 1.0625rem;
  font-weight: 300;
  max-width: 42ch;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.star-dots {
  display: flex;
  gap: 3px;
}

.star-dot {
  width: 9px;
  height: 9px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.hero-star-text {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(250, 248, 244, 0.75);
  letter-spacing: 0.04em;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* =====================================================
   TRUST BAR
   ===================================================== */

.trust-bar {
  background: var(--dark);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.25);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
  padding: 0.25rem 0;
}

.trust-dot {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.trust-item strong {
  color: var(--gold-muted);
  font-weight: 500;
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-header.center { text-align: center; }
.section-header.center .eyebrow-line { margin: 0 auto; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.eyebrow-line {
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

/* =====================================================
   BEFORE/AFTER SECTION
   ===================================================== */

.ba-section {
  background: var(--cream);
  padding: clamp(4rem, 7vw, 7rem) 0;
  overflow: hidden;
}

.ba-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.ba-scroll::-webkit-scrollbar { display: none; }
.ba-scroll:active { cursor: grabbing; }

.ba-card {
  flex: 0 0 auto;
  width: clamp(280px, 33vw, 380px);
  background: var(--white);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.25s, transform 0.25s;
}
.ba-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--cream-mid);
}

.ba-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: 0.625rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ba-label-before { left: 0.625rem; background: rgba(20,17,14,0.7); color: var(--ivory); }
.ba-label-after  { left: calc(50% + 0.75rem); background: var(--gold); color: var(--dark); }

.ba-info {
  padding: 1rem 1.25rem 1.25rem;
}

.ba-procedure {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.ba-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--dark);
}

.ba-details {
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-top: 0.25rem;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

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

.about-image-main {
  width: 100%;
  height: clamp(400px, 60vw, 620px);
  object-fit: cover;
  object-position: center top;
}

.about-image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 45%;
  border: 4px solid var(--ivory);
}

.about-credential-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
}

.about-credential {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.cred-icon {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.cred-text {
  font-size: 0.875rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

.cred-text strong { color: var(--dark); font-weight: 500; }

/* School logos */
.school-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  background: var(--dark);
  padding: 1.5rem 1.75rem;
  border-radius: 4px;
}

.school-logo {
  height: 44px;
  width: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.school-logo:hover { opacity: 1; }

/* =====================================================
   PROCEDURES GRID
   ===================================================== */

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

.proc-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
}

.proc-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.proc-card:hover .proc-card-bg { transform: scale(1.05); }

.proc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,17,14,0.85) 0%, rgba(20,17,14,0.1) 50%, transparent 100%);
}

.proc-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.75rem;
  width: 100%;
}

.proc-count {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.proc-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.625rem;
}

.proc-card-sub {
  font-size: 0.78rem;
  color: rgba(250,248,244,0.65);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.proc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s;
}
.proc-card:hover .proc-arrow { gap: 0.875rem; }

/* =====================================================
   FOREVER BREAST FEATURE
   ===================================================== */

.forever-section {
  background: var(--dark);
  padding: clamp(5rem, 10vw, 10rem) 0;
  position: relative;
  overflow: hidden;
}

.forever-bg-accent {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(201, 169, 110, 0.07) 100%);
  pointer-events: none;
}

.forever-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

.forever-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.forever-title {
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

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

.forever-body {
  color: rgba(250,248,244,0.65);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.forever-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.forever-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  color: rgba(250,248,244,0.7);
  font-size: 0.9375rem;
}

.forever-bullet::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.forever-image-stack {
  position: relative;
}

.forever-image-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}

.forever-quote {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  background: var(--gold);
  padding: 1.75rem 2rem;
  max-width: 280px;
}

.forever-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.4;
}

.forever-quote-attr {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,23,20,0.65);
  margin-top: 0.75rem;
}

/* =====================================================
   MEDIA WALL
   ===================================================== */

.media-wall {
  background: var(--dark);
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.media-wall .t-label { color: var(--gold); }

.media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
}

.media-logo-img {
  height: clamp(32px, 4vw, 48px);
  width: auto;
  object-fit: contain;
  opacity: 1;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s;
}
.media-logo-img:hover { opacity: 1; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */

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

.testimonial-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-left: 2px solid var(--gold);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}

.t-star {
  width: 12px;
  height: 12px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3125rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.testimonial-attr {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.testimonial-procedure {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* =====================================================
   FAQ
   ===================================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--cream-mid);
}

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

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  gap: 1.5rem;
}

.faq-q-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
}

.faq-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--cream-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: all 0.2s;
  font-style: normal;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding-bottom: 1.5rem;
  color: var(--warm-gray);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 72ch;
}

.faq-item.open .faq-a { display: block; }

/* =====================================================
   CONSULTATION CTA
   ===================================================== */

.consult-section {
  background: var(--dark-mid);
  padding: clamp(5rem, 8vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}

.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}

.consult-title {
  color: var(--ivory);
  margin-bottom: 1.25rem;
}

.consult-body {
  color: rgba(250,248,244,0.55);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.consult-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.consult-info-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.875rem;
  color: rgba(250,248,244,0.6);
}

.consult-info-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Contact form */
.form-group {
  margin-bottom: 1rem;
}

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

.form-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(250,248,244,0.07);
  border: 1px solid rgba(250,248,244,0.12);
  color: var(--ivory);
  padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23C9A96E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option { background: #2C2825; color: var(--ivory); }

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(250,248,244,0.25);
  font-weight: 300;
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-disclaimer {
  font-size: 0.72rem;
  color: rgba(250,248,244,0.3);
  line-height: 1.5;
  margin-top: 0.75rem;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: var(--dark);
  padding-top: clamp(4rem, 7vw, 6rem);
}

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

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}

.footer-logo-cred {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(250,248,244,0.4);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  font-size: 0.875rem;
  color: rgba(250,248,244,0.5);
  margin-bottom: 0.375rem;
  line-height: 1.5;
}

.footer-contact-item a { color: rgba(250,248,244,0.5); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(250,248,244,0.4);
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-links a:hover { color: var(--gold); }

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

.footer-copy {
  font-size: 0.72rem;
  color: rgba(250,248,244,0.25);
  letter-spacing: 0.04em;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(250,248,244,0.25);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--warm-gray-light); }

.footer-creds {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(250,248,244,0.05);
  margin-top: 0.5rem;
}

.footer-cred-badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.25);
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(250,248,244,0.1);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-accent { display: none; }
  .forever-grid { grid-template-columns: 1fr; }
  .forever-image-stack { order: -1; }
  .forever-quote { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .consult-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 99;
    overflow-y: auto;
    padding: 5rem 2rem 3rem;
  }
  .nav-mobile-open .nav-links a {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    color: var(--ivory);
  }
  /* Hamburger → X when menu open */
  .nav-mobile-open .nav-toggle span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .nav-mobile-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-mobile-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  /* Keep toggle visible above overlay */
  .nav-mobile-open .nav-toggle {
    position: relative;
    z-index: 101;
  }
  .nav-mobile-open .nav-toggle span {
    background: var(--white);
  }
}

@media (max-width: 768px) {
  .procedures-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: clamp(2.75rem, 10vw, 4rem); }
}

@media (max-width: 640px) {
  .nav-right .btn { display: none; }
}

@media (max-width: 480px) {
  .nav-logo-name { font-size: 0.9rem; letter-spacing: 0.05em; }
}

@media (max-width: 480px) {
  .ba-card { width: 85vw; }
  .trust-item { display: none; }
  .trust-item:nth-child(-n+3) { display: flex; }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-in.visible { opacity: 1; }

/* Delay utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =====================================================
   SUCCESS MESSAGE
   ===================================================== */

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.visible { display: block; }
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--ivory);
  margin-bottom: 1rem;
}
.form-success p { color: rgba(250,248,244,0.55); font-size: 1rem; }

/* Sticky mobile CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: var(--dark);
  border-top: 1px solid rgba(201,169,110,0.3);
  padding: 0.875rem 1.25rem;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  .mobile-cta-bar a { flex: 1; text-align: center; padding: 0.875rem; font-size: 0.72rem; }
}
