:root {
  --navy: #17324d;
  --navy-dark: #0d2438;
  --teal: #16847a;
  --teal-dark: #0c6b63;
  --coral: #f28b6d;
  --cream: #f8f5ef;
  --pale: #edf7f5;
  --white: #ffffff;
  --text: #2a3b48;
  --muted: #526572;
  --border: #dce5e7;
  --shadow: 0 18px 50px rgba(23, 50, 77, 0.12);
  --radius: 18px;
  --max-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 1.0625rem; line-height: 1.68; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0 0 1rem; color: var(--navy); font-family: Georgia, "Times New Roman", serif; line-height: 1.15; }
h1 { font-size: clamp(2.75rem, 7vw, 5.2rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.03em; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.25rem; }
.container { width: min(calc(100% - 2rem), var(--max-width)); margin-inline: auto; }
.section { padding: 4.75rem 0; }
.section-tinted { background: var(--cream); }
.eyebrow { margin-bottom: 0.8rem; color: var(--teal-dark); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.section-heading { max-width: 660px; margin-bottom: 2.4rem; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.125rem; }
.skip-link { position: fixed; top: 0.5rem; left: 0.5rem; z-index: 100; padding: 0.7rem 1rem; transform: translateY(-150%); background: var(--navy); color: white; }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid rgba(220, 229, 231, 0.85); backdrop-filter: blur(12px); }
.nav-wrapper { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.header-logo { position: relative; flex: 0 0 auto; width: 220px; aspect-ratio: 1039 / 213; overflow: hidden; }
.header-logo img { position: absolute; top: 0; left: 0; width: 147.84%; max-width: none; height: auto; transform: translate(-14.58%, -35.55%); }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--navy); font-size: 1rem; line-height: 1.15; text-decoration: none; }
.brand strong { display: block; color: var(--teal-dark); }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: white; font-family: Georgia, serif; font-weight: 700; }
.site-nav { display: flex; align-items: center; gap: 1.8rem; }
.site-nav > a:not(.button) { font-size: 0.95rem; font-weight: 650; text-decoration: none; }
.site-nav > a:not(.button):hover { color: var(--teal-dark); }
.site-nav .language-link { padding: 0.4rem 0.85rem; border: 1px solid var(--teal); border-radius: 999px; background: var(--white); color: var(--teal-dark); font-size: 0.88rem; font-weight: 750; letter-spacing: 0.01em; transition: background 160ms ease, color 160ms ease; }
.site-nav .language-link:hover, .site-nav .language-link:focus-visible { background: var(--teal); color: var(--white); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--navy); }

.button { display: inline-flex; min-height: 54px; padding: 0.85rem 1.55rem; align-items: center; justify-content: center; border: 2px solid var(--teal); border-radius: 999px; background: var(--teal); color: white; font-size: 1rem; font-weight: 750; text-decoration: none; box-shadow: 0 8px 20px rgba(22, 132, 122, 0.16); transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease; }
.button:hover { transform: translateY(-2px); background: var(--teal-dark); border-color: var(--teal-dark); box-shadow: 0 10px 24px rgba(12, 107, 99, 0.22); }
.button-small { min-height: 46px; padding: 0.65rem 1.2rem; font-size: 0.92rem; }
.button-secondary { width: 100%; background: var(--navy); border-color: var(--navy); }
.button-light { background: white; border-color: white; color: var(--navy); }
.button-outline { background: transparent; color: var(--navy); box-shadow: none; }
.button-outline:hover { color: white; }
.text-link { color: var(--navy); font-weight: 750; text-underline-offset: 0.25em; }

