:root {
  --navy: #073f80;
  --navy-deep: #052f61;
  --teal: #08a9ba;
  --teal-dark: #048fa1;
  --green: #70c33d;
  --green-dark: #4f982d;
  --orange: #f8882a;
  --yellow: #ffc736;
  --cream: #f7f1e6;
  --paper: #fbf8f1;
  --ink: #17334e;
  --muted: #4f6779;
  --line: rgba(7,63,128,.10);
  --container: 1210px;
  --shadow-paper: 0 18px 40px rgba(31,49,61,.13), 0 3px 8px rgba(31,49,61,.08);
  --shadow-soft: 0 12px 28px rgba(31,49,61,.11), 0 2px 6px rgba(31,49,61,.07);
  --focus: 0 0 0 4px rgba(255,199,54,.58);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--navy); text-underline-offset: 3px; }
a:hover { color: var(--teal-dark); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1,h2,h3,h4,h5,h6 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Inter Display", Inter, "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.035em;
}
p { margin: 0 0 1rem; }
.site-container { width: min(calc(100% - 44px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 15px; border-radius: 10px; background: var(--navy-deep); color: #fff; transform: translateY(-150%); text-decoration: none; font-weight: 800; }
.skip-link:focus { transform: translateY(0); box-shadow: var(--focus); }
:focus-visible { outline: none; box-shadow: var(--focus); }

/* Header */
.topbar { background: var(--navy-deep); color: #fff; }
.site-header { position: relative; z-index: 50; height: 99px; background: transparent; }
.header-paper {
  position: absolute;
  inset: 0 7.2% auto 7.2%;
  min-height: 99px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.97)),
    repeating-linear-gradient(25deg, rgba(7,63,128,.008) 0 2px, transparent 2px 8px);
  border-radius: 0 0 40px 40px;
  box-shadow: 0 7px 15px rgba(31,49,61,.12);
}
.header-inner { min-height: 99px; display: flex; align-items: center; gap: 28px; }
.header-logo-position { flex: 0 0 auto; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: 136px; max-height: 78px; object-fit: contain; }
.header-extra { margin-left: auto; }
.primary-navigation { margin-left: auto; }
.primary-navigation ul, .fallback-menu { display: flex; align-items: center; gap: 20px; margin: 0; padding: 0; list-style: none; }
.primary-navigation li { position: relative; }
.primary-navigation a { position: relative; display: inline-flex; align-items: center; min-height: 48px; padding: 8px 8px; color: var(--navy-deep); font-weight: 800; text-decoration: none; }
.primary-navigation .active > a::after, .primary-navigation .current > a::after, .fallback-menu .active > a::after { content: ""; position: absolute; left: 8px; right: 8px; bottom: 1px; height: 3px; border-radius: 99px; background: var(--teal); }
.primary-navigation li:last-child > a, .primary-navigation .employer-link > a {
  min-height: 49px;
  padding: 10px 23px;
  border-radius: 13px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.19), transparent 44%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 2px, transparent 2px 8px),
    var(--orange);
  border: 1px solid rgba(172,82,14,.17);
  box-shadow: 0 8px 17px rgba(248,136,42,.23), inset 0 -2px 0 rgba(151,73,15,.15);
}
.primary-navigation li:last-child > a::after, .primary-navigation .employer-link > a::after { display: none; }
.primary-navigation ul ul { display: none; position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; padding: 10px; border-radius: 16px; background: #fff; box-shadow: var(--shadow-paper); border: 1px solid var(--line); }
.primary-navigation li:hover > ul, .primary-navigation li:focus-within > ul { display: block; }
.primary-navigation ul ul a { width: 100%; }
.menu-toggle { display: none; align-items: center; gap: 5px; margin-left: auto; padding: 10px 12px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--navy-deep); font-weight: 800; }
.menu-toggle span { margin-right: 7px; }
.menu-toggle i { display: block; width: 23px; height: 3px; border-radius: 4px; background: currentColor; }

