:root {
  --bg: #f7efe4;
  --surface: rgba(255, 251, 246, 0.84);
  --surface-strong: #fffaf5;
  --line: rgba(74, 47, 34, 0.1);
  --text: #362920;
  --muted: #6d5f55;
  --coral: #e5756b;
  --coral-deep: #d85e53;
  --gold: #efbe52;
  --mint: #61c090;
  --sky: #74b8e9;
  --shadow: 0 26px 70px rgba(93, 64, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(229, 117, 107, 0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(97, 192, 144, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf5ec 0%, #f7efe4 100%);
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: #fff;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1001;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(16px);
  background: rgba(251, 245, 236, 0.86);
  border-bottom: 1px solid rgba(74, 47, 34, 0.08);
}

#home,
#programmes,
#campus,
#contact,
#enquiry {
  scroll-margin-top: 120px;
}

.nav-shell,
.hero-layout,
.feature-band,
.programme-grid,
.campus-grid,
.admissions-panel,
.contact-grid,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-shell {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.brand-lockup {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
  padding-top: 0;
}

.brand-title {
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.6rem, 2.3vw, 2.18rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--coral);
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.92rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.desktop-nav a,
.mobile-menu a {
  text-decoration: none;
}

.desktop-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.desktop-nav a:hover {
  background: rgba(229, 117, 107, 0.12);
  color: var(--coral-deep);
}

.header-cta,
.mobile-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.header-cta {
  min-height: 52px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  color: #fffaf7;
  box-shadow: 0 14px 30px rgba(229, 117, 107, 0.22);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 34px;
  height: 3px;
  margin: 6px 0;
  background: var(--coral);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 8px;
  padding: 0 0 18px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 220ms ease, opacity 220ms ease;
}

.mobile-menu.is-open {
  max-height: 560px;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(74, 47, 34, 0.07);
  font-weight: 600;
}

.mobile-menu a.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  background: linear-gradient(135deg, var(--coral), var(--gold)) !important;
  color: #fffaf7 !important;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  -webkit-text-fill-color: #fffaf7;
}

.hero-section,
.section,
.feature-band {
  position: relative;
}

.hero-section {
  overflow: hidden;
  padding: 44px 0 96px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--coral-deep);
}

.hero-badge {
  display: inline-flex;
  margin-top: 28px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(229, 117, 107, 0.1);
}

.hero-copy h1,
.section-heading h2,
.admissions-panel h2,
.contact-card h3,
.form-card h3,
.programme-card h3,
.campus-copy h3 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  line-height: 0.96;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 7vw, 6rem);
}

.hero-copy h1 span {
  color: var(--coral);
}

.hero-copy h1 em {
  color: var(--mint);
  font-style: normal;
}

.hero-text,
.section-heading p:last-child,
.programme-card p,
.campus-copy p,
.admissions-panel p,
.contact-card p,
.form-note,
address,
.footer-copy,
.footer-branding p {
  color: var(--muted);
}

.hero-text {
  max-width: 520px;
  font-size: 1.14rem;
  line-height: 1.85;
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.button {
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
}

.button-primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: #fffaf7;
  box-shadow: 0 18px 36px rgba(229, 117, 107, 0.2);
}

