:root {
  --hof-blue: #0b24b8;
  --hof-electric-blue: #003bff;
  --hof-red: #ff1515;
  --hof-pink-red: #ff005c;
  --hof-purple: #6a00ff;
  --hof-black: #050510;
  --hof-white: #f7f2e8;
  --glass: rgba(247, 242, 232, 0.08);
  --glass-strong: rgba(247, 242, 232, 0.13);
  --stroke: rgba(247, 242, 232, 0.22);
  --shadow-blue: rgba(0, 59, 255, 0.38);
  --shadow-red: rgba(255, 21, 21, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--hof-black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--hof-black);
  color: var(--hof-white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at 18% 28%, rgba(0, 59, 255, 0.55), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(255, 21, 21, 0.5), transparent 33%),
    linear-gradient(135deg, #050510 0%, #0b24b8 48%, #ff1515 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(247, 242, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 242, 232, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 75%, transparent);
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: linear-gradient(to bottom, rgba(5, 5, 16, 0.84), rgba(5, 5, 16, 0));
}

.brand-lockup {
  display: grid;
  width: clamp(136px, 18vw, 220px);
  min-width: 136px;
  place-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(42px, 1fr));
  min-height: 40px;
  padding: 4px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(5, 5, 16, 0.44);
  backdrop-filter: blur(18px);
}

.lang-button {
  min-width: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(247, 242, 232, 0.68);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lang-button.is-active {
  background: var(--hof-white);
  color: var(--hof-black);
}

.header-cta,
.secondary-cta,
.primary-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0 18px;
  border: 1px solid rgba(247, 242, 232, 0.34);
  background: rgba(247, 242, 232, 0.1);
  backdrop-filter: blur(18px);
}

.header-cta:hover,
.secondary-cta:hover,
.primary-cta:hover {
  transform: translateY(-2px);
}

.section-band {
  position: relative;
  isolation: isolate;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(80px, 12vw, 150px) 0;
}

.hero {
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 96px 18px 54px;
  text-align: center;
}

.ambient {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 59, 255, 0.85), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(255, 21, 21, 0.85), transparent 35%),
    linear-gradient(135deg, #050510 0%, #0b24b8 45%, #ff1515 100%);
}

.ambient::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, rgba(5, 5, 16, 0.82), rgba(5, 5, 16, 0.08) 42%, rgba(5, 5, 16, 0.55)),
    linear-gradient(to top, rgba(0, 59, 255, 0.58), transparent 42%),
    linear-gradient(to left, rgba(255, 0, 92, 0.54), transparent 48%);
  filter: saturate(1.22);
}

.grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(115deg, rgba(247, 242, 232, 0.08) 0 1px, transparent 1px 8px),
    linear-gradient(35deg, rgba(5, 5, 16, 0.16) 0 1px, transparent 1px 7px);
  background-size: 19px 21px, 23px 17px;
}

.watermark {
  pointer-events: none;
  user-select: none;
}

.watermark-hero {
  position: absolute;
  right: max(-170px, -8vw);
  bottom: min(-48px, -3vw);
  z-index: -1;
  width: clamp(360px, 54vw, 760px);
  opacity: 0.07;
  filter: blur(0.2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(900px, 100%);
  justify-items: center;
}

.hero-logo {
  width: clamp(148px, 15vw, 176px);
  margin-bottom: clamp(16px, 2.4vw, 28px);
  border-radius: 50%;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.42));
}

