/* ============================================================
   THE LEDGER BUILDING — 1930 deco by daylight
   limestone · bronze black · brass · racing green · carnelian
   ============================================================ */

:root {
  --limestone: #E9E2D2;
  --limestone-hi: #F2EDE0;
  --limestone-deep: #DDD3BC;
  --bronze: #15130F;
  --bronze-soft: #3A342A;
  --brass: #C9A14E;
  --brass-deep: #9C7A33;
  --green: #1F3D33;
  --green-deep: #172F27;
  --carnelian: #7B2D26;
  --ease-lift: cubic-bezier(.22, 1, .36, 1);
  --ease-brass: cubic-bezier(.65, 0, .2, 1);
  --measure: 34.5rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--limestone);
  color: var(--bronze);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.04rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* faint stone grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg, video { display: block; max-width: 100%; }

[id] { scroll-margin-top: 4.5rem; }

a { color: var(--carnelian); text-decoration-thickness: 1px; text-underline-offset: 3px; }

::selection { background: var(--brass); color: var(--bronze); }

:focus-visible {
  outline: 2px solid var(--carnelian);
  outline-offset: 3px;
  border-radius: 1px;
}
.hero :focus-visible, .crown :focus-visible, .site-foot :focus-visible, .site-head:not(.scrolled) :focus-visible {
  outline-color: var(--brass);
}

.skip {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--bronze); color: var(--limestone);
  padding: .5rem 1rem; font-size: .85rem; transition: top .2s;
}
.skip:focus { top: 1rem; }

/* ---------- type ---------- */

h1, h2, h3 {
  font-family: "Poiret One", serif;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--bronze);
}

h1 {
  font-size: clamp(3.4rem, 9.2vw, 7.6rem);
  letter-spacing: .1em;
  line-height: 1.04;
  color: var(--limestone-hi);
}

h2 {
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  letter-spacing: .07em;
  line-height: 1.1;
  margin-bottom: 1.6rem;
}

h3 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  letter-spacing: .08em;
  line-height: 1.12;
  margin-bottom: 1.2rem;
}

.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--carnelian);
  margin-bottom: 1.1rem;
}

.lede { max-width: var(--measure); font-size: 1.13rem; }

/* ---------- header ---------- */

.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  color: var(--limestone-hi);
  transition: background .35s var(--ease-brass), color .35s, box-shadow .35s;
}
.site-head.scrolled {
  background: rgba(233, 226, 210, .92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--bronze);
  box-shadow: 0 1px 0 rgba(201, 161, 78, .55);
}

.wordmark {
  font-family: "Marcellus", serif;
  font-size: 1.05rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
}
.wordmark span { color: var(--brass); }

.site-head nav { display: flex; align-items: center; gap: clamp(.9rem, 2.4vw, 2rem); }
.site-head nav a {
  color: inherit;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .3rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
.site-head nav a:hover { border-bottom-color: var(--brass); }
.site-head .nav-cta {
  border: 1px solid var(--brass);
  padding: .45rem .9rem;
  transition: background .25s, color .25s;
}
.site-head .nav-cta:hover { background: var(--brass); color: var(--bronze); border-bottom-color: var(--brass); }

/* ---------- elevator dial ---------- */

.dial {
  position: fixed;
  top: 4.6rem;
  right: clamp(1rem, 3vw, 2.6rem);
  z-index: 90;
  width: 200px;
  padding: 14px 12px 8px;
  background: linear-gradient(180deg, var(--limestone-hi), var(--limestone));
  border: 1px solid var(--brass);
  border-radius: 999px 999px 6px 6px;
  box-shadow: 0 14px 34px -18px rgba(21, 19, 15, .55), inset 0 0 0 3px rgba(201, 161, 78, .18);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .5s var(--ease-brass), transform .5s var(--ease-brass);
  pointer-events: none;
}
.dial.on { opacity: 1; transform: none; }

.dial svg { width: 100%; height: auto; }
#dialNeedle { transform-origin: 120px 130px; transform: rotate(-90deg); }
#dialTicks line { stroke: var(--bronze-soft); }
#dialTicks line.minor { stroke: var(--brass-deep); opacity: .5; }
#dialLabels text {
  font-family: "Poiret One", serif;
  font-size: 12.5px;
  fill: var(--bronze);
  text-anchor: middle;
  dominant-baseline: middle;
}

