:root {
  color-scheme: light;
  --red: #c41e3a;
  --deep-red: #8f142b;
  --cream: #e8dcc4;
  --sand: #d9ccb1;
  --lavender: #8d7bc4;
  --black: #111111;
  --charcoal: #1c1a1f;
  --accent: #c9bfdc;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.18);
  --max-width: 1100px;
  --header-height: 80px;
  --header-offset: 92px;
  --marquee-speed: 120;
  --marquee-direction: 1;
  --marquee-font-size: 1.2rem;
  --marquee-gap: 2.5rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Bebas Neue", "Impact", sans-serif;
  color: var(--black);
  background: linear-gradient(180deg, var(--cream) 0%, #e1d4bd 55%, var(--cream) 100%);
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

html {
  scroll-behavior: smooth;
}

#top,
#about,
#locations,
#menu {
  scroll-margin-top: var(--header-offset);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(196, 30, 58, 0.12), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(141, 123, 196, 0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(17, 17, 17, 0.06), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  will-change: opacity, transform;
}

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

.reveal-left {
  transform: translateX(-32px);
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}

.reveal-left.is-visible {
  transform: translateX(0);
}

.reveal-spin {
  transform: translateY(18px) rotate(-6deg) scale(0.98);
  transform-origin: center;
  transition: opacity 0.7s ease-in-out, transform 0.75s ease-in-out;
}

.reveal-spin.is-visible {
  transform: translateY(0) rotate(0deg) scale(1);
}

.micro {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, filter 0.2s ease-in-out, opacity 0.2s ease-in-out;
  will-change: transform;
}

.micro:hover {
  transform: translateY(-3px);
}

.micro:active {
  transform: translateY(-1px) scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .hero-circle,
  .hero-sticker,
  .hero-particles,
  .find-us-circle,
  .scroll-arrow {
    animation: none;
  }

  .micro {
    transition: none;
  }

  .favourite-card {
    transition: none;
  }

  .favourite-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  }

  .favourite-card:hover img {
    transform: none;
    filter: none;
  }

  .stay-card {
    transition: none;
  }

  .stay-card:hover {
    transform: none;
  }

  .stay-card:hover .stay-arrow {
    transform: none;
  }

  .fav-track {
    scroll-behavior: auto;
  }
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  color: var(--cream);
  height: var(--header-height);
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
}

.site-header.is-scrolled {
  background: rgba(141, 123, 196, 0.85);
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  padding: 0.45rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 64px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
  transition: transform 0.25s ease-in-out;
}

.logo:hover img {
  transform: rotate(-6deg);
}

.nav {
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;              /* KEY: lets nav shrink instead of pushing toggle out */
  gap: 1.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 0.55rem 0.85rem;
  color: var(--cream);
  font-size: 1.55rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(17, 17, 17, 0.35);
}

.site-header.is-scrolled .nav a {
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(17, 17, 17, 0.35);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease-in-out;
}

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

.social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(232, 220, 196, 0.6);
  color: var(--cream);
  transition: transform 0.2s ease-in-out, background 0.2s ease-in-out;
}

.site-header.is-scrolled .social-links a {
  border-color: rgba(232, 220, 196, 0.6);
  color: var(--cream);
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(232, 220, 196, 0.2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(232, 220, 196, 0.6);
  background: rgba(232, 220, 196, 0.18);
  font-family: "Bebas Neue", "Impact", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--cream);
}

.site-header.is-scrolled .nav-toggle {
  border-color: rgba(232, 220, 196, 0.6);
  color: var(--cream);
  background: rgba(232, 220, 196, 0.12);
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #a999d2 0%, var(--lavender) 52%, #7765b0 100%);
  color: var(--cream);
  padding: calc(6rem + var(--header-height)) 0 6rem;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  gap: 1.8rem;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.hero-logo {
  display: inline-flex;
  justify-content: center;
  transform: translate3d(0, var(--logo-parallax, 0px), 0);
}

.hero-logo.micro:hover {
  transform: translate3d(0, calc(var(--logo-parallax, 0px) - 6px), 0) scale(1.03);
}

.hero-logo.micro:active {
  transform: translate3d(0, calc(var(--logo-parallax, 0px) - 2px), 0) scale(0.99);
}

.hero-logo img {
  width: min(440px, 80vw);
  filter: drop-shadow(0 24px 40px rgba(24, 18, 36, 0.35));
}

.hero-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-shadow: 2px 2px 0 rgba(196, 30, 58, 0.7);
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: rgba(232, 220, 196, 0.85);
}

