:root {
  --black: #0c1014;
  --dark: #1c2229;
  --gray-700: #2b333c;
  --gray-500: #5a6470;
  --gray-300: #a5b0bd;
  --gray-200: #d3dae3;
  --gray-100: #eef2f6;
  --white: #ffffff;
  --brand: #ff6f3c;
  --brand-dark: #f55b1d;
  --brand-light: rgba(255, 111, 60, 0.1);
  --accent: #5d8dee;
  --max-width: 1200px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-lg: 0 24px 60px rgba(12, 16, 20, 0.25);
  --shadow-md: 0 14px 30px rgba(12, 16, 20, 0.14);
  --shadow-sm: 0 6px 16px rgba(12, 16, 20, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: brightness(0.75);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 16, 20, 0.85) 20%, rgba(12, 16, 20, 0.25) 80%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  padding: 140px 0 120px;
}

.hero-copy h1 {
  font-size: clamp(2.75rem, 5vw, 3.8rem);
  margin: 12px 0 24px;
  line-height: 1.1;
  max-width: 14ch;
}

.hero-copy p {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.86);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0 40px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
}

.hero-highlights {
  display: grid;
  gap: 18px;
  align-self: center;
}

.highlight-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(12, 16, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}

.highlight-card h3 {
  margin-top: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin: 16px 0;
  line-height: 1.2;
  color: var(--white);
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.84);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  background: rgba(12, 16, 20, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  font-size: 1rem;
  font-weight: 700;
}

.logo-text {
  font-weight: 600;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
}

.primary-btn,
.ghost-btn,
.outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border: none;
  color: var(--white);
  box-shadow: 0 14px 25px rgba(255, 111, 60, 0.25);
}

.primary-btn:hover,
.primary-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(255, 111, 60, 0.35);
}

.primary-btn.full-width {
  width: 100%;
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: transparent;
}

.ghost-btn:hover,
.ghost-btn:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
}

.outline:hover,
.outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.section-heading {
  max-width: 720px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.center p {
  margin-left: auto;
  margin-right: auto;
}

.card-grid {
  display: grid;
  gap: 30px;
  margin-top: 56px;
}

.card-grid.three-up {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(12, 16, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.card ul:not(.amenity-list) {
  padding-left: 18px;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.8);
}

.card-link {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

.services {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 18%, rgba(93, 141, 238, 0.22), transparent 48%),
    radial-gradient(circle at 85% 22%, rgba(255, 111, 60, 0.25), transparent 52%),
    radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.08), transparent 70%);
}

.services::before {
  content: "";
  position: absolute;
  inset: -20% 10% auto 10%;
  height: 320px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 60%);
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 68px;
}

.service-card {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(160deg, rgba(12, 16, 20, 0.92), rgba(12, 16, 20, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -12% -12%;
  background: var(--service-image) center/cover no-repeat;
  transform: scale(1);
  transition: transform 0.5s ease;
  opacity: 0.75;
  filter: saturate(1.1);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(12, 16, 20, 0.75), rgba(12, 16, 20, 0.95) 60%);
  mix-blend-mode: multiply;
}

.service-card:hover::before {
  transform: scale(1.08);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
}

.service-badge.accent {
  background: rgba(93, 141, 238, 0.22);
  border-color: rgba(93, 141, 238, 0.45);
}

.amenity-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.amenity-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 14px;
}

.amenity-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.service-card .amenity-icon {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.card .amenity-icon {
  background: rgba(255, 255, 255, 0.12);
}

.amenity-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity-label {
  color: rgba(255, 255, 255, 0.88);
}

.service-list {
  margin: 16px 0 0;
}

.service-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.service-price {
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.image-card-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 56px;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 16, 20, 0.85) 90%);
}

.membership {
  background: radial-gradient(circle at top left, rgba(93, 141, 238, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 111, 60, 0.18), transparent 60%);
}

.membership-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}

.bullet-grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.membership-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(12, 16, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
}

.membership-card-header {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.membership-card ul {
  margin: 0 0 24px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.enterprise {
  background: linear-gradient(130deg, rgba(30, 38, 47, 0.95), rgba(12, 16, 20, 0.95));
}

.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.enterprise-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.checklist {
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
}

.testimonials {
  background: rgba(12, 16, 20, 0.92);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  margin: 0;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-style: italic;
  color: rgba(255, 255, 255, 0.86);
}

.testimonial-card footer {
  margin-top: 24px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-card strong {
  color: var(--white);
}

.contact {
  background: linear-gradient(135deg, rgba(93, 141, 238, 0.14), rgba(255, 111, 60, 0.12));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
}

.contact-form {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(12, 16, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

input,
select,
textarea {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 20, 0.8);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(93, 141, 238, 0.6);
  outline-offset: 0;
}

.form-footnote {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.site-footer {
  background: #06080a;
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding-bottom: 48px;
}

.footer-logo .logo-mark {
  width: 36px;
  height: 36px;
}

.site-footer h4 {
  margin-bottom: 16px;
  color: var(--white);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.6);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-highlights {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .membership-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 840px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: absolute;
    top: 110%;
    right: 0;
    width: 260px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: rgba(12, 16, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-list.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-content {
    padding: 120px 0 80px;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-cta a {
    flex: 1 1 200px;
    justify-content: center;
  }

  .hero-stats {
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .service-meta .primary-btn {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .header-container {
    gap: 12px;
  }

  .primary-btn,
  .ghost-btn,
  .outline {
    width: 100%;
  }

  .hero-stats div {
    width: calc(50% - 12px);
  }

  .card,
  .membership-card,
  .contact-form,
  .testimonial-card {
    padding: 24px;
  }
}

