:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --bg-card: #0a0a0a;
  --gold: #c9a227;
  --gold-bright: #e0b83a;
  --gold-dim: #8a7020;
  --gold-line: rgba(201, 162, 39, 0.55);
  --red: #d61f26;
  --white: #f5f5f5;
  --muted: #b8b8b8;
  --text: #ececec;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --max: 1180px;
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("../assets/noise.png");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 0.85rem 1.35rem;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn .icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.btn-gold {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: rgba(201, 162, 39, 0.12);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.65rem 1rem;
  font-size: 0.7rem;
}

.btn-lg {
  padding: 1rem 1.85rem;
  font-size: 0.9rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-line);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 78px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  object-position: center;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem 1.15rem;
}

.main-nav a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  background: transparent;
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse 70% 60% at 70% 45%, rgba(201, 162, 39, 0.08), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/noise.png");
  opacity: 0.15;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 2rem;
  min-height: min(72vh, 640px);
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-copy h1 .line {
  display: block;
  color: var(--white);
}

.hero-copy h1 .accent {
  color: var(--gold);
}

.hero-lead {
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatIn 1s ease both;
  overflow: visible;
}

.hero-visual img {
  width: min(100%, 560px);
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.65));
  animation: crestPulse 6s ease-in-out infinite;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes crestPulse {
  0%,
  100% {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 0 rgba(201, 162, 39, 0));
  }
  50% {
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 28px rgba(201, 162, 39, 0.18));
  }
}

.hero-copy {
  animation: floatIn 0.8s ease 0.1s both;
}

/* Features */
.features {
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  background: #080808;
  padding: 1.6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 1.1rem;
  border-right: 1px solid var(--gold-line);
}

.feature:last-child {
  border-right: none;
}

