:root {
  --hero: #1DBFC1;
  --hero-hover: #17B9BC;
  --deep: #0D6E70;
  --tint: #EFFAFA;
  --paper: #FAF8F4;
  --ink: #3A3A3A;
  --grey-700: #383838;
  --grey-500: #6B6B6B;
  --grey-300: #BFBDBA;
  --grey-200: #D9D9D9;
  --grey-100: #EDEBEA;
  --grey-50: #F5F4F1;
  --mer-turq: #5DD8C5;
  --mer-pink: #F8E4DD;
  --mer-coral: #F08080;
  --mer-purple: #2D1A47;
  --hub-sand: #E9DEC9;
  --hub-clay: #C97B5C;
  --hub-pine: #2F4A3A;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400; line-height: 1.55; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; line-height: 1.15; margin: 0; color: var(--deep); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-style: italic; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); font-style: italic; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-style: italic; }
h4 { font-size: 1.1rem; font-style: italic; }
p { margin: 0 0 1rem; }
a { color: var(--deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--hero); }
img { max-width: 100%; display: block; }
.eyebrow { font-family: 'Roboto', sans-serif; font-size: 11px; letter-spacing: .25em; color: var(--hero); font-weight: 600; text-transform: uppercase; }
.accent-bar { width: 36px; height: 3px; background: var(--hero); margin: 14px 0; border: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* NAV */
header.nav { position: sticky; top: 0; background: rgba(250,248,244,.96); backdrop-filter: blur(8px); z-index: 50; border-bottom: 1px solid var(--grey-200); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; max-width: 1180px; margin: 0 auto; }
.logo { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; color: var(--deep); font-weight: 500; }
.logo small { font-family: 'Roboto', sans-serif; font-size: 10px; letter-spacing: .15em; color: var(--grey-500); display: block; font-style: normal; margin-top: 2px; }
nav.menu { display: flex; gap: 28px; align-items: center; }
nav.menu a { font-size: 13px; color: var(--grey-700); font-weight: 500; }
nav.menu a:hover { color: var(--deep); }
nav.menu a.active { color: var(--deep); font-weight: 600; border-bottom: 2px solid var(--hero); padding-bottom: 4px; }
.nav-cta { background: var(--deep); color: #fff !important; padding: 10px 18px; border-radius: 4px; font-size: 13px; font-weight: 500; transition: background .2s; }
.nav-cta:hover { background: var(--hero); color: #fff !important; }
.nav-cta.active { border-bottom: none !important; }
.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--deep); }
@media (max-width: 880px) {
  nav.menu { position: fixed; top: 70px; right: 0; left: 0; flex-direction: column; gap: 0; background: var(--paper); padding: 16px 24px; border-bottom: 1px solid var(--grey-200); transform: translateY(-200%); transition: transform .25s; z-index: 49; }
  nav.menu.open { transform: translateY(0); }
  nav.menu a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--grey-100); }
  nav.menu a.nav-cta { width: 100%; text-align: center; margin-top: 8px; }
  .menu-toggle { display: block; }
}

