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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --cream: #f9f6f1;
  --gold: #c8a96e;
  --gold-light: #e8d5b0;
  --grey: #6b6b6b;
  --grey-light: #e8e8e8;
  --border: rgba(200,169,110,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--black); background: var(--white); overflow-x: hidden; }

/* COMPLIANCE BANNER */
.compliance-banner { background: var(--black); color: var(--gold-light); font-size: 11px; text-align: center; padding: 7px 20px; letter-spacing: 0.04em; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--grey-light); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 44px; }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--black); text-decoration: none; letter-spacing: 0.03em; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--gold); }
.nav-links li:hover > .dropdown { display: block; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--grey-light); border-top: 2px solid var(--gold); min-width: 220px; z-index: 200; }
.dropdown a { display: block; padding: 10px 18px; font-size: 12px; border-bottom: 1px solid var(--grey-light); color: var(--black); }
.dropdown a:hover { background: var(--cream); color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-size: 13px; color: var(--grey); text-decoration: none; }

/* BUTTONS */
.btn-primary { background: var(--gold); color: var(--white); border: none; padding: 10px 22px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; cursor: pointer; text-decoration: none; letter-spacing: 0.04em; transition: background 0.2s; display: inline-block; }
.btn-primary:hover { background: #b8975c; }
.btn-outline { border: 1.5px solid var(--gold); color: var(--gold); background: transparent; padding: 10px 22px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; cursor: pointer; text-decoration: none; letter-spacing: 0.04em; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 99; padding: 30px; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 16px; color: var(--black); text-decoration: none; border-bottom: 1px solid var(--grey-light); }
.mobile-menu .mobile-cta { margin-top: 24px; }

/* BREADCRUMB */
.breadcrumb { background: var(--cream); padding: 14px 60px; font-size: 12px; color: var(--grey); }
.breadcrumb a { color: var(--grey); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; color: var(--gold-light); }

/* PAGE HERO */
.page-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 68vh; }
.page-hero-text { background: var(--black); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.page-hero-text::after { content: ''; position: absolute; right: -1px; top: 0; bottom: 0; width: 1px; background: var(--gold); }
.page-hero-image { overflow: hidden; }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* TYPOGRAPHY PATTERNS */
.eyebrow { font-size: 11px; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.page-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 4vw, 58px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 22px; }
.page-title em { font-style: italic; color: var(--gold); }
.page-intro { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 460px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.practitioner-badge { margin-top: 32px; padding: 16px 20px; border: 1px solid rgba(200,169,110,0.3); font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.8; }
.practitioner-badge strong { color: var(--gold-light); display: block; margin-bottom: 2px; font-size: 13px; }

/* SECTIONS */
section { padding: 80px 60px; }
section.cream { background: var(--cream); }
section.dark { background: var(--black); }
.section-eyebrow { font-size: 11px; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 3vw, 42px); font-weight: 300; line-height: 1.15; margin-bottom: 18px; }
.section-title.light { color: var(--white); }
.section-body { font-size: 15px; color: var(--grey); line-height: 1.8; max-width: 680px; }
.section-body.light { color: rgba(255,255,255,0.65); }

/* RISK BLOCK */
.risk-block { background: #fdf9f3; border-left: 4px solid var(--gold); padding: 36px 60px; }
.risk-block h2 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; margin-bottom: 16px; }
.risk-block p { font-size: 13px; color: var(--grey); line-height: 1.9; margin-bottom: 10px; }
.risk-block p:last-child { margin-bottom: 0; }
.risk-block strong { color: var(--black); }
.risk-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 6px; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.two-col img { width: 100%; height: 420px; object-fit: cover; }
.two-col.img-first img { order: -1; }

/* CARDS GRID */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.card { background: var(--cream); padding: 36px 30px; border-top: 3px solid transparent; transition: border-color 0.25s; }
.card:hover { border-color: var(--gold); }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; margin-bottom: 12px; }
.card-body { font-size: 13px; color: var(--grey); line-height: 1.8; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; }
.step { background: var(--cream); padding: 32px 26px; }
.step-number { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--gold); opacity: 0.4; line-height: 1; margin-bottom: 12px; }
.step-title { font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.step-body { font-size: 13px; color: var(--grey); line-height: 1.7; }

/* FAQ */
.faq-list { margin-top: 40px; max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--grey-light); padding: 20px 0; cursor: pointer; }
.faq-question { display: flex; justify-content: space-between; align-items: flex-start; font-size: 14px; font-weight: 500; gap: 16px; }
.faq-toggle { font-size: 20px; color: var(--gold); flex-shrink: 0; transition: transform 0.2s; }
.faq-answer { font-size: 13px; color: var(--grey); line-height: 1.8; margin-top: 12px; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* CTA STRIP */
.cta-strip { display: grid; grid-template-columns: 1fr 1fr; min-height: 360px; }
.cta-strip-text { background: var(--black); padding: 70px 60px; display: flex; flex-direction: column; justify-content: center; }
.cta-strip-image { overflow: hidden; }
.cta-strip-image img { width: 100%; height: 100%; object-fit: cover; }
.cta-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ICON FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 40px; }
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon { width: 42px; height: 42px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.feature-title { font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.feature-body { font-size: 13px; color: var(--grey); line-height: 1.7; }

/* FOOTER */
footer { background: #050505; color: var(--white); padding: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo img { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-about { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 300px; }
.footer-col h4 { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding-top: 32px; }
.ahpra-notice { background: rgba(200,169,110,0.08); border: 1px solid var(--border); padding: 20px 24px; margin-bottom: 24px; font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.8; }
.ahpra-notice strong { color: var(--gold-light); }
.footer-legal { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px; }
.footer-legal p { font-size: 11px; color: rgba(255,255,255,0.3); line-height: 1.7; max-width: 720px; }
.footer-credits { font-size: 11px; color: rgba(255,255,255,0.25); }

/* OFFERS TABLE */
.offers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 40px; }
.offer-card { background: var(--cream); padding: 48px 40px; border-top: 3px solid transparent; }
.offer-card:hover { border-color: var(--gold); }
.offer-price { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; color: var(--gold); line-height: 1; }
.offer-name { font-size: 18px; font-weight: 500; margin: 12px 0 8px; }
.offer-includes { font-size: 13px; color: var(--grey); line-height: 1.8; margin-bottom: 20px; }
.offer-tcs { font-size: 11px; color: var(--grey); border-top: 1px solid var(--border); padding-top: 16px; line-height: 1.7; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .breadcrumb { padding: 12px 20px; }
  .page-hero { grid-template-columns: 1fr; }
  .page-hero-text { padding: 56px 24px; }
  .page-hero-image { height: auto; min-height: 280px; }
  .page-hero-image img { height: auto; min-height: 280px; object-fit: cover; }
  .risk-block { padding: 32px 24px; }
  .risk-columns { grid-template-columns: 1fr; }
  section, section.cream, section.dark { padding: 56px 24px; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .two-col img { height: auto; max-height: 420px; object-fit: cover; width: 100%; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .cta-strip { grid-template-columns: 1fr; }
  .cta-strip-text { padding: 48px 24px; }
  .cta-strip-image { min-height: 260px; }
  .cta-strip-image img { height: auto; min-height: 260px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 40px 24px; }
  .offers-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas, .cta-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
}
