@charset "UTF-8";

/* ------------------------------
   The Landmark on Tower concept
   Original design by Alshival.Ai
   ------------------------------ */

:root {
  color-scheme: dark;
  --ink: #09090c;
  --ink-soft: #111015;
  --plum: #171219;
  --plum-2: #211720;
  --chalk: #f5eee3;
  --chalk-muted: #bdb4a8;
  --ember: #f5a945;
  --candle: #ffe0a3;
  --oxblood: #7d2433;
  --sage: #586053;
  --line: rgba(245, 238, 227, 0.18);
  --paper: #ece2d3;
  --paper-ink: #181416;
  --header-h: 78px;
  --concept-h: 34px;
  --serif: "Iowan Old Style", "Palatino Linotype", Baskerville, "Times New Roman", serif;
  --sans: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --page-pad: clamp(22px, 5vw, 80px);
  --radius: 2px;
  --ease: cubic-bezier(.2, .75, .25, 1);
  --pointer-x: 50%;
  --pointer-y: 40%;
  --mode-sky: #171219;
  --mode-deep: #08080b;
  --mode-bulb: #ffd084;
  --mode-glow: rgba(245, 169, 69, .55);
  --mode-opacity: 1;
}

body[data-light-mode="blue"] {
  --mode-sky: #192235;
  --mode-deep: #0b101c;
  --mode-bulb: #f7c376;
  --mode-glow: rgba(117, 157, 210, .38);
  --mode-opacity: .62;
}

body[data-light-mode="midnight"] {
  --mode-sky: #08080d;
  --mode-deep: #020205;
  --mode-bulb: #ffb04c;
  --mode-glow: rgba(231, 95, 42, .32);
  --mode-opacity: .8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  scrollbar-color: var(--ember) var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--chalk);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-gated,
body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

::selection {
  background: var(--ember);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--candle);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 12px 16px;
  transform: translateY(-140%);
  background: var(--chalk);
  color: var(--ink);
  font-weight: 700;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.concept-bar {
  position: relative;
  z-index: 80;
  min-height: var(--concept-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px var(--page-pad);
  background: var(--chalk);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .105em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.concept-bar p {
  margin: 0;
}

.concept-bar a {
  border-bottom: 1px solid currentColor;
}

.concept-bar__pulse {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--oxblood);
  box-shadow: 0 0 0 0 rgba(125, 36, 51, .5);
  animation: disclosurePulse 2.6s infinite;
}

@keyframes disclosurePulse {
  60% { box-shadow: 0 0 0 7px rgba(125, 36, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(125, 36, 51, 0); }
}

.preview-gate {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 74% 10%, rgba(125, 36, 51, .2), transparent 30%),
    rgba(5, 5, 7, .93);
  backdrop-filter: blur(18px);
  transition: opacity .7s var(--ease), visibility .7s;
}

.preview-gate.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preview-gate__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.preview-gate__backdrop::before,
.preview-gate__backdrop::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  height: 1px;
  background: rgba(245, 238, 227, .15);
  transform-origin: center;
}

.preview-gate__backdrop::before {
  top: 24%;
  transform: rotate(8deg);
}

.preview-gate__backdrop::after {
  top: 38%;
  transform: rotate(-7deg);
}

.preview-gate__backdrop span {
  position: absolute;
  top: 22%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--candle);
  box-shadow: 0 0 12px 4px rgba(245, 169, 69, .5);
  animation: gateLight 2.4s ease-in-out infinite alternate;
}

.preview-gate__backdrop span:nth-child(1) { left: 12%; }
.preview-gate__backdrop span:nth-child(2) { left: 31%; top: 29%; animation-delay: -.7s; }
.preview-gate__backdrop span:nth-child(3) { left: 52%; top: 31%; animation-delay: -1.1s; }
.preview-gate__backdrop span:nth-child(4) { left: 72%; top: 26%; animation-delay: -.25s; }
.preview-gate__backdrop span:nth-child(5) { left: 90%; top: 18%; animation-delay: -1.5s; }

@keyframes gateLight {
  to { opacity: .55; transform: scale(.78); }
}

.preview-gate__card {
  position: relative;
  width: min(680px, 100%);
  padding: clamp(30px, 6vw, 70px);
  border: 1px solid rgba(245, 238, 227, .2);
  background:
    linear-gradient(135deg, rgba(255,255,255,.035), transparent 45%),
    rgba(14, 12, 16, .91);
  box-shadow: 0 40px 120px rgba(0,0,0,.5);
  text-align: center;
}

.preview-gate__card::before,
.preview-gate__card::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: var(--ember);
}

