/* ============================================================
   Smiles Unlimited — Static CSS
   Replaces Tailwind + globals.css exactly
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --su-white: #FFFFFF;
  --su-bg: #FAF9F7;
  --su-red: #B61E2E;
  --su-gold: #C6A56A;
  --su-charcoal: #1D2433;
  --su-gray: #F3F4F6;
  --font-cormorant: 'Cormorant Garamond', Georgia, serif;
  --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 1.125rem;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #FAF9F7;
  color: #1D2433;
  font-family: var(--font-inter);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(198,165,106,0.33); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #C6A56A; }
::selection { background: #C6A56A; color: #fff; }

/* ---------- Typography ---------- */
.editorial {
  font-family: var(--font-cormorant);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.eyebrow {
  font-family: var(--font-inter);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C6A56A;
  font-weight: 600;
}
.gold-line { height: 1px; width: 48px; background: #C6A56A; flex-shrink: 0; }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.slow-zoom { animation: slowZoom 20s ease-out forwards; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
@keyframes accordionDown {
  from { opacity: 0; max-height: 0; }
  to   { opacity: 1; max-height: 600px; }
}
@keyframes accordionUp {
  from { opacity: 1; max-height: 600px; }
  to   { opacity: 0; max-height: 0; }
}
@keyframes mobileMenuIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes navItemIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-fast {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-fast.in-view { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }
.delay-7 { transition-delay: 0.56s; }
.delay-8 { transition-delay: 0.64s; }

/* ---------- Glass effects ---------- */
.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.glass-dark {
  background: rgba(29, 36, 51, 0.6);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: #B61E2E;
  color: #fff;
  border-radius: 999px;
  padding: 14px 32px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px -10px rgba(182, 30, 46, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.btn-primary:hover {
  background: #9c1926;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(182, 30, 46, 0.55);
}
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 13px 30px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); }

.btn-outline {
  background: transparent;
  color: #1D2433;
  border: 1px solid rgba(29,36,51,0.145);
  border-radius: 999px;
  padding: 13px 30px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.btn-outline:hover { background: #1D2433; color: #fff; border-color: #1D2433; }

/* ---------- Cards ---------- */
.card-luxe {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(29,36,51,0.04), 0 8px 30px -12px rgba(29,36,51,0.08);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s cubic-bezier(0.16,1,0.3,1);
}
.card-luxe:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 6px rgba(29,36,51,0.04), 0 30px 60px -20px rgba(29,36,51,0.18);
}

/* ---------- Layout Utilities ---------- */
.container {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 1024px) {
  .container { padding-inline: 40px; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.5s, box-shadow 0.5s;
  /* initial: transparent */
}
#navbar.scrolled {
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(29,36,51,0.06);
}
.nav-inner {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 24px;
  height: auto;
  min-height: 90px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) { .nav-inner { padding-inline: 40px; } }

/* Logo */
.logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.brand-name {
  font-family: var(--font-cormorant);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--su-red);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  transition: color 0.3s ease;
}
#navbar .brand-name {
  font-size: 23px;
}
@media (max-width: 600px) {
  .logo-link { gap: 8px; }
  .brand-logo { height: 48px; }
  .brand-name { font-size: 20px; }
}
.logo-link:hover .brand-logo {
  transform: scale(1.05);
}

/* Dark background logo treatment (High contrast white glow) */
#navbar:not(.scrolled) .brand-logo,
footer .brand-logo {
  filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, 0.9)) drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.5));
}
#navbar:not(.scrolled) .brand-name,
footer .brand-name {
  color: var(--su-white);
}

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1280px) { .nav-links { display: flex; } }

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0; height: 1px;
  background: #C6A56A;
  transform: scaleX(0);
  transition: transform 0.5s;
  transform-origin: left;
}
.nav-link:hover::after { transform: scaleX(1); }

