:root {
  --navy: #082d3a;
  --navy-2: #0d3b49;
  --ink: #10262e;
  --coral: #ff6259;
  --coral-dark: #d6403a;
  --teal: #39c6b4;
  --yellow: #ffd052;
  --blue: #7cc9f0;
  --pink: #f5a6bb;
  --violet: #bda8f3;
  --green: #9bd96e;
  --paper: #f5f8f7;
  --white: #ffffff;
  --line: #cfdcdd;
  --muted: #50656c;
  --shadow: 0 24px 70px rgba(8, 45, 58, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; color: var(--white); background: var(--navy); border-radius: 8px; transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }
.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 100; height: 4px; background: transparent; }
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--coral); }

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 80px;
  padding: 12px clamp(20px, 4vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(8, 45, 58, 0.1);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); text-decoration: none; line-height: 1; }
.wcs-logo { width: auto; height: 48px; }
.brand-divider { width: 1px; height: 38px; background: rgba(8, 45, 58, 0.2); }
.rise-lockup strong, .rise-lockup small { display: block; letter-spacing: 0.08em; }
.rise-lockup strong { font-size: 0.98rem; }
.rise-lockup small { margin-top: 5px; color: var(--muted); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }
.site-nav { display: flex; justify-content: center; gap: clamp(18px, 3vw, 42px); }
.site-nav a { position: relative; color: var(--navy); font-size: 0.92rem; font-weight: 700; text-decoration: none; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; background: var(--coral); transform: scaleX(0); transition: transform 180ms ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.header-cta { padding: 12px 17px; color: var(--white); background: var(--navy); border-radius: 999px; font-size: 0.88rem; font-weight: 700; text-decoration: none; }
.header-cta span { margin-left: 8px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: transparent; border: 0; }
.menu-toggle > span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--navy); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: clamp(36px, 6vw, 100px);
  min-height: min(780px, calc(100svh - 80px));
  padding: clamp(56px, 7vw, 110px) clamp(20px, 6vw, 104px) clamp(70px, 8vw, 120px);
  background: radial-gradient(circle at 82% 20%, rgba(57, 198, 180, 0.24), transparent 30%), var(--paper);
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; top: -210px; right: -160px; width: 520px; height: 520px; border: 1px solid rgba(8, 45, 58, 0.16); border-radius: 50%; box-shadow: 0 0 0 62px rgba(8, 45, 58, 0.035), 0 0 0 124px rgba(8, 45, 58, 0.025); }
.hero-copy, .hero-visual { position: relative; z-index: 2; }
.eyebrow, .section-kicker { margin: 0 0 18px; color: var(--coral-dark); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 30px; height: 3px; background: var(--coral); }
.hero h1 { max-width: 720px; margin: 0; color: var(--navy); font-size: clamp(3.25rem, 6vw, 6.8rem); line-height: 0.92; letter-spacing: -0.064em; }
.hero-intro { max-width: 620px; margin: 30px 0 0; color: #334d55; font-size: clamp(1.08rem, 1.45vw, 1.3rem); line-height: 1.55; }
.hero-actions, .next-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 21px; border: 2px solid transparent; border-radius: 999px; cursor: pointer; font-weight: 800; text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible + span { outline: 3px solid var(--yellow); outline-offset: 3px; }
.button-primary { color: var(--white); background: var(--coral); box-shadow: 0 11px 28px rgba(214, 64, 58, 0.24); }
.button-primary:hover { background: var(--coral-dark); }
.button-primary span { margin-left: 13px; }
.button-secondary { color: var(--navy); border-color: rgba(8, 45, 58, 0.25); background: rgba(255,255,255,0.5); }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 630px; margin: 42px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.hero-facts li { padding: 17px 18px 0 0; }
.hero-facts li + li { padding-left: 18px; border-left: 1px solid var(--line); }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { color: var(--navy); font-size: 0.9rem; }
.hero-facts span { margin-top: 3px; color: var(--muted); font-size: 0.82rem; }

.hero-visual { width: min(100%, 680px); justify-self: end; padding: 22px 32px 36px 0; }
.image-frame { position: relative; aspect-ratio: 1.89 / 1; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(8,45,58,0.56)); pointer-events: none; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-label { position: absolute; z-index: 2; display: flex; align-items: center; gap: 9px; padding: 11px 15px; color: var(--navy); background: rgba(255,255,255,0.94); border-radius: 999px; box-shadow: 0 10px 30px rgba(8,45,58,0.18); font-size: 0.8rem; font-weight: 800; }
.image-label span { display: grid; place-items: center; width: 27px; height: 27px; color: var(--white); background: var(--coral); border-radius: 50%; font-size: 0.68rem; }
.image-label-top { top: 24px; right: 24px; }
.image-label-bottom { left: 20px; bottom: 24px; }
.hero-stamp { position: absolute; right: 0; bottom: 0; z-index: 3; display: grid; place-items: center; width: 126px; height: 126px; color: var(--navy); background: var(--yellow); border: 6px solid var(--paper); border-radius: 50%; line-height: 1; transform: rotate(7deg); }
.hero-stamp span { font-size: 0.61rem; font-weight: 900; letter-spacing: 0.17em; }
.hero-stamp strong { margin: 4px 0; font-size: 1.28rem; }
.hero-route { position: absolute; bottom: 6%; left: -60px; width: 42%; height: 130px; transform: rotate(-7deg); opacity: 0.36; }
.route-line { position: absolute; inset: 45% 0 auto; height: 5px; background: var(--teal); border-radius: 10px; }
.route-dot { position: absolute; top: calc(45% - 8px); width: 21px; height: 21px; background: var(--paper); border: 5px solid var(--coral); border-radius: 50%; }
.route-dot-one { left: 18%; }.route-dot-two { left: 55%; }.route-dot-three { right: 3%; }

.section-pad { padding: clamp(76px, 9vw, 140px) clamp(20px, 6vw, 104px); }
.section-heading { max-width: 780px; }
.section-heading h2, .eligibility-copy h2, .how-copy h2, .next-card h2 { margin: 0; color: var(--navy); font-size: clamp(2.4rem, 4.5vw, 4.9rem); line-height: 1.02; letter-spacing: -0.048em; }
.section-heading > p:last-child { max-width: 650px; margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; }
.section-heading.compact h2 { font-size: clamp(2.35rem, 4vw, 4.2rem); }

.pathway-section { background: var(--white); }
.pathway-builder { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr); gap: clamp(30px, 5vw, 74px); align-items: start; margin-top: 54px; }
.pathway-controls fieldset, .eligibility-check fieldset { margin: 0; padding: 0; border: 0; }
.pathway-controls fieldset + fieldset { margin-top: 40px; }
.pathway-controls legend { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; color: var(--navy); font-size: 1rem; font-weight: 900; }
.pathway-controls legend > span, .check-question legend > span { display: inline-grid; place-items: center; flex: 0 0 auto; width: 31px; height: 31px; color: var(--white); background: var(--navy); border-radius: 9px; font-size: 0.77rem; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.choice { display: flex; align-items: center; gap: 13px; min-height: 84px; padding: 15px; text-align: left; color: var(--ink); background: var(--paper); border: 2px solid transparent; border-radius: 16px; cursor: pointer; transition: border-color 160ms ease, background 160ms ease, transform 160ms ease; }
.choice:hover { transform: translateY(-2px); border-color: var(--line); }
.choice.is-selected { background: #fff3f1; border-color: var(--coral); }
.choice-icon { display: grid; place-items: center; flex: 0 0 auto; width: 42px; height: 42px; color: var(--navy); background: var(--white); border-radius: 12px; font-size: 1.25rem; font-weight: 900; }
.choice strong, .choice small { display: block; }
.choice strong { font-size: 0.93rem; }.choice small { margin-top: 2px; color: var(--muted); font-size: 0.76rem; }
.interest-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip, .filter-button { padding: 10px 16px; color: var(--navy); background: var(--white); border: 1px solid #b9c9cb; border-radius: 999px; cursor: pointer; font-size: 0.87rem; font-weight: 800; transition: all 160ms ease; }
.chip:hover, .filter-button:hover { border-color: var(--navy); }
.chip.is-selected { color: var(--white); background: var(--navy); border-color: var(--navy); }
.pathway-result { position: sticky; top: 106px; padding: clamp(25px, 3vw, 38px); color: var(--white); background: var(--navy); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.pathway-result::after { content: ""; position: absolute; right: -90px; bottom: -110px; width: 260px; height: 260px; border: 40px solid rgba(57,198,180,0.14); border-radius: 50%; }
.result-topline { position: relative; z-index: 1; display: flex; justify-content: space-between; padding-bottom: 17px; border-bottom: 1px solid rgba(255,255,255,0.2); color: #b9d2d7; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.result-eyebrow { position: relative; z-index: 1; margin: 27px 0 10px; color: var(--teal); font-size: 0.69rem; font-weight: 900; letter-spacing: 0.1em; }
.pathway-result h3 { position: relative; z-index: 1; margin: 0; font-size: clamp(1.65rem, 2.5vw, 2.35rem); line-height: 1.07; letter-spacing: -0.03em; }
.pathway-result > p:not(.result-eyebrow):not(.copy-status) { position: relative; z-index: 1; color: #c9dadd; font-size: 0.92rem; }
.route-steps { position: relative; z-index: 1; margin: 28px 0 0; padding: 0; list-style: none; }
.route-steps li { position: relative; display: flex; gap: 14px; padding: 0 0 22px; }
.route-steps li:not(:last-child)::before { content: ""; position: absolute; top: 29px; bottom: 0; left: 14px; width: 1px; background: rgba(255,255,255,0.24); }
.route-steps li > span { position: relative; z-index: 1; display: grid; place-items: center; flex: 0 0 auto; width: 29px; height: 29px; color: var(--navy); background: #8fa7ac; border-radius: 50%; font-size: 0.68rem; font-weight: 900; }
.route-steps li.is-active > span { background: var(--yellow); }
.route-steps strong, .route-steps small { display: block; }.route-steps strong { font-size: 0.91rem; }.route-steps small { margin-top: 2px; color: #a9c0c5; font-size: 0.77rem; }
.result-actions { position: relative; z-index: 1; display: flex; align-items: center; gap: 18px; margin-top: 8px; }
.button-light { min-height: 43px; padding: 9px 16px; color: var(--navy); background: var(--white); font-size: 0.81rem; }
.text-button { color: var(--white); background: transparent; border: 0; cursor: pointer; font-size: 0.82rem; font-weight: 800; }
.copy-status { min-height: 1.2em; margin: 10px 0 0; color: var(--teal); font-size: 0.75rem; }

.tasters-section { background: var(--paper); }
.tasters-header { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.5fr); gap: 50px; align-items: end; }
.tasters-intro { margin: 0 0 6px; color: var(--muted); font-size: 1.03rem; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 42px 0 24px; }
.filter-button { background: transparent; }
.filter-button.is-active { color: var(--white); background: var(--navy); border-color: var(--navy); }
.filter-count { margin-left: auto; color: var(--muted); font-size: 0.8rem; font-weight: 800; }
.taster-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.taster-card { position: relative; grid-column: span 4; display: flex; flex-direction: column; min-height: 440px; padding: 25px; border-radius: 20px; overflow: hidden; transition: transform 180ms ease, opacity 180ms ease; }
.taster-card:hover { transform: translateY(-5px); }
.taster-card[hidden] { display: none; }
.taster-card.coral { background: #ffc2bd; }.taster-card.teal { background: #a5e8df; }.taster-card.yellow { background: #ffe498; }.taster-card.blue { background: #b6e2f7; }.taster-card.pink { background: #f8c9d6; }.taster-card.violet { background: #d5c9f7; }.taster-card.green { background: #c5eba9; }.taster-card.mint { background: #d2f1e6; }
.card-number { color: rgba(8,45,58,0.62); font-size: 0.69rem; font-weight: 900; letter-spacing: 0.12em; }
.card-icon { display: grid; place-items: center; width: 45px; height: 45px; margin: 22px 0 16px; background: rgba(255,255,255,0.65); border-radius: 13px; color: var(--navy); font-size: 1.35rem; }
.taster-card h3 { margin: 0; color: var(--navy); font-size: 1.45rem; letter-spacing: -0.025em; }
.taster-card p { margin: 8px 0 22px; color: #25434b; font-size: 0.9rem; }
.taster-card .card-summary { margin: 9px 0 4px; color: #25434b; font-size: 0.9rem; line-height: 1.48; }
.card-offerings { margin: 14px 0 24px; padding: 0; list-style: none; color: #173942; font-size: 0.86rem; line-height: 1.36; }
.card-offerings li { position: relative; padding: 4px 0 4px 17px; }
.card-offerings li::before { content: "•"; position: absolute; left: 0; top: 3px; color: var(--navy); font-size: 1rem; font-weight: 900; }
.card-link { align-self: flex-start; margin-top: auto; padding: 0; color: var(--navy); background: transparent; border: 0; cursor: pointer; font-size: 0.79rem; font-weight: 900; }
.card-link span { margin-left: 6px; }

.how-section { padding-top: 0; background: var(--paper); }
.how-panel { position: relative; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(45px, 8vw, 120px); padding: clamp(42px, 6vw, 80px); color: var(--white); background: var(--navy); border-radius: 30px; overflow: hidden; }
.how-panel::before { content: ""; position: absolute; right: -140px; top: -150px; width: 370px; height: 370px; border: 1px solid rgba(255,255,255,0.16); border-radius: 50%; box-shadow: 0 0 0 70px rgba(57,198,180,0.05); }
.section-kicker.light { color: var(--teal); }
.how-copy, .how-steps { position: relative; z-index: 1; }
.how-copy h2, .next-card h2 { color: var(--white); font-size: clamp(2.3rem, 4vw, 4.2rem); }
.how-copy > p:last-child { max-width: 470px; color: #bed0d4; }
.how-steps { margin: 0; padding: 0; list-style: none; }
.how-steps li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.18); }
.how-steps li:last-child { border-bottom: 1px solid rgba(255,255,255,0.18); }
.how-steps li > span { color: var(--teal); font-size: 0.73rem; font-weight: 900; letter-spacing: 0.1em; }
.how-steps strong { font-size: 1.15rem; }.how-steps p { margin: 5px 0 0; color: #bed0d4; font-size: 0.88rem; }

.eligibility-section { display: grid; grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr); gap: clamp(45px, 8vw, 120px); background: var(--white); }
.eligibility-copy { position: sticky; top: 120px; align-self: start; }
.eligibility-copy h2 { font-size: clamp(2.4rem, 4.3vw, 4.7rem); }
.eligibility-copy > p:not(.section-kicker) { max-width: 490px; color: var(--muted); }
.privacy-note { display: inline-flex; align-items: center; gap: 9px; margin-top: 19px; padding: 9px 13px; color: var(--navy); background: #eaf7f4; border-radius: 999px; font-size: 0.79rem; font-weight: 800; }
.privacy-note span { color: #167c6f; }
.eligibility-check { padding: clamp(26px, 4vw, 48px); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.check-question { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; padding: 24px 0 !important; border-bottom: 1px solid var(--line) !important; }
.check-question:first-child { padding-top: 0 !important; }
.check-question legend { display: flex; align-items: center; gap: 13px; max-width: 600px; color: var(--navy); font-size: 0.97rem; font-weight: 800; }
.yes-no { display: flex; gap: 8px; }
.yes-no label { position: relative; cursor: pointer; }
.yes-no input { position: absolute; opacity: 0; }
.yes-no span { display: grid; place-items: center; min-width: 76px; min-height: 43px; padding: 9px 14px; color: var(--navy); background: var(--white); border: 1px solid #b9c9cb; border-radius: 999px; font-size: 0.82rem; font-weight: 800; }
.yes-no input:checked + span { color: var(--white); background: var(--navy); border-color: var(--navy); }
.eligibility-result { display: flex; gap: 15px; align-items: flex-start; margin-top: 28px; padding: 19px; color: var(--navy); background: var(--white); border-left: 5px solid var(--yellow); border-radius: 12px; }
.result-mark { display: grid; place-items: center; flex: 0 0 auto; width: 34px; height: 34px; color: var(--navy); background: var(--yellow); border-radius: 50%; font-weight: 900; }
.eligibility-result strong { display: block; font-size: 0.95rem; }.eligibility-result p { margin: 4px 0 0; color: var(--muted); font-size: 0.82rem; }
.eligibility-result.is-positive { border-left-color: var(--teal); }.eligibility-result.is-positive .result-mark { background: var(--teal); }
.eligibility-result.is-caution { border-left-color: var(--coral); }.eligibility-result.is-caution .result-mark { color: var(--white); background: var(--coral); }

.registration-section { display: grid; grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr); gap: clamp(45px, 8vw, 120px); padding-top: 0; background: var(--white); }
.registration-intro { align-self: start; padding-top: 28px; }
.registration-intro h2 { margin: 0; color: var(--navy); font-size: clamp(2.4rem, 4.3vw, 4.7rem); line-height: 1.02; letter-spacing: -0.048em; }
.registration-intro > p:not(.section-kicker) { max-width: 520px; color: var(--muted); }
.selected-route { margin-top: 25px; padding: 18px 20px; background: #eaf7f4; border-left: 5px solid var(--teal); border-radius: 12px; }
.selected-route span, .selected-route strong { display: block; }
.selected-route span { color: var(--muted); font-size: 0.73rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.selected-route strong { margin-top: 5px; color: var(--navy); font-size: 1rem; }
.registration-form { overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.registration-form iframe { display: block; width: 100%; min-height: 1240px; border: 0; }
.registration-form > p { margin: 0; padding: 14px 20px 18px; color: var(--muted); font-size: 0.8rem; text-align: center; }
.registration-form a { color: var(--navy); font-weight: 800; }

.next-step { padding-top: 0; background: var(--white); }
.next-card { position: relative; padding: clamp(42px, 7vw, 86px); color: var(--white); background: var(--coral-dark); border-radius: 30px; overflow: hidden; }
.next-card h2 { max-width: 780px; }
.next-card > p:not(.section-kicker) { position: relative; z-index: 2; max-width: 690px; color: #fff3f1; font-size: 1rem; }
.next-copy-status { min-height: 1.4em; margin: 12px 0 0 !important; color: var(--white) !important; font-size: 0.8rem !important; font-weight: 800; }
.button-white { color: var(--coral-dark); background: var(--white); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,0.55); background: transparent; }
.next-orbit { position: absolute; right: -75px; top: -125px; width: 430px; height: 430px; border: 1px solid rgba(255,255,255,0.28); border-radius: 50%; }
.next-orbit span { position: absolute; width: 19px; height: 19px; background: var(--yellow); border: 4px solid var(--coral-dark); border-radius: 50%; }
.next-orbit span:nth-child(1) { top: 16%; left: 4%; }.next-orbit span:nth-child(2) { right: 12%; bottom: 18%; background: var(--teal); }.next-orbit span:nth-child(3) { bottom: -6px; left: 28%; background: var(--white); }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; padding: 30px clamp(20px, 6vw, 104px); color: #bfd0d4; background: var(--navy); font-size: 0.79rem; }
.footer-brand { color: var(--white); }
.footer-brand .wcs-logo { height: 42px; padding: 4px 6px; background: var(--white); border-radius: 4px; }
.footer-brand .brand-divider { height: 34px; background: rgba(255,255,255,0.3); }
.footer-brand small { color: #bfd0d4; }
.site-footer p { text-align: center; }.site-footer > a:last-child { justify-self: end; color: var(--white); font-weight: 800; text-decoration: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal[data-delay="1"] { transition-delay: 110ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .header-cta { display: none; }
  .site-nav { grid-column: 1 / -1; grid-row: 2; display: none; flex-direction: column; gap: 0; padding: 8px 0 14px; }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 11px 0; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr 0.76fr; gap: 36px; }
  .hero h1 { font-size: clamp(3.3rem, 7vw, 5.5rem); }
  .taster-card, .taster-card:nth-child(n) { grid-column: span 6; }
  .taster-card:last-child { grid-column: span 6; min-height: 440px; }
}

@media (max-width: 780px) {
  .site-header { min-height: 70px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 62px; }
  .hero h1 { font-size: clamp(3.15rem, 14vw, 5.1rem); }
  .hero-visual { width: 100%; max-width: 620px; justify-self: start; padding-right: 20px; }
  .image-frame { aspect-ratio: 1.89 / 1; border-radius: 24px; }
  .hero-stamp { right: 0; width: 104px; height: 104px; }
  .pathway-builder, .tasters-header, .how-panel, .eligibility-section, .registration-section { grid-template-columns: 1fr; }
  .pathway-result, .eligibility-copy { position: relative; top: auto; }
  .how-panel { gap: 35px; }
  .check-question { grid-template-columns: 1fr; }
  .check-question legend { width: 100%; }
  .filter-count { width: 100%; margin: 8px 0 0; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; }
  .site-footer p { margin: 0; text-align: left; }.site-footer > a:last-child { justify-self: start; }
}

@media (max-width: 540px) {
  .wcs-logo { height: 39px; }
  .brand { gap: 9px; }
  .brand-divider { height: 31px; }
  .rise-lockup strong { font-size: 0.86rem; }
  .rise-lockup small { margin-top: 4px; font-size: 0.63rem; }
  .hero-actions .button, .next-actions .button { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts li { padding: 13px 0; }
  .hero-facts li + li { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .choice-grid { grid-template-columns: 1fr; }
  .taster-card, .taster-card:nth-child(n) { grid-column: span 12; min-height: 0; }
  .yes-no { width: 100%; }.yes-no label { flex: 1; }.yes-no span { min-width: 0; }
  .image-label { font-size: 0.7rem; }.image-label-top { top: 14px; right: 13px; }.image-label-bottom { left: 12px; bottom: 14px; }
}

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

@media print {
  .site-header, .scroll-progress, .hero-visual, .hero-actions, .filter-row, .card-link, .next-step, .site-footer { display: none !important; }
  body { color: #000; background: #fff; }
  .hero { display: block; min-height: auto; padding: 30px 0; background: #fff; }
  .hero h1 { color: #000; font-size: 42px; }
  .section-pad { padding: 30px 0; }
  .pathway-controls, .tasters-section, .how-section, .eligibility-section, .registration-section { display: none !important; }
  .pathway-builder { display: block; margin: 0; }
  .pathway-result { position: static; color: #000; background: #fff; border: 2px solid #000; box-shadow: none; }
  .pathway-result h3, .pathway-result .result-topline, .pathway-result .result-eyebrow, .route-steps small, .pathway-result > p:not(.result-eyebrow):not(.copy-status) { color: #000; }
}
