:root {
  --bg: #080808;
  --bg-soft: #101010;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --text: #f2eee7;
  --muted: rgba(242, 238, 231, 0.62);
  --quiet: rgba(242, 238, 231, 0.42);
  --line: rgba(255, 255, 255, 0.105);
  --gold: #e5b74f;
  --red: #e65343;
  --red-dark: #c84032;
  --teal: #00a6a6;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
  --page: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(ellipse at 15% 12%, rgba(0, 166, 166, 0.13), transparent 36rem),
    radial-gradient(ellipse at 86% 20%, rgba(229, 183, 79, 0.11), transparent 34rem),
    linear-gradient(180deg, var(--bg), #0d0d0d 54%, #070707);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  body {
    overflow-x: hidden;
  }
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  display: grid;
  max-width: 920px;
  font-size: clamp(64px, 14vw, 160px);
  font-weight: 950;
  letter-spacing: -0.035em;
  text-transform: none;
}

h1 span + span {
  color: rgba(242, 238, 231, 0.88);
}

h2 {
  max-width: 780px;
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 920;
}

h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 880;
}

p {
  margin: 0;
}

section[id] {
  scroll-margin-top: 92px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.28));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark span {
  white-space: nowrap;
}

.brand-logo,
.footer-brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid rgba(229, 183, 79, 0.55);
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  border-color: rgba(229, 183, 79, 0.58);
  background: rgba(229, 183, 79, 0.12);
}

.section-dots {
  position: fixed;
  top: 50%;
  right: max(18px, calc((100vw - 1280px) / 2));
  z-index: 45;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.section-dot {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition: height 260ms var(--ease), background-color 260ms ease, border-color 260ms ease;
}

.section-dot.is-active {
  height: 28px;
  border-color: var(--gold);
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--text);
  background: var(--bg);
}

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

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06) brightness(0.72);
  transform: scale(1.012);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.7) 45%, rgba(8, 8, 8, 0.26) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.26) 54%, rgba(8, 8, 8, 0.46) 100%),
    radial-gradient(ellipse at 18% 68%, rgba(0, 166, 166, 0.22), transparent 42%),
    radial-gradient(ellipse at 88% 15%, rgba(229, 183, 79, 0.16), transparent 34%);
}

.hero-line {
  z-index: -1;
  pointer-events: none;
  opacity: 0.72;
}

.hero-line::before {
  content: "";
  position: absolute;
  top: 22%;
  left: -12%;
  width: 124%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 183, 79, 0.18), rgba(0, 166, 166, 0.22), transparent);
  transform: rotate(-6deg);
}

.hero-content {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  padding: 136px 0 clamp(68px, 11svh, 118px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero-copy {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(242, 238, 231, 0.76);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.52;
}

.hero-actions,
.form-actions,
.spotify-actions,
.compact-links,
.hero-facts,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  color: var(--text);
  background: var(--panel-strong);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms var(--ease), background-color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.065);
}

.hero-facts {
  margin-top: 36px;
}

.hero-facts span,
.tag-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 820;
}

.scroll-hint {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 30px;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-hint span {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 126px) 0;
}

.intro-section,
.split-section,
.media-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.section-kicker,
.split-copy,
.media-copy,
.contact-copy {
  display: grid;
  min-width: 0;
  gap: 18px;
}

.intro-copy {
  display: grid;
  min-width: 0;
  gap: 18px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.62;
}

.cards-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 0;
}

.service-card,
.booking-form,
.spotify-card,
.legal-content {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.17);
}

.service-card {
  min-height: 250px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
  transition: transform 220ms var(--ease), border-color 220ms ease, background-color 220ms ease;
}

.service-card:hover {
  border-color: rgba(229, 183, 79, 0.32);
  background: rgba(229, 183, 79, 0.055);
  transform: translateY(-3px);
}

.service-card span {
  width: fit-content;
  border: 1px solid rgba(229, 183, 79, 0.34);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.service-card p,
.split-copy p,
.media-copy p,
.contact-copy p,
.check-list,
.form-hint {
  color: var(--muted);
}

.accent-card {
  border-color: rgba(0, 166, 166, 0.22);
  background: rgba(0, 166, 166, 0.065);
}

.accent-card:hover {
  border-color: rgba(0, 166, 166, 0.42);
  background: rgba(0, 166, 166, 0.095);
}

.accent-card span {
  border-color: rgba(0, 166, 166, 0.4);
  color: var(--teal);
}

.image-stack {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.image-card {
  position: relative;
  min-height: 244px;
  grid-column: span 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.image-card-large {
  grid-column: span 6;
  min-height: 390px;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms var(--ease);
}

.image-card:hover img {
  transform: scale(1.035);
}

.image-card figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  padding: 7px 10px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.62);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.media-section,
.contact-section {
  border-top: 1px solid var(--line);
}

.video-shell {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.video-shell video {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
}

.compact-links a,
.spotify-actions a,
.site-footer a,
.legal-content a {
  color: var(--text);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.compact-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--muted);
  background: var(--panel);
  font-weight: 820;
  text-decoration: none;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.spotify-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.spotify-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.spotify-card strong {
  display: block;
  margin-top: 3px;
  font-size: 20px;
}

.spotify-embed {
  width: 100%;
  height: 352px;
  border: 0;
  border-radius: 10px;
}

.booking-form {
  display: grid;
  min-width: 0;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
}

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

label {
  display: grid;
  min-width: 0;
  gap: 7px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  outline: none;
}

select option {
  color: var(--text);
  background: #181818;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(0, 166, 166, 0.14);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(24px, calc((100vw - 1180px) / 2));
  color: var(--muted);
  background: #040404;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-header {
  color: var(--text);
  background: rgba(8, 8, 8, 0.86);
  border-bottom-color: var(--line);
}

.legal-main {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 70px;
}

.legal-content {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 5vw, 46px);
}

.legal-content h1 {
  font-size: clamp(42px, 7vw, 72px);
}

.legal-content h2 {
  margin-top: 18px;
  font-size: clamp(25px, 4vw, 38px);
}

.legal-content h3 {
  margin-top: 10px;
  font-size: clamp(21px, 3vw, 28px);
}

.legal-note {
  border-left: 5px solid var(--red);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--muted);
  background: rgba(230, 83, 67, 0.1);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}

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

@media (max-width: 960px) {
  :root {
    --page: min(100% - 32px, 1180px);
  }

  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .site-nav a {
    display: inline-flex;
    justify-content: center;
    padding: 8px 6px;
    font-size: 12px;
  }

  .section-dots {
    display: none;
  }

  .hero-content {
    padding-top: 154px;
  }

  .intro-section,
  .split-section,
  .media-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .scroll-hint {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --page: min(100% - 24px, 1180px);
  }

  section[id] {
    scroll-margin-top: 24px;
  }

  h1 {
    font-size: clamp(58px, 22vw, 94px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 56px);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-bottom: 46px;
  }

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

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

  .button {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .cards-section,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-card,
  .image-card-large {
    grid-column: auto;
    min-height: 260px;
  }

  .spotify-card {
    grid-template-columns: 1fr;
  }

  .brand-logo,
  .footer-brand img {
    width: 34px;
    height: 34px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