.preview-gate__card::before {
  top: 12px;
  left: 12px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.preview-gate__card::after {
  right: 12px;
  bottom: 12px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.preview-gate__card img {
  margin: 26px auto 18px;
  filter: drop-shadow(0 0 22px rgba(245, 169, 69, .2));
}

.preview-gate__card h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(43px, 7vw, 78px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .92;
}

.preview-gate__card > p {
  width: min(520px, 100%);
  margin: 24px auto 0;
  color: var(--chalk-muted);
  font-size: 13px;
  line-height: 1.75;
}

.preview-gate__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}

.preview-gate__card > small {
  display: block;
  margin-top: 22px;
  color: #837b72;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  color: var(--ember);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 20px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button--ember {
  background: var(--ember);
  color: var(--ink);
}

.button--ember:hover {
  background: var(--candle);
}

.button--ghost {
  border-color: rgba(245, 238, 227, .35);
  background: transparent;
  color: var(--chalk);
}

.button--ghost:hover {
  border-color: var(--candle);
  background: rgba(245, 238, 227, .06);
}

.button--ink {
  background: var(--paper-ink);
  color: var(--paper);
}

.button--ink:hover {
  background: var(--oxblood);
}

.text-link {
  display: inline-flex;
  padding-block: 7px;
  border-bottom: 1px solid rgba(245, 238, 227, .4);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: border-color .25s, color .25s;
}

.text-link:hover {
  border-color: var(--ember);
  color: var(--candle);
}

.text-link--dark {
  border-color: rgba(24, 20, 22, .3);
}

.text-link--dark:hover {
  color: var(--oxblood);
  border-color: var(--oxblood);
}

.site-header {
  position: absolute;
  top: var(--concept-h);
  left: 0;
  right: 0;
  z-index: 70;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line);
  transition: background .35s, backdrop-filter .35s, transform .35s;
}

.site-header.is-fixed {
  position: fixed;
  top: 0;
  height: 62px;
  background: rgba(9, 9, 12, .88);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}

.site-header.is-hidden {
  transform: translateY(-105%);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  opacity: .9;
}

.brand__wordmark {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: -.01em;
}

.brand__wordmark i {
  color: var(--chalk-muted);
  font-size: 12px;
  font-weight: 400;
}

.brand__tag {
  margin-left: 6px;
  padding: 4px 6px 3px;
  border: 1px solid rgba(245, 238, 227, .22);
  color: var(--ember);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.2vw, 50px);
}

.desktop-nav a {
  position: relative;
  padding-block: 7px;
  color: var(--chalk-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--ember);
  transition: right .25s var(--ease);
}

.desktop-nav a:hover {
  color: var(--chalk);
}

.desktop-nav a:hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: var(--chalk);
  transition: transform .25s, opacity .25s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  padding: 130px var(--page-pad) 80px;
  background:
    radial-gradient(circle at 80% 10%, rgba(125,36,51,.2), transparent 35%),
    var(--ink);
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(34px, 11vw, 56px);
  letter-spacing: -.04em;
}