.hero { position: relative; overflow: hidden; padding: 5.6rem 0; background: linear-gradient(115deg, #f8f5ef 0%, #f8f5ef 58%, #e2f3ef 58%); }
.hero::after { content: ""; position: absolute; right: -5rem; bottom: -10rem; width: 24rem; height: 24rem; border: 3rem solid rgba(242, 139, 109, 0.18); border-radius: 50%; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 6rem; align-items: center; }
.hero-lead { max-width: 650px; color: var(--muted); font-size: 1.3rem; line-height: 1.62; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin: 2rem 0; }
.hero-points { display: flex; flex-wrap: wrap; gap: 0.8rem 1.6rem; padding: 0; color: var(--navy); font-size: 0.95rem; font-weight: 650; list-style: none; }
.hero-points li::before { content: "✓"; margin-right: 0.45rem; color: var(--teal); }
.lesson-window { overflow: hidden; border: 10px solid white; border-radius: 24px; background: white; box-shadow: var(--shadow); transform: rotate(2deg); }
.window-bar { display: flex; gap: 6px; padding: 0.6rem; background: #e7efef; }
.window-bar span { width: 8px; height: 8px; border-radius: 50%; background: #b7c7c9; }
.lesson-content { padding: 2.2rem; }
.avatar { width: 90px; height: 90px; margin: 0 0 1.5rem auto; display: grid; place-items: center; border-radius: 50% 50% 48% 52%; background: var(--coral); color: white; font-family: Georgia, serif; font-size: 1.15rem; font-weight: 700; transform: rotate(-5deg); }
.lesson-label { margin: 0 0 0.2rem; color: var(--teal-dark); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; }
.lesson-content h2 { font-size: 2rem; }
.next-class { margin: 1.25rem 0; padding: 1rem 1.1rem; border-left: 4px solid var(--coral); border-radius: 12px; background: var(--pale); }
.next-class .next-class-label { margin-bottom: 0.2rem; color: var(--teal-dark); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.09em; line-height: 1.4; text-transform: uppercase; }
.next-class h3 { margin-bottom: 0.25rem; color: var(--navy); font-size: 1.35rem; }
.next-class p:last-child { margin-bottom: 0; color: var(--muted); font-size: 0.88rem; font-weight: 700; }
.lesson-detail { display: flex; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; border-top: 1px solid var(--border); font-size: 0.92rem; }
.lesson-detail span { color: var(--muted); }

.card-grid { display: grid; gap: 1.5rem; }
.three-columns { grid-template-columns: repeat(3, 1fr); }
.class-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-card, .service-card { padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius); background: white; }
.feature-card .icon { width: 44px; height: 44px; margin-bottom: 1.6rem; display: grid; place-items: center; border-radius: 12px; background: var(--pale); color: var(--teal-dark); font-weight: 800; }
.feature-card p, .service-card p { color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 0; list-style: none; counter-reset: steps; }
.steps li { display: flex; gap: 1.25rem; }
.steps li > span { flex: 0 0 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: white; font-weight: 800; }
.steps p { color: var(--muted); }
.service-card { position: relative; display: flex; min-height: 100%; padding: 2.15rem; flex-direction: column; border-top: 5px solid var(--teal); box-shadow: 0 10px 28px rgba(23, 50, 77, 0.07); }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.6rem; }
.service-tag { align-self: flex-start; margin-bottom: 1rem; padding: 0.3rem 0.65rem; border-radius: 999px; background: var(--pale); color: var(--teal-dark) !important; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; line-height: 1.4; text-transform: uppercase; }
.class-details { margin: auto 0 0; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.class-details div { display: grid; grid-template-columns: 5.5rem 1fr; gap: 1rem; padding: 0.55rem 0; }
.class-details dt { color: var(--muted); font-size: 0.9rem; font-weight: 700; }
.class-details dd { margin: 0; color: var(--navy); font-weight: 750; }
.service-card > .button { width: 100%; margin-top: 1.25rem; }
.enrollment-note { max-width: 760px; margin: 1.75rem auto 0; padding: 1rem 1.25rem; border-left: 3px solid var(--teal); background: var(--pale); color: var(--muted); font-size: 0.94rem; }
.enrollment-note p { margin-bottom: 0.25rem; }
.enrollment-note p:last-child { margin-bottom: 0; }
.enrollment-note strong { color: var(--navy); }
.policy-text-link { color: var(--teal-dark); font-size: 0.88rem; font-weight: 700; text-underline-offset: 0.2em; }
.legal-links { display: flex; flex-wrap: wrap; gap: 0.45rem 1rem; }
.price-policy-link { margin-top: 1rem; justify-content: center; text-align: center; }
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 0; list-style: none; }
.skills-grid li { display: flex; min-height: 100px; padding: 1.25rem; align-items: center; gap: 1rem; border: 1px solid var(--border); border-radius: 14px; background: white; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; font-weight: 700; box-shadow: 0 8px 20px rgba(23, 50, 77, 0.05); }
.skills-grid span { flex: 0 0 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--pale); color: var(--teal-dark); font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 0.75rem; }

.about-section { padding-block: 3.75rem; background: var(--navy); }
.about-section h2, .about-section p { color: white; }
.about-section .eyebrow { color: #70d1c8; }
.about-section .instructor-title { margin-top: -0.4rem; color: #8de0d8; font-size: 1.1rem; font-weight: 750; }
.about-grid { display: grid; grid-template-columns: 0.8fr 1fr; gap: 6rem; align-items: center; }
.about-visual { width: 310px; aspect-ratio: 1; padding: 0.5rem; justify-self: center; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; }
.portrait-placeholder { aspect-ratio: 1; display: grid; place-items: center; border-radius: inherit; background: linear-gradient(145deg, var(--teal), #6ccac0); color: white; font-family: Georgia, serif; font-size: 2rem; text-align: center; }
.about-visual > img { width: 100%; height: 100%; display: block; border-radius: inherit; object-fit: cover; object-position: center 43%; }
.about-section .note { padding-left: 1rem; border-left: 3px solid var(--coral); color: #c7d5df; font-size: 0.9rem; }
.pricing-wrap { display: grid; grid-template-columns: 1fr 0.75fr; gap: 6rem; align-items: center; }
.price-card { padding: 2.3rem; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.price-card > * { display: block; }
.price-card > p { color: var(--teal-dark); font-weight: 750; }
.price-card > strong { margin-bottom: 0.15rem; color: var(--navy); font-family: Georgia, serif; font-size: 2.75rem; line-height: 1.1; }
.price-card .price-label { margin-bottom: 1.25rem; color: var(--navy); font-weight: 800; }
.price-card .price-fee-note { margin: -0.75rem 0 1.25rem; color: var(--muted); font-size: 0.78rem; line-height: 1.45; }
.price-card .includes-label { margin-bottom: 0; padding-top: 1.2rem; border-top: 1px solid var(--border); color: var(--navy); font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.price-details { margin: 0 0 1.5rem; padding: 0.75rem 0 0; list-style: none; }
.price-details li { position: relative; margin-bottom: 0.55rem; padding-left: 1.45rem; color: var(--navy); }
.price-details li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-dark); font-weight: 800; }
.enrollment-steps { display: grid; gap: 1rem; margin: 0; padding: 1.25rem 0 0; border-top: 1px solid var(--border); list-style: none; }
.enrollment-steps li { min-width: 0; }
.enrollment-steps p { margin-bottom: 0.55rem; color: var(--navy); font-size: 0.94rem; font-weight: 750; }
.enrollment-steps p span { display: block; color: var(--teal-dark); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.enrollment-steps .button { width: 100%; }
.enrollment-steps small { display: block; margin-top: 0.4rem; color: var(--muted); font-size: 0.74rem; text-align: center; }

.faq-wrap { max-width: 850px; }
.faq-list details { border-top: 1px solid var(--border); }
.faq-list details:last-child { border-bottom: 1px solid var(--border); }
.faq-list summary { padding: 1.3rem 2.5rem 1.3rem 0; color: var(--navy); font-size: 1.08rem; font-weight: 750; cursor: pointer; }
.faq-list details p { max-width: 720px; color: var(--muted); }
.faq-answer { padding-bottom: 1.3rem; }
.faq-answer p { margin-bottom: 0.8rem; }
.faq-answer ul, .faq-answer ol { max-width: 720px; margin: 0.5rem 0 1rem; padding-left: 1.4rem; color: var(--muted); }
.faq-answer li { margin-bottom: 0.3rem; }
.faq-answer a { color: var(--teal-dark); font-weight: 700; overflow-wrap: anywhere; text-underline-offset: 0.2em; }
.faq-answer-link { display: inline-block; margin-top: 0.15rem; }
.contact-section { background: var(--pale); }
.contact-wrap { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 3rem; align-items: center; }
.contact-wrap > div { max-width: 680px; }
.contact-wrap > div > p:not(.eyebrow) { color: var(--muted); }
.contact-email { color: var(--teal-dark); font-weight: 750; text-underline-offset: 0.2em; overflow-wrap: anywhere; }
.contact-wrap > .button { width: auto; white-space: nowrap; }
.cta-section { padding: 4.75rem 0; background: var(--teal); color: white; text-align: center; }
.cta-content { max-width: 760px; }
.cta-section h2, .cta-section .eyebrow { color: white; }
.cta-section p:not(.eyebrow) { font-size: 1.1rem; }
.site-footer { padding: 3.25rem 0 1.5rem; background: var(--navy-dark); color: #c7d2da; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.6fr 1fr; gap: 4rem; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid h2 { color: white; font-family: inherit; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-grid a:not(.brand) { margin-bottom: 0.55rem; text-decoration: none; }
.footer-grid a:hover { color: white; }
.footer-grid a.footer-logo { width: 230px; margin-bottom: 1rem; }
.footer-logo-art { position: relative; display: block; width: 100%; aspect-ratio: 1039 / 213; overflow: hidden; }
.footer-logo-art img { position: absolute; top: 0; left: 0; width: 147.84%; max-width: none; height: auto; transform: translate(-14.58%, -35.55%); }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.85rem; }
.footer-bottom p { margin: 0; }
.footer-meta { display: grid; gap: 0.25rem; }
.footer-secondary { color: #9fb0bc; font-size: 0.78rem; }
.footer-secondary a { color: #c7d2da; text-underline-offset: 0.2em; }
.footer-secondary a:hover { color: var(--white); }
.footer-legal { display: flex; justify-content: center; align-items: center; }
.footer-policy-link { color: #c7d2da; font-weight: 700; text-underline-offset: 0.2em; }
.footer-policy-link:hover { color: var(--white); }

.confirmation-page { min-height: 100vh; display: flex; flex-direction: column; }
.confirmation-main { flex: 1; display: flex; background: var(--cream); }
.confirmation-section { width: 100%; padding: 4.5rem 0; align-self: center; }
.confirmation-card { max-width: 720px; margin-inline: auto; padding: 3rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); text-align: center; }
.confirmation-card h1 { margin-bottom: 1.25rem; font-size: clamp(2.6rem, 7vw, 4.5rem); }
.confirmation-mark { width: 64px; height: 64px; margin: 0 auto 1.25rem; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: var(--white); font-size: 2rem; font-weight: 800; }
.confirmation-message { max-width: 590px; margin-inline: auto; }
.confirmation-summary { max-width: 560px; margin: 2rem auto; padding: 1.5rem; border-radius: 14px; background: var(--pale); text-align: left; }
.confirmation-summary h2 { margin-bottom: 0.9rem; font-family: inherit; font-size: 1rem; letter-spacing: 0; }
.confirmation-summary ul { margin: 0; padding: 0; list-style: none; }
.confirmation-summary li { display: grid; grid-template-columns: 1.4rem 1fr; gap: 0.45rem; margin-bottom: 0.55rem; color: var(--navy); }
.confirmation-summary li:last-child { margin-bottom: 0; }
.confirmation-summary li span { color: var(--teal-dark); font-weight: 800; }
.confirmation-contact { max-width: 580px; margin: 0 auto 1.5rem; color: var(--muted); font-size: 0.92rem; }
.confirmation-contact a { color: var(--teal-dark); font-weight: 700; overflow-wrap: anywhere; }
.confirmation-footer { padding-top: 0; }
.confirmation-footer .footer-bottom { margin-top: 0; }

.policy-main { background: var(--white); }
.policy-container { max-width: 820px; }
.policy-hero { padding: 4.5rem 0 3.5rem; background: var(--cream); }
.policy-hero h1 { max-width: 760px; font-size: clamp(2.65rem, 6vw, 4.6rem); }
.policy-hero > .policy-container > p:last-child { max-width: 680px; margin-bottom: 0; color: var(--muted); font-size: 1.15rem; }
.policy-hero .policy-effective { margin-bottom: 1.25rem; color: var(--teal-dark); font-size: 0.95rem; }
.policy-content { padding-block: 4rem; }
.policy-section { padding: 0 0 2.25rem; margin-bottom: 2.25rem; border-bottom: 1px solid var(--border); }
.policy-section:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.policy-section h2 { display: grid; grid-template-columns: 2.4rem 1fr; gap: 0.75rem; align-items: center; font-size: clamp(1.45rem, 3vw, 1.85rem); }
.policy-section h2 span { width: 2.4rem; height: 2.4rem; display: grid; place-items: center; border-radius: 50%; background: var(--pale); color: var(--teal-dark); font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 0.8rem; font-weight: 800; }
.policy-section p { color: var(--text); }
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul { margin: 0.5rem 0 1.25rem; padding-left: 1.4rem; }
.policy-section li { margin-bottom: 0.35rem; }
.policy-section a { color: var(--teal-dark); font-weight: 700; overflow-wrap: anywhere; text-underline-offset: 0.2em; }
.policy-section address { font-style: normal; }
.policy-contact { margin-top: 2.5rem; padding: 1.5rem; border-left: 4px solid var(--teal); border-radius: 0 14px 14px 0; background: var(--pale); }
.policy-contact h2 { margin-bottom: 0.5rem; font-size: 1.35rem; }
.policy-contact p { margin: 0; }
.policy-contact a { color: var(--teal-dark); font-weight: 750; overflow-wrap: anywhere; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
@media (min-width: 1051px) {
  .class-details dd { white-space: nowrap; }
}
@media (max-width: 1050px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 78px; left: 0; right: 0; display: none; padding: 1.5rem max(1rem, calc((100% - var(--max-width)) / 2)); flex-direction: column; align-items: stretch; gap: 1rem; background: white; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav .button { text-align: center; }
  .site-nav .language-link { align-self: flex-start; }
}
@media (max-width: 850px) {
  .section { padding: 3.6rem 0; }
  .hero { padding: 4.25rem 0; background: linear-gradient(160deg, var(--cream) 0%, var(--cream) 72%, var(--pale) 72%); }
  .hero-grid, .about-grid, .pricing-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .hero-content { max-width: 680px; }
  .hero-card { max-width: 500px; margin-inline: auto; }
  .three-columns, .steps { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card, .service-card { max-width: 620px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-wrap > .button { justify-self: start; }
  .about-section { padding-block: 3.25rem; }
  .about-visual { width: 280px; margin-inline: auto; }
  .footer-grid a.footer-logo { width: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .container { width: min(calc(100% - 1.5rem), var(--max-width)); }
  .header-logo { width: 180px; }
  .footer-grid a.footer-logo { width: 180px; }
  .hero { padding: 3.5rem 0; }
  .section, .cta-section { padding: 3.25rem 0; }
  .section-heading { margin-bottom: 2rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { text-align: center; }
  .hero-points { flex-direction: column; }
  .lesson-content { padding: 1.4rem; }
  .lesson-detail { flex-direction: column; gap: 0; }
  .class-grid, .skills-grid { grid-template-columns: 1fr; }
  .class-details div { grid-template-columns: 1fr; gap: 0; }
  .contact-wrap > .button { width: 100%; }
  .about-section { padding-block: 3rem; }
  .about-visual { width: 240px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid > div:first-child { grid-column: auto; }
  .confirmation-section { padding: 2.5rem 0; }
  .confirmation-card { padding: 2rem 1.25rem; }
  .confirmation-summary { padding: 1.25rem; }
  .policy-hero { padding: 3rem 0 2.5rem; }
  .policy-content { padding-block: 3rem; }
  .policy-section { padding-bottom: 1.75rem; margin-bottom: 1.75rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