/* Hero */
.hero-paper {
  position: relative;
  min-height: 487px;
  margin-top: -2px;
  overflow: hidden;
  background:
    linear-gradient(rgba(251,248,241,.96), rgba(251,248,241,.96)),
    repeating-linear-gradient(0deg, rgba(63,44,26,.018) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(63,44,26,.012) 0 1px, transparent 1px 7px);
}
.hero-paper::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .33; background: radial-gradient(circle at 40% 38%, transparent 0 34%, rgba(255,255,255,.4) 80%), repeating-linear-gradient(22deg, rgba(114,90,61,.022) 0 2px, transparent 2px 10px); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,.93fr) minmax(480px,1.07fr); grid-template-rows: 1fr auto; gap: 18px 68px; padding-top: 65px; }
.hero-copy { align-self: start; padding-left: 35px; padding-top: 14px; }
.hero-copy h1 { max-width: 520px; font-size: clamp(4.15rem, 6.2vw, 6.1rem); line-height: .95; letter-spacing: -.058em; text-wrap: balance; }
.hero-description { max-width: 420px; margin-top: 24px; color: var(--navy); font-size: 1.07rem; line-height: 1.67; }
.hero-art { position: relative; min-height: 345px; }
.brand-paper-card { position: absolute; top: 5px; left: 0; width: 492px; height: 332px; display: grid; place-items: center; padding: 40px; border-radius: 25px; background:
  linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.91)),
  repeating-linear-gradient(135deg, rgba(7,63,128,.012) 0 2px, transparent 2px 9px);
  box-shadow: var(--shadow-paper); transform: rotate(-1.7deg); }
.brand-paper-card img { width: 356px; filter: drop-shadow(0 7px 10px rgba(7,63,128,.05)); }
.hero-leaves { position: absolute; left: -112px; bottom: 26px; width: 118px; filter: drop-shadow(0 7px 7px rgba(31,49,61,.18)); }
.hero-heart { position: absolute; left: 12px; bottom: 12px; z-index: 3; width: 69px; height: 69px; display: grid; place-items: center; border-radius: 50%; background:
  linear-gradient(145deg, rgba(255,255,255,.12), transparent 45%),
  repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 2px, transparent 2px 8px),
  var(--teal-dark); color: #fff; font-size: 34px; box-shadow: var(--shadow-soft); transform: rotate(-5deg); }