.hero {
  position: relative;
  min-height: max(780px, calc(100svh - var(--concept-h)));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 80px) var(--page-pad) 100px;
  isolation: isolate;
  background: var(--mode-deep);
  transition: background 1s var(--ease);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), var(--mode-glow), transparent 21%),
    linear-gradient(180deg, var(--mode-sky), var(--mode-deep) 72%);
  transition: background 1s var(--ease);
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero__grain,
.planner__texture {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero__moon {
  position: absolute;
  top: 18%;
  right: 9%;
  width: min(35vw, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .18;
  background: radial-gradient(circle, rgba(255,224,163,.3), rgba(255,224,163,.03) 55%, transparent 68%);
  filter: blur(4px);
  transform: translate(calc((var(--pointer-x) - 50%) * .035), calc((var(--pointer-y) - 50%) * .035));
}

.canopy {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  opacity: .93;
  transition: opacity 1s;
  transform: translate(calc((var(--pointer-x) - 50%) * -.01), calc((var(--pointer-y) - 50%) * -.01));
}

.canopy__trees path:not(.branch) {
  fill: url("#trunkFade");
}

.canopy .branch {
  fill: none;
  stroke: rgba(2,2,4,.85);
  stroke-width: 26;
  stroke-linecap: round;
}

.canopy .branch--thin {
  stroke-width: 13;
}

.canopy__strings path {
  fill: none;
  stroke: rgba(245,238,227,.2);
  stroke-width: 1.2;
}

.canopy__bulbs circle {
  fill: var(--mode-bulb);
  opacity: var(--mode-opacity);
  transform-box: fill-box;
  transform-origin: center;
  transition: fill 1s, opacity 1s;
  animation: bulbBreathe 3s ease-in-out infinite alternate;
}

.canopy__bulbs circle:nth-child(3n) { animation-delay: -1.1s; }
.canopy__bulbs circle:nth-child(4n) { animation-delay: -2s; }
.canopy__bulbs circle:nth-child(5n) { animation-delay: -.45s; }

@keyframes bulbBreathe {
  from { opacity: calc(var(--mode-opacity) * .58); transform: scale(.86); }
  to { opacity: var(--mode-opacity); transform: scale(1.18); }
}

.canopy__ground path:first-child {
  fill: rgba(2, 2, 4, .86);
}

.canopy .table-line {
  fill: none;
  stroke: rgba(245, 238, 227, .09);
  stroke-width: 5;
}

.hero__tower {
  position: absolute;
  top: 26%;
  right: 20%;
  width: 64px;
  height: 49%;
  opacity: .4;
}

.hero__tower-beam {
  position: absolute;
  left: 29px;
  top: 0;
  bottom: 0;
  width: 5px;
  border-left: 1px solid rgba(245,238,227,.38);
  border-right: 1px solid rgba(245,238,227,.18);
  box-shadow: 0 0 30px rgba(245,169,69,.16);
}

.hero__tower-cap,
.hero__tower-base {
  position: absolute;
  left: 8px;
  width: 48px;
  height: 1px;
  background: rgba(245,238,227,.32);
}

.hero__tower-cap {
  top: 0;
}

.hero__tower-base {
  bottom: 0;
}

.hero__content {
  position: relative;
  width: min(890px, 69vw);
  padding-top: 20px;
}

.hero__kicker {
  width: min(520px, 100%);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  color: var(--chalk-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero__kicker-line {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.hero__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(76px, 10.4vw, 165px);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .74;
}

.hero__title span,
.hero__title em {
  display: block;
}

.hero__title-indent {
  margin-left: clamp(38px, 10vw, 170px);
}

.hero__title em {
  margin-top: .08em;
  color: var(--ember);
  font-weight: 400;
}

.hero__lede {
  width: min(520px, 100%);
  margin: 44px 0 0 clamp(38px, 10vw, 170px);
  color: var(--chalk-muted);
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  gap: 10px;
  margin: 30px 0 0 clamp(38px, 10vw, 170px);
}

.hero__mode-panel {
  position: absolute;
  right: var(--page-pad);
  bottom: 42px;
  width: 270px;
}

.hero__mode-label {
  display: block;
  margin-bottom: 12px;
  color: var(--chalk-muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.light-switch {
  border-top: 1px solid var(--line);
}

.light-switch button {
  width: 100%;
  display: grid;
  grid-template-columns: 12px 1fr;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  background: transparent;
  color: #777079;
  cursor: pointer;
  font-size: 9px;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
}

.light-switch button i {
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.light-switch button[aria-pressed="true"] {
  color: var(--chalk);
}

.light-switch button[aria-pressed="true"] i {
  border-color: var(--candle);
  background: var(--candle);
  box-shadow: 0 0 9px var(--ember);
}

.mode-readout {
  display: grid;
  grid-template-columns: 1.15fr .8fr .75fr;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mode-readout span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #6f6870;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.mode-readout strong {
  color: var(--chalk);
  font-size: 8px;
  font-weight: 700;
}

body.mode-shifting .canopy__bulbs circle {
  animation: modeShift .62s var(--ease) both;
}

@keyframes modeShift {
  0% { opacity: .2; transform: scale(.55); }
  55% { opacity: 1; transform: scale(1.6); }
  100% { opacity: var(--mode-opacity); transform: scale(1); }
}

.hero__mode-panel small {
  display: block;
  margin-top: 10px;
  color: #6f6870;
  font-size: 8px;
  line-height: 1.45;
}

.hero__scroll {
  position: absolute;
  left: var(--page-pad);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--chalk-muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll i {
  position: relative;
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: rgba(245,238,227,.2);
}

.hero__scroll i::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--ember);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  70%, 100% { transform: translateY(200%); }
}

.marquee {
  overflow: hidden;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.marquee__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--chalk-muted);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .18em;
  animation: marquee 24s linear infinite;
}

.marquee__track i {
  color: var(--ember);
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  padding: clamp(100px, 13vw, 190px) var(--page-pad);
}

.tower-rail {
  position: absolute;
  top: 0;
  left: calc(var(--page-pad) - 14px);
  bottom: 0;
  width: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.tower-rail span {
  margin-top: 44px;
  color: var(--ember);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
}

.tower-rail i {
  width: 1px;
  flex: 1;
  margin-top: 16px;
  background: linear-gradient(var(--ember), rgba(245,238,227,.08) 26%, rgba(245,238,227,.08));
}

.tower-rail--light i {
  background: linear-gradient(var(--oxblood), rgba(24,20,22,.14) 26%, rgba(24,20,22,.14));
}

.tower-rail--light span {
  color: var(--oxblood);
}

.section__intro {
  width: min(720px, 85%);
  margin-left: clamp(40px, 8vw, 140px);
}

.section__intro--center {
  margin: 0 auto;
  text-align: center;
}

.section__intro--center .eyebrow {
  justify-content: center;
}

.section__intro--center .section__copy {
  margin-inline: auto;
}

.display-heading {
  margin: 26px 0 0;
  font-family: var(--serif);
  font-size: clamp(64px, 9.5vw, 146px);
  font-weight: 400;
  letter-spacing: -.066em;
  line-height: .82;
}

.display-heading em {
  color: var(--ember);
  font-weight: 400;
}

.section__copy {
  width: min(540px, 100%);
  margin: 34px 0 0;
  color: var(--chalk-muted);
  font-family: var(--serif);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.65;
}

.atmosphere {
  min-height: 100vh;
  background:
    radial-gradient(circle at 90% 38%, rgba(125,36,51,.13), transparent 30%),
    var(--ink);
}

.scene-stack {
  width: min(1180px, calc(100% - clamp(40px, 8vw, 140px)));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: clamp(70px, 9vw, 130px) 0 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.scene-card {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 38px;
  background: var(--ink-soft);
  isolation: isolate;
}

.scene-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(transparent 35%, rgba(3,3,5,.87));
}

.scene-card__number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(245,238,227,.35);
  font-size: 9px;
  letter-spacing: .14em;
}

.scene-card .eyebrow {
  margin-bottom: 16px;
  color: var(--ember);
}

.scene-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(37px, 3.5vw, 55px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .9;
}

.scene-card p:last-child {
  margin: 20px 0 0;
  color: var(--chalk-muted);
  font-size: 11px;
  line-height: 1.7;
}

.scene-card {
  transition: transform .55s var(--ease), filter .55s var(--ease);
}

.scene-card:hover {
  z-index: 2;
  transform: translateY(-12px);
  filter: brightness(1.12);
}

.scene-card__orb {
  position: absolute;
  top: 16%;
  left: 17%;
  z-index: -2;
  width: 67%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 45%, #4b5e78, #1a263a 56%, transparent 57%);
  box-shadow: 0 0 80px rgba(82,116,159,.2);
}

.scene-card--blue {
  background: linear-gradient(160deg, #142038, #080b12 75%);
}

.scene-card--ember {
  background:
    radial-gradient(circle at 50% 35%, rgba(245,169,69,.28), transparent 26%),
    linear-gradient(160deg, #281910, #0a0909 75%);
}

.scene-card__bulbs {
  position: absolute;
  top: 22%;
  left: 0;
  right: 0;
  z-index: -2;
  height: 150px;
}

.scene-card__bulbs::before {
  content: "";
  position: absolute;
  top: 24px;
  left: -10%;
  width: 120%;
  height: 100px;
  border-top: 1px solid rgba(255,224,163,.25);
  border-radius: 50%;
}

.scene-card__bulbs i {
  position: absolute;
  top: 31px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--candle);
  box-shadow: 0 0 15px 7px rgba(245,169,69,.35);
}

.scene-card__bulbs i:nth-child(1) { left: 7%; top: 20px; }
.scene-card__bulbs i:nth-child(2) { left: 28%; top: 45px; }
.scene-card__bulbs i:nth-child(3) { left: 50%; top: 54px; }
.scene-card__bulbs i:nth-child(4) { left: 72%; top: 44px; }
.scene-card__bulbs i:nth-child(5) { left: 93%; top: 17px; }

.scene-card--midnight {
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(245,169,69,.16) 50%, transparent 50.2%),
    linear-gradient(160deg, #100b13, #040405 75%);
}

.scene-card__tower-art {
  position: absolute;
  inset: 12% 20% 27%;
  z-index: -2;
  border-bottom: 1px solid rgba(245,238,227,.25);
}

.scene-card__tower-art i {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(245,169,69,.75), transparent);
}

.scene-card__tower-art i:nth-child(2) {
  left: 35%;
  height: 70%;
  bottom: 0;
  transform: rotate(14deg);
  transform-origin: bottom;
  opacity: .4;
}

.scene-card__tower-art i:nth-child(3) {
  left: 65%;
  height: 70%;
  bottom: 0;
  transform: rotate(-14deg);
  transform-origin: bottom;
  opacity: .4;
}

.hours {
  overflow: hidden;
  background: var(--paper);
  color: var(--paper-ink);
}

.hours__halo {
  position: absolute;
  top: 28%;
  left: 50%;
  width: min(90vw, 1040px);
  aspect-ratio: 1;
  border: 1px solid rgba(24,20,22,.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 60px rgba(24,20,22,.018),
    0 0 0 120px rgba(24,20,22,.013);
}

.hours .eyebrow > span,
.hours .display-heading em {
  color: var(--oxblood);
}

.hours .section__copy {
  color: #6b625c;
}

.hours-dial {
  position: relative;
  width: min(680px, 74vw);
  aspect-ratio: 1;
  margin: clamp(80px, 10vw, 140px) auto 0;
  border: 1px solid rgba(24,20,22,.13);
  border-radius: 50%;
}

.hours-dial::before,
.hours-dial::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px dashed rgba(24,20,22,.13);
  border-radius: 50%;
}

.hours-dial::after {
  inset: 30%;
  border-style: solid;
}

.hours-dial__center {
  position: absolute;
  inset: 33%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--paper-ink);
  color: var(--paper);
  text-align: center;
  box-shadow: 0 20px 60px rgba(24,20,22,.18);
}

.hours-dial__center img {
  margin-bottom: 13px;
}

.hours-dial__center span,
.hours-dial__center small {
  color: #a99f94;
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hours-dial__center strong {
  margin: 6px 0;
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: -.04em;
}

.orbit-day {
  position: absolute;
  width: 72px;
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24,20,22,.14);
  border-radius: 50%;
  background: var(--paper);
  transform: translate(-50%, -50%);
}

.orbit-day b {
  font-size: 9px;
  letter-spacing: .12em;
}

.orbit-day i {
  margin-top: 4px;
  color: #8f857d;
  font-family: var(--serif);
  font-size: 11px;
  font-style: normal;
}

.orbit-day.is-open {
  border-color: var(--oxblood);
  background: var(--oxblood);
  color: var(--paper);
  box-shadow: 0 10px 26px rgba(125,36,51,.18);
}

.orbit-day.is-open i {
  color: #f1c7bf;
}

.orbit-day--mon { left: 29%; top: 9%; }
.orbit-day--tue { left: 72%; top: 10%; }
.orbit-day--wed { left: 96%; top: 39%; }
.orbit-day--thu { left: 85%; top: 79%; }
.orbit-day--fri { left: 50%; top: 98%; }
.orbit-day--sat { left: 15%; top: 79%; }
.orbit-day--sun { left: 4%; top: 39%; }

.hours-list {
  width: min(820px, 100%);
  margin: 120px auto 0;
  border-top: 1px solid rgba(24,20,22,.24);
}

.hours-list__row {
  display: grid;
  grid-template-columns: minmax(110px, auto) 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(24,20,22,.16);
}

.hours-list__row span {
  font-family: var(--serif);
  font-size: clamp(21px, 2.5vw, 31px);
  letter-spacing: -.025em;
}

.hours-list__row i {
  height: 1px;
  background: rgba(24,20,22,.13);
}

.hours-list__row strong {
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hours-list__row.is-closed {
  color: #9a9189;
}

.hours-list__row.is-today {
  margin-inline: -18px;
  padding-inline: 18px;
  background: rgba(125,36,51,.06);
  box-shadow: inset 3px 0 0 var(--oxblood);
}

.hours-list__row.is-today > span::after {
  content: "Today in Alamo";
  display: inline-block;
  margin-left: 12px;
  color: var(--oxblood);
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .11em;
  vertical-align: middle;
  text-transform: uppercase;
}

.hours__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 50px;
}

.planner {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(480px, 1.22fr);
  gap: clamp(60px, 8vw, 140px);
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 15%, rgba(125,36,51,.22), transparent 29%),
    #0c090c;
}

.planner__texture {
  opacity: .12;
}

.planner__intro {
  position: relative;
  z-index: 1;
  margin-left: clamp(40px, 8vw, 140px);
}

.planner__intro .display-heading {
  font-size: clamp(68px, 8.7vw, 132px);
}

.privacy-stamp {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 32px;
  padding: 12px 15px;
  border: 1px solid rgba(245,238,227,.15);
}

.privacy-stamp > span {
  color: var(--ember);
  font-size: 25px;
}

.privacy-stamp div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.privacy-stamp strong {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.privacy-stamp small {
  color: var(--chalk-muted);
  font-size: 9px;
}

.planner-console {
  position: relative;
  z-index: 1;
  align-self: center;
  overflow: hidden;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid rgba(245,238,227,.18);
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 38%),
    rgba(14,12,15,.88);
  box-shadow: 0 40px 100px rgba(0,0,0,.3);
}

.planner-console::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -20%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,169,69,.09), transparent 67%);
  pointer-events: none;
}

