:root {
  --ink: #0d0d0c;
  --charcoal: #171714;
  --deep: #070706;
  --cream: #f6efe2;
  --paper: #e9dfd0;
  --muted: #a79d8f;
  --line: rgba(246, 239, 226, 0.18);
  --red: #f0442f;
  --red-dark: #b82d20;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
  --condensed: "DIN Condensed", "Avenir Next Condensed", "Arial Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--deep);
  color: var(--cream);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(240, 68, 47, 0.06) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(0deg, rgba(246, 239, 226, 0.035) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--deep);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--cream);
  background: linear-gradient(180deg, rgba(7, 7, 6, 0.88), rgba(7, 7, 6, 0.18) 76%, transparent);
}

.wordmark {
  width: 96px;
  padding: 7px 8px;
  background: rgba(246, 239, 226, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 3vw, 32px);
  font-family: var(--condensed);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(246, 239, 226, 0.38);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(7, 7, 6, 0.54);
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  color: var(--ink);
  border-color: var(--cream);
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: 150px clamp(20px, 5vw, 76px) clamp(30px, 6vw, 84px);
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 48%;
  filter: saturate(0.9) contrast(1.05) brightness(0.94);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.96) 0 33%, rgba(7, 7, 6, 0.32) 68%, rgba(7, 7, 6, 0.82)),
    linear-gradient(0deg, rgba(7, 7, 6, 0.9), rgba(7, 7, 6, 0.12) 52%, rgba(7, 7, 6, 0.38));
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(246, 239, 226, 0.07) 1px, transparent 1px) 0 0 / 110px 100%,
    linear-gradient(0deg, rgba(246, 239, 226, 0.04) 1px, transparent 1px) 0 0 / 100% 110px;
  mask-image: linear-gradient(90deg, #000 0 58%, transparent 84%);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-family: var(--condensed);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2 {
  margin: 0;
  font-family: var(--condensed);
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(76px, 12vw, 178px);
  line-height: 0.74;
}

.hero-copy {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--paper);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.28;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  --button-bg: transparent;
  --button-fg: var(--cream);
  --button-border: rgba(246, 239, 226, 0.36);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px 12px;
  border: 1px solid var(--button-border);
  color: var(--button-fg);
  background: var(--button-bg);
  font-family: var(--condensed);
  font-size: 23px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

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

.button.primary,
.button.submit {
  --button-bg: var(--red);
  --button-fg: var(--ink);
  --button-border: var(--red);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  --button-bg: var(--cream);
  --button-fg: var(--ink);
  --button-border: var(--cream);
}

.button.dark {
  color: var(--ink);
  border-color: rgba(13, 13, 12, 0.28);
}

.button.dark:hover,
.button.dark:focus-visible {
  color: var(--cream);
  border-color: var(--ink);
  background: var(--ink);
}

.hero-panel {
  position: absolute;
  right: clamp(22px, 5vw, 78px);
  bottom: clamp(30px, 6vw, 90px);
  width: min(330px, calc(100% - 44px));
  padding: 0 0 0 28px;
  border-left: 1px solid rgba(246, 239, 226, 0.34);
  color: var(--paper);
}

.beat-mark {
  display: block;
  width: 8px;
  height: 58px;
  margin-bottom: 20px;
  background: var(--red);
}

.hero-panel p {
  margin: 0;
  font-size: 19px;
  line-height: 1.32;
}

.count-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 18vh;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
}

.count-number {
  display: grid;
  place-items: center;
  min-height: clamp(120px, 18vw, 240px);
  font-family: var(--condensed);
  font-size: clamp(104px, 20vw, 264px);
  line-height: 0.72;
  text-transform: uppercase;
}

.count-number + .count-number {
  border-left: 1px solid rgba(13, 13, 12, 0.18);
}

.count-number.red {
  color: var(--red);
}

.subscribe-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 7vw, 120px);
  padding: clamp(54px, 9vw, 122px) clamp(20px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(246, 239, 226, 0.06), transparent 30%),
    var(--charcoal);
}

