/* ============================================================
   PEAK FITNESS — Shared styles
   Dark base, white card elements, gold accent, gradient blends
   ============================================================ */

:root {
  --bg-deep:    #0a0a0c;
  --bg-dark:    #111114;
  --bg-mid:     #1a1a1f;
  --bg-light:   #f6f6f4;
  --bg-soft:    #ececea;
  --gold:       #d4af37;
  --gold-soft:  #e4c25c;
  --gold-deep:  #b8941f;
  --white:      #ffffff;
  --text-light: #f3f3f1;
  --text-muted: #a8a8a8;
  --text-dark:  #111114;
  --text-grey:  #4a4a4a;
  --border:     rgba(255,255,255,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-deep);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------- Typography ---------------- */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Oswald', 'Inter', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.1;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
}

.gold { color: var(--gold); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-dark {
  background: var(--bg-deep);
  color: var(--white);
  border-color: var(--bg-deep);
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}

/* Book A Visit — white tile, black text, black outline. Deliberately the
   loudest non-gold button on the page so it reads next to Sign Up. */
.btn-book {
  background: var(--white);
  color: var(--bg-deep);
  border-color: var(--bg-deep);
}
.btn-book:hover {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-logo-divider {
  width: 1px;
  height: 26px;
  background: rgba(255,255,255,0.25);
}

.nav-logo-loc {
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-menu a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-light);
  position: relative;
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--gold); }

.nav-menu .nav-cta {
  background: var(--gold);
  color: var(--bg-deep);
  border-radius: 3px;
  margin-left: 8px;
}
.nav-menu .nav-cta:hover {
  background: var(--gold-soft);
  color: var(--bg-deep);
}

/* Book A Visit in the nav — white tile, black text, black outline */
.nav-menu .nav-cta-book {
  background: var(--white);
  color: var(--bg-deep);
  border: 2px solid var(--bg-deep);
  border-radius: 3px;
  margin-left: 8px;
}
.nav-menu .nav-cta-book:hover,
.nav-menu .nav-cta-book.active {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--bg-deep);
}

.hamburger {
  display: none;
  background: none;
  border: 0;
  width: 32px; height: 32px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: 0.25s;
}

/* ---------------- Hero (with video) ---------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--white);
  padding: 100px 24px 80px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Source filmed landscape but stored portrait — rotate 90° in browser so it displays landscape and fills the hero */
.hero-video.rotate-90 {
  inset: auto;
  top: 50%;
  left: 50%;
  width: 100vh;
  height: 100vw;
  /* if the post-rotation size doesn't cover the hero, scale up */
  min-width: max(100vh, 100vw * 9 / 16);
  min-height: max(100vw, 100vh * 16 / 9);
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10,10,12,0.55), rgba(10,10,12,0.85)),
    radial-gradient(circle at 50% 50%, rgba(212,175,55,0.08), transparent 60%);
  z-index: 1;
}

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

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-sub {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-cue::after {
  content: '';
  display: block;
  width: 1px; height: 36px;
  margin: 10px auto 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ---------------- Sections (dark / light alternating) ---------------- */
.section {
  padding: 110px 0;
  position: relative;
}

/* Dark section — base */
.section-dark {
  background: var(--bg-deep);
  color: var(--text-light);
}

/* Light section — solid white, sharp slightly-angled edges top + bottom */
.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 0;
  clip-path: polygon(0 3.5%, 100% 0%, 100% 96.5%, 0 100%);
}
.section-light .section-light-inner {
  padding: 140px 24px;
}
.section-light h2,
.section-light h3 { color: var(--text-dark); }
.section-light p { color: var(--text-grey); }

/* Section heading block */
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}
.section-heading h2 {
  margin-bottom: 16px;
}
.section-heading p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-muted);
}
.section-light .section-heading p { color: var(--text-grey); }

/* Gold divider */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 24px;
  border-radius: 2px;
}

