    :root {
      --teal: #3d8f8f;
      --teal-dark: #2a6b6b;
      --teal-light: #e8f4f4;
      --teal-mid: #5aabab;
      --navy: #1a2b3c;
      --white: #ffffff;
      --off-white: #f8f9f9;
      --border: #e2e8e8;
      --text: #2c2c2c;
      --muted: #6b7280;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Lato', sans-serif; background: var(--white); color: var(--text); line-height: 1.6; }

    /* ── PAGES ── */
    .page { display: none; min-height: 100vh; }
    .page.active { display: block; }

    /* ── NAV ── */
    nav {
      background: var(--white); border-bottom: 2px solid var(--teal);
      padding: 0 4rem; display: flex; align-items: center; justify-content: space-between;
      position: sticky; top: 0; z-index: 200; height: 70px;
    }
    .nav-logo { display: flex; flex-direction: column; cursor: pointer; text-decoration: none; }
    .nav-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--navy); line-height: 1.1; }
    .nav-logo-title { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 0; }
    .nav-link {
      font-size: 0.82rem; color: var(--text); text-decoration: none;
      padding: 0 1.2rem; height: 70px; display: flex; align-items: center;
      border-bottom: 3px solid transparent; margin-bottom: -2px;
      letter-spacing: 0.03em; cursor: pointer; transition: all 0.2s;
      background: none; border-top: none; border-left: none; border-right: none;
      font-family: 'Lato', sans-serif;
    }
    .nav-link:hover { color: var(--teal); border-bottom-color: var(--teal-light); }
    .nav-link.active { color: var(--teal); border-bottom-color: var(--teal); font-weight: 700; }
    .nav-link.cta { background: var(--teal); color: var(--white); margin-left: 1rem; border-bottom: none; padding: 0 1.4rem; font-weight: 700; }
    .nav-link.cta:hover { background: var(--teal-dark); border-bottom: none; }
    .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: 0.3s; }
    .mobile-menu { display: none; }

    /* ── HERO ── */
    .hero {
      background: var(--navy);
      display: grid; grid-template-columns: 1fr 1fr;
      min-height: calc(100vh - 70px);
    }
    .hero-right { position: relative; overflow: hidden; min-height: 500px; }
    .hero-left {
      padding: 5rem 4rem 5rem 5rem;
      display: flex; flex-direction: column; justify-content: center;
    }
    .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-mid); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.7rem; }
    .hero-eyebrow::before { content:''; display:block; width:2rem; height:2px; background:var(--teal); }
    .hero-left h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 300; color: var(--white); line-height: 1.15; margin-bottom: 0.5rem; }
    .hero-left h1 strong { font-weight: 600; color: var(--teal-mid); }
    .hero-credentials { margin: 1.2rem 0; }
    .hero-credentials p { font-size: 0.82rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; line-height: 1.8; }
    .hero-left > p { font-size: 1rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.75); max-width: 480px; margin-bottom: 2rem; }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
    .btn { display: inline-block; padding: 0.8rem 2rem; font-size: 0.85rem; font-family: 'Lato', sans-serif; font-weight: 700; text-decoration: none; cursor: pointer; border: none; transition: all 0.2s; letter-spacing: 0.04em; }
    .btn-teal { background: var(--teal); color: var(--white); }
    .btn-teal:hover { background: var(--teal-dark); }
    .btn-outline { border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); background: transparent; }
    .btn-outline:hover { border-color: var(--teal-mid); color: var(--teal-mid); }
    .btn-teal-outline { border: 1px solid var(--teal); color: var(--teal); background: transparent; }
    .btn-teal-outline:hover { background: var(--teal); color: var(--white); }
    .hero-contact-bar { display: flex; gap: 2rem; }
    .hero-contact-item { display: flex; flex-direction: column; }
    .hero-contact-item span:first-child { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); }
    .hero-contact-item a, .hero-contact-item span:last-child { font-size: 0.9rem; color: var(--white); text-decoration: none; font-weight: 400; }
    .hero-right-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy) 0%, transparent 30%); }

    /* ── TRUST BAR ── */
    .trust-bar { background: var(--teal-light); border-bottom: 1px solid var(--border); padding: 1.2rem 4rem; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--navy); font-weight: 400; }
    .trust-icon { color: var(--teal); }

    /* ── SECTIONS ── */
    .section { padding: 5rem 5rem; }
    .section-alt { background: var(--off-white); }
    .section-dark { background: var(--navy); }
    .section-teal { background: var(--teal); }

    .eyebrow { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.7rem; }
    .eyebrow::before { content:''; display:block; width:1.5rem; height:2px; background:var(--teal); }
    .eyebrow.light::before { background: var(--teal-mid); }
    .eyebrow.light { color: var(--teal-mid); }

    h2.title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
    h2.title strong { font-weight: 600; }
    h2.title.light { color: var(--white); }
    .lead { font-size: 1rem; font-weight: 300; line-height: 1.8; color: var(--muted); max-width: 700px; margin-bottom: 2.5rem; }
    .lead.light { color: rgba(255,255,255,0.7); }

    /* ── TWO COL ── */
    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
    .two-col-center { align-items: center; }
    .three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

    /* ── ABOUT CARDS ── */
    .about-highlight { border-left: 3px solid var(--teal); padding: 1.2rem 1.5rem; background: var(--teal-light); margin-bottom: 1.5rem; }
    .about-highlight h4 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 0.3rem; }
    .about-highlight p { font-size: 0.92rem; color: var(--navy); font-weight: 300; line-height: 1.6; }
    .about-body p { font-size: 0.95rem; line-height: 1.85; color: var(--text); font-weight: 300; margin-bottom: 1rem; }

    /* ── STATS ── */
    .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); margin-top: 3rem; }
    .stat-box { padding: 2rem; text-align: center; border-right: 1px solid var(--border); }
    .stat-box:last-child { border-right: none; }
    .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 600; color: var(--teal); display: block; line-height: 1; }
    .stat-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; display: block; }

    /* ── CONDITIONS ── */
    .conditions-intro { max-width: 700px; margin-bottom: 3rem; }
    .conditions-group { margin-bottom: 3rem; }
    .conditions-group h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--navy); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--teal-light); }
    .conditions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
    .condition-item { border: 1px solid var(--border); padding: 0.9rem 1.2rem; display: flex; align-items: center; gap: 0.7rem; font-size: 0.88rem; color: var(--navy); text-decoration: none; transition: all 0.2s; cursor: pointer; background: var(--white); font-family: 'Lato', sans-serif; border: none; text-align: left; width: 100%; }
    .condition-item:hover { background: var(--teal-light); color: var(--teal-dark); border-color: var(--teal); }
    .condition-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
    .condition-arrow { margin-left: auto; color: var(--teal); opacity: 0; transition: opacity 0.2s; font-size: 0.8rem; }
    .condition-item:hover .condition-arrow { opacity: 1; }

    /* condition detail page */
    .condition-detail { padding: 4rem 5rem; max-width: 900px; }
    .condition-detail h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
    .condition-detail .back-btn { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--teal); margin-bottom: 2rem; cursor: pointer; background: none; border: none; font-family: 'Lato', sans-serif; padding: 0; }
    .condition-detail .back-btn:hover { color: var(--teal-dark); }
    .condition-detail h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 1.5rem 0 0.5rem; }
    .condition-detail p { font-size: 0.95rem; line-height: 1.85; color: var(--text); font-weight: 300; margin-bottom: 1rem; }
    .condition-detail ul { margin: 0.5rem 0 1rem 1.5rem; }
    .condition-detail ul li { font-size: 0.92rem; color: var(--text); font-weight: 300; line-height: 1.7; margin-bottom: 0.3rem; }
    .condition-detail .faq-item { border-top: 1px solid var(--border); padding: 1.2rem 0; }
    .condition-detail .faq-q { font-weight: 700; color: var(--navy); font-size: 0.92rem; margin-bottom: 0.5rem; }
    .condition-detail .faq-a { font-size: 0.9rem; color: var(--muted); font-weight: 300; line-height: 1.7; }
    .condition-cta { background: var(--teal-light); border-left: 3px solid var(--teal); padding: 1.5rem 2rem; margin-top: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
    .condition-cta p { font-size: 0.92rem; color: var(--navy); font-weight: 400; }

    /* ── EQUIPMENT ── */
    .equipment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .equipment-card { border: 1px solid var(--border); overflow: hidden; transition: all 0.25s; }
    .equipment-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(61,143,143,0.12); transform: translateY(-2px); }
    .equipment-card img { width: 100%; height: 180px; object-fit: contain; background: var(--off-white); padding: 1rem; }
    .equipment-card-body { padding: 1rem 1.2rem 1.2rem; }
    .equipment-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
    .equipment-card p { font-size: 0.82rem; color: var(--muted); font-weight: 300; line-height: 1.5; margin-bottom: 0.8rem; }
    .equipment-card a { font-size: 0.78rem; color: var(--teal); text-decoration: none; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
    .equipment-card a:hover { color: var(--teal-dark); }
    .affiliate-note { margin-top: 3rem; padding: 1rem 1.5rem; background: var(--off-white); border-left: 3px solid var(--border); font-size: 0.8rem; color: var(--muted); }

    /* ── FURTHER INFO ── */
    .insurance-steps { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); margin-bottom: 3rem; }
    .insurance-step { display: grid; grid-template-columns: 60px 1fr; gap: 0; border-bottom: 1px solid var(--border); }
    .insurance-step:last-child { border-bottom: none; }
    .insurance-step-num { background: var(--teal); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; }
    .insurance-step-body { padding: 1.5rem 2rem; }
    .insurance-step-body h4 { font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; font-size: 0.92rem; }
    .insurance-step-body p { font-size: 0.88rem; color: var(--muted); font-weight: 300; line-height: 1.65; }
    .insurers-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 3rem; }
    .insurer-tag { border: 1px solid var(--border); padding: 0.4rem 1rem; font-size: 0.82rem; color: var(--navy); font-weight: 700; }
    .hospital-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .hospital-card { border: 1px solid var(--border); padding: 2rem; transition: all 0.2s; }
    .hospital-card:hover { border-color: var(--teal); background: var(--teal-light); }
    .hospital-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
    .hospital-card p { font-size: 0.85rem; color: var(--muted); font-weight: 300; line-height: 1.6; }
    .hospital-card a { font-size: 0.78rem; color: var(--teal); text-decoration: none; font-weight: 700; display: inline-block; margin-top: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; }

    /* ── CONTACT ── */
    .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
    .contact-info { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
    .contact-info-item { }
    .ci-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 0.2rem; font-weight: 700; }
    .ci-val { font-size: 1rem; color: var(--navy); font-weight: 400; text-decoration: none; }
    .ci-val:hover { color: var(--teal); }
    .form-grid { display: flex; flex-direction: column; gap: 0.8rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .form-grid input, .form-grid textarea, .form-grid select {
      width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--border);
      font-family: 'Lato', sans-serif; font-size: 0.9rem; color: var(--navy);
      background: var(--white); outline: none; transition: border-color 0.2s;
    }
    .form-grid input:focus, .form-grid textarea:focus { border-color: var(--teal); }
    .form-grid textarea { height: 120px; resize: none; }
    .form-consent { font-size: 0.78rem; color: var(--muted); display: flex; gap: 0.7rem; align-items: flex-start; }
    .form-consent input { width: auto; margin-top: 3px; flex-shrink: 0; }

    /* ── FOOTER ── */
    footer { background: var(--navy); border-top: 3px solid var(--teal); padding: 3rem 5rem 2rem; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
    .footer-brand h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
    .footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.7; max-width: 280px; margin-top: 0.5rem; }
    .footer-col h4 { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-mid); margin-bottom: 1rem; }
    .footer-col a, .footer-col button { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 0.5rem; transition: color 0.2s; cursor: pointer; background: none; border: none; font-family: 'Lato', sans-serif; padding: 0; text-align: left; }
    .footer-col a:hover, .footer-col button:hover { color: var(--teal-mid); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
    .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

    /* ── DOCTIFY ── */
    .doctify-bar { background: var(--off-white); border: 1px solid var(--border); padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; }
    .doctify-stars { color: var(--teal); font-size: 1.1rem; letter-spacing: 2px; }
    .doctify-score { font-size: 1.6rem; font-weight: 700; color: var(--navy); }
    .doctify-text { font-size: 0.82rem; color: var(--muted); }
    .doctify-text strong { color: var(--navy); }

    hr.rule { border: none; border-top: 1px solid var(--border); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      nav { padding: 0 1.5rem; }
      .nav-links { display: none; }
      .hamburger { display: block; }
      .mobile-menu { display: none; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; flex-direction: column; gap: 0; }
      .mobile-menu.open { display: flex; }
      .mobile-menu button, .mobile-menu a { padding: 0.8rem 0; font-size: 0.9rem; color: var(--text); border: none; background: none; text-align: left; cursor: pointer; border-bottom: 1px solid var(--border); font-family: 'Lato', sans-serif; text-decoration: none; display: block; }
      .mobile-menu button:last-child, .mobile-menu a:last-child { border-bottom: none; }
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-right { height: 320px; min-height: unset; }
      .hero-left { padding: 2.5rem 1.5rem; }
      .section { padding: 3rem 1.5rem; }
      .two-col, .three-col, .four-col { grid-template-columns: 1fr; gap: 2rem; }
      .conditions-grid { grid-template-columns: 1fr 1fr; }
      .equipment-grid { grid-template-columns: 1fr 1fr; }
      .stats-row { grid-template-columns: 1fr 1fr; }
      .stat-box:nth-child(2) { border-right: none; }
      .stat-box:nth-child(3) { border-top: 1px solid var(--border); }
      .hospital-cards { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .trust-bar { padding: 1rem 1.5rem; gap: 1.2rem; }
      .condition-detail { padding: 2rem 1.5rem; }
      footer { padding: 2rem 1.5rem; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
      .form-row { grid-template-columns: 1fr; }
      .hero-left h1 { font-size: 2.4rem; }
      .hero-credentials p { font-size: 0.8rem; }
      .hero-contact-bar { flex-direction: column; gap: 0.8rem; }
    }
    @media (max-width: 600px) {
      nav { padding: 0 1rem; height: 60px; }
      .nav-logo-name { font-size: 1rem; }
      .nav-logo-title { font-size: 0.6rem; letter-spacing: 0.08em; }
      .hero { grid-template-columns: 1fr; min-height: auto; display: flex; flex-direction: column-reverse; }
      .hero-right { height: 260px; min-height: unset; width: 100%; flex-shrink: 0; }
      .hero-right img { object-position: center 15%; }
      .hero-right-overlay { background: linear-gradient(180deg, transparent 60%, var(--navy) 100%); }
      .hero-left { padding: 2rem 1.2rem 2.5rem; order: 2; }
      .hero-left h1 { font-size: 2rem; margin-bottom: 0.4rem; }
      .hero-credentials { margin: 0.8rem 0; }
      .hero-credentials p { font-size: 0.78rem; line-height: 1.7; }
      .hero-left > p { font-size: 0.92rem; margin-bottom: 1.5rem; }
      .hero-btns { flex-direction: column; gap: 0.7rem; margin-bottom: 1.8rem; }
      .hero-btns .btn { text-align: center; width: 100%; box-sizing: border-box; }
      .hero-contact-bar { flex-direction: column; gap: 0.8rem; }
      .trust-bar { flex-direction: column; align-items: flex-start; gap: 0.7rem; padding: 1.2rem; }
      .conditions-grid { grid-template-columns: 1fr; }
      .equipment-grid { grid-template-columns: 1fr; }
      .stats-row { grid-template-columns: 1fr 1fr; gap: 0; }
      .stat-box { padding: 1.2rem; }
      .section { padding: 2.5rem 1.2rem; }
      .section h2 { font-size: 1.8rem; }
      .footer-top { grid-template-columns: 1fr; }
      .condition-detail { padding: 1.5rem 1.2rem; }
      .condition-detail h2 { font-size: 1.6rem; }
      table { font-size: 0.82rem; }
      table th, table td { padding: 0.4rem 0.5rem; }
    }

    .intl-hero-grid { grid-template-columns: 1fr 1fr; }
    @media (max-width: 768px) {
      .intl-hero-grid { grid-template-columns: 1fr !important; padding: 2rem 1.2rem !important; gap: 2rem !important; }
    }


    /* ── ARABIC MODE ── */
    body.arabic { direction: rtl; font-family: 'Tajawal', sans-serif; }
    body.arabic .nav-logo-name { font-family: 'Tajawal', sans-serif; }
    body.arabic h1, body.arabic h2, body.arabic h3, body.arabic h4 { font-family: 'Tajawal', sans-serif; font-weight: 700; }
    body.arabic #lang-toggle { font-family: 'Lato', sans-serif; letter-spacing: 0.04em; }
    .ar { display: none; }
    .en { display: inline; }
    body.arabic .ar { display: inline; }
    body.arabic .en { display: none; }
    .ar-block { display: none; }
    .en-block { display: block; }
    body.arabic .ar-block { display: block; }
    body.arabic .en-block { display: none; }

    /* ── LIGHTBOX ── */
    .lightbox-overlay { display:none;position:fixed;inset:0;background:rgba(0,0,0,0.92);z-index:9999;align-items:center;justify-content:center;flex-direction:column; }
    .lightbox-overlay.open { display:flex; }
    .lightbox-overlay img { max-width:92vw;max-height:85vh;object-fit:contain;border:2px solid rgba(255,255,255,0.15);box-shadow:0 0 60px rgba(0,0,0,0.8); }
    .lightbox-close { position:fixed;top:1.2rem;right:1.4rem;background:none;border:none;color:#fff;font-size:2.5rem;cursor:pointer;line-height:1;opacity:0.8; }
    .lightbox-close:hover { opacity:1; }
    .lightbox-prev, .lightbox-next { position:fixed;top:50%;transform:translateY(-50%);background:rgba(255,255,255,0.12);border:none;color:#fff;font-size:2rem;padding:0.8rem 1.1rem;cursor:pointer;border-radius:4px; }
    .lightbox-prev { left:1rem; }
    .lightbox-next { right:1rem; }
    .lightbox-prev:hover, .lightbox-next:hover { background:rgba(255,255,255,0.25); }
    .lightbox-counter { color:rgba(255,255,255,0.5);font-size:0.85rem;margin-top:0.8rem; }
    .gallery-img { cursor:zoom-in;transition:opacity 0.2s; }
    .gallery-img:hover { opacity:0.85; }
  

/* ── multi-page additions ── */
.page { display: block; }
a.nav-logo { color: inherit; }
a.btn, a.condition-item, a.nav-link, a.back-btn { text-decoration: none; }
.condition-detail .back-btn { text-decoration: none; }
.breadcrumb { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--teal); text-decoration: none; }
.related-conditions { margin-top: 3rem; border-top: 1px solid var(--border); padding-top: 2rem; }
.related-conditions h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--teal); color: #fff; padding: 0.5rem 1rem; z-index: 10000; }
.skip-link:focus { left: 0; }
.hospital-cards { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .hospital-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hospital-cards { grid-template-columns: 1fr; } .conditions-grid[style] { grid-template-columns: 1fr !important; } }