.hero-title span:last-child {
  font-size: clamp(4.4rem, 9vw, 7.6rem);
  color: #fffdf7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.85);
}

.scroll-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(232, 220, 196, 0.45);
  display: grid;
  place-items: center;
  background: rgba(17, 17, 17, 0.18);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.22);
  animation: arrowPulse 2.6s ease-in-out infinite;
}

.scroll-arrow span {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  transform: rotate(45deg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    repeating-linear-gradient(
      25deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.04) 16px,
      rgba(0, 0, 0, 0.03) 16px,
      rgba(0, 0, 0, 0.03) 32px
    );
  background-size: 3px 3px, 120px 120px;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.32) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(0.2px);
  animation: circleDrift 30s ease-in-out infinite;
}

.circle-1 {
  width: 520px;
  height: 520px;
  top: -18%;
  left: -12%;
  background: radial-gradient(circle at 30% 30%, rgba(232, 220, 196, 0.68), rgba(232, 220, 196, 0.2));
  animation-duration: 20s;
}

.circle-2 {
  width: 480px;
  height: 480px;
  top: -12%;
  right: -16%;
  background: radial-gradient(circle at 40% 35%, rgba(141, 123, 196, 0.7), rgba(141, 123, 196, 0.22));
  animation-duration: 22s;
}

.circle-3 {
  width: 560px;
  height: 560px;
  bottom: -20%;
  right: -10%;
  background: radial-gradient(circle at 35% 35%, rgba(196, 30, 58, 0.5), rgba(196, 30, 58, 0.16));
  animation-duration: 24s;
}

.hero-particles {
  position: absolute;
  width: 240px;
  height: 240px;
  left: 6%;
  bottom: 12%;
  background: radial-gradient(rgba(232, 220, 196, 0.5) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.45;
  animation: particleDrift 16s ease-in-out infinite;
}

@media (min-width: 900px) {
  .hero-particles {
    width: 340px;
    height: 340px;
    background-size: 14px 14px;
    opacity: 0.55;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 2px solid var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--cream);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.order-button {
  background: var(--red);
  color: var(--cream);
  border-color: transparent;
  padding: 0.85rem 1.8rem;
  box-shadow: 0 14px 30px rgba(124, 18, 38, 0.35);
}

.site-header .order-button {
  padding: 0.6rem 1.3rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.site-header.is-scrolled .order-button {
  box-shadow: 0 10px 24px rgba(141, 123, 196, 0.25);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button.secondary {
  background: rgba(232, 220, 196, 0.18);
  color: var(--charcoal);
  border-color: rgba(28, 26, 31, 0.25);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.dual-marquee {
  overflow: hidden;
  position: relative;
  --marquee-font-size: clamp(2.1rem, 3.6vw, 2.8rem);
}

.marquee-row {
  position: relative;
  overflow: hidden;
  padding: 0.7rem 0;
  contain: paint;
}

.marquee-row--top {
  background: var(--cream);
  color: var(--red);
  --row-bg-fade: #e8dcc4;
  --marquee-speed-multiplier: 1;
}

.marquee-row--bottom {
  background: var(--lavender);
  color: rgba(255, 255, 255, 0.9);
  --row-bg-fade: #8d7bc4;
  --marquee-speed-multiplier: 0.75;
}

.marquee-row::before,
.marquee-row::after {
  content: "";
  position: absolute;
  top: 0;
  width: 64px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.marquee-row::before {
  left: 0;
  background: linear-gradient(90deg, var(--row-bg-fade) 0%, rgba(0, 0, 0, 0) 100%);
}

.marquee-row::after {
  right: 0;
  background: linear-gradient(270deg, var(--row-bg-fade) 0%, rgba(0, 0, 0, 0) 100%);
}

@supports (mask-image: linear-gradient(90deg, #000, transparent)) {
  .marquee-row {
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  }
  .marquee-row::before,
  .marquee-row::after {
    display: none;
  }
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: var(--marquee-font-size);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: marquee var(--marquee-duration, 18s) linear infinite;
  will-change: transform;
  contain: paint;
  transform: translate3d(0, 0, 0);
}

.marquee-row--bottom .marquee-track {
  animation-direction: reverse;
}

.marquee-group {
  display: inline-flex;
  align-items: center;
  gap: var(--marquee-gap);
  white-space: nowrap;
  padding-right: var(--marquee-gap);
}

.marquee-item,
.marquee-sep {
  display: inline-flex;
  align-items: center;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--marquee-distance, 50%)), 0, 0);
  }
}

@keyframes circleDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(56px, -40px, 0) scale(1.08);
  }
}

@keyframes particleDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.35;
  }
  50% {
    transform: translate3d(14px, -10px, 0);
    opacity: 0.5;
  }
}

