:root {
  --background: #fff;
  --foreground: #182338;
  --card: #fff;
  --primary: #11589d;
  --primary-foreground: #fff;
  --secondary: #edf5fc;
  --muted: #f5f8fb;
  --muted-foreground: #566579;
  --destructive: #c82a37;
  --border: #dce4ed;
  --ring: #2478bd;
  --blue: #11589d;
  --navy: #112d50;
  --red: #ff404d;
  --text: #182338;
  --soft: #566579;
  --radius: 12px;
}
.dark {
  --background: #10243b;
  --foreground: #f7fbff;
  --card: #16334f;
  --primary: #8dc7ff;
  --primary-foreground: #10243b;
  --secondary: #244762;
  --muted: #18324a;
  --muted-foreground: #c1cfdf;
  --destructive: #ff6974;
  --border: #3a556d;
  --ring: #8dc7ff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body.chimney-site {
  font-weight: 400;
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
.chimney-site h1,
.chimney-site h2,
.chimney-site h3,
p {
  margin: 0;
}
img {
  display: block;
}
:focus-visible {
  outline: 3px solid #258cc8;
  outline-offset: 5px;
}
.container {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 20px;
  background: white;
  color: var(--blue);
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 90px;
  background: #fff;
  position: relative;
  z-index: 30;
  border-bottom: 1px solid #e9edf2;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-mark {
  width: 58px;
  height: 57px;
  position: relative;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}
.brand-mark img {
  position: absolute;
  width: 1909px;
  max-width: none;
  height: 748px;
  left: -361px;
  top: -18px;
}
.brand-type {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-type strong {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.3;
}
.brand-type > span {
  font-size: 11px;
  color: #5c6880;
  line-height: 1.5;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.desktop-nav > a:not(.button):hover {
  color: var(--blue);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  border: 0;
  padding: 14px 25px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-red {
  background: var(--red);
  color: #fff;
}
.button-red:hover {
  background: #e9293b;
  box-shadow: 0 7px 20px #e9293b25;
}
.button-white {
  background: white;
  color: var(--blue);
}
.button-white:hover {
  background: #eef6ff;
}
.button-blue {
  background: var(--blue);
  color: white;
}
.button-blue:hover {
  background: #0d4780;
}
.nav-cta {
  border-radius: 14px;
  min-height: 45px;
  padding: 12px 23px;
  box-shadow: 0 9px 22px #ef364d16;
}
.mobile-nav {
  display: none;
}
.mobile-sheet {
  padding: 60px 26px 28px;
}
.mobile-sheet nav {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}
.mobile-sheet nav a {
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
}
.menu-trigger {
  border: 0;
  background: transparent;
  padding: 10px;
}
.hero {
  position: relative;
  background: var(--blue);
  overflow: hidden;
  color: #fff;
}
.hero-inner {
  display: grid;
  grid-template-columns: 460fr 720fr;
  min-height: 590px;
  position: relative;
}
.hero-copy {
  padding: 84px 20px 118px 0;
  z-index: 2;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--blue);
  line-height: 1.5;
  margin-bottom: 18px;
}
.hero-eyebrow {
  color: #a4d7fc;
  font-size: 11px;
  letter-spacing: 1.4px;
  margin-bottom: 11px;
}
.chimney-site h1 {
  font-size: 78px;
  line-height: 0.93;
  font-weight: 700;
  letter-spacing: -5px;
}
.hero-description {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  color: #c8dff5;
  letter-spacing: -0.7px;
  margin-top: 29px;
  white-space: nowrap;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}
.hero-actions .button {
  padding: 16px 24px;
  white-space: nowrap;
  font-size: 13px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.4px;
  white-space: nowrap;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.hero-photo {
  position: relative;
  width: 100%;
  overflow: hidden;
  align-self: stretch;
  background: #0b2d70;
}
.hero-curve {
  position: absolute;
  left: -5%;
  bottom: -37px;
  width: 110%;
  height: 73px;
  background: #fff;
  border-radius: 50% 50% 0 0 / 75% 75% 0 0;
  z-index: 3;
}
.trust-strip {
  background: #fff;
  position: relative;
}
.trust-inner {
  min-height: 67px;
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
  padding: 8px 0 14px;
  font-size: 12px;
  color: #46566d;
  letter-spacing: -0.3px;
}
.trust-inner span {
  display: flex;
  gap: 3px;
  align-items: center;
}
.trust-inner svg {
  color: var(--red);
  width: 13px;
}
.section {
  padding: 100px 0;
}
.chimney-site h2 {
  font-size: 46px;
  letter-spacing: -2px;
  line-height: 1.12;
  font-weight: 700;
  color: var(--navy);
}
h2 span {
  color: var(--blue);
}
.chimney-site h3 {
  font-size: 23px;
  letter-spacing: -0.7px;
  line-height: 1.3;
  font-weight: 700;
}
.section-heading {
  margin-bottom: 43px;
}
.heading-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}
.heading-split > p {
  max-width: 400px;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 3px;
}
.programs-section {
  background: #f5f8fb;
  padding-top: 86px;
  padding-bottom: 74px;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.program-card {
  background: #fff;
  border: 1px solid #e1e8f0;
  border-radius: 15px;
  overflow: hidden;
  padding: 30px 28px 0;
  box-shadow: 0 4px 13px #12365703;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px #173c7210;
}
.program-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.program-icon {
  height: 58px;
  width: 58px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #e9f3fe;
  color: #1463a4;
}
.year-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #5c6c81;
}
.program-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
}
.program-card > p {
  color: var(--soft);
  min-height: 52px;
  line-height: 1.6;
}
.program-card ul {
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
}
.program-card li {
  display: flex;
  align-items: center;
  gap: 9px;
}
.program-card li svg {
  color: var(--blue);
  flex-shrink: 0;
}
.program-toggle {
  padding: 18px 0;
  border: 0;
  border-top: 1px solid #e4eaf1;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}
.secondary .program-icon {
  background: #edf7ef;
  color: #39894d;
}
.senior .program-icon {
  background: #fff4dc;
  color: #b7780d;
}
.program-details {
  padding: 3px 0 23px;
  color: var(--soft);
  font-size: 14px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 90px;
  align-items: center;
}
.why-intro h2 {
  margin-bottom: 25px;
}
.why-intro > p:not(.eyebrow) {
  color: var(--soft);
  margin-bottom: 17px;
  line-height: 1.75;
}
.why-intro .button {
  margin-top: 12px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 43px 30px;
}
.benefit > svg {
  color: var(--blue);
  margin-bottom: 19px;
}
.benefit h3 {
  font-size: 19px;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}
.benefit p {
  font-size: 15px;
  color: var(--soft);
  line-height: 1.75;
}
.experience {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}
.experience strong {
  font-size: 30px;
  letter-spacing: -1px;
  color: var(--blue);
  line-height: 1.2;
}
.experience strong span {
  display: block;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0;
  color: var(--soft);
  margin-top: 5px;
}
.experience-divider {
  height: 40px;
  width: 1px;
  background: var(--border);
}
.approach-section {
  background: #edf5fc;
}
.center-heading {
  text-align: center;
}
.center-heading > p:last-child {
  color: var(--soft);
  margin-top: 20px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 62px;
  margin-top: 56px;
  text-align: center;
}
.step-number {
  width: 58px;
  height: 58px;
  margin: 0 auto 23px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
.step h3 {
  font-size: 21px;
  margin-bottom: 15px;
}
.step p {
  color: var(--soft);
  font-size: 16px;
  line-height: 1.75;
}
.center-action {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  margin-top: 42px;
}
.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: start;
}
.insights-grid h2 {
  margin-bottom: 22px;
}
.insights-grid > div > p:not(.eyebrow) {
  color: var(--soft);
  line-height: 1.75;
}
.parent-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 30px;
  padding: 24px;
  background: #f5f8fb;
  border-left: 3px solid #9cc6ec;
  border-radius: 0 8px 8px 0;
}
.parent-note > svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
}
.parent-note h3 {
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: 0;
}
.parent-note p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--soft);
}
.faq-list {
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  padding: 22px 0;
  border-radius: 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.3px;
  gap: 14px;
}
.faq-question svg {
  margin-top: 6px;
}
.faq-question:hover {
  color: var(--blue);
  text-decoration: none;
}
.faq-answer {
  padding: 0 25px 23px 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--soft);
}
.contact-section {
  background: var(--blue);
  color: white;
  padding: 85px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 115px;
  align-items: center;
}
.contact-copy .eyebrow {
  color: #b2d9ff;
  font-size: 11px;
}
.contact-copy h2 {
  font-size: 59px;
  line-height: 1.05;
  color: white;
  letter-spacing: -2.8px;
}
.contact-copy h2 span {
  color: #a8d7ff;
}
.contact-copy > p:not(.eyebrow) {
  font-size: 17px;
  color: #d4e6f8;
  margin: 25px 0;
  max-width: 360px;
  line-height: 1.75;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 27px 0;
}
.contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  overflow-wrap: anywhere;
}
.contact-links a:hover {
  text-decoration: underline;
}
.contact-note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #d4e6f8;
}
.enquiry-form {
  background: white;
  color: var(--text);
  padding: 35px 38px;
  border-radius: 18px;
  box-shadow: 0 12px 35px #052d6520;
}
.enquiry-form h3 {
  font-size: 26px;
  margin-bottom: 5px;
}
.enquiry-form > p:first-of-type {
  color: var(--soft);
  font-size: 14px;
  margin-bottom: 22px;
}
.enquiry-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 16px 0 7px;
}
.enquiry-form label span {
  color: #c52c3c;
}
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid #d8e1e9;
  box-shadow: none;
  border-radius: 7px;
  padding: 11px 13px;
  min-height: 45px;
  font-size: 14px;
  line-height: 1.5;
  background: #fff;
}
.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: #768292;
}
.form-submit {
  width: 100%;
  margin-top: 22px;
  border-radius: 8px;
}
.enquiry-form .form-note {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: #657185;
  margin-top: 12px;
}
.form-status {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 15px;
  padding: 14px;
  background: #edf5fc;
  border-radius: 8px;
}
.form-status a {
  text-decoration: underline;
}
@media (max-width: 1200px) {
  .desktop-nav {
    gap: 21px;
  }
  .brand-type strong {
    font-size: 20px;
  }
  .brand-type > span {
    font-size: 10px;
  }
  .hero-inner {
    grid-template-columns: 44% 56%;
    min-height: 565px;
  }
  .hero-copy {
    padding-top: 75px;
  }
  .chimney-site h1 {
    font-size: 71px;
    letter-spacing: -4px;
  }
  .hero-description {
    font-size: 17px;
  }
  .hero-actions {
    gap: 14px;
  }
  .why-grid {
    gap: 50px;
  }
  .insights-grid {
    gap: 60px;
  }
  .contact-grid {
    gap: 65px;
  }
  .program-card {
    padding-inline: 22px;
  }
  .contact-copy h2 {
    font-size: 54px;
  }
}
@media (max-width: 1000px) {
  .desktop-nav {
    gap: 16px;
    font-size: 13px;
  }
  .brand-type > span {
    display: none;
  }
  .brand-type strong {
    font-size: 19px;
  }
  .brand {
    gap: 8px;
  }
  .nav-cta {
    padding-inline: 17px;
  }
  .hero-inner {
    grid-template-columns: 48% 52%;
    min-height: 545px;
  }
  .hero-copy {
    padding-top: 65px;
  }
  .chimney-site h1 {
    font-size: 65px;
    letter-spacing: -3.8px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 17px;
  }
  .hero-actions .button {
    font-size: 12px;
  }
  .text-link {
    font-size: 12px;
  }
  .section {
    padding: 75px 0;
  }
  .chimney-site h2 {
    font-size: 39px;
  }
  .program-grid {
    gap: 16px;
  }
  .program-card {
    padding-inline: 20px;
  }
  .program-top {
    align-items: flex-start;
    gap: 12px;
  }
  .program-icon {
    width: 48px;
    height: 48px;
  }
  .year-label {
    font-size: 10px;
    margin-top: 15px;
  }
  .program-card h3 {
    font-size: 22px;
  }
  .program-card > p {
    font-size: 15px;
    min-height: 72px;
  }
  .program-card ul {
    font-size: 13px;
  }
  .program-toggle {
    font-size: 13px;
  }
  .why-grid {
    gap: 35px;
  }
  .benefit-grid {
    gap: 30px 20px;
  }
  .benefit h3 {
    font-size: 17px;
  }
  .benefit p {
    font-size: 14px;
  }
  .steps {
    gap: 30px;
  }
  .insights-grid {
    gap: 40px;
  }
  .contact-grid {
    gap: 45px;
  }
  .enquiry-form {
    padding: 30px;
  }
  .contact-copy h2 {
    font-size: 49px;
  }
  .contact-links a {
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  .container {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 78px;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mobile-nav > .button {
    min-height: 40px;
    padding: 11px 17px;
    font-size: 12px;
    border-radius: 12px;
  }
  .brand-type > span {
    display: block;
    font-size: 9px;
  }
  .brand-type strong {
    font-size: 18px;
  }
  .brand-mark {
    width: 45px;
    height: 45px;
  }
  .brand-mark img {
    width: 1481px;
    height: 580px;
    left: -280px;
    top: -14px;
  }
  .hero-inner {
    grid-template-columns: 51% 49%;
    min-height: 485px;
  }
  .hero-copy {
    padding-top: 56px;
    padding-bottom: 90px;
  }
  .chimney-site h1 {
    font-size: 55px;
    letter-spacing: -3px;
  }
  .hero-description {
    white-space: normal;
    max-width: 280px;
    font-size: 16px;
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 1px;
  }
  .hero-actions {
    margin-top: 25px;
  }
  .trust-inner {
    gap: 24px;
    font-size: 11px;
    min-height: 58px;
  }
  .heading-split {
    gap: 25px;
  }
  .heading-split > p {
    max-width: 290px;
    font-size: 15px;
  }
  .program-grid {
    gap: 13px;
  }
  .program-top {
    flex-direction: column;
    gap: 0;
  }
  .year-label {
    margin-top: 14px;
  }
  .program-card {
    padding-inline: 16px;
  }
  .program-card h3 {
    font-size: 20px;
  }
  .program-card > p {
    font-size: 14px;
  }
  .program-card ul {
    font-size: 12px;
    gap: 9px;
  }
  .program-card li {
    align-items: flex-start;
    gap: 6px;
  }
  .program-card li svg {
    margin-top: 3px;
    width: 12px;
  }
  .program-toggle {
    font-size: 12px;
    gap: 5px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .why-intro {
    max-width: 540px;
  }
  .benefit-grid {
    gap: 35px;
  }
  .benefit h3 {
    font-size: 20px;
  }
  .benefit p {
    font-size: 16px;
  }
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .steps {
    gap: 25px;
  }
  .step h3 {
    font-size: 18px;
  }
  .step p {
    font-size: 14px;
  }
  .contact-grid {
    gap: 30px;
  }
  .contact-copy h2 {
    font-size: 42px;
  }
  .enquiry-form {
    padding: 25px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 24px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    gap: 8px;
  }
  .site-header {
    height: 76px;
  }
  .brand {
    gap: 7px;
  }
  .brand-type strong {
    font-size: 16px;
    letter-spacing: -0.7px;
  }
  .brand-type > span {
    font-size: 8px;
    max-width: 160px;
  }
  .brand-mark {
    width: 41px;
    height: 43px;
  }
  .mobile-nav {
    gap: 1px;
  }
  .mobile-nav > .button {
    min-height: 37px;
    padding: 10px 12px;
    font-size: 11px;
  }
  .menu-trigger {
    padding: 8px 0 8px 8px;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .hero-copy {
    padding: 45px 24px 34px;
    max-width: 100%;
  }
  .hero-eyebrow {
    font-size: 10px;
    margin-bottom: 17px;
  }
  .chimney-site h1 {
    font-size: 62px;
    letter-spacing: -3.5px;
    line-height: 0.98;
  }
  .hero-description {
    font-size: 17px;
    white-space: normal;
    max-width: 320px;
    line-height: 1.55;
    margin-top: 23px;
  }
  .hero-actions {
    gap: 18px;
    margin-top: 24px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 14px 20px;
  }
  .text-link {
    font-size: 12px;
  }
  .hero-photo {
    width: 100%;
    aspect-ratio: 720/515;
    align-self: auto;
    min-height: 0;
  }
  .hero-curve {
    height: 45px;
    bottom: -25px;
    left: -10%;
    width: 120%;
  }
  .trust-inner {
    display: flex;
    flex-wrap: wrap;
    column-gap: 18px;
    row-gap: 8px;
    padding: 17px 0 19px;
    font-size: 10px;
    min-height: 65px;
  }
  .trust-inner span {
    gap: 3px;
  }
  .trust-inner svg {
    width: 11px;
  }
  .section {
    padding: 60px 0;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
  }
  .chimney-site h2 {
    font-size: 37px;
    line-height: 1.13;
    letter-spacing: -1.6px;
  }
  .heading-split {
    display: block;
  }
  .heading-split > p {
    max-width: none;
    font-size: 16px;
    margin-top: 22px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .program-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .program-card {
    padding: 25px 25px 0;
  }
  .program-top {
    flex-direction: row;
    align-items: center;
    margin-bottom: 21px;
  }
  .program-icon {
    width: 53px;
    height: 53px;
  }
  .year-label {
    margin: 0;
    font-size: 11px;
  }
  .program-card h3 {
    font-size: 25px;
  }
  .program-card > p {
    font-size: 16px;
    min-height: 0;
  }
  .program-card ul {
    font-size: 14px;
    margin: 23px 0 25px;
    gap: 10px;
  }
  .program-card li svg {
    width: 16px;
    margin-top: 4px;
  }
  .program-toggle {
    font-size: 14px;
    padding: 19px 0;
  }
  .why-intro > p:not(.eyebrow) {
    font-size: 16px;
  }
  .why-intro .button {
    font-size: 13px;
  }
  .benefit-grid {
    gap: 30px 24px;
  }
  .benefit h3 {
    font-size: 18px;
  }
  .benefit p {
    font-size: 14px;
  }
  .experience {
    margin-top: 30px;
  }
  .experience strong {
    font-size: 30px;
  }
  .center-heading h2 {
    max-width: 350px;
    margin: auto;
  }
  .center-heading > p:last-child {
    font-size: 15px;
    margin-top: 17px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 33px;
    margin-top: 35px;
    text-align: left;
  }
  .step {
    position: relative;
    padding-left: 78px;
    min-height: 100px;
  }
  .step-number {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    width: 52px;
    height: 52px;
  }
  .step h3 {
    font-size: 21px;
    margin: 0 0 10px;
  }
  .step p {
    font-size: 15px;
  }
  .center-action {
    margin-top: 33px;
  }
  .insights-grid {
    gap: 32px;
  }
  .parent-note {
    padding: 21px 18px;
  }
  .faq-question {
    font-size: 16px;
    padding: 21px 0;
  }
  .contact-section {
    padding: 55px 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-copy h2 {
    font-size: 49px;
    letter-spacing: -2px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .contact-links a {
    font-size: 15px;
  }
  .enquiry-form {
    padding: 27px 24px;
    border-radius: 13px;
  }
  .enquiry-form label {
    font-size: 14px;
  }
  .enquiry-form input,
  .enquiry-form textarea {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
.form-status {
  display: block;
}
@media (max-width: 360px) {
  .brand-type > span {
    display: none;
  }
  .brand-type strong {
    max-width: 112px;
    font-size: 15px;
  }
  .container {
    width: calc(100% - 32px);
  }
  .chimney-site h1 {
    font-size: 56px;
  }
  .hero-copy {
    padding-inline: 20px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    padding-inline: 17px;
  }
  .hero-description {
    font-size: 16px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .contact-links a {
    font-size: 14px;
  }
}
/* Keep the source screenshot's footer outside the photo crop on tablets. */
@media (min-width: 601px) and (max-width: 1200px) {
}
/* Preserve the supplied header colour; strengthen contrast on new section CTAs. */
.center-action .button-red,
.enquiry-form .button-red {
  background: #df2939;
}
.center-action .button-red:hover,
.enquiry-form .button-red:hover {
  background: #c51f30;
}

/* V1 refinement: extend the photograph through to the viewport edge. */
.hero-photo {
  width: calc(100% + max(32px, (100vw - 1180px) / 2));
  background: #083372;
  mask-image: linear-gradient(to right, transparent, #000 11%);
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.contact-section {
  position: relative;
  background: linear-gradient(118deg, #11589d, #124579);
  padding: 88px 0;
}
.contact-grid {
  gap: 88px;
}
.contact-copy h2 {
  font-size: clamp(40px, 4.3vw, 57px);
  line-height: 1.1;
}
.contact-copy > p:not(.eyebrow) {
  max-width: 440px;
}
.contact-links {
  gap: 23px;
  margin: 34px 0;
}
.contact-links a {
  gap: 16px;
}
.contact-link-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid #ffffff35;
  border-radius: 14px;
  background: #ffffff0a;
}
.contact-links a > span:last-child {
  min-width: 0;
}
.contact-links small {
  display: block;
  color: #b8d9f6;
  font-size: 12px;
  margin-bottom: 2px;
}
.contact-links strong {
  font-size: 17px;
  font-weight: 500;
}
.enquiry-form {
  padding: 36px;
  border: 1px solid #ffffff70;
  box-shadow: 0 22px 55px #082b4d35;
}
.form-heading-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--blue);
  background: #edf5fc;
  border-radius: 13px;
  margin-bottom: 18px;
}
.site-footer {
  background: #0b2745;
  color: #fff;
  padding: 60px 0 25px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1.05fr;
  gap: 55px;
  padding-bottom: 46px;
}
.brand-footer {
  white-space: nowrap;
}
.brand-footer .brand-mark {
  border-radius: 8px;
}
.brand-footer .brand-type strong {
  font-size: 21px;
}
.brand-footer .brand-type > span {
  display: none;
}
.footer-brand-block > p {
  color: #bbccdc;
  font-size: 14px;
  line-height: 1.85;
  margin: 19px 0;
}
.footer-year-range {
  font-size: 10px;
  color: #9cc4e8;
  letter-spacing: 1.6px;
}
.footer-top h3 {
  font-size: 14px;
  letter-spacing: 0;
  margin: 8px 0 10px;
}
.footer-links,
.footer-connect {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
}
.footer-links a,
.footer-connect a {
  font-size: 13px;
  color: #c4d4e4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.footer-connect a {
  overflow-wrap: anywhere;
}
.footer-connect a svg {
  flex-shrink: 0;
}
.footer-links a:hover,
.footer-connect a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-connect .footer-chat {
  color: #fff;
  font-weight: 600;
  margin-top: 8px;
}
.footer-connect p {
  font-size: 11px;
  color: #9db8d2;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  border-top: 1px solid #ffffff20;
  color: #9db5cc;
  font-size: 11px;
}
.footer-bottom a {
  color: #d4e5f5;
}
@media (min-width: 901px) and (max-width: 1200px) {
  .hero-photo img {
    object-fit: contain;
    object-position: center bottom;
  }
  .hero-photo {
    background: linear-gradient(#082a65, #10458c);
  }
}
@media (max-width: 1000px) {
  .contact-grid {
    gap: 40px;
  }
  .contact-links strong {
    font-size: 15px;
  }
  .footer-top {
    gap: 30px;
    grid-template-columns: 1.1fr 0.8fr 1fr;
  }
  .brand-footer {
    gap: 8px;
  }
  .brand-footer .brand-type strong {
    font-size: 18px;
    white-space: normal;
  }
}
@media (max-width: 900px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .hero-copy {
    padding: 48px 24px 30px;
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
  }
  .hero-description {
    white-space: normal;
    max-width: none;
  }
  .hero-photo {
    width: 100%;
    aspect-ratio: 1659 / 948;
    align-self: auto;
    min-height: 0;
    mask-image: linear-gradient(to bottom, transparent, #000 14%);
  }
  .hero-photo img {
    object-fit: cover;
    object-position: center;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-brand-block {
    grid-column: 1 / -1;
  }
  .brand-footer .brand-type strong {
    font-size: 21px;
  }
}
@media (max-width: 600px) {
  .contact-section {
    padding: 58px 0;
  }
  .contact-grid {
    gap: 34px;
  }
  .contact-copy h2 {
    font-size: 43px;
  }
  .contact-links strong {
    font-size: 15px;
  }
  .contact-link-icon {
    width: 43px;
    height: 43px;
  }
  .enquiry-form {
    padding: 27px 24px;
  }
  .site-footer {
    padding: 40px 0 22px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }
  .footer-brand-block {
    grid-column: auto;
  }
  .footer-brand-block > p {
    margin: 14px 0;
  }
  .footer-top h3 {
    margin-top: 0;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 10px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .footer-bottom a {
    margin-left: auto;
  }
}

.hub-main {
  min-height: 66vh;
}
.hub-intro {
  padding: 78px 0 65px;
  background: #edf5fc;
  border-bottom: 1px solid #e1eaf3;
}
.hub-intro h1 {
  color: var(--navy);
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: -3px;
  line-height: 1.1;
}
.hub-intro > .container > p:last-child {
  max-width: 640px;
  margin-top: 23px;
  font-size: 20px;
  line-height: 1.7;
  color: var(--soft);
}
.hub-empty {
  padding-block: 64px 78px;
}
.hub-empty-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  color: var(--blue);
  background: #edf5fc;
  margin-bottom: 23px;
}
.hub-empty h2 {
  font-size: 30px;
  letter-spacing: -1px;
  line-height: 1.25;
}
.hub-empty > p {
  max-width: 580px;
  margin-top: 16px;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.75;
}
.hub-back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  margin-top: 27px;
}
.hub-back-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.desktop-nav a[aria-current='page'],
.mobile-sheet a[aria-current='page'] {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 7px;
}
@media (max-width: 600px) {
  .hub-intro {
    padding: 52px 0 44px;
  }
  .hub-intro > .container > p:last-child {
    font-size: 18px;
  }
  .hub-empty {
    padding-block: 43px 56px;
  }
  .hub-empty h2 {
    font-size: 27px;
  }
  .hub-empty > p {
    font-size: 16px;
  }
}