.planner-console__top {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--chalk-muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.status-dot {
  display: flex;
  align-items: center;
  gap: 7px;
}

.status-dot i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 7px var(--ember);
}

.planner-step {
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity .3s;
}

.planner-step.is-disabled {
  opacity: .38;
}

.planner-step__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.planner-step__label > span {
  color: var(--ember);
  font-size: 8px;
  letter-spacing: .1em;
}

.planner-step__label h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.planner-step__label output {
  margin-left: auto;
  color: var(--candle);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.choice-grid {
  display: grid;
  gap: 7px;
}

.choice-grid button {
  border: 1px solid rgba(245,238,227,.13);
  background: rgba(255,255,255,.015);
  cursor: pointer;
  transition: border-color .25s, background .25s, color .25s, transform .25s;
}

.choice-grid button:hover {
  border-color: rgba(245,169,69,.55);
  transform: translateY(-1px);
}

.choice-grid button[aria-pressed="true"] {
  border-color: var(--ember);
  background: var(--ember);
  color: var(--ink);
}

.choice-grid--days {
  grid-template-columns: repeat(5, 1fr);
}

.choice-grid--days button {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.choice-grid--days span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.choice-grid--days strong {
  margin-top: 7px;
  color: var(--chalk-muted);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 400;
}

.choice-grid--days button[aria-pressed="true"] strong {
  color: var(--ink);
}

.choice-grid--party {
  grid-template-columns: repeat(3, 1fr);
}

.choice-grid--party button {
  min-height: 46px;
  font-family: var(--serif);
  font-size: 16px;
}

.planner-step > small {
  display: block;
  margin-top: 11px;
  color: #746e74;
  font-size: 8px;
  line-height: 1.5;
}

.time-slider {
  padding: 10px 4px 0;
}

.time-slider input {
  width: 100%;
  height: 2px;
  appearance: none;
  border-radius: 0;
  outline: none;
  background: linear-gradient(90deg, var(--ember), var(--oxblood));
  cursor: pointer;
}

.time-slider input::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  appearance: none;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--candle);
  box-shadow: 0 0 0 1px var(--candle), 0 0 18px rgba(245,169,69,.5);
}