/* Dark state nav links */
#navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.85); }
#navbar:not(.scrolled) .nav-link:hover { color: #fff; }
#navbar.scrolled .nav-link { color: rgba(29,36,51,0.75); }
#navbar.scrolled .nav-link:hover { color: #1D2433; }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-book-btn { display: none; }
@media (min-width: 1024px) { .nav-book-btn { display: inline-flex; } }
.nav-book-btn.btn-primary { padding: 10px 20px; font-size: 13px; }

/* Hamburger */
.nav-hamburger {
  display: flex;
  padding: 8px;
  border-radius: 50%;
  transition: color 0.3s;
}
@media (min-width: 1280px) { .nav-hamburger { display: none; } }
#navbar:not(.scrolled) .nav-hamburger { color: #fff; }
#navbar.scrolled .nav-hamburger { color: #1D2433; }

/* Mobile full-screen menu */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: #FAF9F7;
  display: none;
  flex-direction: column;
}
#mobile-menu.open { display: flex; animation: mobileMenuIn 0.3s ease; }
.mobile-menu-header {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 24px;
  width: 100%;
  height: auto;
  min-height: 90px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) { .mobile-menu-header { padding-inline: 40px; } }
.mobile-menu-close {
  padding: 8px;
  color: #1D2433;
}
.mobile-nav-links {
  padding: 24px 32px 64px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) { .mobile-nav-links { padding-inline: 64px; } }
.mobile-nav-link {
  font-family: var(--font-cormorant);
  font-size: 40px;
  color: #1D2433;
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
@media (min-width: 768px) { .mobile-nav-link { font-size: 60px; } }
#mobile-menu.open .mobile-nav-link { animation: navItemIn 0.4s cubic-bezier(0.16,1,0.3,1) forwards; }
#mobile-menu.open .mobile-nav-link:nth-child(1)  { animation-delay: 0.00s; }
#mobile-menu.open .mobile-nav-link:nth-child(2)  { animation-delay: 0.05s; }
#mobile-menu.open .mobile-nav-link:nth-child(3)  { animation-delay: 0.10s; }
#mobile-menu.open .mobile-nav-link:nth-child(4)  { animation-delay: 0.15s; }
#mobile-menu.open .mobile-nav-link:nth-child(5)  { animation-delay: 0.20s; }
#mobile-menu.open .mobile-nav-link:nth-child(6)  { animation-delay: 0.25s; }
#mobile-menu.open .mobile-nav-link:nth-child(7)  { animation-delay: 0.30s; }
#mobile-menu.open .mobile-nav-link:nth-child(8)  { animation-delay: 0.35s; }
#mobile-menu.open .mobile-nav-link:nth-child(9)  { animation-delay: 0.40s; }
.mobile-nav-link:hover { color: #B61E2E; }
.mobile-book-btn {
  margin-top: 32px;
  width: fit-content;
}

/* ============================================================
   HERO
   ============================================================ */
#home {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay-v {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.6) 100%);
}
.hero-overlay-h {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.4), transparent, transparent);
}
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
}
@media (min-width: 768px) { .hero-content { padding-bottom: 48px; } }
.hero-inner {
  max-width: 1400px;
  margin-inline: auto;
  width: 100%;
  padding-inline: 24px;
}
@media (min-width: 1024px) { .hero-inner { padding-inline: 40px; } }
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.hero-h1 {
  font-family: var(--font-cormorant);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: #fff;
  font-size: 52px;
}
@media (min-width: 640px)  { .hero-h1 { font-size: 72px; } }
@media (min-width: 768px)  { .hero-h1 { font-size: 96px; } }
@media (min-width: 1024px) { .hero-h1 { font-size: 128px; } }
.hero-h1 .italic { font-style: italic; color: #C6A56A; }
.hero-lead {
  margin-top: 16px;
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 672px;
  line-height: 1.6;
  font-weight: 300;
}
@media (min-width: 768px) { .hero-lead { font-size: 20px; } }
.hero-ctas {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7);
}
.hero-scroll-text {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-scroll-icon { animation: scrollBounce 2s ease-in-out infinite; }

/* ============================================================
   STATS / ABOUT
   ============================================================ */
#about {
  padding-block: 40px;
  background: #FAF9F7;
}
@media (min-width: 768px) { #about { padding-block: 48px; } }
.stats-header { max-width: 768px; margin-bottom: 24px; }
.stats-header h2 {
  font-family: var(--font-cormorant);
  font-size: 36px;
  color: #1D2433;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
@media (min-width: 768px) { .stats-header h2 { font-size: 60px; } }
@media (min-width: 1024px) { .stats-header h2 { font-size: 72px; } }
.stats-header h2 .italic { font-style: italic; color: #B61E2E; }
.stats-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(29,36,51,0.1);
  padding-top: 24px;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(5, 1fr); } }
.stat-item { display: flex; flex-direction: column; }
.stat-value {
  font-family: var(--font-cormorant);
  font-size: 48px;
  color: #1D2433;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
@media (min-width: 768px) { .stat-value { font-size: 56px; } }
.stat-stars { color: #C6A56A; letter-spacing: 0.2em; margin-bottom: 8px; font-size: 14px; }
.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(29,36,51,0.6);
  font-weight: 500;
}

/* ============================================================
   TREATMENTS
   ============================================================ */
#treatments {
  padding-block: 40px;
  background: #fff;
}
@media (min-width: 768px) { #treatments { padding-block: 48px; } }
.treatments-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .treatments-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.treatments-title { max-width: 672px; }
.treatments-title h2 {
  font-family: var(--font-cormorant);
  font-size: 36px; color: #1D2433;
  letter-spacing: -0.02em; line-height: 1.05;
}
@media (min-width: 768px) { .treatments-title h2 { font-size: 60px; } }
@media (min-width: 1024px) { .treatments-title h2 { font-size: 72px; } }
.treatments-title h2 .italic { font-style: italic; color: #B61E2E; }
.treatments-lead { color: rgba(29,36,51,0.6); max-width: 448px; line-height: 1.6; }
.treatments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: 16px;
}
@media (min-width: 768px) {
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .treatments-grid { grid-template-columns: repeat(3, 1fr); }
}

.treatment-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  border: 1px solid rgba(29,36,51,0.06);
  box-shadow: 0 4px 20px -10px rgba(29,36,51,0.05);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s ease;
  z-index: 1;
}

.treatment-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px -16px rgba(182,30,46,0.15);
  border-color: rgba(182,30,46,0.3);
}

