:root {
  --ink: #0b0d0c;
  --paper: #f2f1e8;
  --white: #ffffff;
  --acid: #d7ff3f;
  --blue: #3157ff;
  --coral: #ff5c35;
  --muted: #a9aca7;
  --line-light: rgba(255, 255, 255, 0.26);
  --line-dark: rgba(11, 13, 12, 0.2);
  --display: "Syne", sans-serif;
  --body: "Manrope", sans-serif;
  --page-pad: clamp(1rem, 3.5vw, 4rem);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
}

body,
a,
button {
  cursor: default;
}

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

a:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

img {
  display: block;
  width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}

.preview-note {
  display: flex;
  min-height: 2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem var(--page-pad);
  background: var(--acid);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 3rem;
  left: 50%;
  display: grid;
  width: min(calc(100% - 2rem), 86rem);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  color: var(--white);
  transform: translateX(-50%);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(11, 13, 12, 0.88);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
}

.brand {
  font-size: 1rem;
}

nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

nav a,
.header-action {
  transition: color 160ms ease;
}

nav a:hover,
.header-action:hover {
  color: var(--acid);
}

.header-action {
  justify-self: end;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header-action span {
  margin-left: 0.4rem;
}

.hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  contain: paint;
  overflow: hidden;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.045);
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero-overlay {
  background: rgba(4, 6, 5, 0.42);
}

.hero-main {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 84svh;
  padding: clamp(8rem, 18vh, 12rem) var(--page-pad) clamp(2rem, 5vw, 4rem);
  flex-direction: column;
  justify-content: space-between;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 0.35rem rgba(215, 255, 63, 0.18);
}

.hero-heading {
  align-self: stretch;
}

.hero-heading > p {
  margin-bottom: 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  display: flex;
  margin-bottom: 0;
  flex-direction: column;
  font-size: 12rem;
  font-weight: 800;
  line-height: 0.72;
  text-transform: uppercase;
}

h1 span:last-child {
  align-self: flex-end;
  color: var(--acid);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(15rem, 30rem) auto;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.hero-bottom p {
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 1.45;
}

.solid-action,
.map-action {
  display: inline-flex;
  min-width: 14rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.solid-action {
  padding: 1rem;
  background: var(--acid);
  color: var(--ink);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.solid-action:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
}

.marquee {
  contain: paint;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--acid);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.2rem;
  padding: 1rem 0;
  animation: marquee 24s linear infinite;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.marquee-track i {
  color: var(--blue);
  font-style: normal;
}

.section-pad {
  padding: clamp(5rem, 10vw, 10rem) var(--page-pad);
}

.section-label {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-label.light {
  border-color: var(--line-light);
  color: var(--muted);
}

.section-label.dark {
  border-color: rgba(11, 13, 12, 0.36);
}

.manifesto {
  background: var(--paper);
}

.manifesto-copy {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
  padding-top: clamp(3rem, 7vw, 6rem);
}

.manifesto h2,
.rhythm-title,
.visit-section h2 {
  margin-bottom: 0;
  font-size: 8.5rem;
  font-weight: 800;
  line-height: 0.82;
  text-transform: uppercase;
}

.manifesto h2 span {
  display: block;
  color: var(--blue);
}

.manifesto-note {
  display: grid;
  gap: 3rem;
}

.manifesto-note p {
  margin-bottom: 0;
  line-height: 1.65;
}

.coordinates {
  color: var(--blue);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
}

.menu-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--ink);
  color: var(--white);
}

.menu-visual {
  position: relative;
  min-height: 58rem;
  overflow: hidden;
}

.menu-visual img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.menu-visual:hover img {
  transform: scale(1.035);
}

.menu-visual p {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  margin-bottom: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 4px;
  background: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-panel {
  display: flex;
  min-width: 0;
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 6rem);
  flex-direction: column;
}

.menu-panel h2 {
  margin: clamp(3rem, 7vw, 6rem) 0 auto;
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 0.85;
  text-transform: uppercase;
}

.menu-list {
  margin-top: 4rem;
  border-top: 1px solid var(--line-light);
}

.menu-row {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.84rem;
  transition:
    color 160ms ease,
    padding 160ms ease;
}

.menu-row:hover {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  color: var(--acid);
}

.menu-number {
  color: var(--muted);
}

.rhythm {
  background: var(--paper);
}

.rhythm-title {
  display: flex;
  margin-top: clamp(3rem, 7vw, 6rem);
  justify-content: space-between;
  color: var(--ink);
}

.rhythm-title span {
  color: var(--coral);
}

.moments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 3rem);
  margin-top: clamp(3rem, 7vw, 6rem);
}

.moment {
  min-width: 0;
}

.moment-night {
  margin-top: clamp(4rem, 10vw, 10rem);
}