/* ---------------- About / Two-col ---------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col-img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-mid);
  position: relative;
}
.two-col-img img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ---------------- Features grid ---------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.feature-card {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  padding: 32px 24px;
  border-radius: 6px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.feature-icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  background: var(--gold);
  color: var(--bg-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--white);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Light variant */
.section-light .feature-card {
  background: var(--white);
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.section-light .feature-card h3 { color: var(--text-dark); }
.section-light .feature-card p { color: var(--text-grey); }

/* ---------------- Pricing ---------------- */
.pricing-section {
  background:
    linear-gradient(rgba(10,10,12,0.78), rgba(10,10,12,0.92)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="n"><feTurbulence baseFrequency="0.9" /></filter><rect width="200" height="200" filter="url(%23n)" opacity="0.08"/></svg>');
  background-size: cover, 200px 200px;
  position: relative;
}

.pricing-frame {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 30px;
  position: relative;
}

/* Gold corner brackets around the heading */
.pricing-heading {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  padding: 30px 60px;
}
.pricing-heading::before,
.pricing-heading::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border: 2px solid var(--gold);
}
.pricing-heading::before {
  top: 0; left: 0;
  border-right: 0; border-bottom: 0;
}
.pricing-heading::after {
  bottom: 0; right: 0;
  border-left: 0; border-top: 0;
}
.pricing-heading .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  margin-bottom: 8px;
  color: var(--white);
}
.pricing-heading h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--white);
  letter-spacing: 0.08em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

/* Two-tier locations (Pakenham, Keysborough) */
.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: 0 auto;
}

.price-card {
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: 6px;
  padding: 36px 26px 32px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card-popular {
  background: var(--bg-dark);
  color: var(--white);
  border: 2px solid var(--gold);
  transform: translateY(-12px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-deep);
  padding: 5px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  border-radius: 3px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.6rem;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
}
.price-tier-sub {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 600;
}
.price-card-popular .price-tier-sub { color: var(--gold-soft); }

.price-amount {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.price-amount .pw {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  vertical-align: middle;
  margin-left: 4px;
  color: var(--text-grey);
}
.price-card-popular .price-amount .pw { color: var(--text-muted); }

.price-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 18px auto;
  width: 80%;
}
.price-card-popular .price-divider { background: rgba(255,255,255,0.1); }

.price-features {
  list-style: none;
  text-align: left;
  margin: 0 auto;
  padding: 0;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.price-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}

.price-activation {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-grey);
  font-weight: 600;
}
.price-card-popular .price-activation {
  border-top-color: rgba(255,255,255,0.1);
  color: var(--text-muted);
}
.price-features { flex: 1; }

.price-cta {
  margin-top: 22px;
  display: block;
  width: 100%;
  text-align: center;
}

.pricing-footer {
  margin-top: 50px;
  text-align: center;
}
.pricing-footer-line {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding: 14px 0;
  border-top: 1px solid rgba(212,175,55,0.3);
  border-bottom: 1px solid rgba(212,175,55,0.3);
  margin-bottom: 4px;
}
.pricing-footer-line + .pricing-footer-line {
  border-top: 0;
  margin-top: -1px;
}
.pricing-footer-cta {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ---------------- CTA banner ---------------- */
.cta-banner {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: var(--bg-deep);
}
.cta-banner h2 {
  margin-bottom: 12px;
  color: var(--bg-deep);
}
.cta-banner p {
  margin-bottom: 28px;
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--bg-deep);
  color: var(--text-muted);
  padding: 70px 24px 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 14px;
  max-width: 320px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}

/* ============================================================
   PAGE HERO — smaller, no video, used on inner pages
   ============================================================ */
.page-hero {
  position: relative;
  padding: 180px 24px 90px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(212,175,55,0.10), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(212,175,55,0.06), transparent 60%),
    var(--bg-deep);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: 14px;
}
.page-hero .hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  margin-bottom: 18px;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}
.page-hero .gold-divider { margin-bottom: 24px; }

/* breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold); }

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}
.section-light .form-card {
  background: var(--white);
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 6px 30px rgba(0,0,0,0.04);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.section-light .form-group label { color: var(--text-grey); }
.form-input,
.form-select,
.form-textarea {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 1rem;
  color: var(--text-light);
  font-family: inherit;
  transition: border-color 0.2s ease;
  width: 100%;
}
.section-light .form-input,
.section-light .form-select,
.section-light .form-textarea {
  background: var(--bg-soft);
  border-color: rgba(0,0,0,0.08);
  color: var(--text-dark);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 18px 0;
  cursor: pointer;
  line-height: 1.5;
}
.section-light .form-checkbox { color: var(--text-grey); }
.form-checkbox input { margin-top: 4px; flex-shrink: 0; accent-color: var(--gold); }
.form-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
  line-height: 1.5;
}
.section-light .form-note { color: var(--text-grey); }

/* ============================================================
   CONTACT INFO BLOCKS
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}
.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-block {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 26px;
  transition: border-color 0.25s ease;
}
.info-block:hover { border-color: var(--gold); }
.section-light .info-block {
  background: var(--white);
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 4px 18px rgba(0,0,0,0.03);
}
.info-block h4 {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.info-block p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}
.info-block-cta {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: var(--bg-deep) !important;
  border: 0;
}
.info-block-cta h4 { color: var(--bg-deep); }
.info-block-cta p { color: var(--bg-deep); }

/* Map placeholder */
.map-placeholder {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item:hover { border-color: rgba(212,175,55,0.4); }
.faq-item[open] { border-color: var(--gold); }
.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  letter-spacing: 0.02em;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.section-light .faq-item {
  background: var(--white);
  border-color: rgba(0,0,0,0.06);
}
.section-light .faq-question { color: var(--text-dark); }
.section-light .faq-answer { color: var(--text-grey); }

/* ============================================================
   INCLUSIONS TABLE (Pricing comparison)
   ============================================================ */
.inclusions-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.95rem;
}
.inclusions-table th,
.inclusions-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.inclusions-table th {
  background: var(--bg-deep);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.inclusions-table th:first-child,
.inclusions-table td:first-child {
  text-align: left;
  color: var(--text-light);
  font-weight: 500;
}
.inclusions-table tr:last-child td { border-bottom: 0; }
.inclusions-table .check { color: var(--gold); font-size: 1.1rem; }
.inclusions-table .dash { color: var(--text-muted); }

/* ============================================================
   STEPS (sign-up flow)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.step-card {
  text-align: center;
  padding: 28px 24px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--bg-deep);
  border-radius: 50%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--white);
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   DIRECTORY PAGE — choose your location
   ============================================================ */
.directory-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 20% 0%, rgba(212,175,55,0.10), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(212,175,55,0.06), transparent 50%),
    var(--bg-deep);
}

.directory-hero {
  text-align: center;
  padding: 90px 24px 30px;
}
.directory-hero h1 {
  display: flex;
  justify-content: center;
  margin: 0;
}

.directory-logo {
  width: min(60vw, 320px);
  height: auto;
  margin: 0 0 28px;
  display: block;
  /* Optically centred, not mathematically. The logo's bold ink sits right of the
     canvas centre (the faint left tail of the ECG line balances the bounding box
     but carries no visual weight), so a dead-centre element still reads as
     pushed right. 1.7% is measured off a real device screenshot: the ink centre
     was 12px right on a 717px-wide logo. */
  transform: translateX(-1.7%);
}
.directory-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 12px;
}
.directory-hero .hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  margin-bottom: 14px;
}
.directory-hero p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
}

.locations-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  width: 100%;
  margin: 50px auto 80px;
  padding: 0 24px;
}