@keyframes arrowPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(4px);
    opacity: 0.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    transform: translate3d(0, 0, 0);
  }

  .hero-circle,
  .hero-particles,
  .scroll-arrow {
    animation: none;
  }
}

.section {
  padding: 4.5rem 0;
}

.about {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.98), rgba(164, 20, 48, 0.98));
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -35deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.06) 18px,
      rgba(0, 0, 0, 0.05) 18px,
      rgba(0, 0, 0, 0.05) 36px
    );
  opacity: 0.35;
  pointer-events: none;
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-title {
  margin: 0;
  font-family: "Bebas Neue", "Impact", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.05;
}

.about-title__small {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #ffffff;
  font-weight: 700;
}

.about-title__big {
  display: block;
  font-size: clamp(3rem, 6vw, 4.8rem);
  color: var(--cream);
  font-weight: 800;
  text-shadow: 0 6px 16px rgba(17, 17, 17, 0.4);
}

.brothers-quote {
  margin: 1.6rem 0 1.8rem;
  padding: 0.2rem 0 0.2rem 1.4rem;
  border-left: 4px solid rgba(255, 255, 255, 0.95);
}

.brothers-quote p {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.35;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.brothers-quote footer {
  margin-top: 0.6rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.about p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 520px;
}

.about p strong {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-image img {
  border-radius: 32px;
  border: 4px solid var(--cream);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  object-fit: cover;
  transform: rotate(2deg) scale(1.06);
  transform-origin: center;
}

.about-grid {
  position: relative;
  z-index: 1;
}

.about-image {
  position: relative;
}

.about-image .est-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: var(--lavender);
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(33, 23, 60, 0.35);
}

.location {
  background: var(--charcoal);
  color: var(--cream);
}

.location-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-family: "Bebas Neue", "Impact", sans-serif;
  margin: 0 0 1rem;
  color: var(--accent);
}

.location h3 {
  margin: 0.4rem 0;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location address {
  font-style: normal;
  margin-top: 0.6rem;
  color: rgba(246, 239, 226, 0.85);
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 320px;
  border-radius: 20px;
  filter: saturate(0.85);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.find-us {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.find-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(154, 143, 194, 0.2) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.find-us-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.find-us-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(0px);
  animation: circleDrift 22s ease-in-out infinite;
}

.find-us-circle.circle-a {
  width: 520px;
  height: 520px;
  top: -20%;
  left: -12%;
  background: radial-gradient(circle at 30% 30%, rgba(154, 143, 194, 0.55), rgba(154, 143, 194, 0.18));
  animation-duration: 26s;
}

.find-us-circle.circle-b {
  width: 420px;
  height: 420px;
  bottom: -22%;
  right: -8%;
  background: radial-gradient(circle at 35% 35%, rgba(196, 30, 58, 0.45), rgba(196, 30, 58, 0.14));
  animation-duration: 24s;
}

.find-us-circle.circle-c {
  width: 300px;
  height: 300px;
  top: 30%;
  right: 18%;
  background: radial-gradient(circle at 40% 40%, rgba(154, 143, 194, 0.45), rgba(154, 143, 194, 0.15));
  animation-duration: 20s;
}

.find-us-header {
  text-align: center;
  margin-bottom: 2.4rem;
  position: relative;
  z-index: 1;
}

.find-us-header h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--lavender);
}

.find-us-header p {
  margin: 0.6rem 0 0;
  color: rgba(28, 26, 31, 0.65);
  letter-spacing: 0.14em;
  font-size: 1.05rem;
}

.find-us-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.location-tile {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(28, 26, 31, 0.18);
  display: flex;
  flex-direction: column;
}

.location-media {
  position: relative;
  height: 190px;
  background:
    linear-gradient(135deg, rgba(154, 143, 194, 0.35), rgba(196, 30, 58, 0.25)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.15));
  background-size: cover;
  background-position: center;
}

