:root {
  --bg: #050505;
  --bg-soft: #111111;
  --bg-elevated: #1a1a1a;
  --graphite: #2b2b2b;
  --graphite-2: #3a3a3a;
  --gold: #a67c39;
  --gold-light: #e7c98a;
  --bronze: #6e5330;
  --text: #f0ece5;
  --text-muted: #cbc4b8;
  --border: rgba(231, 201, 138, 0.18);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --transition: 0.35s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #050505 0%, #111111 60%, #0a0a0a 100%);
  line-height: 1.65;
}

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

a {
  color: var(--gold-light);
  text-decoration: none;
}

a:hover {
  color: #fff;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section--dark {
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.85), rgba(12, 12, 12, 0.94));
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  max-width: 860px;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.24rem;
}

p {
  margin: 0 0 18px;
  color: var(--text-muted);
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

li + li {
  margin-top: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 0.88rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.section__lead {
  max-width: 880px;
  margin-bottom: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(231, 201, 138, 0.5);
  background: linear-gradient(135deg, #a67c39 0%, #e7c98a 48%, #a67c39 100%);
  color: #0a0a0a;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(166, 124, 57, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  color: #0a0a0a;
  box-shadow: 0 12px 28px rgba(166, 124, 57, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--gold-light);
  box-shadow: none;
}

.btn--ghost:hover {
  color: #fff;
}

.btn--small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.btn--wide {
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 201, 138, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 1.02rem;
}

.logo__mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #a67c39, #e7c98a);
  color: #0a0a0a;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 8px 18px rgba(166, 124, 57, 0.25);
}

.logo__text strong {
  color: var(--gold-light);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--text);
  font-size: 0.96rem;
}

.nav a:hover {
  color: var(--gold-light);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.burger span {
  width: 28px;
  height: 2px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 18px 20px 24px;
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a {
  color: var(--text);
}

.mobile-menu.open {
  display: flex;
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.42), rgba(5,5,5,0.85) 70%, rgba(5,5,5,0.98) 100%), radial-gradient(circle at center, rgba(166,124,57,0.12), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 64px;
  padding-bottom: 88px;
}

.hero__lead {
  max-width: 760px;
  font-size: 1.05rem;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.hero__features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 0;
  margin-top: 36px;
  color: #fff;
}

.hero__features li {
  position: relative;
  padding-left: 18px;
}

.hero__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px rgba(231, 201, 138, 0.7);
}

.hero__animation {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  opacity: 0.95;
}

.hero__animation span {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 201, 138, 0.35), rgba(231, 201, 138, 0.9), transparent);
  animation: wave 7s linear infinite;
}

.hero__animation span:nth-child(1) {
  bottom: 36px;
}

.hero__animation span:nth-child(2) {
  bottom: 58px;
  animation-delay: 1.4s;
}

.hero__animation span:nth-child(3) {
  bottom: 80px;
  animation-delay: 2.8s;
}

@keyframes wave {
  0% {
    transform: translateX(-6%) scaleX(0.8);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    transform: translateX(6%) scaleX(1.04);
    opacity: 0;
  }
}

.intro__grid,
.business-model__grid,
.booking__grid,
.showroom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.highlight-card,
.card,
.media-card,
.rate-card,
.review-card,
.contact-card,
.legal-page__container,
.map-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.96), rgba(15, 15, 15, 0.98));
  box-shadow: var(--shadow);
}

.highlight-card,
.contact-card {
  padding: 30px;
}

.highlight-card ul,
.contact-card p:last-child {
  margin-bottom: 0;
}

.fleet-grid,
.services-grid,
.features-grid,
.rates-grid,
.reviews-grid {
  display: grid;
  gap: 24px;
}

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

.services-grid,
.features-grid,
.rates-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.card__image,
.media-card__image,
.showroom__image,
.map-card__image {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  width: 100%;
}

.card__content,
.media-card__body,
.service-card,
.rate-card,
.review-card {
  padding: 26px;
}

.fleet-card {
  overflow: hidden;
}

.service-card,
.feature-item,
.review-card,
.faq-item,
.rate-card {
  position: relative;
}

.feature-item {
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22,22,22,0.96), rgba(10,10,10,0.98));
  box-shadow: var(--shadow);
}

.feature-item__number {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(231, 201, 138, 0.72);
}

.business-list {
  display: grid;
  gap: 22px;
}

.showroom {
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid rgba(231, 201, 138, 0.12);
}

