:root {
  --blue: #0189fb;
  --blue-dark: #0067cf;
  --blue-soft: #eaf7ff;
  --orange: #fa5803;
  --orange-dark: #cf4100;
  --ink: #0b1830;
  --muted: #667085;
  --line: #dce5ee;
  --paper: #ffffff;
  --surface: #f5f9fc;
  --navy: #003b72;
  --navy-deep: #00203f;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 24px 70px rgba(7, 37, 73, 0.13);
  --font: "Montserrat", "Segoe UI", Arial, sans-serif;
  --text-body: 1rem;
  --text-small: .875rem;
  --text-eyebrow: .8125rem;
  --text-h3: clamp(1.3rem, 1.8vw, 1.5rem);
  --text-h2: clamp(2.35rem, 4.2vw, 4rem);
  --text-h1: clamp(3rem, 5.2vw, 5.35rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 200; padding: 12px 18px; color: white; background: var(--navy); border-radius: 10px; }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.9); border-bottom: 1px solid rgba(220,229,238,.75); backdrop-filter: blur(16px); }
.admin-bar .site-header { top: 32px; }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 188px; height: auto; }
.brand .custom-logo-link { display: inline-flex; align-items: center; }
.main-nav { display: flex; align-items: center; gap: 18px; font-weight: 650; font-size: var(--text-small); }
.main-nav a:not(.nav-cta) { position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 20px; color: #fff; background: var(--blue); border-radius: 999px; box-shadow: 0 9px 22px rgba(1,137,251,.2); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.nav-cta:hover { background: var(--blue-dark); box-shadow: 0 12px 26px rgba(1,137,251,.28); transform: translateY(-2px); }
.header-phone { color: var(--blue-dark); font-weight: 800; white-space: nowrap; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 50%; background: var(--surface); }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); transition: .25s ease; }

.hero { position: relative; overflow: hidden; padding: 82px 0 88px; background: linear-gradient(145deg, #f8fbff 0%, #fff 58%, #fff8f3 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: radial-gradient(rgba(1,137,251,.22) 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(to right, black, transparent 46%); }
.hero-orb { position: absolute; border-radius: 999px; filter: blur(2px); pointer-events: none; }
.hero-brand-qr { position: absolute; width: clamp(300px, 39vw, 640px); height: auto; right: -4%; top: -17%; opacity: .075; pointer-events: none; transform: rotate(8deg); }
.hero-orb-two { width: 220px; height: 220px; right: -120px; bottom: -50px; background: rgba(250,88,3,.14); }
.hero-grid { position: relative; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--blue-dark); font-size: var(--text-eyebrow); font-weight: 800; letter-spacing: .11em; line-height: 1.3; text-transform: uppercase; }
.eyebrow span { width: 22px; height: 3px; border-radius: 99px; background: var(--orange); }
h1, h2, h3 { margin-top: 0; letter-spacing: -.035em; line-height: 1.12; }
h1 { max-width: 690px; margin-bottom: 24px; font-size: var(--text-h1); font-weight: 800; }
h2 { font-size: var(--text-h2); font-weight: 800; }
h3 { font-size: var(--text-h3); font-weight: 700; }
h1 em, .cta-card h2 em { color: var(--blue); font-style: normal; }
.hero-text { max-width: 585px; margin: 0 0 34px; color: var(--muted); font-size: 1.12rem; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 14px 23px; border: 1px solid transparent; border-radius: 999px; font-weight: 750; line-height: 1.2; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--orange), #ff7a22); box-shadow: 0 14px 32px rgba(250,88,3,.25); }
.button-primary:hover { box-shadow: 0 18px 36px rgba(250,88,3,.34); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.75); }
.button-ghost:hover { border-color: var(--blue); color: var(--blue-dark); }
.hero-points { display: flex; flex-wrap: wrap; gap: 13px 20px; padding: 0; margin: 0; list-style: none; color: #425166; font-size: .88rem; font-weight: 650; }
.hero-points span { display: inline-grid; place-items: center; width: 19px; height: 19px; margin-right: 4px; color: #fff; background: var(--blue); border-radius: 50%; font-size: .7rem; }
.hero-visual { position: relative; min-width: 0; }
.image-frame { position: relative; overflow: hidden; aspect-ratio: 1.05 / 1; border: 8px solid rgba(255,255,255,.86); border-radius: var(--radius-lg); box-shadow: var(--shadow); transform: rotate(1.25deg); }
.image-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.24); border-radius: inherit; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; }
.float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; min-width: 205px; padding: 13px 16px; background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.8); border-radius: 18px; box-shadow: 0 16px 38px rgba(7,27,51,.16); backdrop-filter: blur(12px); }
.float-card-top { right: -28px; top: 14%; }
.float-card-bottom { left: -30px; bottom: 10%; }
.float-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: #fff; font-size: 1.2rem; font-weight: 900; }
.float-icon.blue { background: var(--blue); }
.float-icon.orange { background: var(--orange); }
.float-card strong, .float-card small { display: block; line-height: 1.35; }
.float-card strong { font-size: .88rem; }
.float-card small { color: var(--muted); font-size: .72rem; }