.location-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
  padding: 32px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  color: var(--white);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,12,0.95) 30%, rgba(10,10,12,0.4) 70%, rgba(10,10,12,0.2) 100%);
  z-index: 1;
}
.location-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s ease;
}
.location-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.location-card:hover .location-card-img {
  transform: scale(1.06);
}
.location-card-content {
  position: relative;
  z-index: 2;
}
.location-card .eyebrow {
  font-size: 0.72rem;
  margin-bottom: 8px;
}
.location-card h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--white);
}
.location-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* Placeholder bg when no image yet */
.location-card-img.placeholder-tl { background: linear-gradient(135deg, #2a2a32, #15151a); }
.location-card-img.placeholder-pk { background: linear-gradient(135deg, #2c241a, #15151a); }
.location-card-img.placeholder-ks { background: linear-gradient(135deg, #1a2c2a, #15151a); }

/* ============================================================
   FEATURE TILES — photo-backed, click through to detail pages
   ============================================================ */
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  padding: 28px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  color: var(--white);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,12,0.95) 25%, rgba(10,10,12,0.45) 65%, rgba(10,10,12,0.15) 100%);
  z-index: 1;
}
.tile-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s ease;
}
.tile:hover { transform: translateY(-6px); border-color: var(--gold); }
.tile:hover .tile-img { transform: scale(1.06); }
.tile-content { position: relative; z-index: 2; }
.tile h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--white);
}
.tile p {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.tile-link {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tile-link::after {
  content: '→';
  transition: transform 0.25s ease;
}
.tile:hover .tile-link::after { transform: translateX(5px); }

/* Wide tile — spans two columns on large screens */
.tile-wide { grid-column: span 2; }
@media (max-width: 900px) { .tile-wide { grid-column: span 1; } }

/* ============================================================
   FEATURE DETAIL PAGE
   ============================================================ */
.detail-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 24px 60px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.detail-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,12,0.96) 15%, rgba(10,10,12,0.55) 60%, rgba(10,10,12,0.75) 100%);
  z-index: 1;
}
.detail-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.detail-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 12px;
}
.detail-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 620px;
}

.detail-body {
  max-width: 820px;
  margin: 0 auto;
}
.detail-body p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.detail-body p.lead {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--white);
  font-weight: 500;
}

.detail-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 8px 0 32px;
}
.detail-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px 18px;
  font-size: 0.95rem;
  color: var(--text-light);
}
.detail-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 50px;
}
.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 6px;
}

.detail-cta {
  margin-top: 50px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Prev/next between feature pages */
.detail-nav {
  max-width: 820px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.detail-nav a { color: var(--text-muted); }
.detail-nav a:hover { color: var(--gold); }

/* ============================================================
   EMBEDS — GHL form + Google map
   ============================================================ */
.embed-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  padding: 8px;
}
.embed-card iframe {
  width: 100%;
  min-height: 760px;
  border: 0;
  border-radius: 3px;
  display: block;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.85);
}

.address-line {
  text-align: center;
  margin-bottom: 28px;
  font-size: 1.05rem;
  color: var(--text-muted);
}
.address-line strong {
  display: block;
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.reveal-left  { transform: translateX(-50px) translateY(0); }
.reveal.reveal-right { transform: translateX(50px) translateY(0); }
.reveal.reveal-zoom  { transform: scale(0.92); }
.reveal.is-visible { opacity: 1; transform: translate(0, 0) scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scroll-cue::after { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .price-card-popular { transform: none; }
}

@media (max-width: 768px) {
  /* Drop the panel directly below the header, whatever the header's height.
     The old translateY(-110%) only shifted it by 1.1x its own height, so a
     sliver of the menu (and the gold Sign Up button) stayed on screen and its
     opaque background clipped the top of the logo. */
  .nav-menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,10,12,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  .nav-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-menu li { width: 100%; }
  .nav-menu a {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav-menu .nav-cta { margin: 12px 0 0; text-align: center; }

  .hamburger { display: flex; }

  .two-col { grid-template-columns: 1fr; gap: 30px; }

  .info-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .page-hero { padding: 130px 24px 60px; }

  .locations-grid { grid-template-columns: 1fr; }
  .location-card { min-height: 360px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 80px 0; }
  .section-light .section-light-inner { padding: 110px 24px; }

  .pricing-heading { padding: 24px 30px; }

  .hero { min-height: 90vh; }
}