.hero-plane { position: absolute; right: -12px; top: 103px; width: 120px; filter: drop-shadow(0 9px 9px rgba(7,63,128,.18)); }
.plane-trail { position: absolute; right: 0; top: 164px; width: 216px; height: 210px; overflow: visible; }
.plane-trail path { fill: none; stroke: #f1a900; stroke-width: 5; stroke-linecap: round; stroke-dasharray: 10 10; }
.hero-cloud { position: absolute; right: -118px; bottom: -3px; width: 210px; filter: drop-shadow(0 9px 9px rgba(31,49,61,.10)); }
.hero-star { position: absolute; right: 98px; top: 9px; color: var(--orange); font-size: 52px; transform: rotate(9deg); filter: drop-shadow(0 5px 5px rgba(31,49,61,.1)); }

.hero-edge { position: absolute; z-index: 1; pointer-events: none; }
.hero-edge-left { left: -85px; top: -5px; width: 250px; height: 230px; border-radius: 38% 62% 70% 30% / 35% 52% 48% 65%; background:
  linear-gradient(160deg, rgba(255,255,255,.10), transparent 45%),
  repeating-linear-gradient(120deg, rgba(255,255,255,.05) 0 2px, transparent 2px 8px),
  #078fa9; transform: rotate(-9deg); }
.hero-edge-top-right { right: -34px; top: -5px; width: 278px; height: 178px; border-radius: 30% 0 55% 45%; background: linear-gradient(145deg, #72c33e 0%, #9bd85c 100%); transform: rotate(-7deg); }
.hero-edge-bottom-left { left: -90px; bottom: -90px; width: 410px; height: 230px; border-radius: 60% 40% 10% 0; background: linear-gradient(145deg, #ffc736, #f39b21); transform: rotate(13deg); }
.hero-edge-bottom-right { right: -30px; bottom: -100px; width: 355px; height: 255px; border-radius: 65% 35% 0 0; background: linear-gradient(145deg, #65c5ce, #b8e6e7); transform: rotate(-14deg); }

.intent-panel { grid-column: 1 / -1; align-self: end; justify-self: start; width: 815px; margin-left: 35px; margin-bottom: 16px; display: grid; grid-template-columns: 230px 255px 1fr; gap: 15px; align-items: center; padding: 15px 19px; border-radius: 20px; background:
  linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.91)),
  repeating-linear-gradient(135deg, rgba(7,63,128,.009) 0 2px, transparent 2px 9px);
  box-shadow: var(--shadow-soft); }
.intent-panel label { padding-left: 19px; color: var(--navy-deep); font-size: 1.18rem; font-weight: 800; }
.custom-select-wrap { position: relative; }
.custom-select-wrap::after { content: "⌄"; position: absolute; right: 16px; top: 50%; transform: translateY(-57%); color: var(--navy-deep); font-size: 1.6rem; pointer-events: none; }
.custom-select-wrap select { width: 100%; min-height: 51px; appearance: none; padding: 8px 48px 8px 22px; border: 2px solid var(--teal); border-radius: 13px; background: rgba(255,255,255,.72); color: var(--navy-deep); font-weight: 800; box-shadow: inset 0 0 0 1px rgba(255,255,255,.8); }
.paper-button { position: relative; overflow: hidden; min-height: 52px; padding: 11px 20px; border: 1px solid rgba(171,79,12,.18); border-radius: 13px; color: #fff; background:
  linear-gradient(180deg, rgba(255,255,255,.20), transparent 45%),
  repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 2px, transparent 2px 8px),
  var(--orange); box-shadow: 0 11px 19px rgba(248,136,42,.25), inset 0 -2px 0 rgba(151,70,11,.13); font-weight: 800; }
.paper-button::after { content: ""; position: absolute; inset: -5px; opacity: 0; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; background:
  linear-gradient(120deg, transparent 18%, rgba(255,255,255,.22) 24%, transparent 30%),
  linear-gradient(55deg, transparent 49%, rgba(115,55,10,.14) 55%, transparent 61%),
  linear-gradient(158deg, transparent 66%, rgba(255,255,255,.17) 72%, transparent 78%); }
.paper-button:hover::after { opacity: 1; transform: translateY(0); }
.paper-button:hover { background-color: #ec7c20; }
.intent-submit span { font-size: 1.2rem; margin-left: 4px; }

/* First row of resource cards */
.pathway-strip { position: relative; z-index: 5; padding: 21px 0 10px; background:
  linear-gradient(180deg, rgba(255,255,255,.98), rgba(252,250,245,.98)),
  repeating-linear-gradient(0deg, rgba(63,44,26,.012) 0 1px, transparent 1px 5px); }
.pathway-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pathway-card { position: relative; min-height: 179px; display: grid; grid-template-columns: 92px 1fr; gap: 15px; align-items: start; padding: 27px 27px 22px 19px; border-radius: 17px; box-shadow: var(--shadow-soft); text-decoration: none; overflow: hidden; color: var(--navy-deep); }
.pathway-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(135deg, rgba(7,63,128,.012) 0 2px, transparent 2px 9px); opacity: .8; }
.pathway-jobs { background: linear-gradient(135deg,#e8f8fc,#effbff); }
.pathway-support { background: linear-gradient(135deg,#f0f9e9,#f5fbe9); }
.pathway-information { background: linear-gradient(135deg,#fff4e8,#fff8ef); }
.round-icon { position: relative; z-index: 2; width: 76px; height: 76px; display: grid; place-items: center; border-radius: 50%; color: #fff; box-shadow: 0 8px 17px rgba(31,49,61,.12); }
.round-icon svg { width: 42px; fill: currentColor; }
.pathway-jobs .round-icon { background: linear-gradient(145deg,#10afbf,#048fa1); }
.pathway-support .round-icon { background: linear-gradient(145deg,#82ca48,#5aab31); }
.pathway-information .round-icon { background: linear-gradient(145deg,#ff9b35,#f27917); }
.pathway-card > div:nth-child(2) { position: relative; z-index: 2; }
.pathway-card h2 { margin: 1px 0 8px; font-size: 1.3rem; }
.pathway-jobs h2,.pathway-jobs span { color: var(--teal-dark); }
.pathway-support h2,.pathway-support span { color: var(--green-dark); }
.pathway-information h2,.pathway-information span { color: #e86e12; }
.pathway-card p { max-width: 195px; margin-bottom: 10px; color: #38536b; font-size: .91rem; line-height: 1.45; }
.pathway-card span { font-weight: 800; font-size: .94rem; }
.pathway-card b { margin-left: 5px; font-size: 1.1rem; }
.card-decoration { position: absolute; z-index: 1; pointer-events: none; filter: drop-shadow(0 5px 5px rgba(31,49,61,.12)); }
.plane-small { right: 23px; bottom: 19px; width: 74px; }
.sprig-small { right: 2px; bottom: -5px; width: 103px; }
.sun-small { right: 5px; bottom: -5px; width: 132px; }

/* Audience row */
.audience-section { position: relative; padding: 4px 0 33px; background:
  linear-gradient(180deg, rgba(255,255,255,.98), rgba(252,250,245,.98)),
  repeating-linear-gradient(0deg, rgba(63,44,26,.012) 0 1px, transparent 1px 5px); }
.audience-heading { display: flex; align-items: center; justify-content: center; gap: 13px; margin: 5px 0 18px; color: var(--navy-deep); font-size: 1.32rem; letter-spacing: -.02em; text-align: center; }
.audience-heading span { color: var(--teal); font-size: 1rem; }
.audience-heading b { color: var(--orange); font-size: 1.3rem; }
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.audience-card { position: relative; min-height: 180px; display: grid; grid-template-columns: 1fr 57%; padding: 21px 18px 16px 26px; border-radius: 17px; box-shadow: var(--shadow-soft); overflow: hidden; text-decoration: none; color: var(--navy-deep); }
.employer-card { background: linear-gradient(135deg,#eaf8fc,#f0fbfc); }
.family-card { background: linear-gradient(135deg,#f1f9e8,#f7fbe9); }
.everyone-card { background: linear-gradient(135deg,#fff5e8,#fff9f0); }
.audience-card::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(7,63,128,.01) 0 2px, transparent 2px 9px); pointer-events: none; }
.audience-copy { position: relative; z-index: 2; }
.audience-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.audience-card p { margin-bottom: 11px; color: #3b5368; font-size: .86rem; line-height: 1.45; }
.audience-card span { font-size: .86rem; font-weight: 800; }
.employer-card span { color: var(--teal-dark); }
.family-card span { color: var(--green-dark); }
.everyone-card span { color: #e86e12; }
.audience-card img { position: absolute; z-index: 1; right: -3px; bottom: -1px; width: 59%; max-height: 162px; object-fit: contain; object-position: bottom right; filter: drop-shadow(0 6px 6px rgba(31,49,61,.10)); }

/* Joomla content */
.module-section,.component-section,.cta-section { padding: 58px 0; background: #fff; }
.inner-main { min-height: 60vh; background: #fff; }
.inner-hero { padding: 58px 0; background: var(--cream); }
.inner-layout { display: grid; grid-template-columns: 1fr; gap: 28px; padding-block: 54px; }
.inner-layout:has(.sidebar) { grid-template-columns: 280px 1fr; }
.sidebar,.moduletable,.module-card { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }

/* Footer */
.site-footer { position: relative; background: var(--navy-deep); color: #dcebf5; }
.site-footer::before { content: ""; position: absolute; left: -4%; right: -4%; top: -34px; height: 56px; border-radius: 50% 50% 0 0 / 80% 80% 0 0; background: var(--navy-deep); }
.footer-inner { position: relative; z-index: 1; min-height: 190px; display: grid; grid-template-columns: 1.1fr 2fr; gap: 48px; padding: 46px 0 30px; }
.footer-brand img { width: 190px; padding: 9px; border-radius: 14px; background: #fff; }
.footer-brand p { max-width: 340px; margin-top: 12px; }
.site-footer a { color: #fff; }
.footer-bottom { padding: 15px 0; border-top: 1px solid rgba(255,255,255,.13); }
.footer-bottom p { margin: 0; }

/* Forms & general */
input,textarea,select { max-width: 100%; }
.form-control,.form-select,input[type="text"],input[type="email"],input[type="password"],textarea { min-height: 46px; padding: 10px 13px; border: 1px solid #ccd9df; border-radius: 10px; background: #fff; }
.form-control:focus,.form-select:focus,input:focus,textarea:focus,select:focus { border-color: var(--teal); box-shadow: var(--focus); outline: none; }
.alert { border-radius: 12px; }

@media (max-width: 1280px) {
  :root { --container: 1120px; }
  .header-paper { inset-inline: 4%; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 18px 50px; }
  .hero-copy { padding-left: 20px; }
  .brand-paper-card { width: 455px; }
  .intent-panel { margin-left: 20px; }
}

@media (max-width: 1024px) {
  .site-header { height: 88px; }
  .header-paper { inset-inline: 2%; min-height: 88px; border-radius: 0 0 28px 28px; }
  .header-inner { min-height: 88px; }
  .brand img { width: 116px; }
  .primary-navigation ul,.fallback-menu { gap: 8px; }
  .primary-navigation a { padding-inline: 7px; font-size: .92rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 18px 28px; padding-top: 48px; }
  .hero-copy h1 { font-size: clamp(3.7rem,7.3vw,5.2rem); }
  .brand-paper-card { width: 100%; height: 310px; }
  .brand-paper-card img { width: 315px; }
  .hero-plane { width: 95px; right: -20px; }
  .hero-cloud { width: 165px; right: -90px; }
  .intent-panel { width: min(100%, 780px); grid-template-columns: 190px 235px 1fr; }
  .pathway-card { grid-template-columns: 72px 1fr; padding-inline: 15px; }
  .round-icon { width: 64px; height: 64px; }
  .round-icon svg { width: 35px; }
  .audience-card { grid-template-columns: 1fr 50%; padding-left: 18px; }
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .primary-navigation { display: none; position: absolute; top: 82px; left: 2%; right: 2%; margin: 0; padding: 14px; border-radius: 20px; background: #fff; box-shadow: var(--shadow-paper); }
  .primary-navigation.is-open { display: block; }
  .primary-navigation ul,.fallback-menu { display: block; }
  .primary-navigation a { width: 100%; padding: 12px 14px; }
  .primary-navigation li:last-child > a,.primary-navigation .employer-link > a { margin-top: 8px; justify-content: center; }
  .primary-navigation ul ul { position: static; display: block; box-shadow: none; border: 0; padding-left: 14px; }
  .hero-grid { grid-template-columns: 1fr; grid-template-rows: auto auto auto; padding-top: 45px; }
  .hero-copy { padding-left: 22px; }
  .hero-copy h1 { max-width: 640px; }
  .hero-description { max-width: 580px; }
  .hero-art { min-height: 390px; }
  .brand-paper-card { width: min(100%, 560px); left: 50%; transform: translateX(-50%) rotate(-1.4deg); }
  .hero-leaves { left: calc(50% - 350px); }
  .hero-heart { left: calc(50% - 245px); }
  .hero-plane { right: calc(50% - 345px); }
  .plane-trail { right: calc(50% - 350px); }
  .hero-cloud { right: calc(50% - 390px); }
  .hero-star { right: calc(50% - 275px); }
  .intent-panel { grid-column: 1; width: calc(100% - 44px); margin: 0 auto 24px; grid-template-columns: 1fr 1fr; }
  .intent-panel label { grid-column: 1 / -1; padding-left: 0; }
  .intent-submit { width: 100%; }
  .pathway-grid,.audience-grid { grid-template-columns: 1fr; }
  .pathway-card { min-height: 165px; }
  .audience-card { min-height: 190px; }
  .footer-inner { grid-template-columns: 1fr; }
  .inner-layout:has(.sidebar) { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-container { width: min(calc(100% - 30px), var(--container)); }
  .hero-copy { padding-inline: 7px; }
  .hero-copy h1 { font-size: clamp(3.35rem,12vw,4.7rem); }
  .hero-description { font-size: 1rem; }
  .intent-panel { width: calc(100% - 16px); }
}

@media (max-width: 520px) {
  .site-header { height: 79px; }
  .header-paper { inset-inline: 0; min-height: 79px; border-radius: 0 0 22px 22px; }
  .header-inner { min-height: 79px; }
  .brand img { width: 100px; }
  .menu-toggle span { display: none; }
  .primary-navigation { top: 72px; }
  .hero-paper { min-height: 0; }
  .hero-grid { padding-top: 35px; gap: 20px; }
  .hero-copy h1 { font-size: clamp(3rem,15.5vw,4.15rem); line-height: .93; }
  .hero-description { margin-top: 18px; }
  .hero-art { min-height: 330px; }
  .brand-paper-card { top: 8px; height: 275px; padding: 28px 23px; border-radius: 21px; }
  .brand-paper-card img { width: 265px; }
  .hero-leaves { left: 4px; bottom: 10px; width: 82px; }
  .hero-heart { left: 73px; bottom: 8px; width: 54px; height: 54px; font-size: 27px; }
  .hero-plane { right: 2px; top: 132px; width: 73px; }
  .plane-trail { right: -30px; top: 170px; width: 150px; }
  .hero-cloud { right: -62px; bottom: 3px; width: 130px; }
  .hero-star { right: 12px; top: 4px; font-size: 37px; }
  .hero-edge-left { width: 160px; height: 160px; }
  .hero-edge-top-right { width: 170px; height: 120px; }
  .hero-edge-bottom-left { width: 240px; height: 150px; }
  .hero-edge-bottom-right { width: 230px; height: 170px; }
  .intent-panel { grid-template-columns: 1fr; gap: 10px; padding: 15px; border-radius: 17px; }
  .intent-panel label { font-size: 1.08rem; }
  .custom-select-wrap select,.paper-button { min-height: 50px; }
  .pathway-strip { padding-top: 16px; }
  .pathway-card { grid-template-columns: 64px 1fr; min-height: 168px; padding: 22px 16px; }
  .round-icon { width: 58px; height: 58px; }
  .round-icon svg { width: 31px; }
  .pathway-card p { max-width: 180px; }
  .card-decoration { opacity: .72; }
  .audience-heading { font-size: 1.12rem; }
  .audience-card { grid-template-columns: 1fr 48%; min-height: 200px; padding: 19px 14px 14px 18px; }
  .audience-card img { width: 58%; max-height: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Desktop calibration to the 1448 × 1086 approved mockup */
@media (min-width: 1025px) {
  .hero-grid { padding-top: 15px; }
  .hero-copy { padding-top: 63px; }
  .hero-copy h1 { max-width: 525px; font-size: clamp(4.35rem, 5.05vw, 4.75rem); line-height: .95; }
  .hero-description { margin-top: 22px; }
  .hero-art { min-height: 352px; }
  .brand-paper-card { top: 4px; }
  .intent-panel { margin-bottom: 8px; }
}

/* Final visual correction pass against the approved desktop mockup */
@media (min-width: 1025px) {
  .brand img { width: 151px; }
  .hero-grid { gap: 18px 45px; }
}
.audience-section { padding-top: 24px; padding-bottom: 76px; overflow: hidden; }
.audience-section::before,
.audience-section::after {
  content: "";
  position: absolute;
  bottom: -82px;
  width: 360px;
  height: 125px;
  background: #073f80;
  border-radius: 55% 45% 0 0 / 100% 100% 0 0;
  z-index: 0;
}
.audience-section::before { left: -70px; transform: rotate(6deg); }
.audience-section::after { right: -80px; transform: rotate(-6deg); }
.audience-section .site-container { position: relative; z-index: 1; }
.site-footer::before { display: none; }
.error-page { min-height: 100vh; display: grid; place-items: center; padding: 28px; background: linear-gradient(135deg,#eaf8fb,#fff8e9); }
.error-card { width: min(100%,680px); padding: 42px; border-radius: 28px; background: #fff; text-align: center; box-shadow: var(--shadow-paper); }
.error-card img { width: 240px; }
.error-code { margin: 10px 0 0; color: var(--orange); font-size: 5rem; font-weight: 900; }
.error-card form { display: grid; gap: 10px; margin-top: 20px; text-align: left; }
.error-card .paper-button { display: inline-flex; align-items: center; justify-content: center; margin-top: 10px; text-decoration: none; }
