:root {
  --bg: #050505;
  --bg-soft: #0b0b0c;
  --card: #101010;
  --card-2: #151515;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.48);
  --faint: rgba(255, 255, 255, 0.08);
  --gold: #d4af37;
  --gold-light: #f8df91;
  --gold-soft: rgba(212, 175, 55, 0.12);
  --danger: #8d263c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 0%, rgba(212, 175, 55, 0.14), transparent 26rem),
    radial-gradient(circle at 84% 10%, rgba(141, 38, 60, 0.16), transparent 24rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button {
  font: inherit;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(16px);
}

.age-gate[hidden] {
  display: none;
}

.age-modal {
  width: min(520px, 100%);
  padding: 34px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 22px;
  background: linear-gradient(145deg, #111, #050505);
  box-shadow: var(--shadow);
  text-align: center;
}

.modal-badge {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: #050505;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 1000;
  font-size: 1.2rem;
}

.age-modal h2 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.age-modal p:not(.kicker) {
  margin: 14px auto 0;
  color: var(--muted);
  max-width: 420px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--faint);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #070707;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 1000;
}

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-header nav a {
  min-height: 40px;
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.site-header .nav-cta {
  color: #050505;
  background: var(--gold);
}

.site-header .nav-cta:hover {
  color: #050505;
  background: var(--gold-light);
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  border-bottom: 1px solid var(--faint);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.58) 58%, rgba(5, 5, 5, 0.35)),
    linear-gradient(0deg, var(--bg), rgba(5, 5, 5, 0) 44%),
    url("hero-marina.png") center/cover;
  transform: scale(1.03);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 36px));
  min-height: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  padding: 74px 0 92px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(4.4rem, 12vw, 10.5rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span,
.gold-text {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 620px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(212, 175, 55, 0.06);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel {
  align-self: end;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.92), rgba(5, 5, 5, 0.96));
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.spotlight-photo {
  height: 440px;
}

.panel-info {
  padding: 22px;
}

.panel-info p {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.panel-info h2 {
  margin-top: 6px;
  margin-bottom: 18px;
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.btn,
.reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 14px;
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover,
.reserve:hover {
  transform: translateY(-2px);
}

.btn-gold,
.reserve {
  color: #050505;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.filter-bar {
  position: sticky;
  top: 79px;
  z-index: 30;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 18px;
  border-bottom: 1px solid var(--faint);
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(16px);
  overflow-x: auto;
}

.filter {
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.filter.active,
.filter:hover {
  color: #050505;
  border-color: var(--gold);
  background: var(--gold);
}

.section {
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 116px) 0;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-title h2,
.safety h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.section-title > span {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  font-weight: 1000;
  letter-spacing: 0.22em;
}

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

.profile-card {
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 30px;
  background: linear-gradient(145deg, var(--card), #050505);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.profile-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.52);
  box-shadow: 0 22px 60px rgba(212, 175, 55, 0.12);
}

.profile-card.is-hidden {
  display: none;
}

.profile-image,
.spotlight-photo {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.2), transparent 16%),
    linear-gradient(145deg, #3f3147, #111 64%, #050505);
}

.profile-image img,
.spotlight-photo img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.profile-card:hover .profile-image img,
.hero-panel:hover .spotlight-photo img {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1.04);
}

.profile-image {
  height: 430px;
}

.profile-image::before,
.spotlight-photo::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 72%;
  height: 76%;
  transform: translateX(-50%);
  border-radius: 48% 48% 0 0;
  background:
    radial-gradient(circle at 50% 16%, #d6ad8c 0 10%, transparent 10.5%),
    radial-gradient(ellipse at 50% 41%, rgba(255, 255, 255, 0.22), transparent 16%),
    linear-gradient(145deg, rgba(212, 175, 55, 0.72), rgba(141, 38, 60, 0.78));
}

.profile-image.has-real-photo::before,
.spotlight-photo.has-real-photo::before {
  display: none;
}

.profile-image::after,
.spotlight-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.72) 20%, transparent 55%);
}

.photo-b {
  background: radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18), transparent 16%), linear-gradient(145deg, #24403d, #101010 64%, #050505);
}

.photo-c {
  background: radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18), transparent 16%), linear-gradient(145deg, #4b2734, #101010 64%, #050505);
}

.photo-d {
  background: radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18), transparent 16%), linear-gradient(145deg, #4a3f25, #101010 64%, #050505);
}

.photo-e {
  background: radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18), transparent 16%), linear-gradient(145deg, #26354f, #101010 64%, #050505);
}

.photo-f {
  background: radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18), transparent 16%), linear-gradient(145deg, #3e2a50, #101010 64%, #050505);
}

.premium-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #050505;
  background: var(--gold);
  font-size: 0.64rem;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-image > .premium-pill {
  position: absolute;
  top: 18px;
  left: 18px;
}

.profile-caption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.profile-caption p {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.profile-caption h3 {
  margin-top: 4px;
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.profile-content {
  padding: 22px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tags span {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desc {
  min-height: 50px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.96rem;
  margin-bottom: 20px;
}

.reserve {
  width: 100%;
}

.regions {
  padding: clamp(54px, 8vw, 88px) clamp(18px, 5vw, 72px);
  border-block: 1px solid var(--faint);
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.region-links {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.region-links a {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.region-links a:hover {
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.45);
}

.seo-section {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0;
}

.seo-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.seo-intro h2,
.content-band h2,
.faq-section h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.seo-intro p:not(.kicker),
.copy-stack p,
.faq-grid p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
}

.seo-intro p + p,
.copy-stack p + p {
  margin-top: 18px;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.local-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.local-grid span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.22em;
}

.local-grid h3 {
  margin-top: 24px;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.local-grid p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.94rem;
}

.content-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 76px);
  padding: clamp(58px, 8vw, 92px) clamp(18px, 5vw, 72px);
  border-block: 1px solid var(--faint);
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.025);
}

.copy-stack {
  max-width: 820px;
}

.faq-section {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0 0;
}

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

.faq-grid details {
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.faq-grid summary {
  cursor: pointer;
  padding: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-grid p {
  padding: 0 20px 20px;
}

.safety {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 100px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 6vw, 86px);
  align-items: center;
}

.safety p:not(.kicker) {
  color: rgba(255, 255, 255, 0.56);
  font-size: 1.08rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--faint);
  color: rgba(255, 255, 255, 0.3);
  background: #000;
  font-size: 0.74rem;
  font-weight: 1000;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    align-self: auto;
    width: min(520px, 100%);
  }

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

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

  .seo-intro,
  .content-band {
    grid-template-columns: 1fr;
  }

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

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

  .site-header nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 74px;
  }

  h1 {
    font-size: clamp(3.7rem, 19vw, 6rem);
  }

  .filter-bar {
    top: 124px;
    justify-content: flex-start;
  }

  .section-title,
  .safety,
  .footer {
    align-items: start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .profile-grid,
  .region-links,
  .local-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .profile-image {
    height: 470px;
  }

  .modal-actions {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .hero-inner,
  .section,
  .safety {
    width: min(100% - 28px, 1220px);
  }

  .spotlight-photo {
    height: 360px;
  }

  .profile-image {
    height: 410px;
  }

  .btn,
  .reserve {
    width: 100%;
  }
}
