:root {
  --black: #050606;
  --charcoal: #17181b;
  --charcoal-2: #222327;
  --paper: #f5f5f7;
  --white: #ffffff;
  --muted: #6d6d72;
  --gold: #c99c42;
  --gold-light: #e2bd69;
  --border: rgba(255, 255, 255, 0.16);
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--black);
  background: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 6, 6, 0.72);
  backdrop-filter: blur(12px);
}

.site-header.scrolled {
  position: fixed;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.nav-shell {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  width: 104px;
  height: 82px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.main-nav > a {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: width 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  width: 100%;
}

.header-socials {
  display: flex;
  align-items: center;
  padding-left: 3px;
  gap: 7px;
}

.social-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  border: 1px solid rgba(201, 156, 66, 0.36);
  border-radius: 50%;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  color: var(--black);
  background: var(--gold);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 17px;
  height: 17px;
  overflow: visible;
  fill: currentColor;
  stroke: none;
}

.social-icon svg rect,
.social-icon svg circle:not(.social-dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-icon .social-dot {
  fill: currentColor;
}

.nav-cta {
  padding: 10px 22px;
  color: var(--black);
  border-radius: 999px;
  background: var(--gold);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  overflow: hidden;
  place-items: center;
  color: var(--white);
  background: var(--black);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.66), rgba(3, 3, 3, 0.3)),
    linear-gradient(0deg, rgba(3, 3, 3, 0.62), rgba(3, 3, 3, 0.08) 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 870px;
  padding-top: 100px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.gold {
  color: #9d7025;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 610px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-light {
  min-width: 180px;
  color: var(--black);
  background: var(--white);
}

.button-outline {
  min-width: 180px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.button-gold {
  color: var(--black);
  border: 0;
  background: var(--gold);
}

.button-dark {
  color: var(--white);
  border: 0;
  background: var(--charcoal);
}

.button-full {
  width: 100%;
}

.section {
  padding: 120px 0;
}

.section-light {
  background: var(--paper);
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-heading p:last-child {
  color: var(--muted);
}

.section-dark .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.services-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(50px, 8vw, 110px);
}

.feature-image,
.story-image,
.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.feature-image {
  box-shadow: var(--shadow);
}

.feature-image img {
  height: 550px;
  object-fit: cover;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-card {
  padding: 22px 0;
  border-bottom: 1px solid #dedee2;
}

.service-card h3 {
  margin-bottom: 6px;
  font-size: 1.24rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-meta {
  display: flex;
  margin-top: 10px;
  color: #946c2c;
  gap: 18px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.membership {
  padding: 100px 0;
  color: var(--white);
  background: var(--charcoal);
}

.membership-inner {
  max-width: 850px;
  text-align: center;
}

.membership-inner > p {
  color: rgba(255, 255, 255, 0.65);
}

.membership-form {
  max-width: 720px;
  margin: 36px auto 0;
  text-align: left;
}

.membership-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.inline-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--charcoal);
  border: 1px solid #d4d4d8;
  border-radius: 12px;
  outline: none;
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 156, 66, 0.16);
}

.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--gold-light);
  font-size: 0.88rem;
}

.story {
  background: var(--white);
}

.story-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 8vw, 110px);
}

.story-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.story-image img {
  height: 590px;
  object-fit: cover;
}

.stats {
  display: grid;
  margin-top: 42px;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stats strong,
.stats span {
  color: var(--charcoal);
  font-size: 2.8rem;
  line-height: 1;
}

.stats p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.gallery {
  display: grid;
  grid-auto-rows: 320px;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.gallery-wide {
  grid-column: span 1;
}

.gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.booking {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.96), rgba(5, 6, 6, 0.78)),
    url("https://images.unsplash.com/photo-1702865272115-5afdbae975af?auto=format&fit=crop&w=2000&q=80")
    center / cover;
}

.booking-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 8vw, 100px);
}

.booking-copy {
  position: sticky;
  top: 140px;
}

.booking-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.booking-benefits {
  padding: 0;
  list-style: none;
}

.booking-benefits li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--border);
}

.booking-benefits li::before {
  position: absolute;
  margin-left: -28px;
  color: var(--gold);
  content: "✓";
}

.booking-form {
  padding: clamp(24px, 5vw, 48px);
  color: var(--charcoal);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.booking-form label,
.contact-panel label {
  display: grid;
  margin-bottom: 18px;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 700;
}

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

.small-print {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 7vw, 90px);
}

.contact-panel,
.location-panel {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.07);
}

.contact-panel > p,
.location-panel > p {
  color: var(--muted);
}

.map-wrap {
  height: 330px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 15px;
}

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

.hours {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.hours div {
  display: grid;
  padding: 15px;
  border: 1px solid #e0e0e4;
  border-radius: 12px;
  gap: 4px;
}

.hours span {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  padding: 75px 0 24px;
  color: rgba(255, 255, 255, 0.64);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 0.94rem;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

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

.footer-brand {
  display: inline-block !important;
  width: min(100%, 310px);
  margin: 0 !important;
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-grid > div:first-child p {
  max-width: 340px;
  margin-top: 22px;
}

.social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.footer-grid .social-links a {
  display: inline-flex;
  align-items: center;
  padding: 5px 0;
  gap: 10px;
}

.social-links svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: none;
}

.social-links svg rect,
.social-links svg circle:not(.social-dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links .social-dot {
  fill: currentColor;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 100;
  right: 28px;
  bottom: 28px;
  display: flex;
  min-width: 168px;
  height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--white);
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.whatsapp-float::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: rgba(37, 211, 102, 0.4);
  animation: whatsapp-pulse 2.2s ease-out infinite;
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: var(--white);
  background: #1db954;
  transform: translateY(-3px) scale(1.02);
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0.65;
    transform: scale(1);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.24);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 92px 0 auto;
    display: grid;
    padding: 30px 20px 40px;
    background: rgba(5, 6, 6, 0.98);
    text-align: center;
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .header-socials {
    justify-content: center;
    padding: 8px 0 2px;
  }

  .social-icon {
    width: 42px;
    height: 42px;
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .nav-cta {
    width: min(100%, 300px);
    margin: auto;
  }

  .services-layout,
  .story-grid,
  .booking-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }

  .story-copy {
    order: 1;
  }

  .story-image {
    order: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    width: 92px;
    height: 76px;
  }

  .footer-brand {
    width: min(82vw, 290px);
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    min-height: 700px;
  }

  .hero-video {
    object-position: 52% center;
  }

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

  h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .feature-image img,
  .story-image img {
    height: 390px;
  }

  .inline-form,
  .form-grid,
  .stats,
  .hours,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-auto-rows: 260px;
    grid-template-columns: 1fr;
  }

  .booking-form,
  .contact-panel,
  .location-panel {
    padding: 24px 18px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-width: 58px;
    width: 58px;
    padding: 0;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
