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

:root {
  --navy: #0A1E35;
  --navy-light: #132D4F;
  --navy-dark: #060F1B;
  --gold: #C9A84C;
  --gold-light: #E8D9A0;
  --gold-muted: rgba(201,168,76,0.15);
  --cream: #FAF7F0;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --border: rgba(10,30,53,0.08);
  --shadow: 0 2px 20px rgba(10,30,53,0.06);
  --shadow-lg: 0 8px 40px rgba(10,30,53,0.10);
  --radius: 4px;
  --max-width: 1200px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; color: var(--gold); }

p { margin-bottom: 1rem; font-size: 1rem; font-weight: 300; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--navy); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* ==========================================
   NAVIGATION
   ========================================== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: var(--transition);
}
.site-nav.scrolled { background: rgba(10,30,53,0.97); backdrop-filter: blur(12px); }
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo .logo-accent { color: var(--gold); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; display: block; font-family: var(--sans); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 0.5rem 0.9rem; font-size: 0.78rem; font-weight: 400;
  color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em;
  text-decoration: none; transition: var(--transition);
}
.nav-links > li > a:hover, .nav-links > li.active > a { color: var(--gold); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 260px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(8px);
  transition: var(--transition); padding: 0.5rem 0;
}
.nav-links > li:hover > .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a {
  display: block; padding: 0.6rem 1.4rem; font-size: 0.85rem; color: var(--text);
  text-decoration: none; transition: var(--transition); font-weight: 400;
}
.nav-dropdown a:hover { background: var(--gold-muted); color: var(--navy); }
.nav-dropdown .dropdown-label {
  padding: 0.5rem 1.4rem 0.2rem; font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold); font-weight: 600; font-family: var(--sans);
}

/* CTA Button in Nav */
.nav-cta {
  background: var(--gold); color: var(--navy) !important; padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius); font-weight: 600 !important; letter-spacing: 0.06em !important;
  margin-left: 0.5rem; font-size: 0.75rem !important;
}
.nav-cta:hover { background: var(--gold-light); color: var(--navy) !important; }

/* Mobile Toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: var(--transition); }

/* ==========================================
   HERO SECTIONS
   ========================================== */
.hero {
  position: relative; min-height: 70vh; display: flex; align-items: center;
  background: var(--navy); color: var(--white); padding: 8rem 0 5rem; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.05) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2rem; max-width: 560px; }
.hero-label {
  display: inline-block; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1.5rem;
  font-family: var(--sans); font-weight: 500;
  padding-bottom: 0.8rem; border-bottom: 1px solid rgba(201,168,76,0.3);
}

/* Page Hero (shorter) */
.page-hero {
  background: var(--navy); color: var(--white); padding: 7rem 0 3.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.8rem; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.page-hero .hero-label { border-bottom: none; padding-bottom: 0; margin-bottom: 1rem; }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-block; padding: 0.85rem 2rem; font-family: var(--sans);
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  text-decoration: none; border-radius: var(--radius); transition: var(--transition);
  cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.3); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.72rem; }

/* ==========================================
   SECTIONS
   ========================================== */
section { padding: 5rem 0; }
section.alt { background: var(--cream); }
.section-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--gold); font-family: var(--sans); font-weight: 500;
  margin-bottom: 0.8rem; display: block;
}
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-header h2 { margin-bottom: 0.8rem; }
.section-header p { color: var(--text-light); }

/* Gold Divider */
.gold-line { width: 60px; height: 2px; background: var(--gold); margin: 1.5rem 0; }
.gold-line.center { margin: 1.5rem auto; }

/* ==========================================
   CARDS
   ========================================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card-grid.three { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.5rem 2rem; transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.3); transform: translateY(-2px); }
.card h3 { margin-bottom: 0.8rem; font-size: 1.3rem; }
.card p { color: var(--text-light); font-size: 0.92rem; }
.card .card-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); font-family: var(--sans); font-weight: 600; margin-bottom: 0.6rem; display: block; }
.card .card-link { display: inline-block; margin-top: 1rem; font-size: 0.78rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); }
.card .card-link:hover { color: var(--navy); }
.card .card-link::after { content: ' \u2192'; }

/* Service Card */
.service-card { position: relative; overflow: hidden; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: var(--gold); transition: var(--transition);
}
.service-card:hover::before { height: 100%; }