.moment-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
}

.moment-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.moment:hover img {
  transform: scale(1.035);
}

.moment-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.5rem;
  padding-top: 1.25rem;
}

.moment-copy > span {
  grid-row: 1 / 3;
  color: var(--coral);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
}

.moment-copy h3 {
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 1;
  text-transform: uppercase;
}

.moment-copy p {
  max-width: 26rem;
  margin-bottom: 0;
  line-height: 1.55;
}

.statement {
  padding: clamp(4rem, 8vw, 8rem) var(--page-pad);
  background: var(--blue);
  color: var(--white);
}

.statement p {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: 7.5rem;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.statement p:nth-child(2) {
  text-align: right;
}

.statement .statement-accent {
  color: var(--acid);
}

.visit-section {
  background: var(--acid);
  color: var(--ink);
}

.visit-section h2 {
  margin-top: clamp(3rem, 7vw, 6rem);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(12rem, 0.8fr);
  gap: 1rem;
  margin-top: clamp(4rem, 9vw, 8rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(11, 13, 12, 0.36);
}

.detail-label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.visit-grid address,
.visit-grid p {
  margin-bottom: 0;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.55;
}

.map-action {
  align-self: end;
  padding: 1rem;
  background: var(--ink);
  color: var(--white);
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.map-action:hover {
  background: var(--blue);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 2rem;
  padding: clamp(3rem, 6vw, 6rem) var(--page-pad);
  background: var(--ink);
  color: var(--white);
}

.footer-brand {
  font-size: 5rem;
}

footer p,
footer > a:last-child {
  margin-bottom: 0;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

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

@media (max-width: 820px) {
  .preview-note span:last-child {
    display: none;
  }

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

  nav {
    display: none;
  }

  .hero,
  .hero-main {
    min-height: 82svh;
  }

  .hero-main {
    padding-top: 8rem;
  }

  h1 {
    font-size: 5rem;
    line-height: 0.76;
  }

  .manifesto h2,
  .rhythm-title,
  .visit-section h2 {
    font-size: 5rem;
  }

  .menu-panel h2 {
    font-size: 4.5rem;
  }

  .statement p {
    font-size: 4.5rem;
  }

  .footer-brand {
    font-size: 3.5rem;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-bottom p {
    font-size: 1rem;
  }

  .solid-action {
    width: 100%;
  }

  .manifesto-copy,
  .menu-section,
  .moments {
    grid-template-columns: 1fr;
  }

  .manifesto-copy > *,
  .manifesto-note {
    min-width: 0;
  }

  .manifesto-note {
    gap: 1.5rem;
  }

  .menu-visual {
    min-height: 34rem;
  }

  .menu-panel h2 {
    margin-bottom: 4rem;
  }

  .rhythm-title {
    display: block;
  }

  .rhythm-title span {
    display: block;
  }

  .moment-night {
    margin-top: 3rem;
  }

  .moment-image {
    aspect-ratio: 4 / 4.7;
  }

  .visit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1rem;
  }

  .visit-grid > div:nth-child(3),
  .map-action {
    grid-column: 1 / -1;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }
}

@media (max-width: 420px) {
  .site-header {
    width: calc(100% - 1rem);
  }

  .brand {
    font-size: 0.86rem;
  }

  .hero-heading > p,
  .hero-status {
    font-size: 0.61rem;
  }

  h1 {
    font-size: 4.1rem;
  }

  .manifesto h2,
  .rhythm-title,
  .visit-section h2 {
    font-size: 3rem;
  }

  .menu-panel h2 {
    font-size: 2.8rem;
  }

  .statement p {
    font-size: 3rem;
  }

  .footer-brand {
    font-size: 2.7rem;
  }

  .menu-visual {
    min-height: 27rem;
  }

  .menu-row {
    grid-template-columns: 1.8rem minmax(0, 1fr) auto;
    gap: 0.65rem;
    font-size: 0.76rem;
  }

  .moment-copy {
    grid-template-columns: 1fr;
  }

  .moment-copy > span {
    grid-row: auto;
  }

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

  .visit-grid > div:nth-child(3),
  .map-action {
    grid-column: auto;
  }
}

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

  .marquee-track {
    animation: none;
  }

  .hero-media img,
  .menu-visual img,
  .moment-image img,
  [data-reveal] {
    transition: none;
    transform: none;
  }

  .has-js [data-reveal] {
    opacity: 1;
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  h1 {
    font-size: 9rem;
  }

  .manifesto h2,
  .rhythm-title,
  .visit-section h2 {
    font-size: 6rem;
  }

  .menu-panel h2 {
    font-size: 3.8rem;
  }

  .statement p {
    font-size: 5.5rem;
  }
}
