:root {
  --ink: #10120f;
  --muted: #5d6258;
  --paper: #f7f5ee;
  --white: #fffdf7;
  --lime: #b8ff22;
  --lime-dark: #6c9f00;
  --green-readable: #3f6f14;
  --coral: #e97355;
  --mint: #89d9bd;
  --line: rgba(16, 18, 15, 0.14);
  --shadow: 0 18px 70px rgba(16, 18, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: 58px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 253, 247, 0.24);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(16, 18, 15, 0.62);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.hero-actions,
.hero-stats,
.booking-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  min-height: 44px;
  border-radius: 8px;
  padding: 7px 12px;
  background: var(--lime);
}

.brand-logo {
  display: block;
  width: 138px;
  height: auto;
  max-height: 32px;
  object-fit: contain;
}

nav {
  gap: 22px;
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.92rem;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
}

.nav-cta {
  color: var(--ink);
  background: var(--lime);
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  overflow: hidden;
  color: var(--white);
}

.hero picture,
.hero img,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero img {
  width: 100%;
  height: 100%;
  min-height: 94vh;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 18, 15, 0.86) 0%, rgba(16, 18, 15, 0.56) 42%, rgba(16, 18, 15, 0.28) 100%),
    linear-gradient(0deg, rgba(16, 18, 15, 0.76) 0%, rgba(16, 18, 15, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 66px;
  align-self: end;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-readable);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.featured-social .eyebrow {
  color: var(--lime);
}

.hero-eyebrow span {
  display: inline;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
  text-align: justify;
  text-align-last: left;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.4rem, 10vw, 7.4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3.25rem);
  line-height: 1.06;
}

h3 {
  margin: 18px 0 8px;
  font-size: 1.14rem;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 253, 247, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-secondary {
  border: 1px solid currentColor;
  color: var(--white);
  background: rgba(255, 253, 247, 0.08);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.hero-stats {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.hero-stats > span {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  min-height: 104px;
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(16, 18, 15, 0.42);
  color: rgba(255, 253, 247, 0.78);
}

.hero-stats strong {
  display: block;
  grid-column: 2;
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.05;
  margin-bottom: 4px;
}

.stat-icon {
  grid-row: 1 / span 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--lime);
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-icon svg path:first-child,
.stat-icon svg rect,
.stat-icon svg circle {
  vector-effect: non-scaling-stroke;
}

.social-proof {
  padding-top: 40px;
}

.social-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(0, 0.75fr));
  gap: 12px;
  margin-top: 38px;
}

.social-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(16, 18, 15, 0.08);
}

.social-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.social-card h3,
.social-card p {
  padding: 0 20px;
}

.social-card p {
  color: var(--muted);
  line-height: 1.6;
}

.social-card .text-link {
  margin-left: 20px;
  margin-bottom: 22px;
}

.membership-card img {
  object-position: top center;
}

.featured-social {
  grid-row: span 2;
  display: grid;
  grid-template-rows: auto auto;
  background: var(--ink);
  color: var(--white);
}

.featured-social img {
  height: auto;
  max-height: 500px;
  object-fit: contain;
  background: #f6f0e3;
}

.featured-social div {
  padding: 24px 20px 26px;
}

.featured-social h3,
.featured-social p {
  padding: 0;
}

.featured-social p:not(.eyebrow) {
  color: rgba(255, 253, 247, 0.76);
}

.featured-social .text-link {
  margin-left: 0;
  color: var(--white);
  border-color: var(--lime);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro,
.location,
.booking-band {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 48px;
  align-items: center;
}

.intro-copy p,
.location p,
.facility-grid p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.intro-copy p {
  text-align: left;
  max-width: 520px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  border-bottom: 2px solid var(--lime-dark);
  color: var(--ink);
  font-weight: 900;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.gallery-strip img {
  width: 100%;
  height: clamp(260px, 26vw, 360px);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.facilities {
  padding-top: 112px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.facility-grid article {
  min-height: 245px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--coral);
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-band {
  width: min(1120px, calc(100% - 32px));
  border-radius: 8px;
  padding: 42px;
  color: var(--white);
  background: var(--ink);
}

.booking-band .eyebrow {
  color: var(--mint);
}

.booking-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.booking-action-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.booking-actions .button-dark {
  border: 1px solid rgba(255, 253, 247, 0.26);
}

.location {
  align-items: stretch;
}

.location-info {
  border-radius: 8px;
  padding: 38px;
  background: var(--white);
}

.location-info .button-secondary {
  margin-top: 16px;
  color: var(--ink);
  background: transparent;
}

.map-wrap {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.site-footer {
  display: flex;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 96px;
  justify-content: center;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-weight: 400;
}

.site-footer svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 18px 50px rgba(16, 18, 15, 0.28);
  font-weight: 900;
}

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

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand-logo {
    width: 126px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 112px 0 34px;
  }

  .hero-stats > span {
    width: calc(50% - 5px);
  }

  .intro,
  .location,
  .booking-band {
    grid-template-columns: 1fr;
  }

  .gallery-strip,
  .social-grid,
  .facility-grid {
    grid-template-columns: 1fr;
  }

  .featured-social {
    grid-row: auto;
  }

  .featured-social img {
    min-height: 300px;
  }

  .gallery-strip img,
  .gallery-strip img:nth-child(2),
  .gallery-strip img:nth-child(3) {
    height: 285px;
    margin-top: 0;
  }

  .section {
    padding: 68px 0;
  }

  .facility-grid article {
    min-height: auto;
  }

  .booking-band {
    padding: 30px 22px;
  }

  .booking-actions {
    justify-content: flex-start;
  }

  .booking-action-wrap {
    justify-content: flex-start;
  }

  .site-footer {
    flex-direction: column;
  }

  .floating-wa {
    display: inline-flex;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 108px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  h1 {
    max-width: 310px;
    font-size: clamp(2.65rem, 13vw, 3.45rem);
    line-height: 0.96;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .hero-eyebrow span {
    display: block;
  }

  .hero-copy {
    max-width: 330px;
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.5;
    text-align: left;
  }

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

  .hero-actions .button,
  .booking-actions .button {
    width: 100%;
    min-height: 42px;
  }

  .hero-stats > span {
    width: 100%;
    min-height: 82px;
    padding: 14px 16px;
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 12px;
  }

  .hero-stats {
    margin-top: 28px;
  }

  .hero-stats strong {
    font-size: 1.02rem;
  }

  .stat-icon {
    width: 32px;
    height: 32px;
  }

  .stat-icon svg {
    width: 24px;
    height: 24px;
  }

  .location-info {
    padding: 26px 20px;
  }
}