.location-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(17, 17, 17, 0.55));
}

.location-media.is-placeholder {
  background:
    linear-gradient(135deg, rgba(154, 143, 194, 0.4), rgba(232, 220, 196, 0.35)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.12) 14px,
      rgba(255, 255, 255, 0.04) 14px,
      rgba(255, 255, 255, 0.04) 28px
    );
}

.status-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(196, 30, 58, 0.9);
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}

.status-badge.muted {
  background: rgba(141, 123, 196, 0.85);
}

.placeholder-tag {
  position: absolute;
  right: 14px;
  top: 14px;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(232, 220, 196, 0.8);
  color: rgba(28, 26, 31, 0.7);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.location-overlay {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  color: var(--cream);
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.location-overlay h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.45rem;
}

.location-overlay p {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-soon {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.55);
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.location-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.1rem 1.2rem 1.3rem;
  background: rgba(255, 255, 255, 0.8);
}

.location-actions .button {
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
}

.icon-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(196, 30, 58, 0.4);
  background: rgba(232, 220, 196, 0.65);
  display: grid;
  place-items: center;
  color: var(--red);
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.location-tile.is-coming {
  opacity: 0.55;
  filter: grayscale(0.15);
}

@media (max-width: 1100px) {
  .find-us-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .find-us-grid {
    grid-template-columns: 1fr;
  }

  .favourite-media {
    height: 200px;
  }

  .location-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .location-actions .button {
    flex: 1 1 140px;
  }
}

.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.7;
  box-shadow: none;
  pointer-events: none;
}

.icon-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

.fan-favourites {
  background: var(--charcoal);
  color: var(--cream);
  position: relative;
  overflow: visible;
}

.fan-favourites::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(circle at 25% 10%, rgba(196, 30, 58, 0.22), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(141, 123, 196, 0.18), transparent 55%),
    radial-gradient(circle at 50% 85%, rgba(0, 0, 0, 0.65), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.fan-favourites::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    repeating-linear-gradient(
      30deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.04) 18px,
      rgba(0, 0, 0, 0.08) 18px,
      rgba(0, 0, 0, 0.08) 36px
    );
  background-size: 3px 3px, 140px 140px;
  opacity: 0.18;
  pointer-events: none;
}

.fan-header {
  text-align: center;
  margin-bottom: 2.6rem;
  position: relative;
  z-index: 1;
}

.fan-kicker {
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.85rem;
  color: rgba(232, 220, 196, 0.65);
}

.fan-header h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fan-underline {
  display: inline-block;
  width: 72px;
  height: 4px;
  background: var(--red);
  border-radius: 999px;
  margin-top: 0.8rem;
}

.fav-carousel {
  position: relative;
  z-index: 1;
}

.fav-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(78vw, 360px);
  gap: 1rem;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding: 0 1rem 1rem;
  scroll-behavior: smooth;
}

.fav-track::-webkit-scrollbar {
  display: none;
}

.fav-track:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
}

.fav-slide {
  scroll-snap-align: center;
}

.fav-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, background 0.2s ease-in-out;
}

.fav-prev {
  left: 0;
}

.fav-next {
  right: 0;
}

.fav-nav:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.fav-nav:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

.fav-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.fav-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(232, 220, 196, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease-in-out, background 0.2s ease-in-out;
}

.fav-dot:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

.fav-dot.is-active {
  background: var(--red);
  transform: scale(1.2);
}

.favourite-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  color: inherit;
  transition: transform 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

.favourite-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.favourite-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 220px;
}

.favourite-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

.favourite-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease-in-out, filter 0.35s ease-in-out;
}

.heat-level {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.5);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  z-index: 1;
}

.favourite-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.favourite-body p {
  margin: 0;
  color: rgba(232, 220, 196, 0.75);
  font-size: 0.95rem;
}

.favourite-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.5);
}

.favourite-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.fan-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 1100px) {
  .fav-track {
    overflow: visible;
    scroll-snap-type: none;
    grid-auto-flow: unset;
    grid-auto-columns: unset;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0;
  }

  .fav-nav,
  .fav-dots {
    display: none;
  }
}

.fan-button {
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  box-shadow: 0 18px 32px rgba(124, 18, 38, 0.45);
}