.time-slider input::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--candle);
  box-shadow: 0 0 0 1px var(--candle), 0 0 18px rgba(245,169,69,.5);
}

.time-slider__ticks {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  color: #7b747a;
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.time-slider__ticks i {
  height: 1px;
  background: repeating-linear-gradient(90deg, transparent 0 9px, rgba(245,238,227,.2) 9px 10px);
}

.planner-submit {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  padding: 0 24px;
  background: var(--ember);
  color: var(--ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s, opacity .25s;
}

.planner-submit:disabled {
  opacity: .28;
  cursor: not-allowed;
}

.planner-submit:not(:disabled):hover {
  background: var(--candle);
}

.planner-submit i {
  font-family: var(--serif);
  font-size: 20px;
  font-style: normal;
}

.evening-card {
  position: fixed;
  top: 50%;
  right: clamp(20px, 5vw, 80px);
  z-index: 200;
  width: min(520px, calc(100vw - 40px));
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  padding: clamp(32px, 5vw, 58px);
  transform: translateY(-50%);
  border: 1px solid rgba(245,224,163,.42);
  background:
    radial-gradient(circle at 80% 0, rgba(125,36,51,.35), transparent 34%),
    #100c10;
  box-shadow: -30px 40px 110px rgba(0,0,0,.67);
}

.evening-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(245,238,227,.08);
  pointer-events: none;
}

.evening-card.is-entering {
  animation: cardEnter .65s var(--ease) both;
}

@keyframes cardEnter {
  from { opacity: 0; transform: translate(50px, -45%); }
}

.evening-card__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: transparent;
  color: var(--chalk);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 30px;
}

