:root {
  --bg: #0a0a0b;
  --surface: #131315;
  --surface-2: #1a1a1f;
  --text: #f5f5f6;
  --muted: #b4b4bb;
  --accent: #d9b26f;
  --accent-2: #ffffff;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
  --section-y: clamp(2.75rem, 6vw, 4.5rem);
  --container: min(1120px, 92vw);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background-color 250ms ease, color 250ms ease;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: var(--section-y) 0;
}

.section-label {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.65rem;
}

h1,
h2,
h3 {
  font-family: "Sora", "Manrope", sans-serif;
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

h2 {
  font-size: clamp(1.45rem, 3.5vw, 2rem);
}

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg), transparent 20%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  letter-spacing: 0.04em;
}

.site-logo {
  width: clamp(1.6rem, 4vw, 2rem);
  height: clamp(1.6rem, 4vw, 2rem);
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover,
.footer-links a:hover,
.footer-social a:hover {
  color: var(--accent);
}

.book-btn,
.cta-primary {
  background: linear-gradient(135deg, var(--accent), #e4c890);
  color: #151515;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  border: none;
  display: inline-block;
  transition: transform 150ms ease, box-shadow 180ms ease;
}

.book-btn:hover,
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.cta-secondary {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.2rem;
  cursor: pointer;
}

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

.hero {
  min-height: clamp(420px, 72vh, 680px);
  position: relative;
  display: grid;
  align-items: center;
  background-image: url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=2000&q=80");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-kicker {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.hero-walkins {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.5rem 1rem;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 55%, var(--border));
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  margin-bottom: 0.7rem;
}

.hero-subheading {
  color: #ececf1;
  font-size: clamp(1rem, 2.8vw, 1.3rem);
  max-width: 50ch;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 1.75rem);
}

.about-image {
  overflow: hidden;
  border-radius: 1rem;
  max-height: 280px;
}

.about-image img,
.about-img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.section-header {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.services-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.services-grid {
  gap: 0.55rem;
}

.service-card,
.testimonial-card,
.membership-card,
.booking-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  transition: transform 170ms ease, border-color 170ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent), var(--border) 60%);
}

.service-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  font-size: 1rem;
  margin-bottom: 0;
}

.service-card h3 {
  flex: 1;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
}

.service-card strong {
  color: var(--accent);
  font-size: 0.95rem;
  white-space: nowrap;
}

.booking {
  background: radial-gradient(circle at top right, rgba(217, 178, 111, 0.2), transparent 44%);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.2rem 0 0.8rem;
}

.booking-note {
  margin-bottom: 0;
  color: var(--muted);
}

.testimonial-card span {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact li {
  margin-bottom: 0.65rem;
  color: var(--muted);
}

.contact a {
  color: var(--text);
  font-weight: 600;
}

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

.hours-item {
  margin-bottom: 0;
}

.hours-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  width: 100%;
  max-width: 280px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.hours-list li span:last-child {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

.map-wrap {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.map-directions {
  display: inline-block;
  align-self: flex-start;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 150ms ease, border-color 150ms ease;
}

.map-directions:hover {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent), var(--border) 60%);
}

.map-wrap iframe {
  width: 100%;
  height: clamp(220px, 35vw, 320px);
  border: 0;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 1rem;
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
}

.footer-links,
.footer-social {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
}

.copyright {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  margin: 1rem 0 0;
}

.floating-book-btn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  background: linear-gradient(130deg, var(--accent), #f0d59e);
  color: #121212;
  font-weight: 800;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

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

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .about-image {
    max-height: 340px;
  }

  .about-image img,
  .about-img {
    max-height: 340px;
    aspect-ratio: 5 / 4;
  }
}

@media (min-width: 950px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .nav-links {
    position: absolute;
    top: 4.5rem;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 4vw 1.2rem;
  }

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

  .floating-book-btn {
    bottom: 0.8rem;
    right: 0.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

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

  .testimonial-card p {
    font-size: 0.95rem;
  }

  .hours-list {
    max-width: 100%;
  }
}

@media (max-width: 699px) {
  .about-image {
    max-height: 240px;
  }

  .about-image img,
  .about-img {
    max-height: 240px;
  }
}
