:root {
  color-scheme: light;
  --canvas: #fcf8f6;
  --surface: #fffdfc;
  --ink: #304842;
  --ink-strong: #243d37;
  --action: #b43f59;
  --action-hover: #963248;
  --green-action: #14785d;
  --green-action-hover: #0d604a;
  --blush: #f4e6e2;
  --blush-strong: #d7988e;
  --peach: #f7eee7;
  --mint: #eaf2ee;
  --rose: #a96163;
  --line: #eaded9;
  --muted: #4f5e59;
  --danger: #a4373f;
  --shadow: 0 24px 70px rgba(76, 54, 48, .12);
  --content: 1320px;
  font-family: "Manrope", sans-serif;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--canvas); font-family: "Manrope", sans-serif; -webkit-font-smoothing: antialiased; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
::selection { color: var(--surface); background: var(--rose); }
:focus-visible { outline: 3px solid var(--blush-strong); outline-offset: 4px; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .22em; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 300; padding: 11px 16px; color: var(--surface); background: var(--ink-strong); border-radius: 10px; transform: translateY(-140%); transition: transform 160ms ease-out; }
.skip-link:focus { transform: translateY(0); }
.site-header { position: sticky; top: 0; z-index: 50; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; min-height: 70px; padding: 0 clamp(20px, 5vw, 80px); background: rgba(252, 248, 246, .93); border-bottom: 1px solid rgba(234, 222, 217, .9); backdrop-filter: blur(16px); }
.brand-mark { display: inline-flex; gap: 12px; align-items: center; width: fit-content; color: var(--ink-strong); text-decoration: none; white-space: nowrap; }
.brand-mark__symbol { display: grid; place-items: center; width: 44px; height: 44px; color: #fff; background: var(--action); border-radius: 14px 14px 14px 5px; box-shadow: 0 9px 22px rgba(79, 113, 104, .17); }
.brand-mark__symbol svg { width: 34px; height: 34px; stroke-width: 1.8; }
.brand-mark__symbol circle { color: #f3b8ad; fill: currentColor; stroke: none; }
.brand-mark__text { display: grid; gap: 1px; }
.brand-mark__name { font-size: 14px; font-weight: 700; letter-spacing: -.015em; }
.brand-mark__descriptor { color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .035em; }
.site-nav { display: flex; justify-content: center; gap: clamp(18px, 2.6vw, 38px); }
.site-nav a { color: var(--muted); font-size: 14px; font-weight: 600; text-decoration: none; }
.site-nav a:hover { color: var(--ink-strong); text-decoration: underline; }
.button { position: relative; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; min-height: 56px; overflow: hidden; padding: 0 28px; color: #fff; background: var(--action); border: 0; border-radius: 14px; font-weight: 700; text-align: center; text-decoration: none; box-shadow: 0 13px 30px rgba(180, 63, 89, .25); transition: transform 180ms cubic-bezier(.2,.8,.2,1), background 180ms ease-out, box-shadow 180ms ease-out; }
.button::after { position: absolute; top: -55%; left: -34%; z-index: 0; width: 22%; height: 210%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent); transform: translateX(-260%) rotate(18deg); pointer-events: none; content: ""; }
.button.is-attention-visible::after { animation: button-shine 4.8s ease-in-out infinite; }
.button:hover { background: var(--action-hover); transform: translateY(-2px); box-shadow: 0 18px 38px rgba(180, 63, 89, .32); }
.button:disabled { cursor: wait; opacity: .68; transform: none; box-shadow: none; }
.button--compact { min-height: 48px; padding-inline: 24px; font-size: 15px; }
.button--primary { min-height: 66px; min-width: 250px; font-size: 17px; }
.button--inverse { min-height: 60px; color: var(--ink-strong); background: #fff; box-shadow: none; }
.button--inverse:hover { color: #fff; background: var(--action-hover); }
.button--green { color: #fff; background: var(--green-action); box-shadow: 0 13px 30px rgba(20, 120, 93, .27); }
.button--green:hover { color: #fff; background: var(--green-action-hover); box-shadow: 0 18px 38px rgba(20, 120, 93, .34); }
.text-button { min-height: 44px; padding: 6px 10px; color: var(--ink); background: transparent; border: 0; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.cta-stack { display: grid; justify-items: center; gap: 10px; }
.cta-stack--left { justify-items: start; }
.repeat-link { min-height: 44px; padding: 5px 4px; color: #8e3046; background: transparent; border: 0; font-size: 15px; font-weight: 700; line-height: 1.35; text-align: center; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; transition: color 160ms ease-out, transform 160ms ease-out; }
.repeat-link:hover { color: var(--action-hover); transform: translateY(-1px); }
.hero { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr); gap: clamp(12px, 2.5vw, 42px); align-items: end; min-height: calc(100svh - 70px); max-width: 1600px; margin: 0 auto; overflow: clip; padding: clamp(46px, 4vw, 68px) clamp(22px, 4vw, 64px) 0; background: radial-gradient(circle at 85% 20%, rgba(244, 230, 226, .86), transparent 36%); }
.hero__copy { position: relative; z-index: 3; max-width: 770px; padding-bottom: clamp(58px, 6vw, 88px); }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 0 0 22px; }
.date-badge, .free-badge { display: inline-flex; align-items: center; min-height: 40px; margin: 0; padding: 0 15px; border-radius: 12px; font-size: 14px; font-weight: 700; }
.date-badge { color: #87484b; background: var(--blush); }
.free-badge { color: var(--ink-strong); background: var(--mint); }
.hero__expert { max-width: 690px; margin: 0 0 22px; color: var(--muted); font-size: 16px; font-weight: 600; line-height: 1.55; }
.hero h1 { max-width: 760px; margin: 0; color: var(--ink-strong); font-size: clamp(54px, 5vw, 78px); font-weight: 600; letter-spacing: -.04em; line-height: .98; text-wrap: balance; }
.hero__lead { max-width: 680px; margin: 26px 0 0; color: var(--muted); font-size: clamp(18px, 1.4vw, 22px); line-height: 1.5; }
.hero__copy > .button { margin-top: 28px; }
.hero__copy > .repeat-link { display: block; width: fit-content; margin-top: 8px; }
.hero-gift { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 20px; align-items: center; max-width: 670px; margin: 27px 0 0; }
.hero-gift__visual { position: relative; width: 92px; }
.hero-gift__frame { position: relative; display: block; overflow: hidden; padding: 5px; background: #fff; border: 1px solid #d68f84; border-radius: 9px; box-shadow: 8px 14px 28px rgba(87, 57, 48, .18); }
.hero-gift__frame::after { position: absolute; top: -40%; left: -60%; width: 28%; height: 180%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.86), transparent); transform: translateX(-250%) rotate(17deg); animation: gift-shine 4.2s ease-in-out infinite; pointer-events: none; content: ""; }
.hero-gift__frame img { width: 80px; height: 107px; border-radius: 5px; }
.hero-gift__emoji { position: absolute; top: -14px; right: -15px; z-index: 2; font-size: 27px; line-height: 1; filter: drop-shadow(0 6px 8px rgba(97, 53, 35, .24)); animation: gift-float 2.8s cubic-bezier(.37,0,.63,1) infinite; }
.hero-gift p { margin: 0; font-size: 16px; font-weight: 600; line-height: 1.5; }
.hero__support { max-width: 650px; margin: 21px 0 27px; color: var(--muted); font-size: 16px; line-height: 1.58; }
.hero__portrait { position: relative; align-self: stretch; min-height: 700px; }
.hero__portrait picture { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; }
.hero__portrait img { position: relative; z-index: 2; width: clamp(760px, 54vw, 900px); max-width: none; height: auto; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 26px 26px rgba(87, 57, 48, .11)); }
.portrait-caption { position: absolute; right: 0; bottom: 9%; z-index: 4; display: grid; gap: 4px; max-width: 245px; padding: 15px 18px; background: rgba(255, 253, 252, .96); border: 1px solid rgba(234, 222, 217, .85); border-radius: 14px; box-shadow: var(--shadow); }
.portrait-caption strong { font-size: 15px; }
.portrait-caption span { color: var(--muted); font-size: 14px; }
.section { padding: clamp(82px, 9vw, 138px) clamp(22px, 6vw, 104px); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(260px, .55fr); gap: clamp(34px, 6vw, 90px); align-items: end; max-width: var(--content); margin: 0 auto clamp(46px, 6vw, 82px); }
.section-heading h2, .speaker h2, .format h2 { margin: 0; color: var(--ink-strong); font-size: clamp(42px, 4.6vw, 66px); font-weight: 600; letter-spacing: -.035em; line-height: 1.04; text-wrap: balance; }
.section-heading p { max-width: 480px; margin: 0 0 7px; color: var(--muted); font-size: 17px; line-height: 1.55; }
.section-action { display: flex; justify-content: center; max-width: var(--content); margin: clamp(42px, 6vw, 76px) auto 0; }
.audience { background: var(--surface); }
.audience-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; max-width: var(--content); margin: auto; }
.audience-card { display: grid; align-content: start; gap: 28px; min-height: 290px; padding: clamp(24px, 2.3vw, 34px); background: var(--canvas); border: 1px solid var(--line); border-radius: 18px; }
.audience-card:nth-child(2n) { background: var(--peach); }
.audience-card p { margin: 0; font-size: 16px; line-height: 1.6; }
.person-icon { width: 60px; height: 60px; color: var(--rose); stroke-width: 1.8; }
.program { color: var(--ink); background: #f5e9e7; }
.program .section-heading h2 { color: var(--ink-strong); }
.section-heading--light p { color: var(--muted); }
.program-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: var(--content); margin: 0 auto; padding: 0; list-style: none; }
.program-list li { display: grid; grid-template-columns: 58px 1fr; gap: 20px; align-items: start; min-height: 136px; padding: 26px; background: rgba(255, 253, 252, .75); border: 1px solid rgba(215, 152, 142, .25); border-radius: 16px; }
.program-icon { display: grid; place-items: center; width: 52px; height: 52px; color: var(--rose); background: #fff7f5; border-radius: 14px; }
.program-icon svg { width: 30px; height: 30px; }
.program-list p { margin: 3px 0 0; color: var(--ink); font-size: 16px; line-height: 1.58; }
.program-callout { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; max-width: var(--content); margin: clamp(54px, 7vw, 90px) auto 0; padding-top: 52px; border-top: 1px solid rgba(169, 97, 99, .25); }
.program-callout h3 { max-width: 850px; margin: 0; color: var(--ink-strong); font-size: clamp(28px, 3vw, 42px); font-weight: 600; letter-spacing: -.025em; line-height: 1.15; }
.program-callout p { max-width: 850px; margin: 20px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.program .button--inverse { color: #fff; background: var(--action); }
.program .button--inverse:hover { background: var(--action-hover); }
.gifts { background: var(--canvas); }
.gift-route { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 4vw, 56px); align-items: start; max-width: 1040px; margin: auto; }
.gift-card { display: grid; grid-template-rows: auto auto; gap: 24px; min-width: 0; padding: clamp(22px, 2.4vw, 30px); background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 18px 50px rgba(84, 58, 51, .08); }
.gift-card__media { position: relative; display: grid; place-items: center; min-height: 286px; padding: 18px; overflow: hidden; background: #efd4d0; border: 1px solid #dfa9a1; border-radius: 14px; }
.gift-card:nth-child(2) .gift-card__media { background: #d5e9dd; border-color: #a9cdb7; }
.gift-card__media img { width: min(200px, 66%); height: auto; aspect-ratio: 3 / 4; object-fit: contain; border-radius: 7px; filter: saturate(1.1) contrast(1.05); box-shadow: 16px 24px 42px rgba(75, 44, 38, .24); }
.gift-emoji { position: absolute; top: 16px; right: 16px; z-index: 2; font-size: 38px; line-height: 1; filter: drop-shadow(0 7px 9px rgba(97, 53, 35, .2)); animation: gift-float 2.8s cubic-bezier(.37,0,.63,1) infinite; }
.gift-card__copy > span { color: var(--rose); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.gift-card__copy h3 { margin: 12px 0 15px; color: var(--ink-strong); font-size: clamp(24px, 2.2vw, 34px); font-weight: 600; letter-spacing: -.025em; line-height: 1.15; }
.gift-card__copy p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.55; }
.speaker { display: grid; grid-template-columns: minmax(0, .76fr) minmax(600px, 1.24fr); grid-template-rows: auto 1fr; gap: 0 clamp(36px, 5vw, 72px); align-items: start; max-width: 1480px; margin: auto; padding-inline: clamp(24px, 4vw, 64px); background: var(--surface); }
.speaker__title { grid-column: 1; grid-row: 1; align-self: end; max-width: 700px; }
.speaker__details { grid-column: 1; grid-row: 2; }
.speaker__details ul { margin: 34px 0 38px; padding: 0; list-style: none; }
.speaker__details .button { justify-self: start; }
.speaker__details li { position: relative; padding: 15px 0 15px 36px; border-top: 1px solid var(--line); font-size: 16px; line-height: 1.5; }
.speaker__details li:last-child { border-bottom: 1px solid var(--line); }
.speaker__details li::before { position: absolute; top: 23px; left: 5px; width: 10px; height: 10px; background: var(--blush-strong); border-radius: 50%; content: ""; }
.speaker__photo { grid-column: 2; grid-row: 1 / span 2; align-self: stretch; min-width: 0; overflow: hidden; background: var(--blush); border-radius: 16px; }
.speaker__photo img { width: 100%; height: clamp(660px, 52vw, 760px); object-fit: cover; object-position: center 10%; }
.format { color: var(--ink); background: var(--mint); }
.format h2 { color: var(--ink-strong); }
.format__intro { display: grid; grid-template-columns: 1fr .62fr; gap: clamp(40px, 7vw, 100px); align-items: end; max-width: var(--content); margin: auto; }
.format__intro p { max-width: 500px; margin: 0 0 7px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.format-list { display: grid; grid-template-columns: repeat(5, 1fr); max-width: var(--content); margin: 72px auto 0; padding: 0; border-top: 1px solid rgba(79, 113, 104, .25); list-style: none; }
.format-list li { display: grid; align-content: start; gap: 24px; min-height: 250px; padding: 34px 24px; border-bottom: 1px solid rgba(79, 113, 104, .25); }
.format-list li + li { border-left: 1px solid rgba(79, 113, 104, .25); }
.format-list svg { width: 40px; height: 40px; color: var(--rose); }
.format-list span { color: var(--ink); font-size: 16px; line-height: 1.55; }
.format .button--inverse { color: #fff; background: var(--action); }
.format .button--green { background: var(--green-action); }
.format .button--green:hover { background: var(--green-action-hover); }
.site-footer { display: grid; grid-template-columns: .65fr 1.25fr .4fr; gap: 44px 70px; padding: 64px clamp(22px, 6vw, 104px) 42px; color: #fff7f4; background: #3f4844; font-size: 14px; line-height: 1.6; }
.site-footer a:hover { color: #fff; }
.footer__identity p { margin: 0; }
.footer__identity strong { color: #fff; font-size: 14px; }
.footer__legal { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 24px; align-content: start; }
.footer__social { display: flex; gap: 12px; align-content: start; }
.social-icon { display: grid; place-items: center; width: 42px; height: 42px; background: #fff; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,.14); transition: transform 160ms ease-out; }
.social-icon:hover { transform: translateY(-2px); }
.social-icon svg { width: 30px; height: 30px; }
.footer__disclaimer { grid-column: 1 / 3; max-width: 900px; margin: 0; color: #c9c0bd; }
.footer__copyright { align-self: end; margin: 0; color: #c9c0bd; }
.modal[hidden] { display: none; }
.modal { position: absolute; inset: 0; z-index: 120; display: grid; place-items: start center; min-height: 100%; padding: calc(var(--modal-scroll-y, 0px) + 22px) 22px 22px; }
.modal__backdrop { position: fixed; inset: 0; background: rgba(48, 38, 35, .66); backdrop-filter: blur(8px); }
.modal__dialog { position: relative; z-index: 1; width: min(640px, 100%); padding: clamp(28px, 4vw, 48px); background: var(--surface); border-radius: 18px; box-shadow: 0 28px 90px rgba(48, 38, 35, .26); }
.modal__close { position: absolute; top: 14px; right: 14px; display: grid; place-items: center; width: 44px; height: 44px; color: var(--ink); background: transparent; border: 0; border-radius: 12px; }
.modal__close:hover { background: var(--blush); }
.modal__close svg { width: 24px; height: 24px; }
.modal__date { margin: 0 54px 14px 0; color: var(--rose); font-size: 14px; font-weight: 700; }
.modal h2 { margin: 0 48px 12px 0; color: var(--ink-strong); font-size: clamp(28px, 4vw, 40px); font-weight: 600; letter-spacing: -.03em; line-height: 1.08; }
.modal__form-view > p:not(.modal__date) { margin: 0 0 28px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 700; }
.form-field input { width: 100%; min-height: 52px; padding: 0 15px; color: var(--ink); background: #fff; border: 1px solid #b9aaa5; border-radius: 12px; font-size: 16px; caret-color: var(--rose); }
.form-field input::placeholder { color: #7f8582; opacity: 1; }
.form-field input:hover { border-color: var(--blush-strong); }
.form-field input[aria-invalid="true"] { border: 2px solid var(--danger); }
.field-hint, .field-error { margin: 6px 0 0; font-size: 14px; line-height: 1.45; }
.field-hint { color: var(--muted); }
.field-error { min-height: 0; color: var(--danger); font-weight: 600; }
.field-error:empty { display: none; }
.check-field { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 12px; align-items: start; margin-top: 18px; font-size: 14px; line-height: 1.5; }
.check-field input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--action); }
.consent-error { margin-left: 34px; }
.form-status { margin: 18px 0 0; padding: 0; color: var(--danger); font-size: 14px; font-weight: 600; line-height: 1.5; }
.form-status:not(:empty) { padding: 12px 14px; background: #fff0f1; border-radius: 10px; }
.form-submit { width: 100%; margin-top: 20px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.modal__success { display: grid; justify-items: start; gap: 18px; }
.modal__success > svg { width: 64px; height: 64px; color: var(--action); stroke-width: 2.5; }
.modal__success h2 { margin: 0; }
.modal__success p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.55; }
.modal__success .success-date { color: var(--ink); }
.reveal { opacity: 1; transform: none; filter: none; }
.js .reveal { opacity: 0; transform: translateY(12px); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1); }
@keyframes button-shine {
  0%, 66% { transform: translateX(-260%) rotate(18deg); }
  84%, 100% { transform: translateX(690%) rotate(18deg); }
}
@keyframes gift-float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-7px) rotate(5deg); }
}
@keyframes gift-shine {
  0%, 58% { transform: translateX(-250%) rotate(17deg); }
  82%, 100% { transform: translateX(680%) rotate(17deg); }
}
@media (max-width: 1120px) {
  .site-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr); gap: 0; padding-inline: 30px; }
  .hero__portrait img { width: clamp(690px, 70vw, 800px); }
  .hero h1 { font-size: clamp(50px, 6vw, 68px); }
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audience-card { min-height: 240px; }
  .format-list { grid-template-columns: repeat(2, 1fr); }
  .format-list li { min-height: 0; }
  .format-list li + li { border-left: 0; }
  .format-list li:nth-child(even) { border-left: 1px solid rgba(79, 113, 104, .25); }
  .format-list li:last-child { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .site-header { display: none; }
  .button--compact { display: none; }
  .hero { display: flex; flex-direction: column; align-items: stretch; min-height: auto; padding: 30px 20px 0; }
  .hero__copy { display: flex; flex-direction: column; padding-bottom: 0; }
  .hero__badges { order: 1; }
  .hero__expert { order: 2; }
  .hero h1 { order: 3; }
  .hero__copy > .button { order: 4; margin-top: 26px; }
  .hero__copy > .repeat-link { order: 4; align-self: center; margin-top: 8px; }
  .hero__lead { order: 5; }
  .hero-gift { order: 6; }
  .hero__support { order: 7; }
  .hero h1 { font-size: clamp(42px, 9vw, 62px); }
  .hero__lead { margin-top: 22px; font-size: 17px; }
  .hero__support { font-size: 16px; }
  .hero__copy .button--primary { width: 100%; }
  .hero__portrait { min-height: 650px; margin: 30px -20px 0; overflow: hidden; background: linear-gradient(180deg, transparent, var(--blush)); }
  .hero__portrait picture { align-items: flex-start; }
  .hero__portrait img { width: min(118%, 680px); max-height: none; transform: none; }
  .portrait-caption { right: 20px; bottom: 7%; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .program-list { grid-template-columns: 1fr; }
  .program-callout { grid-template-columns: 1fr; align-items: start; }
  .program-callout .button { width: fit-content; }
  .gift-route { gap: 22px; }
  .gift-card__media { min-height: 270px; }
  .speaker { grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 0; padding-inline: 30px; }
  .speaker__title { grid-column: 1; grid-row: 1; }
  .speaker__photo { grid-column: 1; grid-row: 2; margin-top: 34px; }
  .speaker__details { grid-column: 1; grid-row: 3; }
  .speaker__details ul { margin-top: 34px; }
  .speaker__photo img { height: auto; object-fit: contain; }
  .format__intro { grid-template-columns: 1fr; gap: 20px; }
  .site-footer { grid-template-columns: 1fr 1.4fr; }
  .footer__social { grid-column: 1; }
  .footer__disclaimer { grid-column: 1 / -1; }
  .footer__copyright { grid-column: 2; grid-row: 2; }
}
@media (max-width: 620px) {
  .hero { padding-top: 26px; }
  .hero__badges { margin-bottom: 18px; }
  .hero__expert { font-size: 16px; }
  .hero h1 { font-size: clamp(42px, 12.5vw, 52px); }
  .hero-gift { grid-template-columns: 84px minmax(0, 1fr); }
  .hero-gift__visual { width: 84px; }
  .hero-gift__frame img { width: 72px; height: 96px; }
  .hero__portrait { min-height: 500px; margin-top: 8px; }
  .hero__portrait img { width: min(126%, 560px); transform: none; }
  .portrait-caption { right: 14px; max-width: 220px; padding: 13px 15px; }
  .section { padding: 76px 20px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2, .speaker h2, .format h2 { font-size: clamp(34px, 10.4vw, 43px); }
  .section-heading p { font-size: 16px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { grid-template-columns: 54px 1fr; gap: 18px; align-items: start; min-height: 0; padding: 24px; }
  .person-icon { width: 50px; height: 50px; }
  .audience-card p { font-size: 16px; }
  .section-action .button { width: 100%; }
  .program-list li { grid-template-columns: 48px 1fr; gap: 14px; padding: 22px 18px; }
  .program-icon { width: 46px; height: 46px; }
  .program-icon svg { width: 27px; height: 27px; }
  .program-callout { gap: 30px; padding-top: 40px; }
  .program-callout .button { width: 100%; }
  .gift-route { grid-template-columns: 1fr; gap: 28px; }
  .gift-card { padding: 22px; }
  .gift-card__media { min-height: 260px; }
  .gift-card__copy { text-align: left; }
  .speaker { gap: 38px; }
  .speaker__details .button { width: 100%; }
  .speaker__details .cta-stack { justify-items: stretch; }
  .format-list { grid-template-columns: 1fr; margin-top: 48px; }
  .format-list li, .format-list li:nth-child(even) { grid-template-columns: 46px 1fr; gap: 18px; align-items: start; padding: 24px 0; border-left: 0; }
  .format-list li:last-child { grid-column: auto; }
  .format .section-action .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; gap: 36px; padding: 54px 20px 34px; }
  .footer__legal { grid-template-columns: 1fr; }
  .footer__social, .footer__disclaimer, .footer__copyright { grid-column: 1; grid-row: auto; }
  .modal { place-items: start center; padding: var(--modal-scroll-y, 0px) 0 0; }
  .modal__dialog { width: 100%; padding: 32px 20px calc(28px + env(safe-area-inset-bottom)); border-radius: 18px 18px 0 0; }
  .modal h2 { margin-right: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; filter: none; }
}