.trust-strip { color: #fff; background: linear-gradient(100deg, var(--blue-dark), #004f9f); }
.trust-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.trust-inner > p { margin: 0; color: #91a3b8; font-size: .78rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.venue-list { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 24px; font-weight: 750; }
.venue-list i { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; }

.section { padding: 116px 0; }
.section-heading { max-width: 640px; margin-bottom: 54px; }
.section-heading h2, .how-copy h2 { margin-bottom: 20px; font-size: var(--text-h2); font-weight: 800; }
.section-heading > p:last-child, .how-copy > p { max-width: 560px; margin: 0; color: var(--muted); font-size: 1.04rem; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.benefits { background: var(--paper); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card { position: relative; min-height: 365px; padding: 34px; overflow: hidden; background: var(--surface); border: 1px solid #e8eef5; border-radius: var(--radius-md); transition: transform .25s ease, box-shadow .25s ease; }
.benefit-card:hover { transform: translateY(-7px); box-shadow: 0 20px 45px rgba(7,37,73,.09); }
.benefit-card.featured { background: var(--blue-soft); }
.card-number { position: absolute; right: 25px; top: 18px; color: rgba(7,27,51,.08); font-size: 4rem; font-weight: 900; line-height: 1; }
.icon-box { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 66px; border-radius: 18px; }
.icon-box svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.brand-icon-box { background: #fff; box-shadow: 0 9px 22px rgba(0,32,63,.12); }
.brand-icon-box img { width: 54px; height: 54px; object-fit: contain; }
.blue-icon { color: var(--blue); background: #fff; box-shadow: 0 9px 22px rgba(1,137,251,.12); }
.orange-icon { color: #fff; background: var(--orange); box-shadow: 0 9px 22px rgba(250,88,3,.2); }
.benefit-card h3 { margin-bottom: 14px; }
.benefit-card p { margin: 0; color: var(--muted); }

.menu-showcase { background: var(--surface); }
.menu-heading { max-width: none; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; }
.menu-heading-note { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 18px; padding-bottom: 9px; }
.menu-heading-note p { margin: 0; color: var(--muted); font-size: 1.04rem; }
.section-brand-icon { width: 64px; height: 64px; object-fit: contain; }
.section-brand-icon-light { width: 72px; height: 72px; margin: 0 auto 18px; padding: 8px; background: rgba(255,255,255,.92); border-radius: 20px; box-shadow: 0 12px 30px rgba(0,0,0,.16); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.menu-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: 0 16px 42px rgba(7,37,73,.07); transition: transform .25s ease, box-shadow .25s ease; }
.menu-card:hover { transform: translateY(-7px); box-shadow: 0 24px 54px rgba(7,37,73,.13); }
.menu-card-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.menu-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.menu-card:hover .menu-card-media img { transform: scale(1.045); }
.menu-card-media > span { position: absolute; left: 18px; top: 18px; padding: 7px 12px; color: #fff; background: rgba(11,24,48,.78); border: 1px solid rgba(255,255,255,.38); border-radius: 999px; backdrop-filter: blur(9px); font-size: var(--text-small); font-weight: 700; }
.menu-card-body { padding: 25px 26px 28px; }
.menu-card-body > p { margin: 0 0 8px; color: var(--orange-dark); font-size: var(--text-eyebrow); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.menu-card-body h3 { margin-bottom: 20px; }
.menu-card-body a { display: inline-flex; align-items: center; gap: 9px; color: var(--blue-dark); font-size: var(--text-small); font-weight: 800; }
.menu-card-body a span { transition: transform .2s ease; }
.menu-card-body a:hover span { transform: translateX(5px); }

.packages { position: relative; overflow: hidden; color: #fff; background: linear-gradient(145deg, #063b6b 0%, var(--navy-deep) 54%, #00172d 100%); }
.package-glow { position: absolute; width: 520px; height: 520px; left: -180px; top: -220px; background: rgba(1,137,251,.2); border-radius: 50%; filter: blur(60px); }
.section-heading.light .eyebrow { color: #9dcbff; }
.section-heading.light > p:last-child { color: #a9b9ca; }
.package-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 960px; margin: 0 auto; }
.package-card { position: relative; padding: 38px; color: var(--ink); background: #fff; border: 1px solid rgba(255,255,255,.16); border-radius: 28px; }
.package-card-accent { background: linear-gradient(155deg, #fff 0%, #eef7ff 100%); box-shadow: 0 22px 65px rgba(0,0,0,.2); }
.package-card-accent::before { content: ""; position: absolute; inset: -2px; z-index: -1; background: linear-gradient(135deg, var(--blue), var(--orange)); border-radius: 30px; }
.popular-badge { position: absolute; right: 28px; top: -16px; padding: 8px 15px; color: #fff; background: var(--orange); border-radius: 999px; font-size: .74rem; font-weight: 800; letter-spacing: .04em; }
.package-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.package-label { padding: 7px 12px; color: var(--blue-dark); background: var(--blue-soft); border-radius: 999px; font-size: .76rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.package-card-accent .package-label { color: #fff; background: var(--blue); }
.package-index { color: #a9b7c6; font-size: .82rem; font-weight: 800; }
.package-card h3 { margin-bottom: 12px; }
.package-intro { min-height: 58px; margin: 0 0 28px; color: var(--muted); }
.feature-list { display: grid; gap: 13px; min-height: 224px; padding: 25px 0; margin: 0; list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-list li { display: flex; align-items: flex-start; gap: 11px; }
.feature-list span { flex: 0 0 auto; width: 21px; height: 21px; display: grid; place-items: center; margin-top: 2px; color: #fff; background: var(--blue); border-radius: 50%; font-size: .67rem; font-weight: 900; }
.package-card-accent .feature-list span { background: var(--orange); }
.package-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding-top: 25px; }
.package-footer small, .package-footer strong { display: block; }
.package-footer small { margin-bottom: 3px; color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.package-footer strong { font-size: 1.18rem; }
.round-link { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; background: var(--ink); border-radius: 50%; font-size: 1.25rem; transition: transform .2s ease, background .2s ease; }
.round-link:hover { transform: rotate(-45deg); background: var(--orange); }
.package-note { position: relative; margin: 28px 0 0; color: #91a3b8; text-align: center; font-size: .86rem; }

.how { background: var(--surface); }
.how-grid { display: grid; grid-template-columns: .83fr 1.17fr; gap: 100px; align-items: start; }
.how-copy { position: sticky; top: 126px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; color: var(--blue-dark); font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.steps { padding: 0; margin: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 74px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.steps li:first-child { padding-top: 0; }
.step-number { width: 60px; height: 60px; display: grid; place-items: center; color: var(--blue); background: #fff; border: 1px solid #dbe9f5; border-radius: 18px; box-shadow: 0 10px 24px rgba(7,37,73,.07); font-size: 1.15rem; font-weight: 900; }
.steps li:nth-child(2) .step-number { color: #fff; background: var(--orange); border-color: var(--orange); }
.steps h3 { margin: 4px 0 8px; }
.steps p { margin: 0; color: var(--muted); }

.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; cursor: pointer; list-style: none; font-size: 1.08rem; font-weight: 750; }
summary::-webkit-details-marker { display: none; }
summary span { flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-size: 1.2rem; transition: transform .25s ease; }
details[open] summary span { transform: rotate(45deg); color: #fff; background: var(--orange); }
details p { max-width: 650px; padding: 0 50px 23px 0; margin: -4px 0 0; color: var(--muted); }

.final-cta { padding: 0 0 92px; }
.cta-card { position: relative; overflow: hidden; padding: 78px 70px; color: #fff; background: linear-gradient(130deg, var(--blue) 0%, var(--blue-dark) 72%); border-radius: var(--radius-lg); box-shadow: 0 28px 70px rgba(1,137,251,.25); }
.cta-card > *:not(.cta-pattern) { position: relative; z-index: 2; }
.cta-pattern { position: absolute; width: 480px; height: 480px; right: -95px; top: -115px; border: 84px solid rgba(255,255,255,.08); border-radius: 50%; }
.cta-pattern::after { content: ""; position: absolute; width: 100px; height: 100px; right: 0; bottom: 6px; background: var(--orange); border-radius: 26px; transform: rotate(14deg); }
.light-eyebrow { color: rgba(255,255,255,.78); }
.light-eyebrow span { background: #fff; }
.cta-card h2 { max-width: 650px; margin-bottom: 18px; font-size: var(--text-h2); }
.cta-card h2 em { color: #fff; text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: 7px; text-underline-offset: 10px; }
.cta-card > p:not(.eyebrow) { max-width: 540px; margin: 0 0 28px; color: rgba(255,255,255,.8); font-size: 1.05rem; }
.button-white { color: var(--blue-dark); background: #fff; box-shadow: 0 13px 28px rgba(0,0,0,.14); }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.08); }
.button-outline-light:hover { background: rgba(255,255,255,.16); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-note { display: block; margin-top: 16px; color: rgba(255,255,255,.7); font-size: var(--text-small); }

.site-footer { padding: 32px 0; color: #bfd8ef; background: linear-gradient(100deg, #00172d, var(--navy-deep)); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; }
.footer-brand img { width: 150px; }
.footer-copy { text-align: center; }
.footer-inner p { margin: 0 0 7px; font-size: var(--text-small); text-align: center; }
.footer-copy div { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 18px; color: #fff; font-size: var(--text-small); font-weight: 650; }
.footer-inner > a:last-child { justify-self: end; color: #fff; font-size: .84rem; font-weight: 750; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(250,88,3,.52); outline-offset: 4px; }

@media (max-width: 980px) {
  .hero-brand-qr { right: -17%; top: -9%; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(720px, 92%); margin: 0 auto; }
  .image-frame { aspect-ratio: 1.35 / 1; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit-card:last-child { grid-column: 1 / -1; min-height: 310px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-card:last-child { grid-column: 1 / -1; }
  .package-grid { max-width: 800px; }
  .package-card { padding: 30px; }
  .how-grid, .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .how-copy { position: static; }
  .faq-grid .section-heading { margin-bottom: 0; }
}

@media (max-width: 880px) {
  .admin-bar .site-header { top: 46px; }
  .container { width: min(100% - 28px, 620px); }
  .header-inner { min-height: 72px; }
  .brand img { width: 156px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav { position: absolute; left: 14px; right: 14px; top: 82px; display: none; align-items: stretch; gap: 4px; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 11px 12px; }
  .nav-cta { margin-top: 7px; text-align: center; }
  .hero { padding: 58px 0 70px; }
  :root { --text-h1: clamp(2.65rem, 13vw, 4rem); --text-h2: clamp(2.1rem, 11vw, 3.1rem); }
  .hero-text { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-points { display: grid; gap: 10px; }
  .hero-visual { width: calc(100% - 10px); }
  .image-frame { aspect-ratio: .92 / 1; border-width: 5px; border-radius: 28px; transform: none; }
  .image-frame img { object-position: 62% center; }
  .float-card { min-width: 0; padding: 10px 12px; }
  .float-card-top { right: -7px; top: 8%; }
  .float-card-bottom { left: -7px; bottom: 7%; }
  .float-icon { width: 32px; height: 32px; }
  .float-card strong { font-size: .76rem; }
  .float-card small { font-size: .65rem; }
  .trust-inner { padding: 24px 0; align-items: flex-start; flex-direction: column; gap: 14px; }
  .venue-list { justify-content: flex-start; gap: 11px 13px; font-size: .84rem; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 38px; }
  .menu-heading { grid-template-columns: 1fr; gap: 8px; }
  .menu-heading-note { grid-template-columns: 52px 1fr; gap: 14px; padding-bottom: 0; }
  .menu-heading-note .section-brand-icon { width: 52px; height: 52px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card:last-child { grid-column: auto; }
  .benefit-grid, .package-grid { grid-template-columns: 1fr; }
  .benefit-card, .benefit-card:last-child { grid-column: auto; min-height: auto; padding: 28px; }
  .icon-box { margin-bottom: 48px; }
  .package-grid { gap: 30px; }
  .package-card { padding: 28px 24px; }
  .package-intro, .feature-list { min-height: 0; }
  .steps li { grid-template-columns: 58px 1fr; gap: 17px; }
  .step-number { width: 50px; height: 50px; border-radius: 15px; }
  .faq-grid { gap: 30px; }
  summary { font-size: 1rem; }
  .cta-card { padding: 54px 28px; border-radius: 28px; }
  .cta-pattern { right: -330px; }
  .cta-card h2 em { text-decoration-thickness: 5px; text-underline-offset: 7px; }
  .contact-actions { display: grid; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-inner > a:last-child { justify-self: center; }
}

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