.dial-readout {
  text-align: center;
  font-family: "Poiret One", serif;
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-top: .2rem;
}
#dialFloor { color: var(--carnelian); }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .85rem 1.6rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: "DM Sans", system-ui, sans-serif;
  transition: background .25s, color .25s, border-color .25s;
}
.btn-light { background: var(--limestone-hi); color: var(--bronze); }
.btn-light:hover { background: var(--brass); }
.btn-ghost-light { border-color: rgba(242, 237, 224, .7); color: var(--limestone-hi); }
.btn-ghost-light:hover { border-color: var(--brass); color: var(--brass); }
.btn-dark { background: var(--bronze); color: var(--limestone-hi); box-shadow: inset 0 0 0 1px rgba(201, 161, 78, .5); }
.btn-dark:hover { background: var(--green); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  color: var(--limestone-hi);
}

.hero-media, .hero-media .poster, .hero-media .loop, .hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media .poster, .hero-media .loop { object-fit: cover; object-position: center 28%; }
.hero-scrim {
  background:
    radial-gradient(ellipse 90% 70% at 50% 46%, rgba(21, 19, 15, .38), rgba(21, 19, 15, .12) 55%, transparent 75%),
    linear-gradient(180deg, rgba(21, 19, 15, .42), transparent 26%, transparent 64%, rgba(21, 19, 15, .58));
}

.hero-frame {
  position: absolute;
  inset: clamp(14px, 2.4vw, 30px);
  border: 1px solid rgba(201, 161, 78, .8);
  pointer-events: none;
}
.hero-frame::before, .hero-frame::after {
  content: "";
  position: absolute;
  width: 26px; height: 26px;
  border: 0 solid var(--brass);
}
.hero-frame::before { top: -1px; left: -1px; border-top-width: 3px; border-left-width: 3px; }
.hero-frame::after { bottom: -1px; right: -1px; border-bottom-width: 3px; border-right-width: 3px; }

.hero-inner { position: relative; max-width: 62rem; }
.hero-eyebrow { color: var(--brass); text-shadow: 0 1px 14px rgba(21, 19, 15, .6); }
.hero h1 { text-shadow: 0 2px 30px rgba(21, 19, 15, .55); }

.hero-sun { color: var(--brass); width: 200px; margin: 1.6rem auto 1.5rem; }

.hero .deck {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.1rem;
  text-shadow: 0 1px 12px rgba(21, 19, 15, .75);
}

.hero-cta { margin-top: 2.2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: clamp(30px, 4vw, 48px);
  left: 50%;
  transform: translateX(-50%);
  color: var(--limestone-hi);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.scroll-cue span { color: var(--brass); animation: cue 2.6s var(--ease-lift) infinite; }
@keyframes cue { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* hero load choreography */
.js .hero-eyebrow, .js .hero h1, .js .hero-sun, .js .hero .deck, .js .hero-cta, .js .scroll-cue {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 1s var(--ease-lift) forwards;
}
.js .hero h1 { animation-delay: .12s; letter-spacing: .22em; animation-name: rise-track; }
.js .hero-sun { animation-delay: .45s; }
.js .hero .deck { animation-delay: .58s; }
.js .hero-cta { animation-delay: .72s; }
.js .scroll-cue { animation-delay: 1.05s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes rise-track { to { opacity: 1; transform: none; letter-spacing: .1em; } }

/* ---------- reveal on scroll ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-lift), transform .8s var(--ease-lift);
}
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- lobby ---------- */

.lobby {
  background: linear-gradient(180deg, var(--green-deep), var(--green) 22%);
  color: var(--limestone);
  padding: clamp(4.5rem, 9vw, 8.5rem) clamp(1.25rem, 5vw, 4rem) clamp(3.5rem, 6vw, 5.5rem);
}
.lobby h2 { color: var(--limestone-hi); }
.lobby .eyebrow { color: var(--brass); }

.lobby-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
  max-width: 74rem;
  margin: 0 auto;
}

.lobby-photo img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(201, 161, 78, .65);
  outline: 1px solid rgba(201, 161, 78, .25);
  outline-offset: 6px;
}
.lobby-photo figcaption {
  font-size: .8rem;
  letter-spacing: .06em;
  color: rgba(233, 226, 210, .66);
  margin-top: .9rem;
}

.lobby-copy p + p { margin-top: 1.1rem; }
.lobby-copy .plaque { margin-top: 2.2rem; }

/* ---------- plaque (building-directory spec rules) ---------- */

.plaque {
  border-top: 2px solid var(--brass);
  border-bottom: 2px solid var(--brass);
  padding: .4rem 0;
  max-width: 30rem;
}
.plaque .row {
  display: flex;
  align-items: baseline;
  padding: .55rem 0;
}
.plaque .row + .row { border-top: 1px solid rgba(201, 161, 78, .35); }
.plaque dt, .directory .dt {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plaque dd, .directory .dd {
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  text-align: right;
  font-family: "Marcellus", serif;
  font-size: .98rem;
}
.plaque dd::before, .directory .dd::before {
  content: "";
  flex: 1;
  align-self: center;
  border-bottom: 2px dotted rgba(201, 161, 78, .6);
  margin: 0 .8rem;
  min-width: 2rem;
  transform: translateY(-2px);
}

.plaque-dark { border-color: var(--brass-deep); }

/* ---------- cornerstone ---------- */

.cornerstone {
  max-width: 74rem;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  background: linear-gradient(180deg, var(--limestone), var(--limestone-deep));
  border: 1px solid rgba(21, 19, 15, .28);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, .55), inset 0 -3px 8px rgba(21, 19, 15, .18), 0 10px 26px -16px rgba(0, 0, 0, .6);
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  text-align: center;
}
.cornerstone p {
  font-family: "Marcellus", serif;
  font-size: clamp(.78rem, 1.5vw, .95rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .6);
}

/* ---------- divider ---------- */

.divider {
  padding: clamp(2.6rem, 5vw, 4rem) 1.5rem 0;
  display: flex;
  justify-content: center;
}
.divider svg { width: min(320px, 70vw); height: auto; }

/* ---------- residences / the ride ---------- */

.residences {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem) clamp(3.5rem, 6vw, 5.5rem);
  max-width: 78rem;
  margin: 0 auto;
}