.button-arrow {
  font-size: 1.2rem;
  line-height: 1;
}

.stay {
  background: #7b6bd6;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.stay-topbar {
  display: none;
}

.stay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      transparent 46%,
      rgba(255, 255, 255, 0.18) 48%,
      rgba(255, 255, 255, 0.18) 52%,
      transparent 54%
    ),
    linear-gradient(
      0deg,
      transparent 46%,
      rgba(255, 255, 255, 0.18) 48%,
      rgba(255, 255, 255, 0.18) 52%,
      transparent 54%
    );
  background-size: 28px 28px;
  opacity: 0.18;
  pointer-events: none;
}

.stay-inner {
  position: relative;
  z-index: 1;
  padding: 3.6rem 0 4.5rem;
  text-align: center;
}

.stay-title {
  margin: 0;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 rgba(196, 30, 58, 0.6);
}

.stay-sub {
  margin: 0.8rem auto 2.4rem;
  max-width: 560px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.stay-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: stretch;
  justify-content: center;
  max-width: 920px;
  margin: 0 auto;
}

.stay-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.6rem;
  border-radius: 26px;
  background: #ffffff;
  color: var(--charcoal);
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(15, 12, 18, 0.25);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.stay-card:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 4px;
}

.stay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px rgba(15, 12, 18, 0.3);
}

.stay-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.stay-card--ig .stay-icon {
  background: linear-gradient(140deg, #ff4a6b, #ff884b);
}

.stay-card--tt .stay-icon {
  background: #111111;
}

.stay-icon svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.stay-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  text-align: left;
}

.stay-platform {
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a5bb8;
  font-weight: 700;
}

.stay-handle {
  font-size: 1rem;
  color: rgba(88, 80, 125, 0.85);
  letter-spacing: 0.06em;
}

.stay-arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(123, 107, 214, 0.12);
  transition: transform 0.2s ease-in-out;
}

.stay-arrow svg {
  width: 20px;
  height: 20px;
  fill: #6a5bb8;
}

.stay-card:hover .stay-arrow {
  transform: translateX(4px);
}

.site-footer {
  background: linear-gradient(135deg, #121016 0%, #1b1722 55%, #0f0d12 100%);
  color: rgba(246, 239, 226, 0.75);
  padding: 3.5rem 0 2rem;
  position: relative;
  overflow: hidden;
  border-top: 3px solid rgba(141, 123, 196, 0.7);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(141, 123, 196, 0.18), transparent 55%),
    radial-gradient(circle at 85% 60%, rgba(0, 0, 0, 0.45), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.footer-brand img {
  width: 84px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}

.footer-locations {
  text-align: center;
}

.footer-locations h3 {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: var(--cream);
}

.footer-locations ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(246, 239, 226, 0.8);
}

.footer-locations a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer-locations a:hover {
  color: var(--cream);
  text-decoration: underline;
}

.footer-locations a:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(141, 123, 196, 0.9);
  color: #ffffff;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.footer-divider {
  height: 1px;
  margin: 2.2rem auto 1.4rem;
  background: rgba(255, 255, 255, 0.12);
  max-width: min(100%, 900px);
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .location-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (max-width: 820px) {
  .site-header .container {
    padding: 0 0.5rem;
  }

  .nav { display: none; }    /* KEY: hide regardless of html.js timing */
  
  .header-inner {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.5rem;
    padding-left: calc(0.5rem + env(safe-area-inset-left));
    padding-right: calc(0.5rem + env(safe-area-inset-right));
    position: relative;
  }

  .logo {
    flex: 0 0 auto;
  }

  .logo img {
    width: 48px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: auto;
    flex-wrap: nowrap;
  }

  .social-links {
    display: flex;
    gap: 0.35rem;
  }

  .social-links a {
    width: 30px;
    height: 30px;
  }

  .social-links svg {
    width: 14px;
    height: 14px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
    padding: 0.3rem 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
  }

  html.js .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 360px;
    background: rgba(232, 220, 196, 0.98);
    padding: 1rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  body.nav-open .nav {
    display: flex;
  }

  html.js .nav a {
    color: #2b2433;
    text-shadow: none;
    font-weight: 700;
  }

  .site-header .order-button {
    display: none;
  }

  .stay-inner {
    padding: 3rem 0 3.6rem;
  }

  .stay-cards {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .hero-cta {
    flex-direction: column;
  }
}