.rate-card__price {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.rate-card--featured {
  border-color: rgba(231, 201, 138, 0.34);
  background: linear-gradient(180deg, rgba(44, 33, 15, 0.94), rgba(14, 13, 10, 0.98));
}

.rate-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  background: linear-gradient(135deg, #a67c39, #e7c98a);
  color: #0a0a0a;
  font-weight: 700;
}

.rates-note {
  margin-top: 24px;
}

.review-card__author {
  margin-top: 18px;
}

.review-card__author strong,
.review-card__author span {
  display: block;
}

.review-card__author span {
  color: var(--gold-light);
  font-size: 0.94rem;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(26,26,26,0.94), rgba(14,14,14,0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-weight: 600;
  color: #fff;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 20px;
  color: var(--gold-light);
  font-size: 1.4rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 24px 22px;
  margin: 0;
}

.booking-form {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(26,26,26,0.98), rgba(14,14,14,0.98));
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 18px;
}

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

label {
  display: inline-block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(231, 201, 138, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(231, 201, 138, 0.5);
  box-shadow: 0 0 0 4px rgba(166, 124, 57, 0.16);
}

option {
  color: #111;
}

.form-note {
  font-size: 0.92rem;
  margin-top: 14px;
}

.map-card {
  overflow: hidden;
}

.footer {
  padding: 50px 0 28px;
  border-top: 1px solid rgba(231, 201, 138, 0.12);
  background: #070707;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer__list {
  list-style: none;
  padding: 0;
}

.footer__list li + li {
  margin-top: 10px;
}

.footer__bottom {
  padding-top: 26px;
  margin-top: 26px;
  border-top: 1px solid rgba(231, 201, 138, 0.12);
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  background: rgba(10, 10, 10, 0.96);
  border-top: 1px solid rgba(231, 201, 138, 0.18);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.94rem;
}

.cookie-banner.hidden {
  display: none;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 32px));
  padding: 32px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(231, 201, 138, 0.24);
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.98), rgba(12, 12, 12, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  animation: popIn 0.45s ease;
}

@keyframes popIn {
  from {
    transform: translateY(20px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-light), var(--gold));
  position: relative;
  box-shadow: 0 0 0 8px rgba(166, 124, 57, 0.12), 0 18px 30px rgba(166, 124, 57, 0.2);
}

.modal__icon::before,
.modal__icon::after {
  content: "";
  position: absolute;
  background: #0a0a0a;
  border-radius: 2px;
}

.modal__icon::before {
  width: 16px;
  height: 4px;
  left: 20px;
  top: 36px;
  transform: rotate(45deg);
}

.modal__icon::after {
  width: 30px;
  height: 4px;
  left: 28px;
  top: 31px;
  transform: rotate(-45deg);
}

.header--simple {
  position: static;
}

.nav--simple {
  gap: 16px;
}

.legal-page {
  padding: 72px 0;
}

.legal-page__container {
  width: min(900px, calc(100% - 40px));
  padding: 36px;
}

@media (max-width: 1080px) {
  .services-grid,
  .rates-grid,
  .reviews-grid,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .intro__grid,
  .business-model__grid,
  .booking__grid,
  .showroom,
  .fleet-grid,
  .services-grid,
  .features-grid,
  .rates-grid,
  .reviews-grid,
  .footer__grid,
  .form-group--half {
    grid-template-columns: 1fr;
  }

  .cookie-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__features {
    gap: 12px 24px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 74px 0;
  }

  .container {
    width: min(100% - 28px, 1200px);
  }

  .header__inner {
    min-height: 74px;
  }

  .hero {
    min-height: calc(100vh - 74px);
  }

  .hero__buttons {
    width: 100%;
    flex-direction: column;
  }

  .btn,
  .btn--ghost {
    width: 100%;
  }

  .highlight-card,
  .contact-card,
  .booking-form,
  .modal__content,
  .legal-page__container,
  .card__content,
  .media-card__body,
  .service-card,
  .rate-card,
  .review-card {
    padding: 22px;
  }

  .faq-item summary,
  .faq-item p {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* FULL-WIDTH IMAGE SECTION */
.club-banner-section {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 0.85) 100%),
    #050505;
  border-top: 1px solid rgba(231, 201, 138, 0.16);
  border-bottom: 1px solid rgba(231, 201, 138, 0.16);
}

.club-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.club-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  filter: brightness(0.52) saturate(0.95) contrast(1.05);
}

.club-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.24) 0%, rgba(5, 5, 5, 0.78) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.24) 45%, rgba(5, 5, 5, 0.78) 100%);
}

.club-banner-content {
  position: relative;
  z-index: 3;
  width: min(100% - 40px, 980px);
  text-align: center;
  padding: 80px 20px;
}

.club-banner-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(231, 201, 138, 0.35);
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.42);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e7c98a;
}

.club-banner-content h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #f7f2e8;
  text-transform: none;
}

.club-banner-content p {
  width: min(100%, 760px);
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 248, 238, 0.84);
}

.club-banner-line {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #a67c39 20%, #e7c98a 50%, #a67c39 80%, transparent 100%);
  box-shadow: 0 0 18px rgba(231, 201, 138, 0.42);
}

@media (max-width: 991px) {
  .club-banner-section {
    min-height: 480px;
  }

  .club-banner-content {
    padding: 70px 16px;
  }

  .club-banner-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}

@media (max-width: 640px) {
  .club-banner-section {
    min-height: 420px;
  }

  .club-banner-kicker {
    font-size: 11px;
    letter-spacing: 0.22em;
    padding: 9px 14px;
  }

  .club-banner-content h2 {
    margin-bottom: 14px;
    font-size: clamp(26px, 8vw, 38px);
  }

  .club-banner-content p {
    font-size: 14px;
    line-height: 1.75;
  }
}