:root {
  --ink: #090a0d;
  --ink-2: #111318;
  --panel: #17191f;
  --paper: #f4f3ef;
  --white: #ffffff;
  --muted: #a7a9b0;
  --line: rgba(255, 255, 255, .13);
  --red: #ef233c;
  --red-dark: #b70f25;
  --shadow: 0 30px 80px rgba(0, 0, 0, .28);
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.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: 999; left: 1rem; top: -5rem; background: var(--white);
  color: var(--ink); padding: .75rem 1rem; border-radius: 4px;
}
.skip-link:focus { top: 1rem; }

.alert-bar { background: var(--red); color: var(--white); font-size: .82rem; letter-spacing: .04em; }
.alert-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.alert-inner > span { display: flex; align-items: center; gap: 9px; text-transform: uppercase; font-weight: 750; }
.alert-inner a { border-bottom: 1px solid rgba(255,255,255,.45); }
.pulse, .live-dot {
  display: inline-block; width: 8px; height: 8px; background: var(--white); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,255,255,.6); animation: pulse 2s infinite;
}

.site-header {
  position: absolute; z-index: 20; top: 38px; left: 0; right: 0;
  border-bottom: 1px solid var(--line); color: var(--white);
}
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark {
  position: relative; display: grid; place-items: center; width: 46px; height: 46px;
  background: var(--red); color: white; transform: skewX(-8deg); box-shadow: 5px 5px 0 rgba(255,255,255,.12);
}
.brand-mark::after {
  content: ""; position: absolute; inset: 5px; border: 1px solid rgba(255,255,255,.5);
}
.brand-mark span { font-weight: 950; letter-spacing: -.08em; font-size: 1.15rem; transform: skewX(8deg); }
.brand-type { display: flex; flex-direction: column; line-height: 1; letter-spacing: .1em; }
.brand-type strong { font-size: 1.06rem; font-weight: 900; }
.brand-type small { margin-top: 5px; font-size: .62rem; letter-spacing: .32em; color: #c7c9d0; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: .88rem; font-weight: 680; }
.site-nav > a:not(.nav-cta) { position: relative; color: #d8dae0; }
.site-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--red); transition: right .22s ease;
}
.site-nav > a:not(.nav-cta):hover::after, .site-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta { padding: 11px 17px; background: var(--white); color: var(--ink); border-left: 4px solid var(--red); }
.nav-cta:hover { background: var(--red); color: var(--white); }
.menu-button { display: none; background: transparent; border: 0; padding: 8px; }
.menu-button > span:not(.sr-only) { display: block; width: 28px; height: 2px; background: white; margin: 5px 0; }

.hero {
  position: relative; min-height: 810px; padding-top: 124px; background:
    radial-gradient(circle at 72% 42%, rgba(239,35,60,.13), transparent 32%),
    linear-gradient(125deg, #07080a 0%, #111319 62%, #090a0d 100%);
  color: var(--white); overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0; opacity: .17;
  background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: linear-gradient(to right, black, transparent 72%);
}
.hero-layout { position: relative; z-index: 1; min-height: 620px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 58px; padding-block: 80px 90px; }
.eyebrow { margin: 0 0 18px; color: var(--red); font-size: .78rem; font-weight: 850; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 32px; height: 2px; margin: 0 12px 4px 0; background: currentColor; }
.hero h1 { margin: 0; max-width: 750px; font-size: clamp(3.4rem, 6.3vw, 6.25rem); line-height: .91; letter-spacing: -.065em; font-weight: 900; text-transform: uppercase; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.68); }
.hero-lede { max-width: 650px; margin: 28px 0 0; color: #c3c5ca; font-size: 1.08rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 52px;
  padding: 0 22px; border: 1px solid transparent; font-size: .87rem; font-weight: 820; letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: white; box-shadow: 0 15px 40px rgba(239,35,60,.22); }
.button-primary:hover { background: #ff3149; }
.button-ghost { border-color: rgba(255,255,255,.35); color: white; }
.button-ghost:hover { border-color: white; background: rgba(255,255,255,.07); }
.hero-proof { display: flex; gap: 0; margin-top: 48px; border-top: 1px solid var(--line); }
.hero-proof > div { flex: 1; padding: 18px 20px 0 0; }
.hero-proof > div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-size: 1.2rem; line-height: 1.2; }
.hero-proof span { margin-top: 4px; color: var(--muted); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }

.hero-visual { position: relative; max-width: 540px; justify-self: end; }
.visual-frame { position: relative; overflow: hidden; clip-path: polygon(7% 0, 100% 0, 100% 93%, 93% 100%, 0 100%, 0 7%); background: var(--panel); box-shadow: var(--shadow); }
.visual-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.75)); pointer-events: none; }
.visual-frame img { width: 100%; height: 560px; object-fit: cover; object-position: 53% center; filter: saturate(.75) contrast(1.06); }
.scan-line { position: absolute; z-index: 2; left: 0; right: 0; top: 12%; height: 2px; background: linear-gradient(90deg, transparent, rgba(239,35,60,.9), transparent); box-shadow: 0 0 18px var(--red); animation: scan 5s ease-in-out infinite; }
.visual-label { position: absolute; z-index: 3; font-size: .68rem; letter-spacing: .13em; }
.top-label { top: 22px; right: 22px; display: flex; align-items: center; gap: 9px; padding: 8px 11px; background: rgba(7,8,10,.76); backdrop-filter: blur(8px); }
.live-dot { width: 7px; height: 7px; background: var(--red); }
.bottom-label { left: 25px; bottom: 22px; display: flex; flex-direction: column; }
.bottom-label b { font-size: 1.08rem; letter-spacing: .16em; }
.bottom-label span { color: #c4c6cb; }
.corner { position: absolute; z-index: -1; width: 64px; height: 64px; border-color: var(--red); }
.corner-a { left: -15px; top: -15px; border-left: 3px solid var(--red); border-top: 3px solid var(--red); }
.corner-b { right: -15px; bottom: -15px; border-right: 3px solid var(--red); border-bottom: 3px solid var(--red); }
.service-strip { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; border-top: 1px solid var(--line); background: rgba(5,6,8,.72); backdrop-filter: blur(10px); }
.strip-track { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #b9bbc1; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; overflow: hidden; }
.strip-track i { flex: 0 0 4px; width: 4px; height: 4px; border-radius: 50%; background: var(--red); }

.section { padding: 118px 0; }
.section-heading { max-width: 820px; }
.section h2, .contact h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 1; letter-spacing: -.055em; text-transform: uppercase; }
.section-heading > p:last-child { max-width: 700px; margin: 24px 0 0; color: #555861; font-size: 1.06rem; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 62px; border-top: 1px solid #cfd0d3; border-left: 1px solid #cfd0d3; }
.service-card { position: relative; min-height: 310px; padding: 36px; border-right: 1px solid #cfd0d3; border-bottom: 1px solid #cfd0d3; transition: background .25s ease, transform .25s ease, box-shadow .25s ease; }
.service-card:hover { z-index: 1; transform: translateY(-4px); background: white; box-shadow: 0 25px 60px rgba(22,24,29,.1); }
.service-card.featured { grid-row: span 2; min-height: 620px; display: flex; flex-direction: column; justify-content: space-between; background: var(--ink-2); color: var(--white); }
.service-card.featured::after { content: ""; position: absolute; left: 0; bottom: 0; width: 52%; height: 5px; background: var(--red); }
.card-number { color: var(--red); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .78rem; letter-spacing: .12em; }
.service-card h3 { margin: 18px 0 12px; font-size: clamp(1.5rem, 2.4vw, 2.2rem); line-height: 1.08; letter-spacing: -.035em; }
.service-card p { margin: 0; color: #5e6068; }
.service-card.featured p { color: #b8bac1; }
.card-kicker { color: var(--red) !important; text-transform: uppercase; letter-spacing: .15em; font-size: .7rem; font-weight: 800; }
.service-card ul { margin: 30px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.service-card li { position: relative; padding: 13px 0 13px 22px; color: #d2d3d7; border-bottom: 1px solid var(--line); }
.service-card li::before { content: ""; position: absolute; left: 2px; top: 22px; width: 7px; height: 7px; background: var(--red); transform: rotate(45deg); }
.property-list { display: grid; grid-template-columns: 160px 1fr; gap: 25px; margin-top: 38px; padding-top: 28px; border-top: 1px solid #cfd0d3; }
.property-list > p { margin: 5px 0 0; font-size: .73rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.property-list > div { display: flex; flex-wrap: wrap; gap: 10px; }
.property-list span { padding: 8px 12px; background: white; border: 1px solid #d9dade; color: #4f5259; font-size: .83rem; }

.process { position: relative; background: var(--ink); color: white; overflow: hidden; }
.process::before { content: "04"; position: absolute; right: -24px; bottom: -155px; color: rgba(255,255,255,.025); font-size: 31rem; font-weight: 950; line-height: 1; letter-spacing: -.12em; }
.process-layout { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.process-copy { position: sticky; top: 40px; }
.process-copy > p:not(.eyebrow) { margin: 27px 0; color: #b4b6bd; }
.text-link { display: inline-flex; gap: 20px; align-items: center; border-bottom: 1px solid var(--red); padding-bottom: 6px; font-weight: 760; }
.process-steps { margin: 0; padding: 0; list-style: none; }
.process-steps li { display: grid; grid-template-columns: 96px 1fr; gap: 25px; padding: 36px 0; border-top: 1px solid var(--line); }
.process-steps li:last-child { border-bottom: 1px solid var(--line); }
.process-steps > li > span { color: var(--red); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.process-steps h3 { margin: 0 0 7px; font-size: 2.3rem; line-height: 1; letter-spacing: -.04em; text-transform: uppercase; }
.process-steps p { margin: 0; color: #aeb0b7; }

.gallery { background: #e8e7e2; }
.gallery-heading { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: end; }
.gallery-heading > p { margin: 0 0 3px; color: #555860; }
.gallery-grid { display: grid; grid-template-columns: 1.1fr .75fr .7fr; grid-template-rows: 510px; gap: 18px; margin-top: 56px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; background: #c8c8c8; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .4s ease; filter: saturate(.82) contrast(1.04); }
.gallery-grid figure:hover img { transform: scale(1.035); filter: saturate(1) contrast(1.04); }
.gallery-main img { object-position: center 62%; }
.gallery-detail img { object-position: center 68%; }
.gallery-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 50px 24px 22px; background: linear-gradient(transparent, rgba(0,0,0,.82)); color: white; }
.gallery-grid figcaption span, .gallery-grid figcaption strong { display: block; }
.gallery-grid figcaption span { color: #d0d2d6; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.gallery-grid figcaption strong { margin-top: 3px; font-size: 1.18rem; }
.gallery-callout { display: flex; flex-direction: column; justify-content: space-between; padding: 30px; background: var(--red); color: white; }
.callout-index { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .72rem; letter-spacing: .14em; }
.gallery-callout blockquote { margin: 0; font-size: clamp(1.6rem, 2.7vw, 2.4rem); line-height: 1.07; font-weight: 820; letter-spacing: -.04em; }
.gallery-callout p { margin: 0; color: #ffd6dc; font-size: .9rem; }

.faq { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .74fr 1.26fr; gap: 100px; }
.faq-intro { position: sticky; top: 40px; align-self: start; }
.faq-intro > p:last-child { color: #5b5d65; }
.faq-intro a { color: var(--red-dark); border-bottom: 1px solid currentColor; }
.faq-list details { border-top: 1px solid #c9cace; }
.faq-list details:last-child { border-bottom: 1px solid #c9cace; }
.faq-list summary { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; min-height: 88px; padding: 18px 0; cursor: pointer; font-size: 1.08rem; font-weight: 760; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid #aaa; font-size: 1.3rem; font-weight: 400; transition: transform .2s ease, background .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--red); border-color: var(--red); color: white; }
.faq-list details p { margin: -3px 55px 27px 0; color: #5b5e66; }

.contact { position: relative; padding: 112px 0; background: var(--red); color: white; overflow: hidden; }
.contact::after { content: ""; position: absolute; right: -18vw; top: -45%; width: 52vw; height: 52vw; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.02); }
.contact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; gap: 82px; align-items: start; }
.eyebrow.light { color: white; }
.contact-copy > p:not(.eyebrow) { max-width: 530px; margin: 25px 0 0; color: #ffe2e6; font-size: 1.05rem; }
.contact-details { margin-top: 48px; border-top: 1px solid rgba(255,255,255,.3); }
.contact-details > * { display: grid; grid-template-columns: 130px 1fr; gap: 25px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.3); }
.contact-details span { color: #ffd9df; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-details strong { font-weight: 700; }
.inquiry-form { padding: 36px; background: white; color: var(--ink); box-shadow: 0 32px 80px rgba(89,0,13,.25); }
.form-head { display: flex; justify-content: space-between; gap: 15px; align-items: center; margin-bottom: 27px; padding-bottom: 17px; border-bottom: 1px solid #dddde0; }
.form-head span { font-size: 1.4rem; font-weight: 850; text-transform: uppercase; letter-spacing: -.02em; }
.form-head small { color: #767981; font-size: .72rem; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.inquiry-form label { display: block; margin-bottom: 16px; color: #4d5058; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; margin-top: 7px; padding: 12px 13px; background: #f5f5f3; color: var(--ink); border: 1px solid #d9dade; border-radius: 0; outline: 0; font-size: 1rem; text-transform: none; letter-spacing: normal; }
.inquiry-form input, .inquiry-form select { min-height: 49px; }
.inquiry-form textarea { resize: vertical; min-height: 118px; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(239,35,60,.12); }
.button-submit { width: 100%; border: 0; background: var(--ink); color: white; cursor: pointer; }
.button-submit:hover { background: var(--red); }
.form-status { display: none; margin-top: 13px; padding: 11px 13px; font-size: .84rem; font-weight: 700; text-align: center; }
.form-status.success { display: block; background: #e8f7ed; color: #155b2d; border: 1px solid #a9d9b8; }
.form-status.error { display: block; background: #fff0f1; color: #8d1424; border: 1px solid #efb3bb; }
.form-note { margin: 11px 0 0; color: #75777e; font-size: .73rem; text-align: center; }
.honey { position: absolute !important; left: -10000px !important; }

.site-footer { padding: 64px 0 28px; background: #07080a; color: white; }
.footer-top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 48px; padding-bottom: 45px; }
.footer-top > p { margin: 0; color: #8f929a; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-end; color: #c9cbd0; font-size: .82rem; }
.footer-links a:hover { color: var(--red); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-top: 24px; border-top: 1px solid var(--line); color: #7f828a; font-size: .72rem; }
.mobile-call { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.55); } 65% { box-shadow: 0 0 0 7px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }
@keyframes scan { 0%, 100% { top: 13%; opacity: .35; } 50% { top: 82%; opacity: 1; } }

@media (max-width: 1050px) {
  .site-nav { gap: 18px; }
  .hero-layout { gap: 35px; grid-template-columns: 1.07fr .93fr; }
  .hero h1 { font-size: clamp(3.2rem, 6.7vw, 5.2rem); }
  .visual-frame img { height: 490px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 460px auto; }
  .gallery-callout { grid-column: 1 / -1; min-height: 300px; }
  .gallery-callout blockquote { max-width: 680px; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 34px, 720px); }
  .alert-inner { justify-content: center; }
  .alert-inner > span { display: none; }
  .site-header { top: 38px; }
  .nav-wrap { min-height: 74px; }
  .menu-button { display: block; }
  .site-nav {
    position: absolute; top: 74px; left: 0; right: 0; display: none; padding: 22px 17px 28px;
    background: rgba(7,8,10,.98); border-top: 1px solid var(--line); box-shadow: 0 20px 40px rgba(0,0,0,.4);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 10px 6px; }
  .nav-cta { text-align: center; }
  .hero { min-height: auto; padding-top: 112px; }
  .hero-layout { grid-template-columns: 1fr; padding-block: 66px 116px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { max-width: 620px; justify-self: stretch; }
  .visual-frame img { height: min(72vw, 560px); }
  .service-strip { position: relative; }
  .strip-track { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .section { padding: 88px 0; }
  .process-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 58px; }
  .process-copy, .faq-intro { position: static; }
  .gallery-heading { grid-template-columns: 1fr; gap: 20px; }
  .gallery-heading > p { max-width: 620px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  body { padding-bottom: 56px; }
  .brand-mark { width: 41px; height: 41px; }
  .brand-type strong { font-size: .98rem; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.45rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-proof > div { padding-right: 8px; }
  .hero-proof > div + div { padding-left: 10px; }
  .hero-proof strong { font-size: 1rem; }
  .hero-proof span { font-size: .62rem; }
  .visual-frame img { height: 92vw; max-height: 500px; object-position: 52% center; }
  .section h2, .contact h2 { font-size: clamp(2.4rem, 12vw, 3.3rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card.featured { grid-row: auto; min-height: auto; padding: 29px 24px; }
  .service-card.featured { min-height: 460px; }
  .property-list { grid-template-columns: 1fr; gap: 15px; }
  .process-steps li { grid-template-columns: 58px 1fr; gap: 10px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 520px 520px auto; }
  .gallery-callout { grid-column: auto; min-height: 360px; }
  .faq-list summary { min-height: 78px; font-size: .98rem; }
  .contact { padding: 82px 0; }
  .contact-details > * { grid-template-columns: 1fr; gap: 5px; }
  .inquiry-form { padding: 25px 19px; }
  .form-head { align-items: flex-start; flex-direction: column; gap: 2px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .mobile-call {
    position: fixed; z-index: 99; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 56px; padding: 0 15px; background: var(--red); color: white; font-size: .83rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase;
    box-shadow: 0 -9px 24px rgba(0,0,0,.2);
  }
}

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