.kicker,
.eyebrow,
.microcopy {
  margin: 0;
  color: rgba(247, 242, 232, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--hof-white);
  font-family: Anton, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  margin-top: 12px;
  font-size: clamp(3.45rem, 5.8vw, 4.85rem);
  line-height: 0.9;
  text-wrap: balance;
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

h2 {
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: 0.92;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-family: Anton, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.hero-subtitle,
.hero-copy,
.section-heading p,
.mood-copy p,
.location-copy p {
  color: rgba(247, 242, 232, 0.82);
  font-size: clamp(1rem, 1.9vw, 1.22rem);
  line-height: 1.65;
}

.hero-subtitle {
  margin: 18px 0 0;
  font-weight: 800;
}

.hero-copy {
  max-width: 560px;
  margin: 8px 0 0;
}

.primary-cta {
  min-width: 214px;
  margin-top: 26px;
  padding: 0 26px;
  border: 1px solid rgba(247, 242, 232, 0.48);
  background:
    linear-gradient(90deg, var(--hof-electric-blue), var(--hof-purple) 48%, var(--hof-red)),
    var(--hof-electric-blue);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 59, 255, 0.3);
}

.primary-cta:hover {
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.52), 0 0 50px rgba(255, 21, 21, 0.34);
}

.cta-mark {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(247, 242, 232, 0.18);
}

.microcopy {
  margin-top: 18px;
}

.coming-soon {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(5, 5, 16, 0.86), #050510 42%, #090817);
}

.section-heading {
  display: grid;
  max-width: 780px;
  margin: 0 auto clamp(34px, 6vw, 64px);
  justify-items: center;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
}

.align-left {
  margin-right: 0;
  margin-left: 0;
  justify-items: start;
  text-align: left;
}

.watermark-section {
  position: absolute;
  top: 44px;
  left: -100px;
  width: min(52vw, 520px);
  opacity: 0.045;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 188px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(247, 242, 232, 0.11), rgba(247, 242, 232, 0.04));
  box-shadow: inset 0 1px 0 rgba(247, 242, 232, 0.12), 0 24px 72px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.feature-card::after {
  position: absolute;
  inset: auto -20% -40% 20%;
  height: 92px;
  content: "";
  background: linear-gradient(90deg, rgba(0, 59, 255, 0.52), rgba(255, 21, 21, 0.46));
  filter: blur(32px);
  opacity: 0;
  transition: opacity 190ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(247, 242, 232, 0.42);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.34), 0 0 42px rgba(0, 59, 255, 0.2);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-line {
  display: block;
  width: 64px;
  height: 4px;
  margin-bottom: 60px;
  background: linear-gradient(90deg, var(--hof-electric-blue), var(--hof-red));
}

.brand-mood {
  min-height: 620px;
  overflow: hidden;
  background: #050510;
}

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

.mood-media {
  z-index: -3;
  background-image: url("assets/brand-mood.png");
  background-position: center;
  background-size: cover;
  filter: saturate(1.1) contrast(1.02);
}

.mood-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 16, 0.92), rgba(5, 5, 16, 0.38) 48%, rgba(5, 5, 16, 0.26)),
    linear-gradient(135deg, rgba(0, 59, 255, 0.48), rgba(106, 0, 255, 0.24) 40%, rgba(255, 21, 21, 0.46));
}

.mood-inner {
  display: grid;
  min-height: 620px;
  align-items: center;
}

.mood-copy {
  width: min(650px, 100%);
}

.mood-copy p:not(.eyebrow) {
  max-width: 570px;
  margin: 22px 0 0;
}

.location {
  background:
    linear-gradient(180deg, #050510, rgba(11, 36, 184, 0.22) 46%, #050510),
    #050510;
}

.location-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.location-copy p:not(.eyebrow) {
  max-width: 410px;
  margin: 20px 0 0;
}

.location-card {
  overflow: hidden;
  border: 1px solid rgba(247, 242, 232, 0.24);
  border-radius: 8px;
  background: linear-gradient(155deg, rgba(247, 242, 232, 0.14), rgba(247, 242, 232, 0.05));
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.42), 0 0 64px rgba(0, 59, 255, 0.16);
  backdrop-filter: blur(24px);
}

.map-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 59, 255, 0.34), rgba(106, 0, 255, 0.18), rgba(255, 21, 21, 0.28)),
    #0b1028;
}

.map-grid {
  position: absolute;
  inset: -40px;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(247, 242, 232, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 242, 232, 0.16) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: rotate(-8deg) scale(1.18);
}