.feature-icon {
  width: 1.65rem;
  height: 1.65rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.feature p {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Section titles */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-title .amp {
  color: var(--gold);
}

.section-title .rule {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--gold-line);
}

/* Services */
.services {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(201, 162, 39, 0.05), transparent 70%),
    var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.service-card {
  border: 1px solid var(--gold-line);
  background: linear-gradient(180deg, #101010 0%, #080808 100%);
  padding: 1.75rem 1.2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.service-icon-wrap {
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  color: var(--gold);
}

.service-icon-wrap svg {
  width: 1.45rem;
  height: 1.45rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.service-card .price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.service-card .price span {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.service-card .note {
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0.45rem 0 0.75rem;
}

.service-card .desc {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: 0.75rem;
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

/* Booking */
.booking {
  padding: 3.5rem 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  background: #080808;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.booking-list ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.booking-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.82rem;
  color: var(--text);
}

.booking-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

.booking-cta {
  text-align: center;
  padding: 0 0.5rem;
}

.booking-cta h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.booking-cta p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1.35rem;
  max-width: 18rem;
  margin-inline: auto;
}

.payments h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1rem;
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.pay-badge {
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 48 / 32;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease;
}

.pay-badge:hover {
  border-color: var(--gold);
}

.pay-badge svg {
  width: 100%;
  height: 100%;
}

/* Rules */
.rules {
  padding: 4.5rem 0;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.rules-grid article {
  border-top: 1px solid var(--gold-line);
  padding-top: 1.25rem;
}

.rules-grid h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.rules-grid p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Gallery */
.gallery {
  padding: 0 0 4.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
  min-height: 420px;
}

.gallery-item {
  border: 1px solid var(--gold-line);
  overflow: hidden;
  background: #0d0d0d;
  margin: 0;
}

.gallery-item.tall {
  grid-row: 1 / -1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.gallery-placeholder {
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--gold-dim);
  background:
    linear-gradient(135deg, rgba(201, 162, 39, 0.04), transparent 50%),
    #0d0d0d;
}

.gallery-placeholder svg {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
  opacity: 0.7;
}

.gallery-placeholder span {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--gold);
}

.gallery-note {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--gold-line);
  background: #050505;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  align-items: start;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-list svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-list .label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.contact-list a {
  font-size: 0.88rem;
  color: var(--text);
  transition: color 0.2s ease;
}

.contact-list a:hover {
  color: var(--gold);
}

.footer-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: min(100%, 280px);
  height: auto;
}

.socials {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.socials a {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.socials a:hover {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--gold);
}

.socials svg {
  width: 0.95rem;
  height: 0.95rem;
}

.address {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.address svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-hours {
  text-align: right;
}

.footer-hours p {
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.footer-hours .red {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-hours .closed {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
}

.footer-hours .ban {
  color: var(--red);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  padding: 1rem 0;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: #777;
  text-align: center;
}

/* Responsive */
@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    justify-items: stretch;
  }

  .brand {
    justify-self: start;
  }

  .nav-toggle {
    display: flex;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #0a0a0a;
    border-bottom: 1px solid var(--gold-line);
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.85rem 1.25rem 1.15rem;
    gap: 0;
    display: none;
  }

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

  .main-nav a {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    font-size: 0.8rem;
    text-align: center;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .hero {
    padding: 2.25rem 0 2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    min-height: auto;
    gap: 1.35rem;
  }

  .hero-copy {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-copy h1 {
    width: 100%;
    text-align: center;
  }

  .hero-copy h1 .line {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
    text-align: center;
    max-width: 26rem;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .hero-visual {
    order: -1;
    width: 100%;
  }

  .hero-visual img {
    width: min(88vw, 360px);
    margin-inline: auto;
  }

  .section-title {
    flex-wrap: wrap;
    gap: 0.55rem 0.85rem;
    margin-bottom: 1.75rem;
    padding-inline: 0.25rem;
  }

  .section-title .rule {
    max-width: 48px;
    order: 0;
  }

  .features {
    padding: 1.25rem 0;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid var(--gold-line);
    padding: 1.15rem 0.75rem;
    gap: 0.55rem;
  }

  .feature:nth-child(odd) {
    border-right: 1px solid var(--gold-line);
  }

  .feature:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .feature-icon {
    margin-top: 0;
  }

  .feature h3,
  .feature p {
    text-align: center;
  }

  .services {
    padding: 3.25rem 0 2.75rem;
  }

  .services-grid,
  .rules-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .service-card {
    min-height: 0;
    padding: 1.35rem 0.9rem 1.2rem;
  }

  .rules-grid article {
    text-align: center;
    padding: 1.1rem 0.5rem 0.25rem;
  }

  .rules-grid h3,
  .rules-grid p {
    text-align: center;
  }

  .booking {
    padding: 2.75rem 0;
  }

  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 2rem;
  }

  .booking-list {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .booking-list ul {
    align-items: stretch;
    width: min(100%, 22rem);
    margin-inline: auto;
    text-align: left;
  }

  .booking-list li {
    text-align: left;
    max-width: none;
  }

  .booking-cta {
    width: 100%;
    padding: 0;
  }

  .booking-cta h2,
  .booking-cta p {
    text-align: center;
  }

  .payments {
    width: 100%;
    max-width: 320px;
  }

  .payments h3 {
    text-align: center;
  }

  .pay-grid {
    margin-inline: auto;
  }

  .footer-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col h3 {
    text-align: center;
  }

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

  .footer-hours .closed {
    justify-content: center;
  }

  .contact-list {
    align-items: center;
    width: 100%;
  }

  .contact-list li {
    justify-content: center;
    text-align: center;
  }

  .contact-list .label,
  .contact-list a {
    text-align: center;
  }

  .address {
    justify-content: center;
    text-align: left;
  }

  .gallery {
    padding-bottom: 3.25rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .gallery-item.tall {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .gallery-item.tall img {
    max-height: 300px;
    margin-inline: auto;
    object-fit: contain;
  }

  .gallery-placeholder {
    min-height: 140px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.35rem, var(--max));
  }

  .brand-logo {
    height: 64px;
    max-width: 92px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 2.85rem);
    letter-spacing: 0.04em;
    line-height: 0.95;
  }

  .hero-lead {
    font-size: 0.9rem;
    padding-inline: 0.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 20rem;
    margin-inline: auto;
  }

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

  .hero-visual img {
    width: min(92vw, 320px);
  }

  .section-title {
    font-size: 1.55rem;
    letter-spacing: 0.1em;
    line-height: 1.15;
  }

  .section-title .rule {
    display: none;
  }

  .features-grid,
  .services-grid,
  .rules-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature,
  .feature:nth-child(odd) {
    border-right: none;
    border-bottom: 1px solid var(--gold-line);
    padding: 1.2rem 0.5rem;
  }

  .feature:last-child {
    border-bottom: none;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card .price {
    font-size: 1.75rem;
  }

  .rules {
    padding: 3rem 0 2.5rem;
  }

  .rules-grid article {
    padding-top: 1rem;
  }

  .booking-cta h2 {
    font-size: 1.85rem;
  }

  .pay-grid {
    max-width: 280px;
    margin-inline: auto;
  }

  .footer-logo img {
    width: min(100%, 240px);
  }

  .gallery-item.tall img {
    max-height: 260px;
  }
}

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

  .hero-visual img,
  .hero-copy,
  .hero-visual {
    animation: none;
  }
}

/* Booking modal */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
  border: 0;
  cursor: pointer;
}

.booking-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(92vh, 820px);
  overflow: auto;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 162, 39, 0.1), transparent 55%),
    #0b0b0b;
  border: 1px solid var(--gold-line);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  animation: modalIn 0.28s ease both;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.booking-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--gold-line);
  background: transparent;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
}

.booking-modal__close:hover {
  background: rgba(201, 162, 39, 0.12);
}

.booking-modal__header {
  margin-bottom: 1.35rem;
  padding-right: 2rem;
}

.booking-modal__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.booking-modal__header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.45rem;
}

.booking-modal__header p {
  font-size: 0.82rem;
  color: var(--muted);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.booking-form__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.booking-form__row:first-of-type {
  grid-template-columns: 1fr 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field > span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.field > span em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: #111;
  border: 1px solid var(--gold-line);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.7rem 0.75rem;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.field input[type="date"],
.field input[type="time"] {
  color-scheme: dark;
}

.field select {
  cursor: pointer;
}

.field textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.field-hint {
  font-size: 0.68rem;
  color: var(--muted);
}

.field-error {
  color: var(--red);
  font-size: 0.75rem;
  margin-top: 0.45rem;
}

.service-picker {
  border: 0;
  padding: 0;
}

.service-picker legend {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.service-picker__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}

.service-option {
  cursor: pointer;
}

.service-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-option__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 4.4rem;
  padding: 0.65rem 0.4rem;
  border: 1px solid var(--gold-line);
  background: #101010;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.service-option__card strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
}

.service-option__card em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
}

.service-option input:checked + .service-option__card {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.12);
  box-shadow: inset 0 0 0 1px var(--gold);
}

.service-option input:focus-visible + .service-option__card {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

.booking-form__note {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.45;
}

.booking-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.booking-form__success {
  font-size: 0.8rem;
  color: var(--gold);
  text-align: center;
  padding: 0.65rem;
  border: 1px solid var(--gold-line);
  background: rgba(201, 162, 39, 0.08);
}

.booking-form__error {
  font-size: 0.8rem;
  color: #ffb4b4;
  text-align: center;
  padding: 0.65rem;
  border: 1px solid rgba(214, 31, 38, 0.55);
  background: rgba(214, 31, 38, 0.12);
}

body.booking-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .booking-form__row,
  .booking-form__row:first-of-type,
  .service-picker__grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-form__row {
    grid-template-columns: 1fr;
  }

  .booking-modal__panel {
    padding: 1.4rem 1rem 1.15rem;
  }

  .booking-modal__header {
    text-align: center;
    padding-right: 1.75rem;
    padding-left: 0.25rem;
  }

  .booking-modal__eyebrow,
  .booking-modal__header h2,
  .booking-modal__header p {
    text-align: center;
  }

  .service-picker legend {
    text-align: center;
    width: 100%;
  }

  .booking-form__note {
    text-align: center;
  }

  .booking-form__actions {
    flex-direction: column-reverse;
  }

  .booking-form__actions .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .service-picker__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-modal__panel {
    animation: none;
  }
}