.button-secondary {
  border-color: rgba(74, 47, 34, 0.16);
  background: rgba(255, 255, 255, 0.66);
  color: var(--text);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-stats div {
  min-width: 132px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(74, 47, 34, 0.08);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.hero-stats strong {
  display: block;
  font-size: 1.7rem;
  font-family: "Baloo 2", cursive;
}

.hero-stats span {
  font-size: 0.94rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 700px;
  overflow: visible;
}

.hero-showcase {
  position: absolute;
  inset: 0;
}

.showcase-main,
.showcase-card,
.feature-band article,
.programme-card,
.campus-card,
.admissions-panel,
.contact-card,
.form-card {
  border: 1px solid rgba(74, 47, 34, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.showcase-main {
  position: absolute;
  top: 8px;
  left: 50%;
  right: auto;
  width: 230px;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
  z-index: 4;
  overflow: visible;
}

.showcase-main img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
}

.showcase-card {
  position: absolute;
  width: 262px;
  min-height: 338px;
  padding: 18px;
  border-radius: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.card-story {
  left: 12px;
  top: 214px;
}

.card-campus {
  right: 12px;
  top: 214px;
}

.card-art {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 240 / 170;
}

.showcase-copy {
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.showcase-copy strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0;
}

.showcase-copy span {
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-orbit-card {
  position: absolute;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(93, 64, 40, 0.12);
  font-weight: 700;
}

.orbit-left {
  top: 136px;
  left: 14px;
  z-index: 4;
}

.orbit-right {
  top: 136px;
  right: 14px;
  z-index: 4;
}

.orbit-bottom {
  left: 50%;
  bottom: 8px;
  padding: 18px 26px;
  font-size: 1.12rem;
  font-weight: 800;
  transform: translateX(-50%);
  z-index: 4;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.55;
}

.hero-glow-coral {
  top: 120px;
  left: -40px;
  width: 220px;
  height: 220px;
  background: rgba(229, 117, 107, 0.16);
}

.hero-glow-mint {
  right: 10%;
  top: 260px;
  width: 320px;
  height: 320px;
  background: rgba(97, 192, 144, 0.16);
}

.hero-glow-gold {
  right: 22%;
  top: 68px;
  width: 180px;
  height: 180px;
  background: rgba(239, 190, 82, 0.16);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: -26px;
}

.feature-band article {
  padding: 24px;
  border-radius: 28px;
}

.feature-band h2,
.section-heading h2,
.admissions-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.feature-band h2 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.feature-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section {
  padding: 98px 0 0;
}

.section-heading {
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  max-width: 12ch;
  margin-inline: auto;
}

.section-heading p:last-child {
  margin: 14px auto 0;
  max-width: 62ch;
  line-height: 1.85;
}

.programme-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.programme-card {
  min-height: 265px;
  padding: 26px;
  border-radius: 30px;
}

.programme-age {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.programme-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.programme-card p {
  line-height: 1.8;
  margin: 0;
}

.tone-coral {
  background: linear-gradient(180deg, rgba(255, 240, 235, 0.9), rgba(255, 251, 247, 0.92));
}

.tone-coral .programme-age {
  background: rgba(229, 117, 107, 0.12);
  color: var(--coral-deep);
}

.tone-sky {
  background: linear-gradient(180deg, rgba(236, 246, 255, 0.92), rgba(250, 253, 255, 0.94));
}

.tone-sky .programme-age {
  background: rgba(116, 184, 233, 0.16);
  color: #438fc3;
}

.tone-mint {
  background: linear-gradient(180deg, rgba(234, 250, 242, 0.92), rgba(248, 255, 251, 0.94));
}

.tone-mint .programme-age {
  background: rgba(97, 192, 144, 0.16);
  color: #379d6d;
}

.tone-gold {
  background: linear-gradient(180deg, rgba(255, 247, 226, 0.94), rgba(255, 252, 244, 0.96));
}

.tone-gold .programme-age {
  background: rgba(239, 190, 82, 0.18);
  color: #b98317;
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.campus-card {
  border-radius: 30px;
  overflow: hidden;
}

.campus-image {
  padding: 16px;
}

.campus-copy {
  padding: 0 24px 24px;
}

.campus-copy h3 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.campus-copy p {
  margin: 0;
  line-height: 1.8;
}

.admissions-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(239, 190, 82, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(53, 41, 32, 0.96), rgba(73, 56, 45, 0.96));
  color: #fff;
}

.admissions-panel .eyebrow,
.admissions-panel p {
  color: rgba(255, 248, 242, 0.82);
}

.admissions-panel .button-primary {
  background: linear-gradient(135deg, #f38779, #efbe52);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 90px;
}

.contact-card,
.form-card {
  border-radius: 32px;
  padding: 30px;
}

.contact-card h3,
.form-card h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

address {
  font-style: normal;
  line-height: 1.95;
  font-size: 1rem;
}

.contact-list {
  margin-top: 26px;
}

.contact-list p {
  margin: 0 0 10px;
  line-height: 1.8;
}

.contact-list strong {
  display: inline-block;
  min-width: 76px;
  color: var(--text);
}

.contact-list a {
  color: var(--coral-deep);
  text-decoration: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

form label {
  display: block;
  margin-bottom: 14px;
}

form span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(74, 47, 34, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(229, 117, 107, 0.14);
  border-color: rgba(229, 117, 107, 0.42);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-note {
  margin: 12px 0 0;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 0 42px;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-branding img {
  width: 58px;
}

.footer-branding strong {
  display: block;
  font-size: 1.1rem;
}

.footer-branding p,
.footer-copy {
  margin: 0;
}

@media (max-width: 1100px) {
  .hero-layout,
  .feature-band,
  .programme-grid,
  .campus-grid,
  .contact-grid,
  .admissions-panel,
  .site-footer {
    width: min(100% - 24px, 100%);
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .feature-band,
  .programme-grid,
  .campus-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 88px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .brand-lockup {
    gap: 12px;
    align-items: center;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-title {
    font-size: clamp(1.14rem, 4.4vw, 1.4rem);
  }

  .hero-section {
    padding-top: 26px;
  }

  .hero-badge {
    margin-top: 42px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .showcase-main {
    top: 8px;
    left: 50%;
    right: auto;
    width: min(52vw, 190px);
    transform: translateX(-50%);
  }

  .card-story {
    top: 184px;
    left: 0;
    transform: none;
  }

  .card-campus {
    top: 184px;
    right: 0;
    left: auto;
    bottom: auto;
    transform: none;
  }

  .orbit-left {
    top: 126px;
    left: 10px;
    transform: none;
  }

  .orbit-right {
    top: 126px;
    right: 10px;
    left: auto;
    transform: none;
  }

  .orbit-bottom {
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
  }
}

@media (max-width: 680px) {
  .hero-visual,
  .feature-band,
  .programme-grid,
  .campus-grid,
  .contact-grid,
  .form-grid,
  .admissions-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    background: rgba(251, 245, 236, 0.94);
  }

  .nav-shell,
  .mobile-menu,
  .hero-layout,
  .feature-band,
  .programme-grid,
  .campus-grid,
  .admissions-panel,
  .contact-grid,
  .site-footer {
    width: min(100% - 18px, 100%);
  }

  .nav-shell {
    gap: 10px;
  }

  .brand-copy {
    padding-top: 0;
  }

  .hero-copy h1 {
    font-size: 3.05rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions .button,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 1040px;
  }

  .showcase-card {
    width: min(100%, 320px);
    min-height: 0;
  }

  .card-story {
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
  }

  .card-campus {
    left: 50%;
    right: auto;
    top: 540px;
    bottom: auto;
    transform: translateX(-50%);
  }

  .showcase-main {
    top: 8px;
    width: min(48vw, 170px);
    height: auto;
    padding: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    opacity: 1;
    z-index: 4;
  }

  .hero-orbit-card {
    padding: 12px 14px;
    font-size: 0.9rem;
    z-index: 3;
  }

  .orbit-left {
    left: 50%;
    top: 102px;
    bottom: auto;
    transform: translateX(-50%);
  }

  .orbit-right {
    display: none;
  }

  .orbit-bottom {
    left: 50%;
    bottom: 22px;
    padding: 16px 22px;
    font-size: 1rem;
    transform: translateX(-50%);
  }

  .hero-stats div,
  .programme-card,
  .campus-card,
  .contact-card,
  .form-card,
  .admissions-panel,
  .feature-band article {
    border-radius: 24px;
  }

  .section {
    padding-top: 74px;
  }

  .site-footer {
    padding-bottom: 28px;
  }
}

/* ═══════════════════════════════════════════
   MONTHLY SHARING & CARING PROGRAMME
═══════════════════════════════════════════ */
.sharing-programme {
  width: min(1180px, calc(100% - 32px));
  margin: 48px auto 0;
  border-radius: 34px;
  padding: 40px 44px;
  background: linear-gradient(135deg, rgba(255,248,236,0.96), rgba(255,252,244,0.98));
  border: 1px solid rgba(239, 190, 82, 0.22);
  box-shadow: 0 26px 70px rgba(93, 64, 40, 0.1);
  position: relative;
  overflow: hidden;
}

.sharing-programme::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(239,190,82,0.18), transparent 70%);
  pointer-events: none;
}

.sharing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(239, 190, 82, 0.18);
  color: #b98317;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.sharing-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.sharing-icon {
  font-size: 2.8rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}

.sharing-header h3 {
  margin: 0 0 8px;
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  color: var(--text);
}

.sharing-subtitle {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 62ch;
}

.sharing-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sharing-pillar {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(74, 47, 34, 0.07);
}

.pillar-emoji {
  font-size: 1.9rem;
  display: block;
  margin-bottom: 12px;
}

.sharing-pillar strong {
  display: block;
  font-size: 1.02rem;
  font-family: "Baloo 2", cursive;
  margin-bottom: 8px;
  color: var(--text);
}

.sharing-pillar p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   SCHOOL VAN FACILITY
═══════════════════════════════════════════ */
.van-facility {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  border-radius: 28px;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(97,192,144,0.1), rgba(116,184,233,0.1));
  border: 1px solid rgba(97, 192, 144, 0.24);
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.van-icon {
  font-size: 2.6rem;
  flex-shrink: 0;
}

.van-content {
  flex: 1;
  min-width: 220px;
}

.van-content h3 {
  margin: 0 0 6px;
  font-family: "Baloo 2", cursive;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
}

.van-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.van-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SHARING & VAN
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .sharing-programme {
    padding: 30px 26px;
  }

  .sharing-pillars {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sharing-header {
    flex-direction: column;
    gap: 12px;
  }

  .van-facility {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 24px 22px;
  }

  .van-cta {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .sharing-programme {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .sharing-pillars {
    grid-template-columns: 1fr;
  }

  .van-facility {
    border-radius: 24px;
  }
}
