: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;
}
@font-face {
  font-family: 'Qurova';
  src: url('assets/fonts/Qurova-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Qurova';
  src: url('assets/fonts/Qurova-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Qurova';
  src: url('assets/fonts/Qurova-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Qurova';
  src: url('assets/fonts/Qurova-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Qurova';
  src: url('assets/fonts/Qurova-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Noah';
  src: url('assets/fonts/Noah-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Noah';
  src: url('assets/fonts/Noah-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Noah';
  src: url('assets/fonts/Noah-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Reborn';
  src: url('assets/fonts/Reborn.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: 'Noah', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400; line-height: 1.55; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Reborn', sans-serif; font-weight: 500; line-height: 1.15; margin: 0; color: var(--deep); text-transform: uppercase; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem);  }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem);  }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem);  }
h4 { font-size: 1.1rem; }
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: 'Noah', 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 */
/* On most pages the header is injected into <div id="header">; make that wrapper
   sticky so the bar sticks relative to <body> rather than its own short wrapper. */
#header { position: sticky; position: -webkit-sticky; top: 0; z-index: 50; }
header.nav {  position: sticky; position: -webkit-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 img {  height: 60px;  width: auto;  display: block;}
.logo { font-family: 'Reborn', sans-serif; font-style: italic; font-size: 22px; color: var(--deep); font-weight: 500; }
.logo small { font-family: 'Noah', 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: 15px; 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%
    );

  z-index: -1;
}
.hero-video{
   position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.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(   rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url('/assets/Pottsville%20Beach.webp'); background-size: cover;  background-position: center;  background-repeat: no-repeat; border-bottom: 1px solid var(--grey-200);
}
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.5rem);color:white; }
/* .page-hero .lede { font-size: 18px; color: var(--grey-700); max-width: 700px; line-height: 1.55; margin-top: 24px; } */
.page-hero .lede { font-size: 18px; color: rgba(255,255,255,.95); 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; }
.sec-pattern-light {
  background: linear-gradient(rgba(255, 255, 255, 0.86), rgba(239, 250, 250, 0.86)), url(/assets/abstract-white-wave-texture.webp);  background-repeat: repeat;  background-size: 800px;  background-position: center;
}

/* 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: 'Noah', 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:var(--hero); border-radius: 6px; border-left: 3px solid var(--hero); }
.pillar .num { font-family: 'Reborn', sans-serif; font-style: italic; font-size: 36px; color: #fff; font-weight: 500; line-height: 1; }
.pillar h3 { margin: 12px 0 6px; color: #fff;font-size: 22px; }
.pillar .body { font-size: 14px; color: #fff; 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; border-radius: 6px; border: 1px solid var(--grey-200); transition: all .25s; overflow: hidden; padding: 0;}
.condition:hover {  border-color: var(--hero);  transform: translateY(-2px);}
.condition-image {  width: 100%;  height: 220px;  object-fit: cover;  display: block;}
.condition h3,.condition p,.condition .more {  padding-left: 28px;  padding-right: 28px;}
.condition h3 {  font-family: 'Noah', sans-serif;  font-style: normal;  font-size: 16px;  color: var(--deep);  font-weight: 600;  margin-top: 24px;  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);  padding-bottom: 28px;  display: inline-block;}

/* PROTOCOL band */
.protocol-band { color: #fff; padding: 80px 0; background: linear-gradient(#0d6e70d6, #0d6e70d6),url('/assets/white-wavy-lines-texture.webp'), var(--deep); background-repeat: repeat; background-size: 800px; background-position: center; }
.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: 'Noah', 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: 'Reborn', sans-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; }
.real-image { aspect-ratio: 4/3; background: var(--grey-100); border-radius: 6px; position: relative; overflow: hidden; display: flex; align-items: stretch; justify-content: center; color: var(--grey-500); font-size: 13px; font-style: italic; text-align: center; }

/*about us page image*/
.doctor-image { aspect-ratio: 4/5; background: var(--grey-100); border-radius: 6px; overflow: hidden;  display: flex; align-items: center; justify-content: center;}

.doctor-image img { width: 110%; height: 110%; object-fit: cover;}

/* 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: 'Reborn', sans-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: linear-gradient(#0d6e70c7, #0d6e70c9),url('/assets/white-wavy-lines-texture.webp'), var(--deep); background-repeat: repeat; background-size: 300px; background-position: center; 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 {
 background: linear-gradient(rgba(45, 26, 71, 0.82), rgba(45, 26, 71, 0.88)), url(assets/blue-and-green-japanese-wave-pattern-background.webp), var(--mer-purple);
    color: #fff;
    padding: 96px 0;
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
}
.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: 'Reborn', sans-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: 'Reborn', sans-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: 'Noah', sans-serif; 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: 'Noah', sans-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: 'Noah', 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; }
/* Social Links */
.social-links {  display: flex;  gap: 16px;  align-items: center;}

.social-links a {  color: var(--deep);  font-size: 18px;  transition: 0.3s;}

.social-links a:hover {  opacity: 0.7;}


/* ── BLOG GRID & CARDS ─────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 52px;
}
@media (max-width: 920px) { .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; gap: 24px; } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: 6px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .28s, box-shadow .28s, border-color .28s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 110, 112, .12);
  border-color: var(--hero);
}

.blog-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--grey-100);
  overflow: hidden;
  position: relative;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.blog-card:hover .blog-img img {
  transform: scale(1.04);
}
.blog-img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: var(--grey-500);
  font-style: italic;
}

.blog-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 10px;
}
.blog-meta .category {
  color: var(--hero);
  font-weight: 600;
}
.blog-meta .dot {
  color: var(--grey-300);
}

.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--deep);
  margin: 0 0 12px;
}

.blog-excerpt {
  font-size: 14px;
  color: var(--grey-700);
  line-height: 1.65;
  margin: 0 0 20px;
  flex: 1;
}

.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--hero);
  transition: color .2s, gap .25s;
  align-self: flex-start;
}
.blog-card:hover .blog-readmore {
  color: var(--deep);
  gap: 10px;
}

/* single post */
.article-hero { padding: 80px 0 56px; background: var(--paper); }
.article-hero .container { max-width: 820px; }
.article-meta { display: flex; gap: 12px; font-family: 'Roboto', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 14px; flex-wrap: wrap; }
.article-meta .category { color: var(--hero); font-weight: 600; }
.article-meta .dot { color: var(--grey-300); }
.article-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.15; margin-bottom: 20px; }
.article-hero .lede { font-size: 18px; color: var(--grey-700); line-height: 1.6; }
.article-featured { width: 100%; aspect-ratio: 21/9; background: var(--grey-100); margin: 0; overflow: hidden; }
.article-featured img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-body { padding: 64px 0 80px; }
.article-body .narrow { max-width: 720px; }
.article-body p { font-size: 17px; line-height: 1.75; color: var(--ink); margin-bottom: 24px; }
.article-body h2 { font-size: clamp(1.5rem, 2.5vw, 1.85rem); color: var(--deep); margin: 48px 0 18px; }
.article-disclaimer { margin-top: 56px; padding: 24px; background: var(--grey-100); border-radius: 6px; font-size: 13px; color: var(--grey-700); line-height: 1.6; }
.article-footer-nav { display: flex; justify-content: space-between; align-items: center; padding: 32px 0; border-top: 1px solid var(--grey-200); margin-top: 56px; gap: 16px; flex-wrap: wrap; }
.article-footer-nav a { font-family: 'Roboto', sans-serif; font-size: 14px; color: var(--hero); text-decoration: none; transition: color .2s; }
.article-footer-nav a:hover { color: var(--deep); }

