/*
Theme Name: Wolftuna
Theme URI: https://wolftunaclub.com
Author: Wolftuna Club
Author URI: https://wolftunaclub.com
Description: Custom theme for WOLFTUNA Wellness Lounge — Glasgow's community running and cold water therapy club. Homepage content is editable through Appearance → Customize → Wolftuna Homepage.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wolftuna
*/

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #0a0a0a; color: #f0f0f0; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* DESIGN TOKENS */
:root {
  --blue: #60a5fa;
  --blue-dark: #2563eb;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --mid: #2a2a2a;
  --light: #f0f0f0;
  --muted: #9ca3af;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --radius-lg: 20px;
}

/* NAVIGATION */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.admin-bar nav { top: 32px; }
.nav-logo img { height: 72px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links li { position: relative; }
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links a:hover { color: var(--light); background: var(--dark-3); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.nav-links li:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 14px; color: var(--light); }
.nav-dropdown a:hover { background: var(--mid); }
.nav-dropdown a .dd-label { font-weight: 500; }
.nav-dropdown a .dd-sub { font-size: 12px; color: var(--muted); display: block; }
.dd-icon-text {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: rgba(96,165,250,0.15);
  color: #60a5fa;
  border-radius: 6px;
  padding: 4px 6px;
  min-width: 36px;
  text-align: center;
}
.nav-cta,
.nav-links li.nav-cta-item > a {
  background: var(--blue) !important;
  color: #000 !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
}
.nav-cta:hover,
.nav-links li.nav-cta-item > a:hover { background: #3b82f6 !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--dark-3);
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--light); border-radius: 2px; }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 0.06em; color: var(--light); padding: 8px 24px; border-radius: 10px; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--blue); }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 32px; color: var(--muted); cursor: pointer; background: none; border: none; line-height: 1; }
.mobile-cta { margin-top: 16px; background: var(--blue) !important; color: #000 !important; font-size: 20px !important; font-weight: 700; padding: 14px 40px !important; border-radius: 10px; }

/* BUTTONS */
.btn-primary {
  background: var(--blue);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: #3b82f6; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); transform: translateY(-1px); }
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-blue:hover { background: var(--blue); color: #000; }

/* SECTION WRAPPER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* 1. HERO */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.3);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 70%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--blue); }
.hero-eyebrow::after  { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--blue); }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #fff;
  max-width: 900px;
  margin-bottom: 28px;
}
.hero h1 span { color: var(--blue); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* 2. TICKER */
.ticker-wrap {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 18s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--muted);
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.ticker-item::after { content: none; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* 3. WHO WE ARE — two-col text left, image right */
.who-section { background: var(--dark-2); border-bottom: 1px solid var(--border); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.two-col-text {
  padding: 80px 60px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.two-col-text .section-sub + p,
.two-col-text .section-body p { font-size: 16px; color: var(--muted); line-height: 1.8; }
.two-col-text .section-body { margin-bottom: 36px; }
.two-col-text .section-body p + p { margin-top: 16px; }
.two-col-img {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.two-col-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark-2) 0%, transparent 30%);
}
/* reversed variant */
.two-col.reverse .two-col-text { padding: 80px 40px 80px 60px; order: 2; }
.two-col.reverse .two-col-img { order: 1; }
.two-col.reverse .two-col-img-overlay { background: linear-gradient(to left, var(--dark) 0%, transparent 30%); }

/* 4. THE EXPERIENCE — contrasting bg */
.experience-section { background: var(--dark); border-bottom: 1px solid var(--border); }

/* 5. WHAT'S INCLUDED — icon grid */
.includes-section {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
}
.includes-sub { max-width: 560px; margin: 0 auto; }
.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.includes-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.includes-card:hover { border-color: rgba(96,165,250,0.4); transform: translateY(-4px); }
.includes-icon {
  width: 64px;
  height: 64px;
  background: rgba(96,165,250,0.1);
  border: 1px solid rgba(96,165,250,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.includes-icon svg { width: 28px; height: 28px; stroke: var(--blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.includes-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.04em; color: #fff; margin-bottom: 8px; }
.includes-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* 6. MEMBERSHIPS / PACKAGES */
.packages-section { background: var(--dark); border-bottom: 1px solid var(--border); padding: 80px 0; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 265px));
  justify-content: center;
  gap: 20px;
  margin-top: 56px;
}
.package-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.package-card:hover { transform: translateY(-6px); border-color: rgba(96,165,250,0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.package-card.popular { border-color: var(--blue); }
.package-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: brightness(0.55);
}
.package-img-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(10,10,10,0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  text-align: center;
}
.package-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
.package-name { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 0.06em; color: #fff; line-height: 1; }
.package-sub { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px; }
.popular-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--blue);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}
.package-body { padding: 24px; }
.package-price { font-size: 32px; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.package-price span { font-size: 15px; font-weight: 400; color: var(--muted); }
.package-tagline { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.package-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 16px; }
.package-features { list-style: none; margin-bottom: 24px; }
.package-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--muted); padding: 4px 0; }
.package-features li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.package-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--border);
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.package-btn:hover { border-color: var(--blue); color: var(--blue); }
.package-card.popular .package-btn { background: var(--blue); color: #000; border-color: var(--blue); }
.package-card.popular .package-btn:hover { background: #3b82f6; }
.payg-strip {
  margin-top: 28px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.payg-left { display: flex; align-items: center; gap: 20px; }
.payg-icon { width: 52px; height: 52px; background: rgba(96,165,250,0.1); border: 1px solid rgba(96,165,250,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.payg-icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.payg-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.payg-desc { font-size: 14px; color: var(--muted); }
.payg-right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.payg-price { font-size: 36px; font-weight: 800; color: var(--blue); }
.payg-price span { font-size: 16px; color: var(--muted); font-weight: 400; }

/* 7. TESTIMONIALS */
.testimonials-section { background: var(--dark-2); border-bottom: 1px solid var(--border); padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.testimonial-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.testimonial-quote { font-size: 36px; color: var(--blue); line-height: 0.8; margin-bottom: 10px; font-family: Georgia, serif; opacity: 0.5; }
.testimonial-text { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--mid); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--blue); flex-shrink: 0; }
.testimonial-name { font-size: 12px; font-weight: 700; color: #fff; }
.testimonial-role { font-size: 11px; color: var(--muted); }

/* 8. FIND US */
.findus-section { background: var(--dark); border-bottom: 1px solid var(--border); }
.findus-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.findus-map { min-height: 420px; overflow: hidden; }
.findus-map iframe { width: 100%; height: 100%; min-height: 420px; border: none; display: block; filter: grayscale(0.6) invert(0.9) contrast(0.85); }
.findus-info {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark-2);
}
.findus-info .section-title { margin-bottom: 32px; }
.findus-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.findus-detail-icon { width: 40px; height: 40px; background: rgba(96,165,250,0.1); border: 1px solid rgba(96,165,250,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.findus-detail-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.findus-detail-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
.findus-detail-value { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.findus-detail-value a { color: var(--blue); }

/* FOOTER */
footer.site-footer { background: #050505; border-top: 1px solid var(--border); padding: 60px 40px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 80px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a { width: 38px; height: 38px; background: var(--dark-3); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; color: var(--muted); }
.footer-social a:hover { background: var(--mid); border-color: var(--blue); color: var(--light); }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--blue); }
.footer-hours { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.9; }
.footer-hours strong { color: #fff; }
.footer-contact { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.9; }
.footer-contact a { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--light); }

/* GENERIC PAGE / POST FALLBACK */
.entry { max-width: 800px; margin: 80px auto; padding: 0 24px; }
.entry h1, .entry h2, .entry h3 { font-family: 'Bebas Neue', sans-serif; color: #fff; margin: 1.5em 0 0.5em; letter-spacing: 0.03em; }
.entry h1 { font-size: 48px; }
.entry h2 { font-size: 36px; }
.entry p { margin-bottom: 1em; color: rgba(255,255,255,0.8); }
.entry a { color: var(--blue); }

/* PAGE TEMPLATES */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero.has-image { background: var(--dark); }
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(10,10,10,0.85) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 80px 40px;
  width: 100%;
}
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7vw, 84px);
  letter-spacing: 0.03em;
  line-height: 1;
  color: #fff;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.page-main { background: var(--dark); }
.page-prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 40px;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.8;
}
.page-prose > * + * { margin-top: 1.2em; }
.page-prose h1,
.page-prose h2,
.page-prose h3,
.page-prose h4 {
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-top: 2em;
  margin-bottom: 0.6em;
}
.page-prose h1 { font-size: clamp(36px, 5vw, 56px); }
.page-prose h2 { font-size: clamp(30px, 4vw, 42px); }
.page-prose h3 { font-size: clamp(22px, 3vw, 28px); letter-spacing: 0.04em; }
.page-prose h4 { font-size: 18px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); }
.page-prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.page-prose a:hover { color: #93c5fd; }
.page-prose strong { color: #fff; }
.page-prose ul,
.page-prose ol { padding-left: 1.4em; }
.page-prose ul li,
.page-prose ol li { margin-bottom: 0.5em; }
.page-prose ul li::marker { color: var(--blue); }
.page-prose blockquote {
  border-left: 3px solid var(--blue);
  padding: 4px 0 4px 20px;
  font-size: 19px;
  color: #fff;
  font-style: italic;
}
.page-prose hr { border: none; border-top: 1px solid var(--border); margin: 2.5em 0; }
.page-prose img,
.page-prose .wp-block-image img {
  border-radius: var(--radius);
  display: block;
  margin: 1.5em auto;
}
.page-prose figcaption { text-align: center; font-size: 13px; color: var(--muted); margin-top: 0.5em; }

/* Block alignments */
.page-prose .alignwide { max-width: 1100px; margin-left: calc(50% - 550px); margin-right: calc(50% - 550px); width: auto; }
.page-prose .alignfull { max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; border-radius: 0; }
.page-prose .alignfull img { border-radius: 0; }

/* Buttons inside page content */
.page-prose .wp-block-button__link {
  background: var(--blue);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.page-prose .wp-block-button__link:hover { background: #3b82f6; color: #000; }
.page-prose .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.page-prose .wp-block-button.is-style-outline .wp-block-button__link:hover { background: var(--blue); color: #000; }

/* Cover blocks */
.page-prose .wp-block-cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
}
.page-prose .wp-block-cover .wp-block-cover__inner-container { color: #fff; }

/* Columns */
.page-prose .wp-block-columns { gap: 32px; margin: 2em 0; }

/* FAQ — accordion via wp:details */
.faq-prose { max-width: 820px; }
.faq-prose details,
.faq-prose .wp-block-details {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  margin: 12px 0 !important;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-prose details[open],
.faq-prose .wp-block-details[open] { border-color: rgba(96,165,250,0.4); }
.faq-prose details > summary,
.faq-prose .wp-block-details > summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 56px 20px 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #fff;
  position: relative;
  transition: color 0.2s;
}
.faq-prose details > summary::-webkit-details-marker,
.faq-prose .wp-block-details > summary::-webkit-details-marker { display: none; }
.faq-prose details > summary::after,
.faq-prose .wp-block-details > summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--blue);
  transition: transform 0.2s;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1;
}
.faq-prose details[open] > summary::after,
.faq-prose .wp-block-details[open] > summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-prose details > summary:hover,
.faq-prose .wp-block-details > summary:hover { color: var(--blue); }
.faq-prose details > *:not(summary),
.faq-prose .wp-block-details > *:not(summary) {
  padding: 0 24px 20px;
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.7;
}
.faq-prose details > *:not(summary) + *:not(summary),
.faq-prose .wp-block-details > *:not(summary) + *:not(summary) { padding-top: 0; margin-top: -8px; }

/* RESPONSIVE: TABLET */
@media (max-width: 900px) {
  nav { padding: 0 24px; height: 72px; }
  .nav-logo img { height: 56px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 60px 24px; }
  .hero h1 { font-size: clamp(48px, 10vw, 80px); }
  .two-col { grid-template-columns: 1fr; }
  .two-col-text { padding: 56px 40px; }
  .two-col.reverse .two-col-text { order: 2; }
  .two-col.reverse .two-col-img { order: 1; }
  .two-col-img { min-height: 360px; }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 265px)); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .findus-grid { grid-template-columns: 1fr; }
  .findus-info { padding: 48px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  footer.site-footer { padding: 48px 24px 28px; }
  .container { padding: 0 24px; }
  .page-hero-inner { padding: 60px 24px; }
  .page-prose { padding: 56px 24px; }
  .page-prose .alignwide,
  .page-prose .alignfull { margin-left: -24px; margin-right: -24px; max-width: none; width: auto; }
}

@media (max-width: 782px) {
  .admin-bar nav { top: 46px; }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 600px) {
  nav { padding: 0 16px; height: 64px; }
  .nav-logo img { height: 46px; }
  .hero { min-height: 100svh; }
  .hero-content { padding: 48px 16px 40px; }
  .hero h1 { font-size: clamp(44px, 13vw, 72px); }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 12px; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 15px 24px; }
  .two-col-text { padding: 48px 16px; }
  .two-col.reverse .two-col-text { padding: 48px 16px; }
  .includes-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .includes-card { padding: 24px 16px; }
  .packages-grid { grid-template-columns: 1fr; }
  .payg-strip { padding: 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .payg-left { flex-direction: column; align-items: flex-start; gap: 12px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .findus-info { padding: 40px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-brand img { height: 60px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; }
  footer.site-footer { padding: 40px 16px 24px; }
  .container { padding: 0 16px; }
  .page-hero { min-height: 280px; }
  .page-hero-inner { padding: 48px 16px; }
  .page-prose { padding: 48px 16px; font-size: 16px; }
  .page-prose .alignwide,
  .page-prose .alignfull { margin-left: -16px; margin-right: -16px; }
  .faq-prose details > summary,
  .faq-prose .wp-block-details > summary { padding: 16px 48px 16px 18px; font-size: 18px; }
  .faq-prose details > summary::after,
  .faq-prose .wp-block-details > summary::after { right: 18px; }
  .faq-prose details > *:not(summary),
  .faq-prose .wp-block-details > *:not(summary) { padding: 0 18px 16px; font-size: 15px; }
}

/* Members Club block (under the membership cards) */
.members-club {
  max-width: 640px;
  margin: 48px auto 8px;
  padding: 40px 32px;
  text-align: center;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.members-club-card {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto 28px;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.5);
}
.members-club-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 14px;
}
.members-club-intro { color: var(--muted); font-size: 16px; line-height: 1.6; margin-bottom: 24px; }
.members-club-perks {
  list-style: none;
  display: inline-block;
  text-align: left;
  margin: 0 auto 24px;
  padding: 0;
}
.members-club-perks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--light);
}
.members-club-perks li::before {
  content: '\2714';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 700;
}
.members-club-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.members-club-cta { text-align: center; }

@media (max-width: 600px) {
  .members-club { padding: 32px 20px; }
}

/* ===================================================================== */
/* BOOKING                                                               */
/* ===================================================================== */
.booking { background: var(--dark); padding: 90px 0 110px; }
.booking .section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Step visibility — only the active step shows. */
.booking-step { display: none; }
.booking-step.is-active { display: block; animation: bookingFade .35s ease; }
@keyframes bookingFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.booking .section-head { margin-bottom: 36px; }
.booking .section-sub { color: var(--muted); margin-top: 8px; }

/* Step 1 — service cards */
.booking-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.booking-service-card {
  text-align: left;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  color: var(--light);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .2s, transform .2s, background .2s;
}
.booking-service-card:hover { border-color: var(--blue); transform: translateY(-3px); background: var(--dark-4); }
.booking-service-card.is-selected { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue) inset; }
.bsc-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 1px; }
.bsc-blurb { color: var(--muted); font-size: 14px; line-height: 1.5; flex: 1; }
.bsc-meta { display: flex; align-items: baseline; gap: 12px; margin-top: 10px; }
.bsc-price { color: var(--blue); font-weight: 700; font-size: 20px; }
.bsc-dur { color: #7a7f87; font-size: 13px; }

/* Step 2 — date & slots */
.booking-datetime { max-width: 720px; }
.booking-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.booking-field > span { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.booking-field input,
.booking-field textarea {
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--light);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}
.booking-field input:focus,
.booking-field textarea:focus { outline: none; border-color: var(--blue); }
.booking-field input[type="date"] { color-scheme: dark; max-width: 260px; }

.booking-slots-hint { color: var(--muted); font-size: 14px; padding: 8px 0; }
.booking-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.booking-slot {
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 14px 10px;
  color: var(--light);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: border-color .2s, background .2s, transform .15s;
}
.booking-slot:hover { border-color: var(--blue); background: var(--dark-4); transform: translateY(-2px); }
.booking-slot-left { font-size: 11px; font-weight: 400; color: #d98c5f; letter-spacing: .5px; }

/* Step 3 — details form */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
}
.booking-field-full { grid-column: 1 / -1; }
.booking-message { margin: 20px 0 0; font-size: 14px; min-height: 20px; }
.booking-message.is-error { color: #e0796b; }
.booking-message.is-ok { color: var(--blue); }

/* Nav + buttons */
.booking-nav { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.booking-back {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  letter-spacing: .5px;
  padding: 12px 4px;
}
.booking-back:hover { color: var(--light); }
.booking-submit {
  background: var(--blue);
  color: #0a0a0a;
  border: none;
  border-radius: 999px;
  padding: 15px 38px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.booking-submit:hover { background: #3b82f6; transform: translateY(-2px); }
.booking-submit:disabled { opacity: .6; cursor: default; transform: none; }

/* Success */
.booking-success-inner { text-align: center; max-width: 560px; margin: 30px auto; }
.booking-tick {
  width: 76px; height: 76px; line-height: 76px; margin: 0 auto 24px;
  border-radius: 50%; background: rgba(96,165,250,.15); color: var(--blue);
  font-size: 38px;
}
.booking-success-msg { color: #cfcfcf; font-size: 17px; line-height: 1.6; margin: 16px 0 30px; }

@media (max-width: 600px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking { padding: 60px 0 80px; }
}