.section-head { max-width: 46rem; }
.section-head .lede { margin-top: .4rem; }

.directory {
  display: block;
  margin: clamp(2.4rem, 5vw, 3.6rem) 0 clamp(2.8rem, 6vw, 4.4rem);
  max-width: 34rem;
  background: var(--green);
  color: var(--limestone);
  border: 1px solid var(--brass);
  outline: 1px solid rgba(201, 161, 78, .4);
  outline-offset: 4px;
  padding: 1.4rem 1.6rem 1.1rem;
}
.directory-title {
  font-family: "Marcellus", serif;
  text-align: center;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--brass);
  border-bottom: 1px solid rgba(201, 161, 78, .5);
  padding-bottom: .8rem;
  margin-bottom: .4rem;
}
.directory .row {
  display: flex;
  align-items: baseline;
  padding: .7rem 0;
  color: var(--limestone);
  text-decoration: none;
}
.directory .row + .row { border-top: 1px solid rgba(201, 161, 78, .25); }
.directory .dd { color: var(--brass); font-size: 1.05rem; }
.directory .row:hover .dt { color: var(--brass); }
.directory .dt { transition: color .25s; }

.ride {
  display: grid;
  grid-template-columns: minmax(210px, 3fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.elevation-stick { position: sticky; top: 5.5rem; }
#elevation { width: min(240px, 100%); margin: 0 auto; }
#elevation .elev-labels text {
  font-family: "Marcellus", serif;
  font-size: 12px;
  fill: var(--bronze-soft);
}
#elevWindows rect {
  fill: rgba(21, 19, 15, .14);
  transition: fill .3s var(--ease-brass);
}
#elevWindows g.lit rect {
  fill: var(--brass);
  transition-delay: calc(var(--i, 0) * 45ms); /* lights climb floor by floor */
}
.elevation-caption {
  text-align: center;
  font-size: .78rem;
  letter-spacing: .05em;
  color: var(--bronze-soft);
  max-width: 15rem;
  margin: .8rem auto 0;
}

.tiers { display: flex; flex-direction: column; gap: clamp(3.5rem, 7vw, 6rem); }

.tier p { max-width: var(--measure); }
.tier .plaque { margin-top: 1.8rem; }
.tier .eyebrow { margin-bottom: .8rem; }

/* ---------- crown ---------- */

.crown { background: var(--bronze); color: var(--limestone); }

.crown-stage {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
}
.crown-media, .crown-media .poster, .crown-media .loop, .crown-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.crown-media .poster, .crown-media .loop { object-fit: cover; object-position: center 20%; }
.crown-scrim {
  background: linear-gradient(180deg, rgba(21, 19, 15, .32), transparent 30%, transparent 55%, rgba(21, 19, 15, .92));
}

.crown-caption {
  position: relative;
  padding: 0 clamp(1.25rem, 5vw, 4rem) clamp(2.5rem, 5vw, 4rem);
  max-width: 78rem;
  margin: 0 auto;
  width: 100%;
}
.crown-caption .eyebrow { color: var(--brass); }
.crown-caption h3 { color: var(--limestone-hi); font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: .6rem; }
.crown-statement {
  font-family: "Marcellus", serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  letter-spacing: .04em;
  color: rgba(233, 226, 210, .9);
}

