
  :root {
    --navy: #0A1840;
    --navy-deep: #050C26;
    --navy-soft: #1A2956;
    --gold: #C9A24A;
    --gold-deep: #A8852D;
    --gold-soft: #E8D69E;
    --cream: #F4EFE3;
    --cream-deep: #ECE4D2;
    --cream-warm: #F8F3E7;
    --ink: #1A1A1A;
    --ink-mid: #4A463E;
    --ink-soft: #6B6557;
    --line: #D8CFB8;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.81 0 0 0 0 0.7 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  nav.top {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(244, 239, 227, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--navy);
  }
  .brand-mark {
    width: 28px;
    height: 28px;
    background: var(--gold);
    transform: rotate(45deg);
    border-radius: 2px;
  }
  .brand-name {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
  }
  .brand-name em {
    font-style: italic;
    color: var(--gold-deep);
    font-weight: 400;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 14px;
    color: var(--ink-mid);
  }
  .nav-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--navy); }
  .nav-cta {
    background: var(--navy);
    color: var(--cream);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 500;
    transition: all 0.2s;
  }
  .nav-cta:hover {
    background: var(--navy-deep) !important;
  }

  main {
    flex: 1;
    padding: 80px 32px;
    position: relative;
    z-index: 2;
  }
  .container {
    max-width: 1080px;
    margin: 0 auto;
  }

  /* ===== HERO ===== */
  .hero {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeUp 0.7s ease-out;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: 28px;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
  }
  .hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 28px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold-deep);
    font-weight: 300;
  }
  .hero p {
    font-size: 19px;
    line-height: 1.65;
    color: var(--ink-mid);
    max-width: 680px;
    margin: 0 auto;
  }

  /* ===== PROGRAMME CARDS ===== */
  .programmes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 96px;
    animation: fadeUp 0.7s ease-out 0.15s backwards;
  }
  .programme-card {
    background: var(--cream-warm);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 56px 48px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .programme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease-out;
  }
  .programme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(10, 24, 64, 0.1);
    border-color: var(--gold);
  }
  .programme-card:hover::before {
    transform: scaleY(1);
  }
  .programme-card-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: 6px;
    margin-bottom: 28px;
    position: relative;
  }
  .programme-card-icon::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 2px solid var(--gold);
  }
  .programme-card-icon.pharmacy::after {
    border-radius: 50%;
  }
  .programme-card-icon.carers::after {
    transform: rotate(45deg);
    border-radius: 2px;
  }
  .programme-card-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .programme-card-title {
    font-family: 'Fraunces', serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 16px;
  }
  .programme-card-title em {
    font-style: italic;
    color: var(--gold-deep);
    font-weight: 300;
  }
  .programme-card-tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--ink-mid);
    line-height: 1.4;
    margin-bottom: 28px;
    font-weight: 400;
  }
  .programme-card-desc {
    font-size: 15px;
    color: var(--ink-mid);
    line-height: 1.6;
    margin-bottom: 28px;
    flex-grow: 1;
  }
  .programme-card-points {
    list-style: none;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--ink-mid);
  }
  .programme-card-points li {
    padding: 8px 0;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .programme-card-points li::before {
    content: '·';
    color: var(--gold);
    font-size: 22px;
    line-height: 0;
  }
  .programme-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
    transition: gap 0.2s;
  }
  .programme-card:hover .programme-card-cta {
    gap: 16px;
  }

  /* ===== HOW THIS WORKS ===== */
  .approach {
    background: var(--navy);
    color: var(--cream);
    border-radius: 8px;
    padding: 72px 56px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
  }
  .approach::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 74, 0.12) 0%, transparent 70%);
  }
  .approach-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .approach h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 720px;
  }
  .approach h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
  }
  .approach p {
    color: var(--cream-deep);
    font-size: 17px;
    max-width: 680px;
    line-height: 1.65;
  }
  .approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
  }
  .approach-pillar {
    border-top: 1px solid rgba(216, 207, 184, 0.2);
    padding-top: 20px;
  }
  .approach-pillar-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 8px;
  }
  .approach-pillar-name {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    color: var(--cream);
    font-weight: 500;
    margin-bottom: 8px;
  }
  .approach-pillar-name em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
  }
  .approach-pillar-desc {
    font-size: 13px;
    color: var(--cream-deep);
    opacity: 0.8;
    line-height: 1.55;
  }

  /* ===== FAQ ===== */
  .faq {
    margin-bottom: 80px;
  }
  .faq-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 3.5vw, 36px);
    color: var(--navy);
    font-weight: 400;
    margin-bottom: 32px;
    text-align: center;
  }
  .faq-title em {
    font-style: italic;
    color: var(--gold-deep);
    font-weight: 300;
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .faq-item h3 {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 10px;
  }
  .faq-item p {
    font-size: 14px;
    color: var(--ink-mid);
    line-height: 1.65;
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--navy-deep);
    color: var(--cream-deep);
    padding: 56px 32px 32px;
    position: relative;
    z-index: 2;
  }
  .footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(216, 207, 184, 0.15);
    margin-bottom: 24px;
  }
  .footer-tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 300;
  }
  .footer-desc {
    font-size: 14px;
    color: var(--cream-deep);
    opacity: 0.7;
    line-height: 1.6;
    max-width: 380px;
  }
  .footer-col h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 600;
  }
  .footer-col a {
    display: block;
    color: var(--cream-deep);
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
  }
  .footer-col a:hover {
    opacity: 1;
    color: var(--gold);
  }
  .footer-mark {
    text-align: center;
    font-size: 11px;
    color: var(--cream-deep);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.15em;
  }

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

  @media (max-width: 860px) {
    .nav-links { display: none; }
    .nav-links .nav-cta { display: inline-block; }
    main { padding: 50px 24px; }
    .programmes { grid-template-columns: 1fr; gap: 24px; }
    .programme-card { padding: 40px 32px; }
    .approach { padding: 48px 32px; }
    .approach-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  }
  @media (max-width: 500px) {
    .approach-grid { grid-template-columns: 1fr; }
  }
