/* === BEST MEDSPAS WOODBRIDGE - SITE STYLES === */
/* Gold + Cream Color Scheme - Beautilab Inspired */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1a1a1a;
  --primary-dark: #000000;
  --accent: #d4af37;
  --accent-mid: #c19b2e;
  --accent-dark: #a8841e;
  --accent-subtle: #fdf9ec;
  --accent-border: #ecdca0;
  --bg: #fdfcf7;
  --bg-alt: #f8f4e6;
  --bg-card: #ffffff;
  --text: #1f1f1f;
  --text-light: #6b6b6b;
  --border: #eee7c8;
  --shadow: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.10);
  --radius: 6px;
  --max-width: 1140px;
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--serif); letter-spacing: -0.3px; }

/* === HEADER / NAV === */
.site-header {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(60,40,10,0.04);
}

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

.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.logo span { color: var(--accent-dark); font-style: italic; }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }

.nav-links > li { position: relative; }

.nav-links > li > a {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: color 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--accent-dark); }

.nav-arrow { font-size: 0.55rem; }

/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent-dark);
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(60,40,10,0.15);
  padding: 10px 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(6px);
  z-index: 200;
}

.nav-links > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  transition: background 0.15s, color 0.15s;
}

.dropdown a:hover {
  background: var(--accent-subtle);
  color: var(--accent-dark);
}

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* === FULL-WIDTH HERO === */
.hero-fullwidth {
  position: relative;
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #000000 0%, #141414 50%, #1f1d10 100%);
}

.hero-fullwidth::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212,175,55,0.14) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212,175,55,0.10) 0%, transparent 50%);
  z-index: 1;
}

.hero-fullwidth .hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,117,0.4);
}

.hero-fullwidth h1 {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-fullwidth h1 span {
  color: var(--accent);
  font-style: italic;
}

.hero-fullwidth p {
  font-family: var(--sans);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-fullwidth .hero-sub {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.42);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

/* === STANDARD HERO (sub-pages) === */
.hero {
  background: var(--bg);
  padding: 72px 0 56px;
  text-align: center;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.hero .eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent-dark);
  margin-bottom: 14px;
  display: block;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  line-height: 1.1;
  color: var(--primary);
}

.hero h1 span { color: var(--accent-dark); font-style: italic; }

.hero p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* === BREADCRUMBS === */
.breadcrumbs {
  padding: 20px 0 0;
  font-size: 0.82rem;
  color: var(--text-light);
}
.breadcrumbs a { color: var(--text-light); }
.breadcrumbs a:hover { color: var(--accent-dark); }
.breadcrumbs span { margin: 0 8px; color: var(--accent); }

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  padding: 56px 0 12px;
}

.section-header .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent-dark);
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 0.98rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}

/* === PROVIDER CARDS === */
.providers-grid {
  display: grid;
  gap: 24px;
  padding: 36px 0 72px;
}

.provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
}

.provider-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--accent-border);
}

.provider-card.featured {
  border: 1px solid var(--accent);
  background: linear-gradient(180deg, var(--accent-subtle) 0%, #fff 100%);
  position: relative;
}

.provider-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--bg-alt);
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 14px;
}

.provider-card.featured .rank-badge {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border-color: var(--accent-dark);
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(212,175,55,0.4);
}

.provider-card h2 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--primary);
  letter-spacing: -0.3px;
}

.provider-card h2 a { color: var(--primary); }
.provider-card h2 a:hover { color: var(--accent-dark); }

.provider-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
  font-style: italic;
}

.provider-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

.stars { color: var(--accent-dark); letter-spacing: 1px; font-size: 0.95rem; }

.provider-description {
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 22px;
  color: var(--text);
}

.provider-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.detail-item {
  font-size: 0.85rem;
  color: var(--text-light);
}

.detail-item strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
  color: var(--accent-dark);
}

.provider-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: var(--bg-alt);
  color: var(--text-light);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.provider-card.featured .tag {
  background: var(--accent-subtle);
  color: var(--accent-dark);
  border-color: var(--accent-border);
}