/* ==========================================
   PRICING TABLES
   ========================================== */
.pricing-section { margin-bottom: 3rem; }
.pricing-section h3 { margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--border); }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  text-align: left; padding: 0.8rem 1rem; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold); font-weight: 600; border-bottom: 2px solid var(--navy);
  font-family: var(--sans);
}
.pricing-table td {
  padding: 1rem; font-size: 0.92rem; border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.pricing-table tr:hover { background: var(--gold-muted); }
.pricing-table .price {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--navy);
  white-space: nowrap;
}
.pricing-table .note { color: var(--text-light); font-size: 0.85rem; }

/* ==========================================
   PROCESS / STEPS
   ========================================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; counter-reset: step; }
.step { position: relative; padding-left: 0; text-align: center; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--serif); font-size: 2.5rem; font-weight: 300;
  color: var(--gold); margin-bottom: 0.8rem; line-height: 1;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.88rem; color: var(--text-light); }

/* ==========================================
   FEATURE LIST
   ========================================== */
.feature-list { list-style: none; }
.feature-list li {
  padding: 1rem 0 1rem 2rem; border-bottom: 1px solid var(--border);
  position: relative; font-size: 0.95rem;
}
.feature-list li::before {
  content: ''; position: absolute; left: 0; top: 1.4rem;
  width: 8px; height: 8px; border: 2px solid var(--gold); border-radius: 50%;
}
.feature-list li strong { display: block; color: var(--navy); font-weight: 500; margin-bottom: 0.2rem; }

/* ==========================================
   CALL-TO-ACTION BANNER
   ========================================== */
.cta-banner {
  background: var(--navy); color: var(--white); padding: 4rem 0; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-banner p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ==========================================
   BRAND PROMISE BOX
   ========================================== */
.promise-box {
  background: var(--cream); border-left: 3px solid var(--gold); padding: 2.5rem;
  margin: 2rem 0; border-radius: 0 var(--radius) var(--radius) 0;
}
.promise-box h3 { margin-bottom: 0.6rem; }
.promise-box p { color: var(--text-light); margin-bottom: 0; font-size: 0.95rem; }

/* ==========================================
   DIRECT CARE BADGE
   ========================================== */
.dc-badges { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; margin: 2rem 0; }
.dc-badge {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1.2rem 1.8rem; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); flex: 1; min-width: 220px; max-width: 320px;
}
.dc-badge .badge-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold-muted);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--serif); font-size: 1.2rem; color: var(--gold); font-weight: 600;
}
.dc-badge .badge-text { font-size: 0.82rem; font-weight: 500; color: var(--navy); line-height: 1.3; }

/* ==========================================
   FOOTER
   ========================================== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.5); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { max-width: 300px; }
.footer-brand .footer-logo { font-family: var(--serif); font-size: 1.3rem; color: var(--white); font-weight: 600; margin-bottom: 0.3rem; }
.footer-brand .footer-sub { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; }
.footer-col h4 { color: var(--gold); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem; font-family: var(--sans); font-weight: 600; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 0.85rem; padding: 0.3rem 0; text-decoration: none; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 1.5rem; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--navy); flex-direction: column; padding: 2rem; gap: 0; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 0.8rem 0; font-size: 0.85rem; }
  .nav-dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; background: rgba(255,255,255,0.05); border: none; border-radius: 0; padding: 0 0 0 1rem; }
  .nav-dropdown a { color: rgba(255,255,255,0.6); font-size: 0.8rem; padding: 0.5rem 0; }
  .nav-dropdown .dropdown-label { padding: 0.5rem 0 0.2rem; }
  .nav-cta { margin-left: 0; margin-top: 1rem; text-align: center; display: block; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 50vh; padding: 6rem 0 3rem; }
  .card-grid { grid-template-columns: 1fr; }
  .dc-badges { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 1.2rem; }
  section { padding: 3rem 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* Hamburger Animation */
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