.map-road {
  position: absolute;
  border-radius: 999px;
  background: rgba(247, 242, 232, 0.76);
  box-shadow: 0 0 28px rgba(247, 242, 232, 0.18);
}

.map-road-one {
  top: 126px;
  left: -34px;
  width: 116%;
  height: 18px;
  transform: rotate(-5deg);
}

.map-road-two {
  top: -26px;
  left: 55%;
  width: 16px;
  height: 126%;
  transform: rotate(7deg);
}

.map-pin {
  position: absolute;
  top: 94px;
  left: 56%;
  width: 64px;
  height: 64px;
  border: 6px solid rgba(247, 242, 232, 0.88);
  border-radius: 50% 50% 50% 4px;
  background: linear-gradient(135deg, var(--hof-pink-red), var(--hof-red));
  box-shadow: 0 18px 48px rgba(255, 21, 21, 0.45);
  transform: rotate(-45deg);
}

.map-pin::after {
  position: absolute;
  inset: 17px;
  border-radius: 50%;
  background: var(--hof-white);
  content: "";
}

.map-label {
  position: absolute;
  right: 28px;
  bottom: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(247, 242, 232, 0.26);
  border-radius: 8px;
  background: rgba(5, 5, 16, 0.7);
  color: var(--hof-white);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.address-block {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 5vw, 42px);
}

.address-title {
  margin: 0;
  font-family: Anton, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

address {
  color: rgba(247, 242, 232, 0.83);
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
}

.wide {
  width: fit-content;
  min-width: min(100%, 260px);
  margin-top: 0;
}

.instagram {
  background:
    linear-gradient(135deg, rgba(255, 21, 21, 0.18), transparent 34%),
    linear-gradient(220deg, rgba(0, 59, 255, 0.28), transparent 40%),
    #050510;
}

.instagram-inner {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.secondary-cta {
  margin-top: 26px;
  padding: 0 22px;
  border: 1px solid rgba(247, 242, 232, 0.34);
  background: rgba(247, 242, 232, 0.09);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.secondary-cta:hover {
  border-color: rgba(247, 242, 232, 0.56);
  box-shadow: 0 20px 60px rgba(0, 59, 255, 0.2);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.social-tile {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 232, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 59, 255, 0.5), rgba(106, 0, 255, 0.28), rgba(255, 21, 21, 0.54)),
    #0a0820;
}

.social-tile span {
  position: relative;
  z-index: 2;
  width: min-content;
  color: var(--hof-white);
  font-family: Anton, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  letter-spacing: 0;
  line-height: 0.94;
  text-align: center;
  text-transform: uppercase;
}

.image-tile {
  background: rgba(5, 5, 16, 0.86);
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.image-tile:hover img {
  transform: scale(1.04);
}

.site-footer {
  background: #050510;
  border-top: 1px solid rgba(247, 242, 232, 0.12);
}

.footer-inner {
  display: flex;
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
}

.footer-inner img {
  width: min(220px, 48vw);
}

.footer-inner p {
  margin: 0;
  color: rgba(247, 242, 232, 0.7);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: right;
}

@media (max-width: 860px) {
  .site-header {
    padding: 14px 14px 0;
  }

  .brand-lockup {
    width: 142px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .feature-grid,
  .location-inner,
  .instagram-inner {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 152px;
  }

  .location-copy p:not(.eyebrow) {
    max-width: 620px;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
  }

  .brand-lockup {
    width: 118px;
    min-width: 112px;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .language-toggle {
    min-height: 36px;
  }

  .lang-button {
    min-width: 36px;
    font-size: 0.7rem;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-logo {
    width: 164px;
  }

  h1 {
    max-width: 9ch;
  }

  .section-inner {
    width: min(100% - 28px, 1140px);
  }

  .map-visual {
    min-height: 220px;
  }

  .map-pin {
    left: 48%;
  }

  .address-block {
    padding: 24px;
  }

  .wide {
    width: 100%;
  }

  .social-grid {
    gap: 10px;
  }

  .footer-inner {
    display: grid;
    justify-items: start;
  }

  .footer-inner p {
    text-align: left;
  }
}

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