  :root {
    --ivory: #F7F4EF;
    --deep-slate: #1C2230;
    --warm-gold: #B8935A;
    --gold-light: #D4AF7A;
    --mid-grey: #6B7280;
    --light-grey: #E8E4DC;
    --white: #FFFFFF;
    --text-dark: #1C2230;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--white);
    font-size: 15px;
    line-height: 1.8;
  }

  /* ─── TYPOGRAPHY ─── */
  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
  }
  h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.1; }
  h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
  h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
  h4 { font-size: 1.1rem; }

  .eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--warm-gold);
    display: block;
    margin-bottom: 0.75rem;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(28, 34, 48, 0.97);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3vw;
    height: 72px;
    border-bottom: 1px solid rgba(184, 147, 90, 0.25);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .logo-mark {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--warm-gold), var(--gold-light));
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .logo-mark svg { width: 28px; height: 28px; }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .logo-sub {
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--warm-gold);
  }

  .nav-links a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,0.82);
    transition: color 0.25s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--warm-gold);
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { transform: scaleX(1); }

  /* Dropdown */
  .has-dropdown { position: relative; }

  /* Invisible bridge fills the gap between nav link and dropdown */
  .has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 16px;
    display: none;
  }
  .has-dropdown:hover::after { display: block; }

  .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--deep-slate);
    border: 1px solid rgba(184,147,90,0.2);
    min-width: 520px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    z-index: 1001;
  }
  .has-dropdown:hover .dropdown { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.4rem 1.5rem; }
  .has-dropdown:hover .dropdown.dropdown-narrow {
    display: block;
    grid-template-columns: none;
    min-width: 220px;
    width: max-content;
    padding: 1.1rem 2rem;
    text-align: center;
  }
  .dropdown-narrow .dropdown-section { margin-bottom: 0; }
  .dropdown-narrow a { text-align: center; white-space: nowrap; }

  .dropdown-section { margin-bottom: 0.5rem; }
  .dropdown-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-gold);
    font-weight: 600;
    margin-bottom: 0.4rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid rgba(184,147,90,0.2);
  }
  .dropdown a {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.75) !important;
    padding: 3px 0;
    text-transform: none !important;
  }
  .dropdown a::after { display: none !important; }
  .dropdown a:hover { color: var(--gold-light) !important; }

  /* ─── HERO ─── */
  #home {
    min-height: 100vh;
    background: var(--deep-slate);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 70% 50%, rgba(184,147,90,0.07) 0%, transparent 70%),
      linear-gradient(160deg, #1C2230 0%, #141824 100%);
  }

  .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8935A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 4vw 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Large centred name block */
  .hero-name-block {
    margin-bottom: 2.5rem;
  }

  .hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    display: block;
    margin: 0;
  }

  .hero-title-line {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.65rem, 1.2vw, 0.82rem);
    font-weight: 500;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--warm-gold);
    margin-top: 0.9rem;
  }

  .hero-rule {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--warm-gold), transparent);
    margin: 0 auto 2.5rem;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--warm-gold), transparent);
    margin: 2rem auto;
  }

  .hero-content p {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    line-height: 1.9;
    max-width: 560px;
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; justify-content: center; }

  .btn-primary {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--deep-slate);
    background: linear-gradient(135deg, var(--warm-gold), var(--gold-light));
    padding: 14px 32px;
    transition: opacity 0.25s, transform 0.25s;
  }
  .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

  .btn-ghost {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(184,147,90,0.4);
    padding: 14px 32px;
    transition: border-color 0.25s, color 0.25s;
  }
  .btn-ghost:hover { border-color: var(--warm-gold); color: var(--white); }

  .hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin-top: 3rem;
  }

  .hero-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, rgba(184,147,90,0.15), rgba(28,34,48,0.8));
    border: 1px solid rgba(184,147,90,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-photo-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--warm-gold), transparent);
  }

  .hero-photo-placeholder .placeholder-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    letter-spacing: 0.1em;
  }

  /* ─── SECTIONS ─── */
  section { scroll-margin-top: 72px; }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 4vw;
  }

  /* ─── DIVIDER LINE ─── */
  .gold-rule {
    width: 50px;
    height: 1px;
    background: var(--warm-gold);
    margin: 1.5rem 0;
  }

  /* ─── ABOUT ─── */
  #about { background: var(--ivory); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
  }

  .about-photo-wrap { position: relative; }

  .about-quote {
    margin: 1.5rem 0 0;
    padding: 1.75rem 1.75rem 1.5rem;
    background: var(--white);
    border-top: 3px solid var(--warm-gold);
    position: relative;
  }

  .about-quote::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--warm-gold);
    opacity: 0.25;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    line-height: 1;
  }

  .about-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--deep-slate);
    line-height: 1.75;
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
  }

  .about-quote cite {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-gold);
    font-style: normal;
  }

  .about-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, var(--light-grey), #D5CEC3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .about-photo::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 60%;
    height: 3px;
    background: var(--warm-gold);
  }

  .about-photo .ph {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: var(--mid-grey);
    letter-spacing: 0.1em;
    text-align: center;
  }

  .about-fellowships {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
  }

  .badge-pill {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gold);
    border: 1px solid var(--warm-gold);
    padding: 5px 12px;
  }

  .about-content p { color: var(--mid-grey); margin-bottom: 1rem; font-size: 0.88rem; }

  .qual-list {
    list-style: none;
    margin: 1.5rem 0;
  }

  .qual-list li {
    display: flex;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--light-grey);
    font-size: 0.85rem;
    color: var(--mid-grey);
  }

  .qual-list li strong {
    color: var(--text-dark);
    font-weight: 500;
    min-width: 120px;
    flex-shrink: 0;
  }

  .fellowship-highlight {
    background: var(--deep-slate);
    color: var(--white);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    position: relative;
  }

  .fellowship-highlight::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--warm-gold);
  }

  .fellowship-highlight p { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin: 0; }
  .fellowship-highlight strong { color: var(--gold-light); display: block; margin-bottom: 0.3rem; font-weight: 500; letter-spacing: 0.05em; }

  .doctify-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--warm-gold);
    border-bottom: 1px solid rgba(184,147,90,0.3);
    padding-bottom: 2px;
    transition: border-color 0.25s;
  }
  .doctify-link:hover { border-color: var(--warm-gold); }

  /* ─── PROCEDURES ─── */
  #procedures { background: var(--white); }

  /* Category cards — the four top-level clickable panels */
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--light-grey);
    margin-bottom: 0;
    align-items: stretch;
  }

  @media (max-width: 900px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 500px) {
    .cat-grid { grid-template-columns: 1fr; }
  }

  .cat-card {
    background: var(--deep-slate);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    user-select: none;
    min-height: 280px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  /* Subtle gold corner accent */
  .cat-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60px; height: 60px;
    background: linear-gradient(225deg, rgba(184,147,90,0.12) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .cat-card:hover { background: #222b3d; }
  .cat-card:hover::after { opacity: 2; }
  .cat-card.open { background: #1a2438; }

  .cat-content {
    position: relative;
    z-index: 1;
    padding: 2.2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-end;
  }

  /* Make the number, title, subtitle and toggle sit at consistent levels */
  .cat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: rgba(184,147,90,0.25);
    line-height: 1;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
  }

  .cat-card:hover .cat-number,
  .cat-card.open .cat-number { color: rgba(184,147,90,0.5); }

  .cat-card .eyebrow { color: var(--gold-light); margin-bottom: 0.3rem; }

  .cat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .cat-subtitle {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    flex: 1;
  }

  .cat-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-gold);
    margin-top: auto;
  }

  .cat-toggle-arrow {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(184,147,90,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: transform 0.35s, background 0.25s;
    color: var(--warm-gold);
  }

  .cat-card.open .cat-toggle-arrow { transform: rotate(45deg); background: rgba(184,147,90,0.15); }

  /* Procedure list — revealed beneath the category card */
  .proc-drawer {
    display: none;
    background: var(--ivory);
    border-top: 2px solid var(--warm-gold);
  }

  .proc-drawer.open {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1px;
    background: var(--light-grey);
  }

  .proc-card {
    background: var(--white);
    cursor: pointer;
    padding: 1.8rem 2rem;
    transition: background 0.2s;
  }

  .proc-card:hover { background: var(--ivory); }

  .proc-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    font-weight: 500;
  }

  .proc-card p {
    font-size: 0.8rem;
    color: var(--mid-grey);
    line-height: 1.7;
    margin-bottom: 0.8rem;
  }

  .proc-more {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .proc-more::after { content: '→'; }

  /* ─── MODAL ─── */
  /* Visually hidden but accessible/crawlable procedure detail content */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(28,34,48,0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  .modal-overlay.open { display: flex; }

  .modal {
    background: var(--white);
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
  }

  .modal-header {
    background: var(--deep-slate);
    padding: 2.5rem 2.5rem 2rem;
    position: relative;
  }

  .modal-header .eyebrow { color: var(--gold-light); }
  .modal-header h3 { color: var(--white); }

  .modal-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    width: 36px; height: 36px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s;
  }

  .modal-close:hover { border-color: rgba(255,255,255,0.6); }

  .modal-body { padding: 2.5rem; }
  .modal-body p, .procedure-body p { color: var(--mid-grey); font-size: 0.88rem; line-height: 1.9; margin-bottom: 1rem; }
  .modal-body h4, .procedure-body h4 { color: var(--text-dark); margin: 2rem 0 0.75rem; font-size: 1rem; }
  .modal-body ul, .procedure-body ul { list-style: none; padding: 0; margin-bottom: 1rem; }
  .modal-body ul li, .procedure-body ul li { font-size: 0.85rem; color: var(--mid-grey); padding: 0.3rem 0 0.3rem 1.2rem; position: relative; }
  .modal-body ul li::before, .procedure-body ul li::before { content: '–'; position: absolute; left: 0; color: var(--warm-gold); }

  /* At a glance grid */
  .glance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--light-grey);
    margin-bottom: 1.8rem;
  }
  @media (max-width: 500px) { .glance-grid { grid-template-columns: repeat(2, 1fr); } }

  .glance-item {
    background: var(--ivory);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .glance-icon { font-size: 1.2rem; line-height: 1; }
  .glance-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gold);
  }
  .glance-value {
    font-size: 0.82rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
  }

  /* Benefit bubbles */
  .benefits-title {
    font-size: 0.68rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: var(--warm-gold) !important;
    margin: 0 0 0.75rem !important;
    font-family: 'Montserrat', sans-serif !important;
  }
  .benefit-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
  }
  .benefit-bubble {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--deep-slate);
    background: var(--white);
    border: 1px solid var(--warm-gold);
    padding: 6px 14px;
    border-radius: 20px;
    line-height: 1.4;
  }

  /* ─── CLINICS ─── */
  #contact { background: var(--ivory); }

  .clinics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
  }

  .clinic-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  }

  .clinic-img {
    width: 100%;
    height: 200px;
    background-color: var(--light-grey);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }

  .clinic-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--warm-gold), transparent);
  }

  .clinic-info { padding: 1.5rem; }
  .clinic-info h4 { margin-bottom: 0.3rem; font-weight: 500; }
  .clinic-info p { font-size: 0.8rem; color: var(--mid-grey); margin-bottom: 0.4rem; }

  .clinic-links { display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }

  .clinic-link {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--warm-gold);
    display: flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid rgba(184,147,90,0.3);
    padding-bottom: 1px;
    transition: border-color 0.2s;
  }
  .clinic-link:hover { border-color: var(--warm-gold); }

  /* Secretary contact */
  .secretary-box {
    background: var(--deep-slate);
    padding: 3rem;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
  }

  .secretary-box h3 { color: var(--white); margin-bottom: 0.5rem; }
  .secretary-box p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

  .contact-email {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--gold-light);
    text-decoration: none;
    display: block;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
  }

  /* ─── BADGE STRIP ─── */
  .badge-strip {
    background: var(--deep-slate);
    padding: 2.5rem 4vw;
    border-top: 1px solid rgba(184,147,90,0.2);
  }

  .badge-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .badge-strip-label {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
  }

  .badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    opacity: 1;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .badge-item:hover { transform: translateY(-3px); }

  .badge-logo {
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 12px 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  }

  .badge-logo svg, .badge-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

  .badge-name {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
  }

  /* ─── REVIEWS ─── */
  .rev-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .rev-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0 1rem;
    flex: 1;
  }
  .rev-track::-webkit-scrollbar { display: none; }

  .rev-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(184,147,90,0.2);
    border-top: 3px solid #00B67A;
    padding: 1.8rem;
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background 0.2s;
  }
  .rev-card:hover { background: rgba(255,255,255,0.09); }

  .rev-stars { display:flex; gap:2px; align-items:center; }

  .rev-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    flex: 1;
  }

  .rev-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .rev-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #00B67A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
  }

  .rev-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    font-family: Arial, sans-serif;
    margin-bottom: 2px;
  }

  .rev-arrow {
    background: none;
    border: 1px solid rgba(184,147,90,0.35);
    color: var(--warm-gold);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
  }
  .rev-arrow:hover { background: rgba(184,147,90,0.12); border-color: var(--warm-gold); }

  @media (max-width: 640px) {
    .rev-card { min-width: 260px; max-width: 260px; }
    .rev-arrow { display: none; }
  }

  /* ─── FOOTER ─── */
  footer {
    background: #111621;
    padding: 3rem 4vw;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand .logo-name { color: var(--white); font-size: 1.3rem; }
  .footer-brand .logo-sub { margin-top: 2px; }
  .footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 1rem; line-height: 1.8; }

  .footer-col h5 {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.4rem; }
  .footer-col ul li a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: rgba(255,255,255,0.8); }

  .footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.2); }

  .footer-legal {
    max-width: 1200px;
    margin: 1.2rem auto 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .legal-link {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .legal-link:hover { color: var(--warm-gold); }

  .legal-sep {
    color: rgba(255,255,255,0.15);
    font-size: 0.7rem;
  }

  .disclaimer {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.18);
    font-style: italic;
    max-width: 500px;
    text-align: right;
  }

  /* ─── HAMBURGER (mobile) ─── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
  }
  .nav-hamburger span { width: 24px; height: 1.5px; background: var(--white); display: block; transition: 0.3s; }

  /* Nav links always visible on desktop */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-cta {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--deep-slate);
    background: linear-gradient(135deg, var(--warm-gold), var(--gold-light));
    padding: 10px 18px;
    transition: opacity 0.25s;
    white-space: nowrap;
  }
  .nav-cta:hover { opacity: 0.85; }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--deep-slate);
    z-index: 999;
    padding: 2rem 4vw;
    overflow-y: auto;
  }

  .mobile-menu.open { display: block; }
  .mobile-menu a {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    text-transform: uppercase;
  }

  .mobile-submenu-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--warm-gold);
    font-weight: 600;
    text-transform: uppercase;
    margin: 1.2rem 0 0.4rem;
    display: block;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .hero-name { font-size: clamp(2rem, 8vw, 3.5rem); }
    .about-grid { grid-template-columns: 1fr; }
    .about-photo { aspect-ratio: 4/3; max-height: 340px; }
    .secretary-box { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .disclaimer { text-align: left; max-width: 100%; }
  }

  @media (max-width: 720px) {
    .nav-links { display: none !important; }
    .nav-cta { display: none !important; }
    .nav-hamburger { display: flex !important; }
  }

  @media (max-width: 640px) {
    .clinics-grid { grid-template-columns: 1fr; }
    .badges { gap: 1.5rem; }
  }
  /* ─── ENQUIRY FORM ─── */
  .enquiry-form {
    margin-top: 3rem;
    max-width: 820px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }

  @media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

  .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
  }

  .form-row .form-group { margin-bottom: 0; }

  .form-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--deep-slate);
    margin-bottom: 0.6rem;
  }

  .form-required { color: var(--warm-gold); }

  .form-input {
    border: 1px solid var(--light-grey);
    background: var(--white);
    padding: 0.85rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
    -webkit-appearance: none;
  }

  .form-input::placeholder { color: rgba(107,114,128,0.5); }
  .form-input:focus { border-color: var(--warm-gold); }

  .form-textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.7;
  }

  /* Bubble / pill selectors */
  .bubble-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .bubble-option {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
  }

  .bubble-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  .bubble-option span {
    display: inline-block;
    padding: 0.5rem 1.1rem;
    border: 1.5px solid var(--light-grey);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--mid-grey);
    background: var(--white);
    transition: all 0.2s;
    user-select: none;
    border-radius: 20px;
  }

  .bubble-option input[type="radio"]:checked + span {
    background: var(--deep-slate);
    border-color: var(--deep-slate);
    color: var(--white);
  }

  .bubble-option:hover span {
    border-color: var(--warm-gold);
    color: var(--warm-gold);
  }

  /* GDPR checkbox */
  .form-gdpr {
    background: var(--ivory);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .gdpr-label {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    cursor: pointer;
  }

  .gdpr-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  .gdpr-check-box {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px solid var(--mid-grey);
    background: var(--white);
    display: inline-block;
    margin-top: 2px;
    position: relative;
    transition: all 0.2s;
  }

  .gdpr-label input[type="checkbox"]:checked + .gdpr-check-box {
    background: var(--deep-slate);
    border-color: var(--deep-slate);
  }

  .gdpr-label input[type="checkbox"]:checked + .gdpr-check-box::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: 2px solid var(--white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
  }

  .gdpr-text {
    font-size: 0.78rem;
    color: var(--mid-grey);
    line-height: 1.7;
  }

  .gdpr-text strong { color: var(--text-dark); }
  .gdpr-text a { color: var(--warm-gold); }

  .form-submit {
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
  }

  .form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .form-message {
    padding: 1rem 1.25rem;
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .form-message--success {
    background: #f0f7f0;
    border-left: 3px solid #4a9e5c;
    color: #2d6a3a;
  }

  /* ─── ENQUIRY FORM ─── */
  .insta-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .insta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(28,34,48,0.85);
    border: 1px solid rgba(184,147,90,0.25);
    border-left: none;
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    backdrop-filter: blur(6px);
  }

  .insta-link:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-color: transparent;
    color: #fff;
  }

  .linkedin-link:hover {
    background: #0A66C2;
    border-color: transparent;
    color: #fff;
  }

  .researchgate-link:hover {
    background: #00CCBB;
    border-color: transparent;
    color: #fff;
  }

  .insta-link svg { width: 20px; height: 20px; }

  .insta-label {
    writing-mode: vertical-rl;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    background: rgba(28,34,48,0.7);
    border: 1px solid rgba(184,147,90,0.15);
    border-left: none;
    border-top: none;
    padding: 10px 6px;
    backdrop-filter: blur(6px);
  }

  @media (max-width: 640px) {
    .insta-sidebar { display: none; }
  }

  /* ─── POLICY MODAL ─── */
  .policy-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(28,34,48,0.88);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  .policy-modal-overlay.open { display: flex; }
  .policy-modal {
    background: var(--white);
    max-width: 760px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .policy-modal-header {
    background: var(--deep-slate);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 1;
  }
  .policy-modal-body { padding: 2.5rem; }
  .policy-modal-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 500;
    color: var(--deep-slate);
    margin: 2rem 0 0.5rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--light-grey);
  }
  .policy-modal-body p { font-size: 0.85rem; color: var(--mid-grey); margin-bottom: 0.9rem; line-height: 1.8; }
  .policy-modal-body ul { list-style: none; padding: 0; margin-bottom: 1rem; }
  .policy-modal-body ul li { font-size: 0.85rem; color: var(--mid-grey); padding: 0.3rem 0 0.3rem 1.3rem; position: relative; line-height: 1.7; }
  .policy-modal-body ul li::before { content: '–'; position: absolute; left: 0; color: var(--warm-gold); }
  .policy-modal-body a { color: var(--warm-gold); }
  .policy-modal-body a:hover { color: var(--deep-slate); }
  .pm-updated { font-size: 0.72rem !important; color: rgba(100,100,100,0.5) !important; letter-spacing: 0.08em; margin-bottom: 1.5rem !important; }
  .pm-box { background: var(--ivory); border-left: 3px solid var(--warm-gold); padding: 1rem 1.2rem; margin-bottom: 1.5rem; font-size: 0.83rem; color: var(--mid-grey); line-height: 1.8; }
  .pm-table { width: 100%; border-collapse: collapse; margin: 0.75rem 0 1.5rem; font-size: 0.78rem; }
  .pm-table th { background: var(--deep-slate); color: var(--gold-light); padding: 0.6rem 0.8rem; text-align: left; font-weight: 600; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; }
  .pm-table td { padding: 0.6rem 0.8rem; color: var(--mid-grey); border-bottom: 1px solid var(--light-grey); vertical-align: top; }
  .pm-table tr:nth-child(even) td { background: var(--ivory); }

  /* ─── CONTACT PAGE OVERLAY ─── */
  .contact-page-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--white);
    overflow-y: auto;
    animation: cpFadeIn 0.25s ease;
  }

  @keyframes cpFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .contact-page-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(28,34,48,0.97);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3vw;
    height: 72px;
    border-bottom: 1px solid rgba(184,147,90,0.25);
  }

  .contact-page-close {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.55rem 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
  }

  .contact-page-close:hover { color: var(--white); border-color: var(--warm-gold); }

  .cp-hero {
    background: var(--deep-slate);
    padding: 5rem 6vw 4rem;
    position: relative;
  }

  .cp-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--warm-gold), transparent 60%);
  }

  .cp-hero-inner { max-width: 1200px; margin: 0 auto; }

  .cp-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--white);
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.1;
  }

  .cp-hero p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    max-width: 480px;
    line-height: 1.9;
    margin: 0;
  }

  .cp-body { max-width: 1200px; margin: 0 auto; padding: 5rem 6vw 6rem; }

  .cp-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
  }

  @media (max-width: 900px) { .cp-layout { grid-template-columns: 1fr; gap: 3rem; } }

  .cp-sidebar h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--deep-slate); margin-bottom: 1rem; }

  .cp-details { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }

  .cp-detail-item { padding: 1.1rem 1.25rem; background: var(--ivory); border-left: 3px solid var(--warm-gold); }

  .cp-detail-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-gold); display: block; margin-bottom: 0.3rem; }

  .cp-detail-value { font-size: 0.82rem; color: var(--text-dark); font-weight: 500; display: block; }

  .cp-detail-value a { color: var(--text-dark); }
  .cp-detail-value a:hover { color: var(--warm-gold); }

  /* ─── ACADEMIC WORK PAGE ─── */
  .academic-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-grey);
    flex-wrap: wrap;
  }

  @media (max-width: 600px) { .academic-stats { gap: 1.5rem; flex-wrap: wrap; } }

  .academic-stat { display: flex; flex-direction: column; }

  .academic-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--deep-slate);
    line-height: 1;
  }

  .academic-stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gold);
    margin-top: 0.4rem;
  }

  .academic-section { margin-bottom: 3.5rem; }

  .academic-section h2 {
    font-size: 1.7rem;
    color: var(--deep-slate);
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .academic-list {
    list-style: none;
    counter-reset: academic-counter;
    padding: 0;
    margin-top: 1.5rem;
  }

  .academic-list li {
    counter-increment: academic-counter;
    position: relative;
    padding: 0.9rem 0 0.9rem 2.5rem;
    font-size: 0.84rem;
    color: var(--mid-grey);
    line-height: 1.8;
    border-bottom: 1px solid var(--light-grey);
  }

  .academic-list li:first-child { padding-top: 0; }

  .academic-list li::before {
    content: counter(academic-counter) '.';
    position: absolute;
    left: 0;
    top: 0.9rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--warm-gold);
  }

  .academic-list li em { color: var(--text-dark); font-style: italic; }
  .academic-list li a { color: var(--warm-gold); }
  .academic-list li a:hover { text-decoration: underline; }

  .academic-note {
    font-size: 0.78rem;
    color: var(--mid-grey);
    line-height: 1.8;
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--ivory);
    border-left: 3px solid var(--warm-gold);
  }

  .academic-note a { color: var(--warm-gold); }

  .academic-list--presentations li { padding-bottom: 1.1rem; }

  .academic-meta {
    display: block;
    font-size: 0.74rem;
    color: var(--warm-gold);
    margin-top: 0.3rem;
    font-style: normal;
  }

  .academic-prize {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--warm-gold);
    background: var(--ivory);
    padding: 2px 8px;
    margin-left: 4px;
    border-radius: 3px;
  }

  /* Highlighted research cards */
  .highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
  }

  @media (max-width: 700px) { .highlight-grid { grid-template-columns: 1fr; } }

  .highlight-card {
    background: var(--ivory);
    border-top: 3px solid var(--warm-gold);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
  }

  .highlight-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--deep-slate);
    padding: 4px 10px;
    margin-bottom: 0.85rem;
  }

  .highlight-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.6rem;
  }

  .highlight-card h3 a {
    color: var(--deep-slate);
    transition: color 0.2s;
  }

  .highlight-card h3 a:hover { color: var(--warm-gold); }

  .highlight-card p {
    font-size: 0.78rem;
    color: var(--mid-grey);
    line-height: 1.6;
    margin: 0;
  }

  /* Confirmation screen */
  .form-confirm {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 520px;
  }

  .form-confirm-icon {
    width: 64px;
    height: 64px;
    background: var(--deep-slate);
    color: var(--warm-gold);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
  }

  .form-confirm h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--deep-slate);
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .form-confirm p {
    font-size: 0.85rem;
    color: var(--mid-grey);
    line-height: 1.9;
    margin-bottom: 0.75rem;
  }

  .form-confirm strong { color: var(--text-dark); }

  /* ─── STANDALONE PROCEDURE PAGES ─── */
  .page-content { padding-top: 72px; }

  .breadcrumb {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    color: var(--mid-grey);
    margin-bottom: 1.75rem;
  }
  .breadcrumb a { color: var(--mid-grey); text-decoration: none; border-bottom: 1px solid transparent; }
  .breadcrumb a:hover { color: var(--warm-gold); border-bottom-color: var(--warm-gold); }
  .breadcrumb .sep { margin: 0 0.4em; color: var(--light-grey); }
  .breadcrumb .current { color: var(--text-dark); }

  .procedure-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin: 0.4rem 0 1.5rem;
    color: var(--text-dark);
  }

  .procedure-body { max-width: 760px; }

  .related-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 0;
    padding: 3rem 4vw 0;
    max-width: 1200px;
    margin: 0 auto;
  }

  .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1px;
    background: var(--light-grey);
    border-top: 2px solid var(--warm-gold);
    margin-top: 1.5rem;
  }

  a.proc-card { display: block; text-decoration: none; }