.evening-card__lights {
  position: relative;
  height: 50px;
  margin: -10px 0 30px;
  border-top: 1px solid rgba(245,224,163,.2);
  border-radius: 50%;
}

.evening-card__lights i {
  position: absolute;
  top: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--candle);
  box-shadow: 0 0 12px 5px rgba(245,169,69,.35);
}

.evening-card__lights i:nth-child(1) { left: 3%; }
.evening-card__lights i:nth-child(2) { left: 27%; top: 3px; }
.evening-card__lights i:nth-child(3) { left: 50%; top: 5px; }
.evening-card__lights i:nth-child(4) { left: 73%; top: 2px; }
.evening-card__lights i:nth-child(5) { left: 97%; }

.evening-card h3 {
  margin: 18px 0 30px;
  font-family: var(--serif);
  font-size: clamp(47px, 6vw, 70px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .87;
}

.evening-card dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.evening-card dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.evening-card dt {
  color: var(--chalk-muted);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.evening-card dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
}

.evening-card__note {
  margin: 22px 0;
  color: var(--chalk-muted);
  font-size: 10px;
  line-height: 1.65;
}

.evening-card__actions {
  display: flex;
  gap: 8px;
}

.evening-card__actions .button {
  flex: 1;
}

.evening-card > small {
  display: block;
  min-height: 14px;
  margin-top: 12px;
  color: var(--candle);
  font-size: 9px;
  text-align: center;
}

.concierge {
  overflow: hidden;
  background: var(--paper);
  color: var(--paper-ink);
}

.concierge .eyebrow > span,
.concierge .display-heading em {
  color: var(--oxblood);
}

.concierge .section__copy {
  color: #6b625c;
}

.concierge-ui {
  width: min(880px, calc(100% - clamp(40px, 8vw, 140px)));
  margin: 80px 0 0 auto;
  border: 1px solid rgba(24,20,22,.18);
  background: #f3eadf;
  box-shadow: 0 35px 90px rgba(24,20,22,.1);
}

.concierge-ui__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 22px;
  border-bottom: 1px solid rgba(24,20,22,.14);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.concierge-ui__header div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.concierge-ui__header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--oxblood);
}

.concierge-ui__header > span {
  color: #897e76;
}

.concierge-ui__conversation {
  min-height: 230px;
  display: flex;
  align-items: center;
  padding: clamp(30px, 6vw, 65px);
}

.message {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 17px;
}

.message > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-ink);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 19px;
}

.message p {
  max-width: 610px;
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 35px);
  line-height: 1.25;
  letter-spacing: -.02em;
}

.message p.is-changing {
  animation: answerChange .4s var(--ease);
}

@keyframes answerChange {
  50% { opacity: 0; transform: translateY(7px); }
}

.concierge-ui__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 22px;
  border-top: 1px solid rgba(24,20,22,.14);
}

.concierge-ui__chips button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(24,20,22,.2);
  background: transparent;
  color: var(--paper-ink);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  transition: background .2s, color .2s;
}

.concierge-ui__chips button:hover,
.concierge-ui__chips button[aria-pressed="true"] {
  background: var(--paper-ink);
  color: var(--paper);
}

.concierge-ui__foot {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0 22px 18px;
  color: #8b8078;
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.concierge-ui__foot span {
  color: var(--oxblood);
}

.possibilities {
  padding-top: clamp(100px, 13vw, 190px);
  background:
    linear-gradient(90deg, rgba(245,238,227,.025) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--ink);
}

.possibilities__intro {
  margin-left: clamp(40px, 8vw, 140px);
}

.possibilities__intro .display-heading {
  font-size: clamp(70px, 10vw, 150px);
}

.possibility-list {
  width: min(1100px, calc(100% - clamp(40px, 8vw, 140px)));
  margin: clamp(80px, 10vw, 140px) 0 0 auto;
  border-top: 1px solid var(--line);
}

.possibility {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(210px, .8fr) 1.3fr 40px;
  align-items: center;
  gap: 24px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .35s var(--ease), background .35s;
}

.possibility:hover {
  padding-left: 18px;
  padding-right: 18px;
  background: rgba(245,238,227,.025);
}

.possibility > span {
  color: var(--ember);
  font-size: 8px;
}

.possibility h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 3.2vw, 41px);
  font-weight: 400;
  letter-spacing: -.035em;
}

.possibility p {
  margin: 0;
  color: var(--chalk-muted);
  font-size: 11px;
  line-height: 1.7;
}

.possibility > i {
  color: var(--ember);
  font-family: var(--serif);
  font-size: 24px;
  font-style: normal;
}

.possibilities__disclaimer {
  width: min(650px, calc(100% - clamp(40px, 8vw, 140px)));
  margin: 34px 0 0 auto;
  color: #777078;
  font-size: 9px;
  line-height: 1.7;
}

.contact {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 5%, rgba(245,169,69,.16), transparent 35%),
    linear-gradient(180deg, #160f14, #070709);
  text-align: center;
}

.contact__canopy {
  position: absolute;
  top: 4%;
  left: 0;
  right: 0;
  height: 160px;
  border-top: 1px solid rgba(245,238,227,.14);
  border-radius: 50%;
}