.treatment-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(198,165,106,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
  pointer-events: none;
}
.treatment-card:hover::after {
  opacity: 1;
}

.treatment-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #FAF9F7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  margin-bottom: 0;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(29,36,51,0.05);
  font-size: 24px;
}

.treatment-card:hover .treatment-icon {
  background: rgba(182,30,46,0.05);
  transform: scale(1.1) rotate(4deg);
  border-color: rgba(182,30,46,0.15);
  box-shadow: 0 8px 16px -8px rgba(182,30,46,0.2);
}

.treatment-card h3 {
  font-family: var(--font-cormorant);
  font-size: 24px;
  color: #1D2433;
  line-height: 1.2;
  transition: color 0.3s ease;
  margin: 0;
}

.treatment-card:hover h3 {
  color: #B61E2E;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  padding-block: 40px;
  background: #1D2433;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .why-section { padding-block: 48px; } }
.why-bg {
  position: absolute; inset: 0; opacity: 0.04;
  background: radial-gradient(circle at 20% 20%, #C6A56A 0%, transparent 40%),
              radial-gradient(circle at 80% 80%, #B61E2E 0%, transparent 40%);
}
.why-inner { position: relative; }
.why-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: 4fr 8fr; }
}
.why-left { }
@media (min-width: 1024px) {
  .why-left { position: sticky; top: 128px; height: fit-content; }
}
.why-left h2 {
  font-family: var(--font-cormorant);
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .why-left h2 { font-size: 60px; } }
@media (min-width: 1024px) { .why-left h2 { font-size: 72px; } }
.why-left h2 .italic { font-style: italic; color: #C6A56A; }
.why-left p { margin-top: 16px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 448px; }
.why-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.why-right { display: flex; flex-direction: column; gap: 4px; }
.why-item {
  padding-block: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .why-item { gap: 24px; } }
.why-number {
  font-family: var(--font-cormorant);
  font-size: 24px;
  color: rgba(198,165,106,0.7);
  padding-top: 4px;
  letter-spacing: -0.02em;
}
.why-item h3 {
  font-family: var(--font-cormorant);
  font-size: 28px;
  margin-bottom: 12px;
  transition: color 0.5s;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media (min-width: 768px) { .why-item h3 { font-size: 36px; } }
.why-item:hover h3 { color: #C6A56A; }
.why-item p { color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 512px; }

/* ============================================================
   DOCTORS
   ============================================================ */
#doctors {
  padding-block: 40px;
  background: #FAF9F7;
}
@media (min-width: 768px) { #doctors { padding-block: 48px; } }
.doctors-header { max-width: 672px; margin-bottom: 24px; }
.doctors-header h2 {
  font-family: var(--font-cormorant);
  font-size: 36px; color: #1D2433;
  letter-spacing: -0.02em; line-height: 1.05;
}
@media (min-width: 768px) { .doctors-header h2 { font-size: 60px; } }
@media (min-width: 1024px) { .doctors-header h2 { font-size: 72px; } }
.doctors-header h2 .italic { font-style: italic; color: #B61E2E; }
.doctors-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.doctors-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) { .doctors-grid { grid-template-columns: repeat(3, 1fr); } }

.doctor-card { }
.doctor-photo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 24px;
  aspect-ratio: 4/5;
  background: #F3F4F6;
}
.doctor-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms;
}
.doctor-card:hover .doctor-photo img { transform: scale(1.05); }
.doctor-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent, transparent);
  opacity: 0;
  transition: opacity 0.7s;
}
.doctor-card:hover .doctor-photo-overlay { opacity: 1; }
.doctor-photo-cta {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  transform: translateY(16px);
  opacity: 0;
  transition: all 0.5s;
}
.doctor-card:hover .doctor-photo-cta { transform: translateY(0); opacity: 1; }
.doctor-photo-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  background: #fff; color: #1D2433;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.doctor-meta { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.doctor-name {
  font-family: var(--font-cormorant);
  font-size: 28px; color: #1D2433;
  letter-spacing: -0.02em; line-height: 1.05;
}
.doctor-years {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C6A56A; font-weight: 600;
}
.doctor-title { color: #B61E2E; font-size: 14px; margin-bottom: 16px; font-weight: 500; }
.doctor-details { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: rgba(29,36,51,0.65); }
.doctor-detail { display: flex; gap: 8px; align-items: flex-start; }
.doctor-detail svg { color: #C6A56A; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   BEFORE / AFTER GALLERY
   ============================================================ */
#gallery {
  padding-block: 40px;
  background: #fff;
}
@media (min-width: 768px) { #gallery { padding-block: 48px; } }
.gallery-header { text-align: center; margin-bottom: 24px; }
.gallery-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 12px;
}
.gallery-header h2 {
  font-family: var(--font-cormorant);
  font-size: 36px; color: #1D2433;
  letter-spacing: -0.02em; line-height: 1.05;
}
@media (min-width: 768px) { .gallery-header h2 { font-size: 60px; } }
@media (min-width: 1024px) { .gallery-header h2 { font-size: 72px; } }
.gallery-header h2 .italic { font-style: italic; color: #B61E2E; }
.gallery-lead { margin-top: 12px; color: rgba(29,36,51,0.6); max-width: 576px; margin-inline: auto; }

/* Slider */
.slider-wrap {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 24px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  box-shadow: 0 40px 80px -30px rgba(29,36,51,0.35);
}
@media (min-width: 768px) { .slider-wrap { aspect-ratio: 21/9; } }
.slider-after { position: absolute; inset: 0; }
.slider-after img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; user-select: none; }
.slider-before {
  position: absolute; inset: 0;
  overflow: hidden;
  width: 50%; /* JS updates this */
}
.slider-before img {
  position: absolute; inset: 0; height: 100%;
  object-fit: cover; pointer-events: none; user-select: none;
  /* width set by JS */
}
.slider-label-before {
  position: absolute; top: 24px; left: 24px;
  padding: 8px 16px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: #fff;
}
.slider-label-after {
  position: absolute; top: 24px; right: 24px;
  padding: 8px 16px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: #1D2433;
}
.slider-divider {
  position: absolute; top: 0; bottom: 0; width: 2px;
  background: #fff;
  box-shadow: 0 0 20px rgba(255,255,255,0.9);
  left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.slider-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  box-shadow: 0 0 0 16px rgba(198,165,106,0.3), 0 25px 50px -12px rgba(0,0,0,0.25);
  pointer-events: none;
}
.slider-note {
  margin-top: 32px; text-align: center;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(29,36,51,0.4);
}

/* ============================================================
   TECHNOLOGY
   ============================================================ */
#technology {
  padding-block: 40px;
  background: #FAF9F7;
}
@media (min-width: 768px) { #technology { padding-block: 48px; } }
.tech-header {
  display: grid;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 24px;
}
@media (min-width: 1024px) { .tech-header { grid-template-columns: 7fr 5fr; } }
.tech-title h2 {
  font-family: var(--font-cormorant);
  font-size: 36px; color: #1D2433;
  letter-spacing: -0.02em; line-height: 1.05;
}
@media (min-width: 768px) { .tech-title h2 { font-size: 60px; } }
@media (min-width: 1024px) { .tech-title h2 { font-size: 72px; } }
.tech-title h2 .italic { font-style: italic; color: #B61E2E; }
.tech-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.tech-lead { color: rgba(29,36,51,0.6); line-height: 1.6; }
@media (min-width: 1024px) { .tech-lead { padding-bottom: 16px; } }
.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tech-grid { grid-template-columns: repeat(3, 1fr); } }

.tech-card { overflow: hidden; }
.tech-card-large { }
@media (min-width: 768px) { .tech-card-large { grid-column: span 2; } }
@media (min-width: 1024px) { .tech-card-large { grid-column: span 2; grid-row: span 2; } }

.tech-img { position: relative; overflow: hidden; }
.tech-card-large .tech-img { height: 420px; }
.tech-card:not(.tech-card-large) .tech-img { height: 240px; }
.tech-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1400ms; }
.tech-card:hover .tech-img img { transform: scale(1.05); }
.tech-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent, transparent); }
.tech-img-icon {
  position: absolute; top: 24px; left: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.tech-img-icon svg { color: #B61E2E; }
.tech-body { padding: 24px; }
.tech-card h3 {
  font-family: var(--font-cormorant);
  color: #1D2433;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.tech-card-large h3 { font-size: 36px; }
.tech-card:not(.tech-card-large) h3 { font-size: 24px; }
.tech-card p { color: rgba(29,36,51,0.6); line-height: 1.6; font-size: 14px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding-block: 40px;
  background: #fff;
}
@media (min-width: 768px) { #testimonials { padding-block: 48px; } }
.testi-header {
  display: grid;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 24px;
}
@media (min-width: 1024px) { .testi-header { grid-template-columns: 7fr 5fr; } }
.testi-title h2 {
  font-family: var(--font-cormorant);
  font-size: 36px; color: #1D2433;
  letter-spacing: -0.02em; line-height: 1.05;
}
@media (min-width: 768px) { .testi-title h2 { font-size: 60px; } }
@media (min-width: 1024px) { .testi-title h2 { font-size: 72px; } }
.testi-title h2 .italic { font-style: italic; color: #B61E2E; }
.testi-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testi-rating {
  display: flex; align-items: center; gap: 24px;
}
@media (min-width: 1024px) { .testi-rating { justify-content: flex-end; } }
.testi-stars { display: flex; align-items: center; gap: 8px; }
.testi-stars-icons { display: flex; color: #C6A56A; }
.testi-score {
  font-family: var(--font-cormorant);
  font-size: 28px; color: #1D2433;
  letter-spacing: -0.02em;
}
.testi-count {
  font-size: 12px;
  color: rgba(29,36,51,0.5);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.4;
}
.testi-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }

.testi-card { padding: 32px; position: relative; }
.testi-quote-bg {
  font-family: var(--font-cormorant);
  font-size: 72px;
  color: rgba(198,165,106,0.25);
  line-height: 1;
  position: absolute;
  top: 20px; left: 32px;
  pointer-events: none;
}
.testi-stars-row { display: flex; color: #C6A56A; margin-bottom: 24px; position: relative; }
.testi-text {
  font-family: var(--font-cormorant);
  font-size: 22px;
  color: #1D2433;
  line-height: 1.4;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .testi-text { font-size: 24px; } }
.testi-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(29,36,51,0.1);
}
.testi-name { font-weight: 600; color: #1D2433; }
.testi-role { font-size: 12px; color: rgba(29,36,51,0.5); margin-top: 2px; }
.testi-source {
  font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #C6A56A; font-weight: 600;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
  padding-block: 40px;
  background: #FAF9F7;
}
@media (min-width: 768px) { .process-section { padding-block: 48px; } }
.process-header { text-align: center; max-width: 672px; margin-inline: auto; margin-bottom: 24px; }
.process-eyebrow { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 12px; }
.process-header h2 {
  font-family: var(--font-cormorant);
  font-size: 36px; color: #1D2433;
  letter-spacing: -0.02em; line-height: 1.05;
}
@media (min-width: 768px) { .process-header h2 { font-size: 60px; } }
@media (min-width: 1024px) { .process-header h2 { font-size: 72px; } }
.process-header h2 .italic { font-style: italic; color: #B61E2E; }
.process-steps-wrap { position: relative; }
.process-connector {
  display: none;
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(198,165,106,0.4), transparent);
}
@media (min-width: 768px) { .process-connector { display: block; } }
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 24px;
}
@media (min-width: 768px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.process-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(198,165,106,0.4), 0 10px 30px -10px rgba(198,165,106,0.4);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 10;
  margin-bottom: 24px;
}
.process-icon svg { color: #B61E2E; }
.process-num {
  font-family: var(--font-cormorant);
  color: #C6A56A; font-size: 14px;
  letter-spacing: 0.3em; margin-bottom: 8px;
}
.process-step h3 {
  font-family: var(--font-cormorant);
  font-size: 28px; color: #1D2433;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.process-step p { font-size: 13px; color: rgba(29,36,51,0.6); line-height: 1.6; max-width: 240px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  padding-block: 40px;
  background: #fff;
}
@media (min-width: 768px) { .faq-section { padding-block: 48px; } }
.faq-header { text-align: center; margin-bottom: 24px; }
.faq-eyebrow { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 12px; }
.faq-header h2 {
  font-family: var(--font-cormorant);
  font-size: 36px; color: #1D2433;
  letter-spacing: -0.02em; line-height: 1.05;
}
@media (min-width: 768px) { .faq-header h2 { font-size: 56px; } }
.faq-header h2 .italic { font-style: italic; color: #B61E2E; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 896px; margin-inline: auto; }
.faq-item {
  border: 1px solid rgba(29,36,51,0.1);
  border-radius: 18px;
  padding-inline: 24px;
  background: rgba(250,249,247,0.5);
  transition: background 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
@media (min-width: 768px) { .faq-item { padding-inline: 32px; } }
.faq-item.open {
  background: #fff;
  box-shadow: 0 20px 50px -20px rgba(29,36,51,0.15);
}
.faq-trigger {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 24px;
  cursor: pointer;
  background: none;
}
.faq-question {
  font-family: var(--font-cormorant);
  font-size: 20px; color: #1D2433;
  letter-spacing: -0.02em; line-height: 1.3;
  transition: color 0.3s;
}
@media (min-width: 768px) { .faq-question { font-size: 24px; } }
.faq-item.open .faq-question { color: #B61E2E; }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #1D2433;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-bottom 0.35s ease;
}
.faq-item.open .faq-body { max-height: 600px; padding-bottom: 24px; }
.faq-answer { color: rgba(29,36,51,0.65); line-height: 1.6; font-size: 15px; padding-right: 32px; }

/* ============================================================
   BLOG
   ============================================================ */
#blog {
  padding-block: 40px;
  background: #FAF9F7;
}
@media (min-width: 768px) { #blog { padding-block: 48px; } }
.blog-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .blog-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.blog-title h2 {
  font-family: var(--font-cormorant);
  font-size: 36px; color: #1D2433;
  letter-spacing: -0.02em; line-height: 1.05;
}
@media (min-width: 768px) { .blog-title h2 { font-size: 60px; } }
@media (min-width: 1024px) { .blog-title h2 { font-size: 72px; } }
.blog-title h2 .italic { font-style: italic; color: #B61E2E; }
.blog-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-article { cursor: pointer; }
.blog-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 24px;
  aspect-ratio: 4/3;
  background: #F3F4F6;
}
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1400ms; }
.blog-article:hover .blog-img-wrap img { transform: scale(1.05); }
.blog-cat {
  position: absolute; top: 20px; left: 20px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600;
  color: #1D2433;
}
.blog-read {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: #C6A56A;
  font-weight: 600; margin-bottom: 12px;
}
.blog-article h3 {
  font-family: var(--font-cormorant);
  font-size: 24px; color: #1D2433;
  margin-bottom: 12px; line-height: 1.2;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
@media (min-width: 768px) { .blog-article h3 { font-size: 28px; } }
.blog-article:hover h3 { color: #B61E2E; }
.blog-article p { color: rgba(29,36,51,0.6); line-height: 1.6; font-size: 14px; margin-bottom: 20px; }
.blog-read-more {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: #1D2433;
}
.blog-read-more svg { transition: transform 0.3s; }
.blog-article:hover .blog-read-more svg { transform: translate(4px, -4px); }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding-block: 40px;
  background: #fff;
}
@media (min-width: 768px) { #contact { padding-block: 48px; } }
.contact-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 56px; align-items: start; } }

.contact-info h2 {
  font-family: var(--font-cormorant);
  font-size: 36px; color: #1D2433;
  letter-spacing: -0.02em; line-height: 1.05;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .contact-info h2 { font-size: 60px; } }
@media (min-width: 1024px) { .contact-info h2 { font-size: 72px; } }
.contact-info h2 .italic { font-style: italic; color: #B61E2E; }
.contact-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.contact-lead { color: rgba(29,36,51,0.6); line-height: 1.6; margin-bottom: 24px; max-width: 448px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: #FAF9F7;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { color: #B61E2E; }
.contact-detail-label {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: #C6A56A;
  font-weight: 600; margin-bottom: 4px;
}
.contact-detail-text { color: #1D2433; line-height: 1.6; }
.contact-ctas { display: flex; gap: 12px; }
.contact-map {
  margin-top: 24px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #F3F4F6;
  box-shadow: inset 0 0 0 1px rgba(29,36,51,0.05);
}
.contact-map iframe { width: 100%; height: 100%; filter: grayscale(1) contrast(0.95); display: block; }

/* Contact Form */
.contact-form-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .contact-form-card { padding: 32px; } }
.form-top-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, #C6A56A, #B61E2E, #C6A56A);
}
.contact-form-card h3 {
  font-family: var(--font-cormorant);
  font-size: 28px; color: #1D2433;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .contact-form-card h3 { font-size: 36px; } }
.contact-form-subtitle { color: rgba(29,36,51,0.55); font-size: 14px; margin-bottom: 32px; }
.form-grid { display: grid; gap: 20px; }
.form-row { display: grid; gap: 20px; }
@media (min-width: 768px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-group { display: flex; flex-direction: column; }
.form-label {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(29,36,51,0.6);
  font-weight: 600; margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(250,249,247,0.5);
  border: 1px solid rgba(29,36,51,0.15);
  color: #1D2433;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: var(--font-inter);
  font-size: 14px;
  outline: none;
}
.form-input { height: 48px; border-radius: 999px; padding-inline: 20px; }
.form-select { height: 48px; border-radius: 999px; padding-inline: 20px; cursor: pointer; }
.form-textarea { border-radius: 18px; padding: 16px 20px; resize: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #C6A56A;
  box-shadow: 0 0 0 3px rgba(198,165,106,0.2);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(29,36,51,0.35); }
.form-error { color: #B61E2E; font-size: 14px; }
.form-submit { justify-content: center; width: 100%; margin-top: 8px; }
.form-consent { font-size: 11px; color: rgba(29,36,51,0.45); text-align: center; }
.form-success {
  padding-block: 40px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
}
.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(182,30,46,0.1);
  display: flex; align-items: center; justify-content: center;
}
.form-success-icon svg { color: #B61E2E; }
.form-success h4 {
  font-family: var(--font-cormorant);
  font-size: 28px; color: #1D2433;
  letter-spacing: -0.02em;
}
.form-success p { color: rgba(29,36,51,0.6); max-width: 336px; line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #1D2433;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.footer-bg {
  position: absolute; inset: 0; opacity: 0.03;
  background: radial-gradient(circle at 10% 20%, #C6A56A 0%, transparent 40%);
}
.footer-inner { position: relative; }
.footer-grid {
  display: grid;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 5fr 2fr 2fr 3fr; } }
.footer-logo-col { }
.footer-tagline { color: rgba(255,255,255,0.55); margin-top: 24px; max-width: 384px; line-height: 1.6; }
.footer-journal-label {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: #C6A56A;
  font-weight: 600; margin-bottom: 12px; margin-top: 32px;
}
.footer-newsletter {
  max-width: 448px;
}
.footer-subbed { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-sub-form {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 12px;
  transition: border-color 0.3s;
}
.footer-sub-form:focus-within { border-color: #C6A56A; }
.footer-sub-input {
  background: transparent; outline: none;
  color: #fff; font-size: 14px; flex: 1;
  border: none;
}
.footer-sub-input::placeholder { color: rgba(255,255,255,0.4); }
.footer-sub-btn {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s; padding: 4px;
  display: flex;
}
.footer-sub-btn:hover { color: #C6A56A; }
.footer-col-label {
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: #C6A56A;
  font-weight: 600; margin-bottom: 20px;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-list a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.3s; }
.footer-nav-list a:hover { color: #fff; }
.footer-phone {
  font-family: var(--font-cormorant);
  font-size: 24px; color: #fff;
  display: block; margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.footer-hours { color: rgba(255,255,255,0.5); font-size: 12px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
  transition: box-shadow 0.3s, color 0.3s;
}
.footer-social:hover {
  box-shadow: inset 0 0 0 1px #C6A56A;
  color: #C6A56A;
}
.footer-bottom {
  display: flex;
  flex-direction: column; gap: 16px;
  padding-top: 24px;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: #fff; transition: color 0.3s; }

/* WhatsApp FAB */
#whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transition: transform 0.3s;
}
#whatsapp-fab:hover { transform: scale(1.05); }
#whatsapp-fab svg { color: #fff; }

/* ============================================================
   NAVBAR ENTRY ANIMATION
   ============================================================ */
#navbar { animation: navbarIn 1s cubic-bezier(0.16,1,0.3,1) both; }
@keyframes navbarIn {
  from { transform: translateY(-30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.hero-anim {
  animation: fadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
