  :root {
    /* Core brand from logo */
    --crimson: #A31C2E;
    --crimson-dark: #7D1522;
    --crimson-light: #C0253A;
    /* Warm charcoal from DNA helix */
    --charcoal: #3A3836;
    --charcoal-light: #5A5856;
    /* Pastel companions */
    --blush: #F2DDE0;        /* soft rose pink */
    --petal: #FAEAEC;        /* very pale blush */
    --dusty-rose: #D4909A;   /* mid rose accent */
    --sage-grey: #E8E5E2;    /* warm light grey */
    --warm-white: #FDFBFA;
    --cream: #F7F3F0;
    --parchment: #EDE8E3;
    /* Text */
    --body-text: #2E2C2B;
    --mid-text: #6A6460;
    --light-text: #9A9490;
    /* Shadows */
    --card-shadow: 0 2px 16px rgba(163,28,46,0.07);
    --soft-shadow: 0 6px 32px rgba(163,28,46,0.12);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 88px; }
  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--body-text);
    background: var(--warm-white);
    line-height: 1.65;
  }
  h1, h2, h3, h4 { font-family: 'Lora', serif; line-height: 1.25; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(253,251,250,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(163,28,46,0.1);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 24px rgba(163,28,46,0.10); }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 32px; height: 72px;
  }
  .nav-logo { display: flex; align-items: center; text-decoration: none; padding-right: 20px; }
  .nav-logo img { height: 44px; width: auto; }
  .nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
  .nav-links a {
    padding: 8px 13px; border-radius: 6px;
    color: var(--charcoal); text-decoration: none; font-size: 0.86rem;
    font-weight: 500; transition: all 0.2s; white-space: nowrap;
  }
  .nav-links a:hover, .nav-links a.active { background: var(--blush); color: var(--crimson); }
  .nav-cta {
    background: var(--crimson) !important; color: #fff !important;
    padding: 9px 18px !important; border-radius: 8px !important;
  }
  .nav-cta:hover { background: var(--crimson-dark) !important; }

  /* Dropdown nav */
  .nav-dropdown { position: relative; }
  .nav-dropdown-menu {
    display: none; position: absolute; top: calc(100% + 4px); left: 50%;
    transform: translateX(-50%);
    background: rgba(253,251,250,0.98); backdrop-filter: blur(14px);
    border: 1px solid rgba(163,28,46,0.12); border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12); padding: 6px;
    min-width: 190px; z-index: 1001; white-space: nowrap;
  }
  .nav-dropdown:hover .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a {
    display: block; padding: 9px 14px; border-radius: 6px;
    color: var(--charcoal); text-decoration: none;
    font-size: 0.83rem; font-weight: 500; transition: all 0.15s;
  }
  .nav-dropdown-menu a:hover { background: var(--blush); color: var(--crimson); }
  .nav-dropdown > a .caret { font-size: 0.65rem; margin-left: 3px; opacity: 0.6; }

  /* Mobile submenu */
  .mobile-sub {
    display: none; flex-direction: column; padding-left: 18px; gap: 0;
    border-left: 2px solid var(--blush); margin: 2px 0 6px;
  }
  .mobile-sub.open { display: flex; }
  .mobile-sub a {
    padding: 9px 12px !important; font-size: 0.9rem !important;
    color: var(--crimson) !important; border-bottom: none !important;
  }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: 0.3s; }
  .mobile-menu {
    display: none; position: fixed; top: 102px; left: 0; right: 0; bottom: 0;
    background: var(--warm-white); padding: 20px; z-index: 999;
    flex-direction: column; gap: 6px; overflow-y: auto;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    display: block; padding: 13px 16px; border-radius: 8px;
    color: var(--charcoal); text-decoration: none; font-size: 1rem; font-weight: 500;
    border-bottom: 1px solid var(--parchment);
  }

  /* ── PAGES ── */
  .page { display: none; padding-top: 102px; min-height: 100vh; animation: fadeUp 0.45s ease; }

  /* ── DONATE BANNER ── */
  .donate-banner {
    position: fixed; top: 72px; left: 0; right: 0; z-index: 998;
    height: 30px; background: var(--crimson); overflow: hidden;
    display: flex; align-items: center;
  }
  .donate-banner-link { display: block; width: 100%; height: 100%; text-decoration: none; }
  .donate-banner-track {
    display: inline-flex; height: 100%; align-items: center;
    white-space: nowrap; animation: donate-scroll 24s linear infinite;
  }
  .donate-banner-track span {
    color: #fff; font-size: 0.76rem; font-weight: 600;
    letter-spacing: 0.01em; padding: 0 40px;
  }
  .donate-banner-link:hover .donate-banner-track { animation-play-state: paused; }
  @keyframes donate-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .page.active { display: block; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, var(--charcoal) 0%, #2A2826 55%, #1E1C1B 100%);
    padding: 88px 32px 80px; position: relative; overflow: hidden;
  }
  .hero::after {
    content: ''; position: absolute;
    bottom: -1px; left: 0; right: 0; height: 80px;
    background: linear-gradient(to bottom, transparent, var(--warm-white));
    pointer-events: none;
  }
  /* Subtle texture */
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(163,28,46,0.15) 0%, transparent 60%),
                      radial-gradient(circle at 80% 20%, rgba(163,28,46,0.08) 0%, transparent 50%);
  }
  .hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
  .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(163,28,46,0.2); border: 1px solid rgba(163,28,46,0.4);
    color: #E8A0A8; padding: 6px 14px; border-radius: 20px;
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.4rem); color: #fff;
    margin-bottom: 18px; font-weight: 700;
  }
  .hero h1 em { font-style: italic; color: #E8A0A8; }
  .hero p { font-size: 1.08rem; color: rgba(255,255,255,0.78); max-width: 480px; margin-bottom: 34px; }
  .hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--crimson); color: #fff;
    padding: 13px 26px; border-radius: 9px; font-weight: 600;
    text-decoration: none; font-size: 0.93rem; transition: all 0.2s; display: inline-block;
    border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  }
  .btn-primary:hover { background: var(--crimson-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(163,28,46,0.4); }
  .btn-outline {
    background: transparent; color: rgba(255,255,255,0.88);
    border: 1.5px solid rgba(255,255,255,0.3);
    padding: 13px 26px; border-radius: 9px; font-weight: 500;
    text-decoration: none; font-size: 0.93rem; transition: all 0.2s; display: inline-block;
  }
  .btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); }

  .hero-stats {
    background: rgba(255,255,255,0.06); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; padding: 28px;
  }
  .hero-stats-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: #E8A0A8; margin-bottom: 20px; font-weight: 600; }
  .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-item { text-align: center; }
  .stat-num { font-family: 'Lora', serif; font-size: 1.9rem; font-weight: 700; color: #fff; display: block; }
  .stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.6); }
  .stat-divider { grid-column: 1/-1; height: 1px; background: rgba(255,255,255,0.1); }
  .hero-notice {
    margin-top: 16px; background: rgba(45,163,90,0.15);
    border: 1px solid rgba(45,163,90,0.3); border-radius: 10px; padding: 14px 18px;
    font-size: 0.8rem; color: rgba(255,255,255,0.75); line-height: 1.5;
  }
  .hero-notice strong { color: #6FD99A; }
  .hero-journeys { margin-top: 32px; }
  .journey-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
  .journey-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .journey-tag {
    background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.82);
    padding: 7px 14px; border-radius: 7px; font-size: 0.82rem;
    cursor: pointer; transition: 0.2s; text-decoration: none; border: 1px solid rgba(255,255,255,0.12);
  }
  .journey-tag:hover { background: rgba(163,28,46,0.3); border-color: rgba(163,28,46,0.5); }

  /* ── LAYOUT ── */
  .section { padding: 70px 32px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-alt { background: var(--cream); }
  .section-dark { background: var(--charcoal); }
  .section-blush { background: var(--petal); }
  .section-header { margin-bottom: 44px; }
  .section-header h2 { font-size: clamp(1.55rem, 2.8vw, 2.1rem); color: var(--charcoal); margin-bottom: 10px; }
  .section-header p { font-size: 1rem; color: var(--mid-text); max-width: 580px; }
  .eyebrow {
    display: inline-block; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--crimson); margin-bottom: 8px;
  }
  .eyebrow-light { color: #E8A0A8; }

  /* ── CARDS ── */
  .card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

  .card {
    background: #fff; border-radius: 14px; padding: 26px;
    box-shadow: var(--card-shadow); border: 1px solid rgba(163,28,46,0.07);
    transition: all 0.25s;
  }
  .card:hover { transform: translateY(-3px); box-shadow: var(--soft-shadow); border-color: rgba(163,28,46,0.15); }
  .card-icon {
    width: 46px; height: 46px; border-radius: 11px;
    background: var(--blush); display: flex; align-items: center;
    justify-content: center; margin-bottom: 14px; font-size: 1.35rem;
  }
  .card h3 { font-size: 1.05rem; color: var(--charcoal); margin-bottom: 9px; }
  .card p { font-size: 0.88rem; color: var(--mid-text); line-height: 1.65; }
  .card-link {
    display: inline-flex; align-items: center; gap: 5px;
    color: var(--crimson); font-size: 0.84rem; font-weight: 600;
    text-decoration: none; margin-top: 14px; transition: gap 0.2s;
  }
  .card-link:hover { gap: 9px; }
  .card-link::after { content: '→'; }

  /* Treatment cards */
  .treatment-card {
    background: #fff; border-radius: 16px; padding: 30px;
    box-shadow: var(--card-shadow); border: 1px solid rgba(163,28,46,0.08);
    transition: all 0.25s;
  }
  .treatment-card:hover { transform: translateY(-3px); box-shadow: var(--soft-shadow); }
  .treatment-badge {
    display: inline-block; padding: 4px 10px; border-radius: 5px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 12px;
    text-transform: uppercase;
  }
  .badge-maa { background: #FFF0F2; color: var(--crimson); border: 1px solid rgba(163,28,46,0.2); }
  .badge-nice { background: #DCFCE7; color: #166534; border: 1px solid rgba(22,101,52,0.2); }
  .badge-pipeline { background: #FFF8ED; color: #8A5A00; border: 1px solid rgba(138,90,0,0.2); }
  .treatment-card h3 { font-size: 1.3rem; color: var(--charcoal); margin-bottom: 3px; }
  .drug-name { font-size: 0.84rem; color: var(--mid-text); margin-bottom: 14px; }
  .treatment-card p { font-size: 0.89rem; color: var(--body-text); line-height: 1.72; margin-bottom: 12px; }
  .treatment-meta { font-size: 0.81rem; color: var(--mid-text); display: flex; flex-direction: column; gap: 5px; border-top: 1px solid var(--parchment); padding-top: 14px; margin-top: 4px; }
  .treatment-meta span { display: flex; gap: 10px; }
  .treatment-meta strong { color: var(--charcoal); min-width: 80px; }

  /* Story cards */
  .story-card {
    background: #fff; border-radius: 14px; overflow: hidden;
    box-shadow: var(--card-shadow); border: 1px solid rgba(163,28,46,0.08); transition: all 0.25s;
  }
  .story-card:hover { transform: translateY(-3px); box-shadow: var(--soft-shadow); }
  .story-stripe { height: 5px; background: var(--crimson); }
  .story-body { padding: 22px; }
  .story-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 12px; }
  .story-name { font-family: 'Lora', serif; font-size: 1rem; color: var(--charcoal); margin-bottom: 2px; }
  .story-tag { font-size: 0.76rem; color: var(--crimson); margin-bottom: 10px; font-weight: 500; }
  .story-body p { font-size: 0.87rem; color: var(--body-text); line-height: 1.65; font-style: italic; }

  .community-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; }
  .community-layout .section-header { margin-bottom: 0; }
  .community-layout .section-header p { max-width: none; }
  .community-layout .section-header p + p { margin-top: 14px; }
  @media (max-width: 900px) {
    .community-layout { grid-template-columns: 1fr; gap: 32px; }
  }
  .community-carousel { max-width: 440px; margin: 0 auto; }
  .carousel-frame { position: relative; }
  .carousel-track-wrap { border-radius: 14px; overflow: hidden; box-shadow: var(--card-shadow); border: 1px solid rgba(163,28,46,0.08); background: #fff; }
  .carousel-track { display: flex; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); }
  .carousel-slide { flex: 0 0 100%; aspect-ratio: 4 / 5; }
  .carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 42px; height: 42px; border-radius: 50%; background: #fff;
    border: 1px solid rgba(163,28,46,0.15); box-shadow: var(--card-shadow);
    color: var(--crimson); font-size: 1.4rem; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; z-index: 2;
  }
  .carousel-arrow:hover { background: var(--crimson); color: #fff; }
  .carousel-prev { left: -21px; }
  .carousel-next { right: -21px; }
  .carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
  .carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blush); border: none; cursor: pointer; padding: 0; transition: all 0.2s; }
  .carousel-dot.active { background: var(--crimson); width: 22px; border-radius: 4px; }
  .community-carousel.single-slide .carousel-arrow, .community-carousel.single-slide .carousel-dots { display: none; }
  @media (max-width: 560px) {
    .carousel-prev { left: 6px; } .carousel-next { right: 6px; }
    .carousel-arrow { width: 36px; height: 36px; font-size: 1.2rem; }
  }

  /* ── CALLOUT ── */
  .callout {
    background: var(--blush); border-left: 4px solid var(--crimson);
    border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 22px 0;
  }
  .callout strong { color: var(--crimson-dark); display: block; margin-bottom: 4px; font-size: 0.9rem; }
  .callout p, .callout ul { font-size: 0.88rem; color: var(--body-text); }
  .callout ul { margin-left: 18px; margin-top: 6px; }
  .callout li { margin-bottom: 4px; }
  .callout-warning { background: #FFF8E6; border-left-color: #D4920A; }
  .callout-warning strong { color: #8A5C00; }

  /* ── PAGE HERO ── */
  .page-hero { background: linear-gradient(155deg, var(--charcoal) 0%, #322E2C 100%); padding: 56px 32px 52px; }
  .page-hero-inner { max-width: 1200px; margin: 0 auto; }
  .breadcrumb { font-size: 0.76rem; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
  .breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
  .breadcrumb a:hover { color: #E8A0A8; }
  .page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.7rem); color: #fff; margin-bottom: 10px; }
  .page-hero p { font-size: 1.02rem; color: rgba(255,255,255,0.72); max-width: 580px; }

  /* ── SIDEBAR LAYOUT ── */
  .sidebar-layout { display: grid; grid-template-columns: 230px 1fr; gap: 44px; align-items: start; }
  .sidebar-nav {
    position: sticky; top: 88px; background: #fff;
    border-radius: 12px; padding: 18px; box-shadow: var(--card-shadow);
    border: 1px solid rgba(163,28,46,0.08);
  }
  .sidebar-nav h4 { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--light-text); margin-bottom: 10px; font-weight: 700; }
  .sidebar-nav a {
    display: block; padding: 8px 11px; border-radius: 6px;
    color: var(--body-text); text-decoration: none; font-size: 0.85rem; transition: 0.2s; margin-bottom: 2px;
  }
  .sidebar-nav a:hover, .sidebar-nav a.active { background: var(--blush); color: var(--crimson); }
  .content-prose h2 { font-size: 1.55rem; color: var(--charcoal); margin-top: 44px; margin-bottom: 14px; padding-top: 44px; border-top: 1px solid var(--parchment); }
  .content-prose h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
  .content-prose h3 { font-size: 1.1rem; color: var(--crimson-dark); margin-top: 26px; margin-bottom: 10px; }
  .content-prose p { margin-bottom: 14px; font-size: 0.93rem; color: var(--body-text); }
  .content-prose ul, .content-prose ol { margin-left: 22px; margin-bottom: 14px; }
  .content-prose li { font-size: 0.93rem; color: var(--body-text); margin-bottom: 5px; }

  /* ── TEAM ── */
  .team-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; }
  .team-row + .team-row { margin-top: 32px; }
  .team-card { width: 220px; text-align: center; }
  .team-row-pair .team-card { width: 360px; }
  @media (max-width: 800px) {
    .team-row-pair .team-card { width: 220px; }
  }
  .team-photo { width: 148px; height: 148px; border-radius: 50%; overflow: hidden; margin: 0 auto; box-shadow: var(--card-shadow); border: 3px solid #fff; }
  .team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .team-name-role { font-weight: 700; font-size: 0.95rem; color: var(--charcoal); margin-top: 16px; margin-bottom: 8px; }
  .team-bio { font-size: 0.85rem; color: var(--mid-text); line-height: 1.6; }
  .team-bio + .team-bio { margin-top: 10px; }

  /* ── TABLE ── */
  .table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid rgba(163,28,46,0.1); margin: 18px 0; }
  table { width: 100%; border-collapse: collapse; }
  th { background: var(--charcoal); color: #E8A0A8; padding: 11px 15px; text-align: left; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; font-family: 'DM Sans', sans-serif; }
  td { padding: 10px 15px; border-bottom: 1px solid var(--parchment); font-size: 0.86rem; }
  tr:last-child td { border-bottom: none; }
  tr:nth-child(even) { background: rgba(242,221,224,0.25); }

  /* ── NHS BANNER ── */
  .nhs-banner {
    background: var(--charcoal); color: #fff; padding: 36px 32px; border-radius: 16px;
    display: flex; align-items: center; gap: 28px;
  }
  .nhs-logo {
    font-family: 'Lora', serif; font-size: 1.7rem; font-weight: 700;
    background: #fff; color: var(--charcoal); padding: 4px 11px; border-radius: 6px;
    white-space: nowrap; flex-shrink: 0;
  }
  .nhs-banner h3 { color: #E8A0A8; font-size: 0.95rem; margin-bottom: 5px; }
  .nhs-banner p { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
  .nhs-treatments { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
  .nhs-pill { background: rgba(163,28,46,0.25); border: 1px solid rgba(163,28,46,0.4); color: #E8A0A8; padding: 4px 11px; border-radius: 18px; font-size: 0.78rem; }

  /* ── TABS ── */
  .tab-nav { display: flex; gap: 3px; flex-wrap: wrap; border-bottom: 2px solid var(--parchment); margin-bottom: 30px; }
  .tab-btn {
    padding: 10px 17px; border: none; background: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-size: 0.86rem; font-weight: 500;
    color: var(--mid-text); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.2s;
  }
  .tab-btn.active { color: var(--crimson); border-bottom-color: var(--crimson); }
  .tab-btn:hover { color: var(--charcoal); }
  .tab-panel { display: none; }
  .tab-panel.active { display: block; animation: fadeUp 0.3s ease; }

  /* ── FORUM ── */
  .forum-thread {
    background: #fff; border: 1px solid rgba(163,28,46,0.1);
    border-radius: 12px; padding: 18px 22px; margin-bottom: 10px;
    display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: start;
  }

  /* ── FB GROUP CARDS ── */
  .fb-groups-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 44px; }
  @media(max-width:700px){ .fb-groups-grid { grid-template-columns: 1fr; } }
  .fb-group-card { border-radius: 14px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.10); display: flex; flex-direction: column; }
  .fb-group-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
  .fb-group-card-img-placeholder { width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; }
  .fb-group-card-body { background: #fff; padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
  .fb-group-card-body h3 { font-size: 0.97rem; color: var(--charcoal); margin: 0; line-height: 1.35; }
  .fb-group-card-body p { font-size: 0.82rem; color: var(--mid-text); margin: 0; flex: 1; }
  .fb-group-join { display: inline-flex; align-items: center; gap: 7px; margin-top: 4px; background: #1877F2; color: #fff; border-radius: 8px; padding: 9px 16px; font-size: 0.84rem; font-weight: 600; text-decoration: none; align-self: flex-start; transition: background 0.18s; }
  .fb-group-join:hover { background: #1558b0; }
  .fb-group-join svg { flex-shrink: 0; }
  .forum-thread h4 { font-size: 0.93rem; color: var(--charcoal); margin-bottom: 3px; }
  .forum-thread p { font-size: 0.81rem; color: var(--mid-text); }
  .forum-meta { text-align: right; font-size: 0.76rem; color: var(--light-text); white-space: nowrap; }
  .forum-meta strong { display: block; color: var(--crimson); }

  /* ── BENEFITS ── */
  .benefit-card {
    background: #fff; border-radius: 14px; padding: 26px;
    box-shadow: var(--card-shadow); border-top: 4px solid var(--crimson); margin-bottom: 14px;
  }
  .benefit-card h3 { color: var(--charcoal); font-size: 1.05rem; margin-bottom: 7px; }
  .benefit-amount { font-family: 'Lora', serif; font-size: 1.55rem; font-weight: 700; color: var(--crimson); margin-bottom: 7px; }
  .benefit-card p { font-size: 0.86rem; color: var(--body-text); margin-bottom: 5px; }
  .benefit-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
  .btag { padding: 3px 8px; border-radius: 4px; font-size: 0.71rem; font-weight: 600; letter-spacing: 0.03em; }
  .btag-crimson { background: #FFF0F2; color: var(--crimson); }
  .btag-blue { background: #EBF3FB; color: #1A5C96; }
  .btag-amber { background: #FFF8ED; color: #8A5A00; }

  /* ── NEWS ── */
  .news-card {
    background: #fff; border-radius: 14px; overflow: hidden;
    box-shadow: var(--card-shadow); border: 1px solid rgba(163,28,46,0.08); transition: 0.25s;
  }
  .news-card:hover { transform: translateY(-3px); box-shadow: var(--soft-shadow); }
  .news-date { font-size: 0.74rem; color: var(--light-text); margin-bottom: 7px; }
  .news-card h3 { font-size: 0.97rem; color: var(--charcoal); margin-bottom: 7px; }
  .news-card p { font-size: 0.84rem; color: var(--body-text); line-height: 1.65; }
  .news-pill { display: inline-block; padding: 3px 8px; border-radius: 4px; font-size: 0.7rem; font-weight: 700; background: var(--blush); color: var(--crimson); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.04em; }
  .news-pill-amber { background: #FFF8ED; color: #8A5A00; }
  .news-pill-green { background: #DCFCE7; color: #166534; }
  .news-pill-blue  { background: #EBF3FB; color: #1A5C96; }
  .news-pill-teal  { background: #E6F6F4; color: #0D6E6E; }
  .news-pill-purple{ background: #F0EBF8; color: #5B2D8E; }
  .news-card { display: flex; flex-direction: column; }
  .news-card-body { display: flex; flex-direction: column; flex: 1; padding: 22px; }
  .news-card p { flex: 1; }
  .news-read-more { display: inline-block; margin-top: 12px; font-size: 0.8rem; font-weight: 600; color: var(--crimson); text-decoration: none; cursor: pointer; background: none; border: none; padding: 0; font-family: inherit; }
  .news-read-more:hover { text-decoration: underline; }
  /* Featured image cards */
  .news-card-image { width: 100%; aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; background: var(--petal); display: flex; align-items: center; justify-content: center; }
  .news-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
  .news-card:hover .news-card-image img { transform: scale(1.02); }
  .news-card.news-card-has-image .news-card-body { padding-top: 16px; }

  /* ── HOME: split "Where to start" / "From the blog" ── */
  .split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
  .split-col-header { margin-bottom: 22px; min-height: 30px; }
  .split-col-header h3 { font-size: 1.15rem; color: var(--charcoal); margin-bottom: 0; }
  .split-col-body { display: flex; flex-direction: column; height: 100%; min-height: 0; }
  .split-col-body .card-grid-2 { flex: 1; grid-template-rows: 1fr 1fr; }
  .split-col-body .card-grid-2 .card { display: flex; flex-direction: column; }
  .split-col-body .card-grid-2 .card p { flex: 1; }
  .split-post-grid { display: flex; flex-direction: column; gap: 18px; flex: 1; min-height: 0; }
  .split-post-card {
    flex: 1; display: flex; background: #fff; border-radius: 14px; overflow: hidden;
    box-shadow: var(--card-shadow); border: 1px solid rgba(163,28,46,0.07);
    text-decoration: none; color: inherit; min-height: 210px; transition: all 0.25s;
  }
  .split-post-card:hover { box-shadow: var(--soft-shadow); border-color: rgba(163,28,46,0.15); }
  .split-post-card-image { width: 45%; flex-shrink: 0; align-self: stretch; background: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 14px; box-sizing: border-box; }
  .split-post-card-image img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform 0.35s ease; }
  .split-post-card:hover .split-post-card-image img { transform: scale(1.02); }
  .split-post-card-body { padding: 18px 22px; display: flex; flex-direction: column; justify-content: flex-start; flex: 1; min-width: 0; }
  .split-post-card-body h3 { font-size: 1rem; color: var(--charcoal); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .split-post-card-body .news-pill { margin-bottom: 8px; }
  .split-post-card-body .news-date { margin-bottom: 4px; }
  .split-post-card-excerpt { font-size: 0.82rem; color: var(--mid-text); line-height: 1.55; margin: 8px 0 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .split-post-card-body .news-read-more { margin-top: 10px; }
  /* Filter bar */
  .news-filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .news-filter-btn { padding: 6px 16px; border-radius: 20px; border: 1.5px solid #e0d5d6; background: #fff; color: var(--mid-text); font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; letter-spacing: 0.02em; }
  .news-filter-btn:hover { border-color: var(--crimson); color: var(--crimson); }
  .news-filter-btn.active { background: var(--crimson); color: #fff; border-color: var(--crimson); }
  .news-card.nc-hidden { display: none !important; }

  /* ── SHOP ── */
  .shop-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
  .shop-filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .shop-filter-btn { padding: 6px 16px; border-radius: 20px; border: 1.5px solid #e0d5d6; background: #fff; color: var(--mid-text); font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
  .shop-filter-btn:hover { border-color: var(--charcoal); color: var(--charcoal); }
  .shop-filter-btn.active { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
  .shop-filter-sep { width: 1px; background: var(--parchment); margin: 0 4px; flex-shrink: 0; }
  .shop-card { background: #fff; border-radius: 14px; box-shadow: var(--card-shadow); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
  .shop-card:hover { transform: translateY(-3px); box-shadow: var(--soft-shadow); }
  .shop-card.sh-hidden { display: none !important; }
  .shop-card-images { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--petal); position: relative; }
  .shop-card-images img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s; }
  .shop-card:hover .shop-card-images img { transform: scale(1.04); }
  .shop-card-no-image { width: 100%; aspect-ratio: 4/3; background: var(--petal); display: flex; align-items: center; justify-content: center; color: var(--light-text); font-size: 2.5rem; }
  .shop-card-img2-btn { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.55); color: #fff; border: none; border-radius: 6px; padding: 4px 9px; font-size: 0.72rem; font-weight: 600; cursor: pointer; font-family: inherit; }
  .shop-card-body { padding: 18px 20px; display: flex; flex-direction: column; flex: 1; }
  .shop-card-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
  .shop-type-sell  { background: #FEF3C7; color: #92400E; font-size: 0.7rem; font-weight: 700; padding: 2px 9px; border-radius: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
  .shop-type-swap  { background: #DBEAFE; color: #1E40AF; font-size: 0.7rem; font-weight: 700; padding: 2px 9px; border-radius: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
  .shop-type-free  { background: #D1FAE5; color: #065F46; font-size: 0.7rem; font-weight: 700; padding: 2px 9px; border-radius: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
  .shop-cat-badge  { background: var(--blush); color: var(--crimson); font-size: 0.7rem; font-weight: 600; padding: 2px 9px; border-radius: 10px; }
  .shop-card-title { font-family: 'Lora', serif; font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; line-height: 1.35; }
  .shop-card-details { font-size: 0.84rem; color: var(--mid-text); line-height: 1.55; flex: 1; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .shop-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
  .shop-card-date { font-size: 0.75rem; color: var(--light-text); }
  .shop-contact-btn { background: var(--charcoal); color: #fff; border: none; border-radius: 8px; padding: 8px 16px; font-size: 0.82rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: background 0.2s; white-space: nowrap; }
  .shop-contact-btn:hover { background: #5a5856; }
  .shop-empty { text-align: center; padding: 4rem 1rem; color: var(--mid-text); }
  .shop-empty p { font-size: 1rem; margin-bottom: 1.5rem; }
  /* ── PHYSIO WITH MARION ── */
  .physio-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
  @media(max-width:640px){ .physio-grid { grid-template-columns: 1fr; } }
  .physio-card { background:#fff; border-radius:14px; box-shadow:var(--card-shadow); overflow:hidden; cursor:pointer; transition:transform 0.2s,box-shadow 0.2s; }
  .physio-card:hover { transform:translateY(-3px); box-shadow:var(--soft-shadow); }
  .physio-thumb-wrap { position:relative; width:100%; aspect-ratio:16/9; overflow:hidden; background:#000; }
  .physio-thumb-wrap img { width:100%; height:100%; object-fit:cover; display:block; transition:opacity 0.2s; }
  .physio-card:hover .physio-thumb-wrap img { opacity:0.85; }
  .physio-play-btn { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
  .physio-play-btn svg { filter:drop-shadow(0 2px 8px rgba(0,0,0,0.5)); transition:transform 0.2s; }
  .physio-card:hover .physio-play-btn svg { transform:scale(1.12); }
  .physio-card-body { padding:16px 18px 18px; }
  .physio-card-title { font-family:'Lora',serif; font-size:1rem; font-weight:600; color:var(--charcoal); margin-bottom:6px; line-height:1.35; }
  .physio-card-desc { font-size:0.82rem; color:var(--mid-text); line-height:1.55; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
  /* Video modal */
  .physio-modal-backdrop { position:fixed; inset:0; background:rgba(0,0,0,0.85); z-index:3000; display:none; align-items:center; justify-content:center; padding:1rem; }
  .physio-modal-backdrop.open { display:flex; }
  .physio-modal-inner { width:100%; max-width:900px; }
  .physio-modal-header { display:flex; justify-content:space-between; align-items:flex-start; gap:12px; margin-bottom:10px; }
  .physio-modal-title { font-family:'Lora',serif; font-size:1.1rem; font-weight:600; color:#fff; line-height:1.35; }
  .physio-modal-close { background:none; border:none; color:rgba(255,255,255,0.7); font-size:2rem; line-height:1; cursor:pointer; padding:0; flex-shrink:0; }
  .physio-modal-close:hover { color:#fff; }
  .physio-iframe-wrap { position:relative; width:100%; aspect-ratio:16/9; background:#000; border-radius:10px; overflow:hidden; }
  .physio-iframe-wrap iframe { position:absolute; inset:0; width:100%; height:100%; border:none; }

  /* ── DIRECTORY ── */
  .dir-filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; align-items: center; }
  .dir-tag-bar { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; min-height: 0; }
  .dir-filter-btn { padding: 6px 16px; border-radius: 20px; border: 1.5px solid #e0d5d6; background: #fff; color: var(--mid-text); font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans',sans-serif; }
  .dir-filter-btn:hover { border-color: #0D6E6E; color: #0D6E6E; }
  .dir-filter-btn.active { background: #0D6E6E; color: #fff; border-color: #0D6E6E; }
  .dir-tag-btn { padding: 4px 12px; border-radius: 20px; border: 1.5px solid #b2dfdb; background: #fff; color: #0D6E6E; font-size: 0.76rem; font-weight: 600; cursor: pointer; transition: all 0.18s; font-family: 'DM Sans',sans-serif; }
  .dir-tag-btn:hover { border-color: #0D6E6E; background: #E0F2F2; }
  .dir-tag-btn.active { background: #0D6E6E; color: #fff; border-color: #0D6E6E; }
  .dir-card { background: #fff; border-radius: 14px; box-shadow: var(--card-shadow); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
  .dir-card:hover { transform: translateY(-3px); box-shadow: var(--soft-shadow); }
  .dir-card.dir-hidden { display: none !important; }
  .dir-card-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; transition: transform 0.35s; }
  .dir-card:hover .dir-card-img { transform: scale(1.03); }
  .dir-card-no-img { width: 100%; aspect-ratio: 3/2; background: var(--petal); display: flex; align-items: center; justify-content: center; color: var(--light-text); font-size: 3rem; }
  .dir-card-body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
  .dir-card-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
  .dir-badge-biz { background: #FEF3C7; color: #92400E; font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
  .dir-badge-svc { background: #CCFBF1; color: #0F766E; font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
  .dir-card-title { font-family: 'Lora',serif; font-size: 1.15rem; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; line-height: 1.3; }
  .dir-card-desc { font-size: 0.86rem; color: var(--mid-text); line-height: 1.6; flex: 1; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .dir-card-services { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
  .dir-service-tag { background: var(--petal); color: var(--crimson); font-size: 0.72rem; font-weight: 600; padding: 3px 9px; border-radius: 8px; }
  .dir-card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
  .dir-tag-pill { background: #E0F2F2; color: #0D6E6E; font-size: 0.7rem; font-weight: 600; padding: 2px 9px; border-radius: 10px; }
  .dir-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
  .dir-view-btn { background: #0D6E6E; color: #fff; border: none; border-radius: 8px; padding: 9px 18px; font-size: 0.84rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: background 0.2s; }
  .dir-view-btn:hover { background: #0a5a5a; }
  /* Detail modal */
  .dir-detail-main-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
  .dir-extra-gallery { display: flex; gap: 8px; padding: 12px 24px 0; flex-wrap: wrap; }
  .dir-extra-gallery img { height: 80px; aspect-ratio: 1; object-fit: cover; border-radius: 8px; cursor: pointer; transition: opacity 0.18s; }
  .dir-extra-gallery img:hover { opacity: 0.85; }
  .dir-detail-body { padding: 20px 24px 24px; }
  .dir-detail-name { font-family: 'Lora',serif; font-size: 1.4rem; font-weight: 600; color: var(--charcoal); margin: 12px 0 8px; }
  .dir-detail-desc { font-size: 0.92rem; color: var(--body-text); line-height: 1.65; white-space: pre-wrap; margin-bottom: 18px; }
  .dir-detail-section-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--light-text); margin-bottom: 8px; }
  .dir-services-list { padding-left: 1.3rem; margin: 0 0 18px; }
  .dir-services-list li { font-size: 0.88rem; color: var(--mid-text); margin-bottom: 4px; line-height: 1.5; }
  .dir-contact-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
  .dir-contact-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.83rem; font-weight: 600; padding: 7px 14px; border-radius: 8px; text-decoration: none; background: var(--petal); color: var(--charcoal); transition: background 0.18s; }
  .dir-contact-link:hover { background: var(--blush); }
  .dir-contact-link.website { background: #E0F2F2; color: #0D6E6E; }
  .dir-contact-link.facebook { background: #EEF2FF; color: #1877F2; }
  .dir-contact-link.instagram { background: #FDF2F8; color: #9333EA; }
  /* Submit form */
  .dir-cat-toggle { display: flex; border: 1.5px solid #e0d5d6; border-radius: 8px; overflow: hidden; }
  .dir-cat-opt { flex: 1; padding: 10px; background: #fff; border: none; font-family: 'DM Sans',sans-serif; font-size: 0.88rem; font-weight: 600; color: var(--mid-text); cursor: pointer; transition: all 0.2s; }
  .dir-cat-opt.active { background: #0D6E6E; color: #fff; }
  .dir-img-upload-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
  .dir-img-slot { display: flex; flex-direction: column; gap: 4px; }
  .dir-img-slot label { font-size: 0.78rem; color: var(--mid-text); }
  .dir-img-preview { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; display: none; margin-top: 4px; }
  /* Shop modals */
  .shop-modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; display: none; align-items: flex-start; justify-content: center; padding: 2rem 1rem; overflow-y: auto; }
  .shop-modal-backdrop.open { display: flex; }
  .shop-modal { background: #fff; border-radius: 14px; width: 100%; max-width: 560px; overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,0.2); }
  .shop-modal-header { background: var(--charcoal); padding: 1.2rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
  .shop-modal-header h2 { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 600; color: #fff; }
  .shop-modal-close { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.4rem; cursor: pointer; line-height: 1; padding: 0 4px; }
  .shop-modal-close:hover { color: #fff; }
  .shop-modal-body { padding: 1.5rem; }
  .shop-modal-body .field { margin-bottom: 1.1rem; }
  .shop-modal-body label { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--charcoal); margin-bottom: 0.4rem; }
  .shop-modal-body input, .shop-modal-body textarea, .shop-modal-body select { width: 100%; border: 1.5px solid #e0d5d6; border-radius: 8px; padding: 0.65rem 0.9rem; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--charcoal); outline: none; transition: border-color 0.2s; background: #fff; }
  .shop-modal-body input:focus, .shop-modal-body textarea:focus, .shop-modal-body select:focus { border-color: var(--charcoal); }
  .shop-modal-body textarea { min-height: 100px; resize: vertical; line-height: 1.5; }
  .shop-type-toggle { display: flex; gap: 0; border: 1.5px solid #e0d5d6; border-radius: 8px; overflow: hidden; margin-bottom: 0; }
  .shop-type-opt { flex: 1; text-align: center; padding: 0.55rem 0.5rem; font-size: 0.84rem; font-weight: 600; color: #8a7a7c; cursor: pointer; transition: all 0.2s; border: none; background: none; font-family: inherit; }
  .shop-type-opt:not(:last-child) { border-right: 1.5px solid #e0d5d6; }
  .shop-type-opt.active { background: var(--charcoal); color: #fff; }
  .shop-modal-footer { padding: 0 1.5rem 1.5rem; display: flex; gap: 10px; }
  .shop-submit-btn { flex: 1; background: var(--charcoal); color: #fff; border: none; border-radius: 8px; padding: 0.75rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background 0.2s; }
  .shop-submit-btn:hover { background: #5a5856; }
  .shop-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
  .shop-modal-result { margin: 0 1.5rem 1.5rem; font-size: 0.88rem; border-radius: 8px; padding: 10px 14px; display: none; }
  .shop-modal-result.ok  { background: #D1FAE5; color: #065F46; }
  .shop-modal-result.err { background: #FEE2E2; color: #991B1B; }
  .shop-token-box { background: var(--petal); border: 1.5px dashed var(--dusty-rose); border-radius: 8px; padding: 14px 16px; margin-bottom: 1rem; }
  .shop-token-box p { font-size: 0.82rem; color: var(--mid-text); margin-bottom: 6px; }
  .shop-token-box strong { font-family: monospace; font-size: 1rem; color: var(--charcoal); word-break: break-all; }
  .shop-img-upload-row { display: flex; gap: 12px; }
  .shop-img-slot { flex: 1; }
  .shop-img-slot label { font-size: 0.78rem !important; }
  .shop-img-thumb { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; border: 1.5px solid #e0d5d6; display: none; margin-top: 6px; }
  .honeypot { display: none !important; }
  /* Detail modal */
  .shop-detail-images { display: flex; gap: 10px; margin-bottom: 1.25rem; }
  .shop-detail-images img { flex: 1; min-width: 0; border-radius: 8px; object-fit: cover; aspect-ratio: 4/3; cursor: pointer; transition: opacity 0.2s; }
  .shop-detail-images img:hover { opacity: 0.9; }
  .shop-detail-price { font-size: 1.4rem; font-weight: 700; color: var(--charcoal); margin-bottom: 1rem; }
  .shop-detail-desc { font-size: 0.92rem; color: var(--mid-text); line-height: 1.7; white-space: pre-wrap; margin-bottom: 1.5rem; }
  .shop-read-more { display: inline-block; margin-top: 4px; font-size: 0.8rem; font-weight: 600; color: var(--charcoal); text-decoration: none; cursor: pointer; background: none; border: none; padding: 0; font-family: inherit; }
  .shop-read-more:hover { text-decoration: underline; }
  .shop-share-row { display: flex; gap: 6px; margin-top: 8px; }
  .shop-share-btn { display: inline-flex; align-items: center; gap: 5px; border: none; border-radius: 5px; padding: 5px 10px; font-size: 0.75rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: opacity 0.2s; }
  .shop-share-btn:hover { opacity: 0.85; }
  .shop-share-fb { background: #1877F2; color: #fff; }
  .shop-share-ig { background: linear-gradient(135deg,#f09433,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888); color: #fff; }

  /* ── NEWS MODAL ── */
  .news-modal-backdrop {
    display: none; position: fixed; inset: 0; z-index: 1000;
    background: rgba(30,20,20,0.55); backdrop-filter: blur(3px);
    align-items: center; justify-content: center; padding: 1.5rem;
  }
  .news-modal-backdrop.open { display: flex; }
  .news-modal {
    background: #fff; border-radius: 16px; max-width: 640px; width: 100%;
    max-height: 85vh; overflow-y: auto;
    box-shadow: 0 20px 60px rgba(163,28,46,0.18);
    animation: modalIn 0.25s ease;
  }
  @keyframes modalIn { from { opacity:0; transform: translateY(16px) scale(0.98); } to { opacity:1; transform: none; } }
  .news-modal-header { padding: 24px 28px 0; display: flex; align-items: flex-start; gap: 12px; }
  .news-modal-header-text { flex: 1; }
  .news-modal-close {
    background: none; border: none; cursor: pointer; color: #a09090;
    font-size: 1.4rem; line-height: 1; padding: 2px 4px; margin-top: -2px;
    transition: color 0.2s;
  }
  .news-modal-close:hover { color: var(--crimson); }
  .news-modal-date { font-size: 0.74rem; color: var(--light-text); margin: 6px 0 8px; }
  .news-modal-title { font-family: 'Lora', serif; font-size: 1.15rem; color: var(--charcoal); line-height: 1.4; margin-bottom: 4px; }
  .news-modal-body { padding: 16px 28px 0; font-size: 0.92rem; color: var(--body-text); line-height: 1.75; }
  .news-modal-body p { margin-bottom: 1em; }
  .news-modal-body p:last-child { margin-bottom: 0; }
  .news-modal-body ul, .news-modal-body ol { margin: 0 0 1em 1.4em; }
  .news-modal-share {
    display: flex; align-items: center; gap: 10px;
    padding: 16px 28px 24px; border-top: 1px solid #f0e8e9; margin-top: 20px;
  }
  .news-modal-share-label { font-size: 0.75rem; font-weight: 600; color: #a09090; text-transform: uppercase; letter-spacing: 0.06em; margin-right: 4px; }
  .share-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 6px; font-size: 0.8rem; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer; font-family: inherit;
    transition: opacity 0.2s;
  }
  .share-btn:hover { opacity: 0.85; }
  .share-btn-facebook { background: #1877F2; color: #fff; }
  .share-btn-x { background: #000; color: #fff; }
  .share-btn-copy { background: #f0eded; color: #444; }
  .news-modal-body li { margin-bottom: 0.35em; }
  .news-modal-body h2, .news-modal-body h3 { font-family: 'Lora', serif; color: var(--charcoal); margin: 1.2em 0 0.5em; }
  .news-modal-body h2 { font-size: 1.1rem; }
  .news-modal-body h3 { font-size: 1rem; }
  .news-modal-body a { color: var(--crimson); }
  .news-modal-body strong { font-weight: 700; color: var(--charcoal); }

  /* ── FEATURED BANNER ── */
  .featured-banner {
    background: linear-gradient(135deg, var(--crimson) 0%, #7a1422 100%);
    border-radius: 14px; padding: 20px 24px;
    margin: 0 0 28px; display: flex; align-items: center; gap: 16px;
  }
  .featured-banner-pulse {
    flex-shrink: 0; width: 10px; height: 10px; border-radius: 50%;
    background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
    70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  }
  .featured-banner-label {
    flex-shrink: 0; font-size: 1rem; font-weight: 800; letter-spacing: 0.14em;
    text-transform: uppercase; color: #fff; padding-right: 20px;
    border-right: 1px solid rgba(255,255,255,0.35);
  }
  .featured-banner-text { flex: 1; }
  .featured-banner-text strong {
    display: block; color: #fff; font-size: 1.55rem; font-weight: 700;
    line-height: 1.3; margin-bottom: 5px; font-family: 'Lora', serif;
  }
  .featured-banner-text span { font-size: 0.95rem; color: rgba(255,255,255,0.85); }
  .featured-banner-btn {
    flex-shrink: 0; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
    color: #fff; border-radius: 7px; padding: 8px 16px; font-size: 0.82rem; font-weight: 600;
    cursor: pointer; font-family: inherit; transition: background 0.2s; white-space: nowrap;
  }
  .featured-banner-btn:hover { background: rgba(255,255,255,0.25); }
  @media (max-width: 600px) {
    .featured-banner { flex-wrap: wrap; }
    .featured-banner-btn { width: 100%; text-align: center; }
  }

  /* ── NATION CARDS ── */
  .nation-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .nation-card { background: #fff; border-radius: 14px; padding: 22px; box-shadow: var(--card-shadow); text-align: center; border-top: 5px solid var(--parchment); }
  .nation-card.yes { border-top-color: var(--crimson); }
  .nation-card.review { border-top-color: #1A5C96; }
  .nation-card.pending { border-top-color: #D4920A; }
  .nation-flag { font-size: 2rem; margin-bottom: 9px; }
  .nation-card h3 { font-size: 0.97rem; color: var(--charcoal); margin-bottom: 6px; }
  .nation-status { display: inline-block; padding: 4px 10px; border-radius: 18px; font-size: 0.73rem; font-weight: 700; margin-bottom: 9px; }
  .status-yes { background: #FFF0F2; color: var(--crimson); }
  .status-review { background: #EBF3FB; color: #1A5C96; }
  .status-pending { background: #FFF8ED; color: #8A5A00; }
  .nation-card p { font-size: 0.8rem; color: var(--mid-text); }

  /* ── FOOTER ── */
  footer { background: #1E1C1B; color: rgba(255,255,255,0.65); padding: 48px 32px 28px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-logo img { height: 38px; width: auto; margin-bottom: 12px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
  .footer-col h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.32); margin-bottom: 12px; font-weight: 700; }
  .footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; margin-bottom: 7px; transition: 0.2s; }
  .footer-col a:hover { color: #E8A0A8; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 8px; }
  .footer-disclaimer { font-size: 0.76rem; color: rgba(255,255,255,0.35); margin-top: 10px; line-height: 1.65; }

  /* ── REVEAL ANIMATIONS ── */
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero-grid, .sidebar-layout { grid-template-columns: 1fr; }
    .hero-stats { margin-top: 36px; }
    .sidebar-nav { position: static; }
    .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nation-grid { grid-template-columns: repeat(2, 1fr); }
    .split-grid { grid-template-columns: 1fr; gap: 36px; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
    .card-grid-4 { grid-template-columns: 1fr; }
    .section { padding: 50px 20px; }
    .split-post-card { flex-direction: column; }
    .split-post-card-image { width: 100%; aspect-ratio: 16/9; }
    .nhs-banner { flex-direction: column; }
    .tab-nav { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
    .tab-btn { white-space: nowrap; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

/* Added for /blog pages + homepage blog features */
a.news-card { text-decoration: none; color: inherit; }
.nav-badge-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #fff; margin-left: 6px; vertical-align: middle; }