.section-copy {
  align-self: end;
}

.section-copy h2,
.location-preview h2,
.location-hero h1,
.arrival-panel h2 {
  font-size: clamp(58px, 8vw, 124px);
  line-height: 0.8;
}

.section-copy p:not(.eyebrow) {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.38;
}

.signup-form {
  display: grid;
  align-self: center;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(246, 239, 226, 0.22);
  background: rgba(7, 7, 6, 0.42);
  box-shadow: var(--shadow);
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  color: var(--paper);
  font-family: var(--condensed);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.field-group input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(246, 239, 226, 0.32);
  border-radius: 0;
  color: var(--cream);
  background: rgba(246, 239, 226, 0.05);
  padding: 14px 15px;
  outline: none;
}

.field-group input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(240, 68, 47, 0.16);
}

.field-group input::placeholder {
  color: rgba(246, 239, 226, 0.38);
}

.hidden-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  color: var(--paper);
  font-size: 14px;
  line-height: 1.35;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.submit {
  width: 100%;
  margin-top: 4px;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.form-status {
  min-height: 19px;
}

.form-status[data-state="success"] {
  color: #f6c1b9;
}

.form-status[data-state="error"] {
  color: #ff9a8e;
}

.location-preview {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(54px, 8vw, 112px) clamp(20px, 6vw, 88px);
  color: var(--ink);
  background: var(--cream);
}

.location-preview h2 {
  max-width: 780px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 70px);
  color: rgba(246, 239, 226, 0.66);
  background: #050505;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  border-bottom: 1px solid rgba(246, 239, 226, 0.28);
}

.location-page {
  padding-top: 104px;
}

.location-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: clamp(28px, 6vw, 90px);
  min-height: 54vh;
  padding: clamp(42px, 7vw, 92px) clamp(20px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(240, 68, 47, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(246, 239, 226, 0.07), transparent 40%),
    var(--deep);
}

address {
  color: var(--paper);
  font-style: normal;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.3;
}

.location-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 0;
  min-height: 560px;
  border-bottom: 1px solid var(--line);
}

.map-panel {
  min-height: 560px;
  background: #201f1b;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: grayscale(0.88) contrast(1.05);
}

.arrival-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  gap: 22px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--cream);
  color: var(--ink);
}

.arrival-panel .beat-mark {
  margin-bottom: 0;
}

.arrival-panel p {
  margin: 0;
  color: #5e574f;
  font-size: 19px;
  line-height: 1.38;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 76px;
  }

  .wordmark {
    width: 84px;
  }

  .nav-links {
    gap: 14px;
    font-size: 17px;
  }

  .hero {
    min-height: 86vh;
    padding-top: 120px;
  }

  .hero-media img {
    object-position: 70% 50%;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(7, 7, 6, 0.94), rgba(7, 7, 6, 0.54)),
      linear-gradient(0deg, rgba(7, 7, 6, 0.92), transparent 60%);
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 44px;
  }

  .subscribe-section,
  .location-hero,
  .location-details {
    grid-template-columns: 1fr;
  }

  .location-preview {
    align-items: flex-start;
    flex-direction: column;
  }

  .location-details {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 16px;
  }

  .wordmark {
    width: 74px;
  }

  .nav-links {
    gap: 10px;
    font-size: 14px;
  }

  .language-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero h1 {
    font-size: clamp(64px, 21vw, 112px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .button {
    min-height: 48px;
    padding: 12px 18px 11px;
    font-size: 20px;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .count-band {
    min-height: 0;
  }

  .count-number {
    min-height: 98px;
  }

  .subscribe-section,
  .location-preview,
  .location-hero,
  .arrival-panel {
    padding-right: 16px;
    padding-left: 16px;
  }

  .signup-form {
    padding: 20px 16px;
  }

  .section-copy h2,
  .location-preview h2,
  .location-hero h1,
  .arrival-panel h2 {
    font-size: clamp(54px, 18vw, 88px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