/* HERO (home) */
.hero-image { position: relative; min-height: 680px; display: flex; align-items: center; padding: 120px 0 80px; overflow: hidden; }
.hero-image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,110,112,.55) 0%, rgba(13,110,112,.35) 60%, rgba(250,248,244,.95) 100%), url('assets/assets/cabarita-beach-hero.svg') center 40%/cover no-repeat; z-index: -1; }
.hero-image .container { position: relative; z-index: 1; }
.hero-image .eyebrow { color: #fff; opacity: .9; }
.hero-image h1 { color: #fff; }
.hero-image .lede { font-size: 19px; color: rgba(255,255,255,.95); max-width: 640px; line-height: 1.5; margin-top: 28px; text-shadow: 0 1px 8px rgba(0,0,0,.15); }
.hero-image .accent-bar { background: var(--hero); }
.hero-image .hero-cta { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero-image .hero-meta { margin-top: 56px; display: flex; gap: 32px; flex-wrap: wrap; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.25); font-size: 13px; color: rgba(255,255,255,.85); }
.hero-image .hero-meta strong { color: #fff; font-weight: 600; }
.image-credit { position: absolute; right: 12px; bottom: 12px; color: rgba(255,255,255,.6); font-size: 10px; z-index: 1; letter-spacing: .05em; }

/* HERO (interior pages) */
.page-hero { padding: 80px 0 56px; background: linear-gradient(180deg, var(--tint) 0%, var(--paper) 100%); border-bottom: 1px solid var(--grey-200); }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
.page-hero .lede { font-size: 18px; color: var(--grey-700); max-width: 700px; line-height: 1.55; margin-top: 24px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: 4px; font-size: 14px; font-weight: 500; transition: all .2s; cursor: pointer; border: none; text-decoration: none; }
.btn-primary { background: var(--deep); color: #fff !important; }
.btn-primary:hover { background: var(--hero); }
.btn-ghost { background: transparent; color: #fff !important; border: 1px solid rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-ghost-dark { background: transparent; color: var(--deep) !important; border: 1px solid var(--grey-300); }
.btn-ghost-dark:hover { border-color: var(--deep); }

/* SECTIONS */
.sec { padding: 96px 0; }
.sec-tint { background: var(--tint); }
.sec-paper { background: var(--paper); }
.sec-white { background: #fff; }

/* FAMILY (home) */
.family-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 880px) { .family-grid { grid-template-columns: 1fr; } }
.family-card { padding: 36px 28px; border: 1px solid var(--grey-200); border-radius: 6px; transition: all .25s; background: #fff; }
.family-card:hover { border-color: var(--deep); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(13,110,112,.08); }
.family-card .tier { font-family: 'Roboto', sans-serif; font-size: 10px; letter-spacing: .25em; font-weight: 600; text-transform: uppercase; }
.family-card.pottsville .tier { color: var(--hero); }
.family-card.meridiann .tier { color: var(--mer-coral); }
.family-card.hub .tier { color: var(--hub-clay); }
.family-card h3 { margin-top: 12px; }
.family-card .desc { font-size: 14px; color: var(--grey-700); margin: 16px 0 24px; line-height: 1.55; }
.family-card .link { font-size: 13px; font-weight: 500; color: var(--deep); }
.family-card .link::after { content: ' →'; transition: margin .2s; }
.family-card:hover .link::after { margin-left: 4px; }

/* PILLARS */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } }
.pillar { padding: 32px; background: #fff; border-radius: 6px; border-left: 3px solid var(--hero); }
.pillar .num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 36px; color: var(--hero); font-weight: 500; line-height: 1; }
.pillar h3 { margin: 12px 0 6px; font-size: 22px; }
.pillar .body { font-size: 14px; color: var(--grey-700); margin-top: 12px; }

/* CONDITIONS */
.conditions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 880px) { .conditions { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .conditions { grid-template-columns: 1fr; } }
.condition { background: #fff; padding: 28px; border-radius: 6px; border: 1px solid var(--grey-200); transition: all .25s; }
.condition:hover { border-color: var(--hero); transform: translateY(-2px); }
.condition .icon { width: 48px; height: 48px; border-radius: 50%; background: var(--tint); display: flex; align-items: center; justify-content: center; color: var(--deep); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; font-weight: 600; margin-bottom: 16px; }
.condition h3 { font-family: 'Roboto', sans-serif; font-style: normal; font-size: 16px; color: var(--deep); font-weight: 600; margin-bottom: 8px; }
.condition p { font-size: 14px; color: var(--grey-700); margin: 0 0 16px; line-height: 1.5; }
.condition .more { font-size: 12px; font-weight: 600; color: var(--hero); }

/* PROTOCOL band */
.protocol-band { background: var(--deep); color: #fff; padding: 80px 0; }
.protocol-band h2 { color: #fff; }
.protocol-band .lede { color: rgba(255,255,255,.85); font-size: 18px; max-width: 720px; margin-top: 24px; }
.levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 48px; background: rgba(255,255,255,.08); }
@media (max-width: 720px) { .levels { grid-template-columns: 1fr; } }
.level { background: var(--deep); padding: 28px; }
.level .num { font-family: 'Roboto', sans-serif; font-size: 11px; letter-spacing: .25em; color: var(--hero); font-weight: 600; }
.level h3 { color: #fff; margin: 8px 0 12px; font-size: 24px; }
.level p { font-size: 14px; color: rgba(255,255,255,.75); margin: 0; line-height: 1.5; }

/* SERVICES */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 720px) { .service-grid { grid-template-columns: 1fr; } }
.service { padding: 32px; border: 1px solid var(--grey-200); border-radius: 6px; transition: all .25s; background: #fff; }
.service:hover { border-color: var(--hero); transform: translateY(-2px); }
.service h3 { font-size: 22px; margin-bottom: 8px; }
.service .duration { font-size: 12px; color: var(--grey-500); letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.service .desc { font-size: 14px; color: var(--grey-700); margin: 16px 0; line-height: 1.5; }
.service .price { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--deep); font-size: 26px; font-weight: 500; }
.service .price small { font-size: 13px; color: var(--grey-500); display: block; font-style: normal; font-weight: 400; margin-top: 4px; }

/* TWO-COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 48px; }
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.two-col.flip { grid-template-columns: 1.4fr 1fr; }
@media (max-width: 880px) { .two-col.flip { grid-template-columns: 1fr; } }

/* IMAGE PLACEHOLDER */
.placeholder-image { aspect-ratio: 4/3; background: var(--grey-100); border-radius: 6px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--grey-500); font-size: 13px; font-style: italic; text-align: center; padding: 16px; }
.placeholder-image::before { content: '📷'; position: absolute; top: 16px; left: 16px; opacity: .6; }
.placeholder-image.tall { aspect-ratio: 4/5; }
.placeholder-image.wide { aspect-ratio: 16/9; }

/* TRUST */
.reviews { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; margin-top: 40px; }
@media (max-width: 880px) { .reviews { grid-template-columns: 1fr; } }
.review { padding: 28px; background: var(--paper); border-radius: 6px; border-left: 3px solid var(--hero); }
.review .stars { color: #F4B400; letter-spacing: -1px; font-size: 14px; }
.review p { font-style: italic; color: var(--grey-700); font-size: 15px; margin: 12px 0 16px; line-height: 1.55; }
.review .who { font-size: 12px; color: var(--grey-500); }
.trust-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; padding: 32px 0; border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); }
@media (max-width: 720px) { .trust-stats { grid-template-columns: 1fr; gap: 24px; text-align: center; } }
.trust-stats .num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 48px; color: var(--deep); font-weight: 500; line-height: 1; }
.trust-stats .label { font-size: 12px; color: var(--grey-500); margin-top: 8px; letter-spacing: .1em; text-transform: uppercase; }

/* PRACTICAL list */
.practical-list { background: #fff; border-radius: 6px; padding: 32px; }
.practical-list dt { font-size: 11px; letter-spacing: .15em; color: var(--grey-500); text-transform: uppercase; font-weight: 600; margin-top: 18px; }
.practical-list dt:first-child { margin-top: 0; }
.practical-list dd { margin: 4px 0 0; font-size: 14px; color: var(--ink); line-height: 1.5; }
.practical-list dd a { color: var(--deep); text-decoration: underline; }

/* HEALTH FUND BAND */
.fund-band { padding: 64px 0; background: var(--deep); color: #fff; text-align: center; }
.fund-band h2 { color: #fff; }
.fund-band .accent-bar { background: var(--hero); margin: 14px auto; }
.fund-band .lede { color: rgba(255,255,255,.85); max-width: 720px; margin: 24px auto 0; font-size: 17px; }
.fund-logos { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 40px; opacity: .9; }
.fund-logos span { padding: 10px 18px; background: rgba(255,255,255,.08); border-radius: 4px; font-size: 12px; letter-spacing: .1em; }

/* MERIDIANN */
.mer-section { background: var(--mer-purple); color: #fff; padding: 96px 0; }
.mer-section h2 { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); }
.mer-section .accent-bar { background: var(--mer-coral); }
.mer-section .lede { color: rgba(255,255,255,.85); font-size: 19px; max-width: 700px; margin-top: 24px; }
.mer-product-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.08); margin-top: 56px; }
@media (max-width: 720px) { .mer-product-flow { grid-template-columns: 1fr; } }
.mer-flow-card { background: var(--mer-purple); padding: 32px; }
.mer-flow-card .num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 32px; color: var(--mer-coral); }
.mer-flow-card h3 { color: #fff; margin: 8px 0 10px; }
.mer-flow-card p { color: rgba(255,255,255,.75); font-size: 14px; margin: 0; }
.mer-status { display: inline-block; margin-top: 28px; background: var(--mer-coral); color: #fff; padding: 6px 14px; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; border-radius: 3px; }

/* HUB */
.hub-section { background: var(--hub-sand); padding: 96px 0; }
.hub-section h2 { color: var(--hub-pine); }
.hub-section .accent-bar { background: var(--hub-clay); }
.hub-vision { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 880px) { .hub-vision { grid-template-columns: 1fr; } }
.hub-card { padding: 32px; background: #fff; border-radius: 6px; }
.hub-card .icon { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 36px; color: var(--hub-clay); }
.hub-card h3 { color: var(--hub-pine); margin: 8px 0 12px; font-size: 22px; }
.hub-card p { font-size: 14px; color: var(--grey-700); margin: 0; }

/* HALAXY EMBED */
.halaxy-wrap { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 24px rgba(13,110,112,.06); }
.halaxy-wrap iframe { width: 100%; min-height: 1700px; border: 0; display: block; }

/* FAQ */
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--grey-200); }
.faq-item summary { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; color: var(--deep); cursor: pointer; list-style: none; padding-right: 32px; position: relative; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: 0; font-size: 28px; color: var(--hero); font-style: normal; transition: transform .2s; }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { margin-top: 16px; color: var(--grey-700); line-height: 1.6; }

/* CONDITION DETAIL PAGE */
.condition-detail .lead-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 26px; color: var(--deep); padding: 24px 32px; border-left: 3px solid var(--hero); background: var(--tint); margin: 32px 0; line-height: 1.4; }
.condition-detail h3 { margin-top: 36px; margin-bottom: 16px; }
.condition-detail ul { padding-left: 24px; color: var(--grey-700); line-height: 1.7; }
.condition-detail .ahpra-note { font-size: 12px; color: var(--grey-500); margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--grey-200); font-style: italic; }

/* FOOTER */
footer { padding: 64px 0 32px; background: #fff; border-top: 1px solid var(--grey-200); color: var(--grey-700); font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 48px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { font-family: 'Roboto', sans-serif; font-style: normal; font-size: 11px; color: var(--deep); font-weight: 600; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid ul li a { color: var(--grey-700); }
.footer-grid ul li a:hover { color: var(--deep); }
.footer-meta { padding-top: 24px; border-top: 1px solid var(--grey-200); font-size: 11px; color: var(--grey-500); line-height: 1.6; }
.footer-meta p { margin: 0 0 8px; }

/* STICKY BOOK CTA (mobile) */
.sticky-book { position: fixed; bottom: 16px; right: 16px; z-index: 40; background: var(--deep); color: #fff; padding: 14px 22px; border-radius: 4px; box-shadow: 0 8px 24px rgba(13,110,112,.25); font-weight: 600; font-size: 14px; display: none; }
@media (max-width: 880px) { .sticky-book { display: inline-flex; } }
.sticky-book:hover { background: var(--hero); color: #fff !important; }

/* SCROLL FADE */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* UTILITIES */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