.btn {
  display: inline-block;
  padding: 13px 32px;
  background: var(--primary);
  color: #fff;
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
  border: 1px solid var(--primary);
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(212,175,55,0.32);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: var(--accent-dark);
}
.btn-gold:hover { background: var(--primary); border-color: var(--primary); }

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

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }

/* === CONTENT PAGES === */
.content-page { padding: 48px 0 80px; }

.content-page h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary);
  margin: 44px 0 16px;
}

.content-page h2:first-child { margin-top: 0; }

.content-page h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin: 32px 0 12px;
}

.content-page p {
  margin-bottom: 18px;
  font-size: 0.98rem;
  line-height: 1.85;
}

.content-page ul, .content-page ol { margin: 0 0 22px 24px; }

.content-page li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* === FAQ === */
.faq-section { margin: 48px 0; }

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

.faq-item h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 10px;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, #000000 0%, #141414 100%);
  padding: 72px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

.cta-section h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 14px;
  color: #fff;
}

.cta-section h2 span { color: var(--accent); font-style: italic; }

.cta-section p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
  font-size: 1rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* === METHODOLOGY === */
.methodology-section {
  background: var(--bg-alt);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* === FOOTER === */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.55);
  padding: 44px 0;
  font-size: 0.83rem;
  text-align: center;
}

.site-footer .logo { color: #fff; margin-bottom: 14px; display: inline-block; }
.site-footer .logo span { color: var(--accent); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 18px 0 14px;
  flex-wrap: wrap;
}

.footer-links a { color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; font-size: 0.75rem; }
.footer-links a:hover { color: var(--accent); }

/* === SIDEBAR LAYOUT === */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 56px 0 88px;
}

.page-main { min-width: 0; }
.page-main .content-page { padding: 0; }

.page-sidebar { position: relative; }

.sidebar-widget {
  position: sticky;
  top: 96px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sidebar-card-header {
  background: linear-gradient(135deg, #000000 0%, #141414 100%);
  padding: 20px 22px;
  color: #fff;
  border-bottom: 2px solid var(--accent);
}

.sidebar-card-header h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin: 0;
  color: #fff;
}

.sidebar-card-header .eyebrow {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 4px;
  display: block;
}

.sidebar-provider {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  text-decoration: none;
}

.sidebar-provider:last-of-type { border-bottom: none; }
.sidebar-provider:hover { background: var(--accent-subtle); }

.sidebar-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-rank.gold {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
}
.sidebar-rank.silver { background: #c0c0c0; color: #fff; }
.sidebar-rank.bronze { background: #b8941f; color: #fff; }

.sidebar-provider-info { flex: 1; min-width: 0; }

.sidebar-provider-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 2px;
}

.sidebar-provider:hover .sidebar-provider-name { color: var(--accent-dark); }

.sidebar-provider-meta {
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.4;
}

.sidebar-cta {
  padding: 18px 22px;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--bg-alt);
}

.sidebar-cta a {
  display: block;
  padding: 11px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: background 0.2s;
  text-decoration: none;
}

.sidebar-cta a:hover { background: var(--accent-dark); color: #fff; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; gap: 40px; }
  .sidebar-widget { position: static; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-fullwidth { height: 460px; }
  .hero-fullwidth h1 { font-size: 2.4rem; }
  .hero-fullwidth p { font-size: 0.95rem; }

  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open > li > a { padding: 12px 0; }

  .nav-links.open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 12px;
    min-width: 0;
  }

  .provider-card { padding: 26px; }
  .provider-details { grid-template-columns: 1fr 1fr; }
  .section-header h2 { font-size: 1.7rem; }
  .cta-section h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-fullwidth { height: 420px; }
  .hero-fullwidth h1 { font-size: 2rem; }
  .hero-badge { font-size: 0.72rem; padding: 6px 14px; }
  .container { padding: 0 16px; }
  .provider-details { grid-template-columns: 1fr; }
}