.contact__canopy span {
  position: absolute;
  top: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--candle);
  box-shadow: 0 0 18px 7px rgba(245,169,69,.35);
  animation: bulbBreathe 3s ease-in-out infinite alternate;
}

.contact__canopy span:nth-child(1) { left: 6%; }
.contact__canopy span:nth-child(2) { left: 21%; top: 24px; }
.contact__canopy span:nth-child(3) { left: 36%; top: 38px; }
.contact__canopy span:nth-child(4) { left: 50%; top: 42px; }
.contact__canopy span:nth-child(5) { left: 64%; top: 37px; }
.contact__canopy span:nth-child(6) { left: 79%; top: 23px; }
.contact__canopy span:nth-child(7) { left: 94%; }

.contact > .eyebrow {
  justify-content: center;
}

.contact__title {
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(76px, 12vw, 180px);
  font-weight: 400;
  letter-spacing: -.075em;
  line-height: .76;
}

.contact__title em {
  color: var(--ember);
  font-weight: 400;
}

.contact__details {
  width: min(1060px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(70px, 8vw, 110px) auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-style: normal;
}

.contact__details a {
  position: relative;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-right: 1px solid var(--line);
  transition: background .3s;
}

.contact__details a:last-child {
  border-right: 0;
}

.contact__details a:hover {
  background: rgba(245,238,227,.045);
}

.contact__details span {
  margin-bottom: 14px;
  color: var(--ember);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact__details strong {
  font-family: var(--serif);
  font-size: clamp(18px, 2.1vw, 29px);
  font-weight: 400;
  line-height: 1.25;
}

.contact__details i {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--chalk-muted);
  font-family: var(--serif);
  font-size: 18px;
  font-style: normal;
}

.contact__source-note {
  margin: 25px 0 0;
  color: #746d74;
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: .8fr 1.4fr .65fr;
  gap: 50px;
  padding: 60px var(--page-pad) 90px;
  border-top: 1px solid var(--line);
  background: #050507;
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.site-footer__brand p {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.3;
}

.site-footer__brand span {
  color: var(--chalk-muted);
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer__disclosure {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.site-footer__disclosure strong {
  color: var(--ember);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer__disclosure p {
  max-width: 600px;
  margin: 12px 0 0;
  color: #89818a;
  font-size: 10px;
  line-height: 1.75;
}

.site-footer__disclosure a {
  color: var(--chalk);
  border-bottom: 1px solid currentColor;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 13px;
}

.site-footer__links a {
  color: var(--chalk-muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-footer__links a:hover {
  color: var(--ember);
}

.mobile-actions {
  display: none;
}

.noscript {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 300;
  max-width: 380px;
  padding: 14px;
  border: 1px solid var(--ember);
  background: var(--ink);
  color: var(--chalk);
  font-size: 11px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .hero__content {
    width: 82vw;
  }

  .hero__mode-panel {
    width: 190px;
  }

  .planner {
    grid-template-columns: 1fr;
  }

  .planner__intro {
    max-width: 700px;
  }

  .planner-console {
    width: min(780px, calc(100% - clamp(40px, 8vw, 140px)));
    margin-left: auto;
  }

  .scene-card {
    min-height: 440px;
    padding: 28px;
  }

  .scene-card h3 {
    font-size: 38px;
  }

  .site-footer {
    grid-template-columns: 1fr 1.6fr;
  }

  .site-footer__links {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 66px;
    --concept-h: 43px;
  }

  .concept-bar {
    padding-block: 7px;
    font-size: 8px;
  }

  .concept-bar p span {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .brand__tag {
    display: none;
  }

  .hero {
    min-height: 820px;
    align-items: end;
    padding-top: calc(var(--header-h) + 90px);
    padding-bottom: 160px;
  }

  .hero__content {
    width: 100%;
  }

  .hero__title {
    font-size: clamp(70px, 18vw, 116px);
    line-height: .8;
  }

  .hero__title-indent,
  .hero__lede,
  .hero__actions {
    margin-left: 0;
  }

  .hero__title-indent {
    margin-left: 11vw;
  }

  .hero__lede {
    max-width: 470px;
    margin-top: 32px;
  }

  .hero__actions {
    flex-wrap: wrap;
  }

  .hero__mode-panel {
    right: var(--page-pad);
    bottom: 28px;
    left: var(--page-pad);
    width: auto;
  }

  .light-switch {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .light-switch button {
    display: flex;
    border-right: 1px solid var(--line);
  }

  .hero__mode-panel small,
  .mode-readout {
    display: none;
  }

  .hero__scroll {
    display: none;
  }

  .hero__tower {
    right: 14%;
  }

  .canopy {
    width: 150%;
    max-width: none;
    left: -35%;
  }

  .section__intro {
    width: calc(100% - 40px);
    margin-left: 40px;
  }

  .scene-stack {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
  }

  .scene-card {
    min-height: 420px;
  }

  .hours-dial {
    width: min(620px, 82vw);
  }

  .orbit-day {
    width: 60px;
    height: 60px;
  }

  .hours-list {
    margin-top: 90px;
  }

  .planner__intro,
  .possibilities__intro {
    margin-left: 40px;
  }

  .planner-console,
  .concierge-ui,
  .possibility-list,
  .possibilities__disclaimer {
    width: calc(100% - 40px);
  }

  .contact__details {
    grid-template-columns: 1fr;
    width: min(540px, 100%);
  }

  .contact__details a {
    min-height: 125px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact__details a:last-child {
    border-bottom: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer__disclosure {
    padding: 26px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-footer__links {
    grid-column: auto;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --page-pad: 20px;
  }

  body {
    padding-bottom: 66px;
  }

  .preview-gate {
    padding: 12px;
  }

  .preview-gate__card {
    padding: 34px 22px;
  }

  .preview-gate__card h1 {
    font-size: 46px;
  }

  .preview-gate__card > p {
    font-size: 12px;
  }

  .preview-gate__actions {
    flex-direction: column;
    gap: 11px;
  }

  .preview-gate__actions .button {
    width: 100%;
  }

  .brand__wordmark {
    font-size: 14px;
  }

  .brand__wordmark i {
    display: block;
    font-size: 10px;
  }

  .hero {
    min-height: 780px;
    padding-bottom: 148px;
  }

  .hero__kicker {
    margin-bottom: 22px;
    font-size: 7px;
  }

  .hero__kicker-line {
    display: none;
  }

  .hero__title {
    font-size: clamp(63px, 20vw, 91px);
  }

  .hero__title-indent {
    margin-left: 8vw;
  }

  .hero__lede {
    font-size: 15px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .light-switch button {
    padding-right: 4px;
    font-size: 7px;
  }

  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .tower-rail {
    left: 7px;
  }

  .tower-rail span {
    margin-top: 30px;
  }

  .section__intro,
  .planner__intro,
  .possibilities__intro {
    width: calc(100% - 30px);
    margin-left: 30px;
  }

  .display-heading {
    font-size: clamp(55px, 18vw, 82px);
  }

  .section__copy {
    font-size: 15px;
  }

  .scene-stack,
  .planner-console,
  .concierge-ui,
  .possibility-list,
  .possibilities__disclaimer {
    width: calc(100% - 30px);
  }

  .scene-card {
    min-height: 390px;
    padding: 25px;
  }

  .scene-card h3 {
    font-size: 40px;
  }

  .hours__halo {
    top: 32%;
  }

  .hours-dial {
    width: 76vw;
    margin-top: 100px;
  }

  .hours-dial__center {
    inset: 28%;
  }

  .hours-dial__center img {
    width: 30px;
    height: auto;
  }

  .hours-dial__center strong {
    font-size: 20px;
  }

  .hours-dial__center span,
  .hours-dial__center small {
    font-size: 6px;
  }

  .orbit-day {
    width: 47px;
    height: 47px;
  }

  .orbit-day b {
    font-size: 7px;
  }

  .orbit-day i {
    font-size: 8px;
  }

  .hours-list {
    margin-top: 80px;
  }

  .hours-list__row {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .hours-list__row i {
    display: none;
  }

  .hours-list__row span {
    font-size: 19px;
  }

  .hours-list__row.is-today > span::after {
    display: block;
    margin: 4px 0 0;
  }

  .hours-list__row strong {
    font-size: 8px;
  }

  .hours__actions {
    flex-direction: column;
  }

  .hours__actions .button {
    width: 100%;
  }

  .planner {
    gap: 55px;
  }

  .planner__intro .display-heading,
  .possibilities__intro .display-heading {
    font-size: clamp(59px, 18vw, 85px);
  }

  .planner-console {
    padding: 20px;
  }

  .planner-console__top {
    gap: 12px;
  }

  .choice-grid--days {
    grid-template-columns: repeat(3, 1fr);
  }

  .choice-grid--days button {
    min-height: 64px;
  }

  .planner-step__label {
    flex-wrap: wrap;
  }

  .planner-step__label output {
    width: 100%;
    margin: 3px 0 0 20px;
  }

  .evening-card {
    right: 12px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    padding: 35px 24px;
  }

  .evening-card h3 {
    font-size: 47px;
  }

  .evening-card__actions {
    flex-direction: column;
  }

  .concierge-ui__conversation {
    min-height: 250px;
    padding: 28px 20px;
  }

  .message p {
    font-size: 23px;
  }

  .concierge-ui__chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 14px;
  }

  .concierge-ui__chips button {
    padding: 8px;
  }

  .possibility {
    grid-template-columns: 28px 1fr 24px;
    gap: 12px;
    padding: 24px 0;
  }

  .possibility p {
    grid-column: 2 / 4;
  }

  .contact {
    min-height: auto;
  }

  .contact__title {
    font-size: clamp(62px, 20vw, 93px);
  }

  .contact__details {
    margin-top: 60px;
  }

  .site-footer {
    padding-bottom: 50px;
  }

  .site-footer__links {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    height: 66px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(245,238,227,.2);
    background: rgba(9,9,12,.94);
    backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 18px;
    border-right: 1px solid var(--line);
  }

  .mobile-actions a:last-child {
    border-right: 0;
    background: var(--ember);
    color: var(--ink);
  }

  .mobile-actions span {
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
  }

  .mobile-actions strong {
    margin-top: 4px;
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 400;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: rgba(245,238,227,.42);
    --chalk-muted: #d4ccc2;
  }

  .button--ghost,
  .planner-console,
  .scene-stack {
    border-color: currentColor;
  }
}

@media print {
  .preview-gate,
  .site-header,
  .mobile-actions,
  .hero__mode-panel,
  .hero__scroll,
  .marquee {
    display: none !important;
  }

  body {
    padding: 0;
    background: white;
    color: black;
  }

  .section,
  .hero {
    min-height: auto;
    break-inside: avoid;
    background: white !important;
    color: black !important;
  }
}