.crown-body { padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem) clamp(3rem, 6vw, 4.5rem); }
.crown-grid {
  max-width: 74rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.crown-copy p { max-width: var(--measure); }
.crown-copy p + p { margin-top: 1.1rem; }
.crown-copy em { font-style: normal; color: var(--brass); }

/* ---------- viewing ---------- */

.viewing {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 4rem) clamp(4.5rem, 9vw, 8rem);
  max-width: 78rem;
  margin: 0 auto;
}

.viewing .section-head { margin-inline: auto; text-align: center; }
.viewing .lede { margin-inline: auto; }

.appt-card {
  margin: clamp(2.4rem, 5vw, 3.6rem) auto 0;
  max-width: 44rem;
  background: var(--limestone-hi);
  border: 1px solid var(--brass);
  outline: 1px solid rgba(201, 161, 78, .4);
  outline-offset: 5px;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  box-shadow: 0 24px 50px -30px rgba(21, 19, 15, .5);
}
.appt-head {
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .9rem;
  text-align: center;
  padding-bottom: 1.2rem;
  margin-bottom: 1.6rem;
  border-bottom: 2px solid var(--brass);
}
.appt-head span {
  display: block;
  margin-top: .45rem;
  font-size: .68rem;
  letter-spacing: .22em;
  color: var(--brass-deep);
}

.appt-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 2rem;
}
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--carnelian);
}
.field input, .field select {
  font-family: "Marcellus", serif;
  font-size: 1.02rem;
  color: var(--bronze);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--brass-deep);
  border-radius: 0;
  padding: .45rem .1rem;
}
.field input::placeholder { color: rgba(58, 52, 42, .5); }
.field input:focus-visible, .field select:focus-visible {
  outline: none;
  border-bottom: 2px solid var(--carnelian);
  padding-bottom: calc(.45rem - 1px);
}

.appt-actions { margin-top: 1.8rem; text-align: center; }
.appt-note {
  margin-top: 1.2rem;
  text-align: center;
  font-size: .85rem;
  color: var(--bronze-soft);
}
.appt-confirm {
  margin-top: 1.4rem;
  text-align: center;
  font-family: "Marcellus", serif;
  font-size: 1.05rem;
  color: var(--green);
}

/* ---------- footer ---------- */

.site-foot {
  background: var(--bronze);
  color: rgba(233, 226, 210, .85);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 4rem) 2rem;
}
.site-foot a { color: var(--limestone); }
.site-foot a:hover { color: var(--brass); }

.foot-grid {
  max-width: 74rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(201, 161, 78, .3);
  font-size: .92rem;
}
.foot-wordmark {
  font-family: "Poiret One", serif;
  font-size: 1.6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--limestone-hi);
  margin-bottom: .8rem;
}
.foot-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: .7rem;
}
.foot-col p + p { margin-top: .4rem; }
.foot-col a { text-decoration: none; }
.foot-col a:hover { text-decoration: underline; }

.foot-base {
  max-width: 74rem;
  margin: 1.6rem auto 0;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: rgba(233, 226, 210, .55);
}
.credit a { color: rgba(233, 226, 210, .7); }

/* ---------- responsive ---------- */

@media (max-width: 1200px) {
  .dial { width: 148px; padding: 10px 9px 6px; }
  .dial-readout { font-size: .66rem; }
  #dialLabels text { font-size: 14px; }
}

@media (max-width: 1024px) {
  .ride { grid-template-columns: minmax(180px, 3fr) minmax(0, 7fr); gap: 2rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .site-head { padding: .8rem 1.25rem; }
  .hero-frame::before, .hero-frame::after { display: none; }
  .site-head nav a:not(.nav-cta) { display: none; }
  .wordmark { font-size: .82rem; white-space: nowrap; }
  .site-head .nav-cta { white-space: nowrap; padding: .4rem .7rem; font-size: .68rem; }
  .dial {
    width: 108px;
    top: auto;
    bottom: .75rem;
    right: .75rem;
    padding: 8px 7px 4px;
  }
  .dial-readout { font-size: .58rem; letter-spacing: .24em; }
  #dialLabels text { font-size: 16px; }

  .lobby-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .ride { grid-template-columns: 1fr; }
  .elevation-stick { position: static; }
  #elevation { width: min(200px, 60vw); }
  .crown-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .appt-fields { grid-template-columns: 1fr; }
  .foot-base { flex-direction: column; }
  .hero .deck { font-size: 1rem; }
  .hero-cta .btn { padding: .8rem 1.2rem; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .js .hero-eyebrow, .js .hero h1, .js .hero-sun, .js .hero .deck, .js .hero-cta, .js .scroll-cue {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
  .hero-media .loop, .crown-media .loop { display: none; }
  .dial, #dialNeedle, #elevWindows rect { transition: none; }
}
