@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400;1,8..60,600&family=Public+Sans:wght@400;500;600;700&display=swap');

:root {
  --nhs-blue: #005EB8;
  --nhs-blue-dark: #004A93;
  --coral: #F87171;
  --coral-dark: #DC2626;
  --cream: #FAF8F5;
  --cream-soft: #F5F2EC;
  --charcoal-soft: #44403C;
  --charcoal: #1C1917;
  --grey: #78716C;
  --grey-light: #E7E5E4;
  --display: 'Source Serif 4', Georgia, serif;
  --body: 'Public Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--charcoal-soft);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--nhs-blue); text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* TOPBAR */
.topbar { background: var(--nhs-blue-dark); color: var(--cream); font-size: 13px; padding: 11px 0; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-tagline { display: flex; align-items: center; gap: 10px; font-style: italic; font-family: var(--display); font-size: 14px; }
.topbar-tagline svg { width: 14px; height: 14px; color: var(--coral); }
.topbar-meta { display: flex; gap: 24px; font-weight: 500; }

/* NAV */
.nav { background: var(--cream); border-bottom: 1px solid var(--grey-light); padding: 18px 0; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 14px; }
.logo-mark { width: 50px; height: 50px; background: var(--cream); border: 2px solid var(--nhs-blue); border-radius: 50%; display: grid; place-items: center; color: var(--nhs-blue); font-family: var(--display); font-size: 24px; font-weight: 700; font-style: italic; position: relative; }
.logo-mark::after { content: ''; position: absolute; inset: -5px; border: 1px solid var(--coral); border-radius: 50%; }
.logo-text { font-family: var(--display); font-size: 24px; font-weight: 700; color: var(--charcoal); letter-spacing: -0.3px; }
.logo-text span { color: var(--nhs-blue); font-style: italic; font-weight: 400; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { color: var(--charcoal); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--nhs-blue); }
.nav-cta { background: var(--nhs-blue); color: var(--cream) !important; padding: 12px 24px; font-size: 14px; font-weight: 600; }
.nav-cta:hover { background: var(--coral); }

/* HERO */
.hero { background: var(--cream-soft); padding: 100px 0 110px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 60px; right: -200px; width: 500px; height: 500px; border: 2px solid var(--nhs-blue); border-radius: 50%; opacity: 0.06; pointer-events: none; }
.hero::after { content: ''; position: absolute; top: 200px; right: 100px; width: 200px; height: 200px; border: 1.5px solid var(--coral); border-radius: 50%; opacity: 0.15; pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-block; color: var(--nhs-blue); font-family: var(--display); font-style: italic; font-size: 16px; margin-bottom: 22px; padding: 6px 18px; background: var(--cream); border: 1px solid var(--nhs-blue); border-radius: 30px; }
.hero h1 { font-family: var(--display); font-size: clamp(40px, 5.5vw, 64px); line-height: 1.1; font-weight: 600; margin-bottom: 24px; letter-spacing: -1px; color: var(--charcoal); }
.hero h1 em { color: var(--nhs-blue); font-style: italic; font-weight: 400; }
.hero-lede { font-size: 19px; color: var(--charcoal-soft); max-width: 560px; margin-bottom: 32px; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; transition: all 0.25s; cursor: pointer; border: 2px solid; }
.btn-primary { background: var(--nhs-blue); color: var(--cream); border-color: var(--nhs-blue); }
.btn-primary:hover { background: var(--coral); border-color: var(--coral); }
.btn-secondary { background: transparent; color: var(--nhs-blue); border-color: var(--nhs-blue); }
.btn-secondary:hover { background: var(--nhs-blue); color: var(--cream); }
.hero-points { list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px 24px; max-width: 540px; }
.hero-points li { color: var(--charcoal-soft); font-size: 14.5px; padding-left: 24px; position: relative; }
.hero-points li::before { content: ''; position: absolute; left: 0; top: 8px; width: 12px; height: 12px; border: 2px solid var(--coral); border-radius: 50%; }
.hero-card { background: var(--cream); padding: 40px 32px; border: 1px solid var(--grey-light); border-radius: 4px; position: relative; box-shadow: 0 2px 0 var(--nhs-blue); }
.hero-card::before { content: '"'; position: absolute; top: -20px; left: 24px; font-family: var(--display); font-size: 80px; color: var(--coral); line-height: 1; font-style: italic; }
.hero-card .quote { font-family: var(--display); font-size: 21px; line-height: 1.5; margin-bottom: 22px; color: var(--charcoal); font-style: italic; font-weight: 400; }
.hero-card .attr { font-size: 11px; color: var(--nhs-blue); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }
.hero-card .attr strong { display: block; color: var(--grey); font-weight: 500; text-transform: none; letter-spacing: 0; font-size: 13px; margin-top: 4px; }

/* TRUST */
.trust { background: var(--cream); padding: 0; border-top: 1px solid var(--grey-light); border-bottom: 1px solid var(--grey-light); }
.trust-grid { max-width: 1200px; margin: 0 auto; padding: 56px 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.trust-item { text-align: center; padding: 0 20px; border-right: 1px solid var(--grey-light); }
.trust-item:last-child { border-right: none; }
.trust-item .num { font-family: var(--display); font-size: 38px; color: var(--nhs-blue); font-weight: 600; font-style: italic; margin-bottom: 6px; }
.trust-item .lbl { font-size: 13px; color: var(--charcoal-soft); }

/* SECTION */
section { padding: 90px 0; }
.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.eyebrow { display: inline-block; color: var(--coral); font-family: var(--display); font-style: italic; font-size: 16px; margin-bottom: 16px; }
.section-head h2 { font-family: var(--display); font-size: clamp(34px,4vw,46px); color: var(--charcoal); margin-bottom: 18px; line-height: 1.18; letter-spacing: -0.5px; font-weight: 600; }
.section-head h2 em { color: var(--nhs-blue); font-style: italic; font-weight: 400; }
.section-head p { color: var(--charcoal-soft); font-size: 17px; }

/* SERVICES GRID */
.sectors-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.sector-card { background: var(--cream); padding: 36px 30px; border: 1px solid var(--grey-light); border-radius: 4px; transition: all 0.2s; position: relative; }
.sector-card::before { content: ''; position: absolute; top: 24px; right: 24px; width: 28px; height: 28px; border: 1.5px solid var(--coral); border-radius: 50%; transition: all 0.2s; }
.sector-card:hover { border-color: var(--nhs-blue); box-shadow: 0 6px 24px rgba(0,94,184,0.08); }
.sector-card:hover::before { background: var(--coral); }
.sector-card .roman { display: block; font-family: var(--display); font-style: italic; font-size: 14px; color: var(--coral); letter-spacing: 1.5px; margin-bottom: 14px; }
.sector-card h3 { font-family: var(--display); font-size: 22px; color: var(--nhs-blue); margin-bottom: 10px; line-height: 1.25; font-weight: 600; padding-right: 36px; }
.sector-card p { color: var(--charcoal-soft); font-size: 14.5px; }

/* WHY/PILLARS */
.why-bg { background: var(--nhs-blue); color: var(--cream); position: relative; overflow: hidden; }
.why-bg::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 800px; border: 1px solid rgba(248,113,113,0.1); border-radius: 50%; pointer-events: none; }
.why-bg .section-head h2 { color: var(--cream); }
.why-bg .section-head h2 em { color: var(--coral); }
.why-bg .section-head p { color: rgba(255,255,255,0.8); }
.why-bg .eyebrow { color: var(--coral); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; position: relative; z-index: 1; }
.why-card { padding: 38px 30px; background: var(--nhs-blue-dark); border-radius: 4px; border-top: 3px solid var(--coral); }
.icon-pill { width: 54px; height: 54px; background: var(--cream); border-radius: 50%; display: grid; place-items: center; margin-bottom: 22px; color: var(--nhs-blue); }
.icon-pill svg { width: 24px; height: 24px; }
.why-card h3 { font-family: var(--display); font-size: 22px; color: var(--cream); margin-bottom: 12px; font-style: italic; font-weight: 600; }
.why-card p { color: rgba(255,255,255,0.8); font-size: 14.5px; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; z-index: 1; }
.process-step { background: var(--nhs-blue-dark); padding: 38px 28px; border-radius: 4px; border-left: 3px solid var(--coral); }
.step-num { font-family: var(--display); font-style: italic; font-size: 38px; color: var(--coral); display: block; margin-bottom: 14px; line-height: 1; font-weight: 600; }
.process-step h3 { font-family: var(--display); font-size: 20px; margin-bottom: 10px; color: var(--cream); font-weight: 600; }
.process-step p { color: rgba(255,255,255,0.75); font-size: 14px; }

/* PROSE */
.prose-section { background: var(--cream); }
.prose-wrap { max-width: 760px; margin: 0 auto; }
.prose-wrap h2 { font-family: var(--display); font-size: 36px; color: var(--charcoal); margin-bottom: 24px; line-height: 1.18; font-weight: 600; }
.prose-wrap h2 em { color: var(--nhs-blue); font-style: italic; font-weight: 400; }
.prose-wrap h3 { font-family: var(--display); font-size: 23px; color: var(--nhs-blue); margin: 32px 0 12px; font-style: italic; font-weight: 600; }
.prose-wrap p { color: var(--charcoal-soft); margin-bottom: 18px; font-size: 16.5px; }
.prose-wrap ul { padding-left: 22px; margin-bottom: 20px; }
.prose-wrap li { color: var(--charcoal-soft); margin-bottom: 8px; }

/* CTA */
.cta-section { background: var(--coral); color: var(--cream); text-align: center; }
.cta-section h2 { font-family: var(--display); font-size: clamp(34px,4vw,48px); color: var(--cream); margin-bottom: 18px; font-weight: 600; }
.cta-section h2 em { color: var(--nhs-blue-dark); font-style: italic; font-weight: 400; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 18px; max-width: 600px; margin: 0 auto 32px; }
.cta-section .btn-primary { background: var(--nhs-blue-dark); border-color: var(--nhs-blue-dark); }
.cta-section .btn-primary:hover { background: var(--cream); color: var(--nhs-blue-dark); border-color: var(--cream); }

/* FOOTER */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-family: var(--display); color: var(--cream); font-size: 26px; margin-bottom: 12px; font-weight: 600; }
.footer-brand em { color: var(--coral); font-style: italic; font-weight: 400; }
.footer p { font-size: 14px; line-height: 1.7; }
.footer h4 { color: var(--coral); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer a:hover { color: var(--coral); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 24px 24px 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info h3 { font-family: var(--display); font-size: 28px; color: var(--nhs-blue); margin-bottom: 16px; font-weight: 600; font-style: italic; }
.contact-info p { color: var(--charcoal-soft); margin-bottom: 24px; }
.contact-info .info-row { padding: 18px 0; border-top: 1px solid var(--grey-light); }
.contact-info .info-row:last-child { border-bottom: 1px solid var(--grey-light); }
.contact-info .info-row strong { display: block; color: var(--coral); font-family: var(--display); font-style: italic; font-size: 15px; margin-bottom: 6px; }
.contact-info .info-row span { color: var(--charcoal); font-size: 15px; }
.form-wrap { background: var(--cream); border: 1px solid var(--grey-light); padding: 32px; border-radius: 4px; box-shadow: 0 2px 0 var(--nhs-blue); }
.form-wrap iframe { border: none; width: 100%; min-height: 580px; }

@media (max-width: 900px) {
  .hero-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: 30px 0; }
  .sectors-grid, .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 14px; font-size: 13px; }
  .nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }
  .topbar-meta { display: none; }
}
