/* ============================================================
   WORKSOP WORKSPACE — SHARED STYLESHEET
   ============================================================ */

/* ---- Reset & Variables ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #203A5B;
  --sage:      #8E9775;
  --sage-light:#a5af8a;
  --cream:     #F7F6F2;
  --warm:      #E6E4DD;
  --mid-grey:  #CFCFCB;
  --text:      #3B3B3B;
  --white:     #ffffff;
  --font:      'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(32,58,91,0.10);
  --shadow-md: 0 8px 40px rgba(32,58,91,0.14);
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Layout Utilities ------------------------------------- */
.inner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ghl-full-width-wrapper {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: -20px;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}

/* ---- Keyframe Animations ---------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---- Animate-in (IntersectionObserver) ------------------- */
.animate-in {
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.25s; }
.d3 { animation-delay: 0.4s; }
.d4 { animation-delay: 0.55s; }

/* ---- Header ----------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(32,58,91,0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  height: 86px;
}
.logo img {
  height: 66px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 2px;
  background: var(--sage);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links a.active::after { transform: scaleX(1); }
.nav-links .nav-mobile-cta { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Buttons --------------------------------------------- */
.btn, .btn-dark, .btn-white, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}
.btn {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn:hover {
  background: #7a8464;
  border-color: #7a8464;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(142,151,117,0.35);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: #182d48;
  border-color: #182d48;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(32,58,91,0.35);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-sm { padding: 8px 18px; font-size: 0.87rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Hero ------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 20px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-kicker {
  display: inline-block;
  background: rgba(142,151,117,0.25);
  border: 1px solid rgba(142,151,117,0.5);
  color: var(--sage-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.price-highlight {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.97rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
}

/* ---- Page Banner ------------------------------------------ */
.page-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 20px 80px;
  text-align: center;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(32,58,91,0.80), rgba(142,151,117,0.65));
}
.page-banner-content {
  position: relative;
  z-index: 1;
}
.page-banner h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.page-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 540px;
  margin: 0 auto;
}

/* ---- Stats Bar -------------------------------------------- */
.stats-bar {
  background: var(--navy);
  padding: 36px 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.stat-item {
  color: var(--white);
}
.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--sage-light);
}
.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.70);
  margin-top: 2px;
}

/* ---- Sections --------------------------------------------- */
.section {
  padding: 90px 20px;
}
.section-cream  { background: var(--cream); }
.section-warm   { background: var(--warm); }
.section-navy   { background: var(--navy); }
.section-sage   { background: var(--sage); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 52px;
  max-width: 560px;
}
.section-title-light {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.section-subtitle-light {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 52px;
  max-width: 560px;
}
.section-header { margin-bottom: 52px; }

/* ---- Pain Cards ------------------------------------------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pain-icon {
  width: 48px;
  height: 48px;
  background: rgba(32,58,91,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--navy);
}
.pain-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.pain-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 16px;
}
.pain-resolution {
  border-left: 3px solid var(--sage);
  padding-left: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sage);
}

/* ---- Gym Band --------------------------------------------- */
.gym-band {
  background: linear-gradient(135deg, var(--navy), #2d5082);
  padding: 80px 20px;
  text-align: center;
}
.gym-band h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.gym-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.gym-band p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
  text-align: center;
}
.gym-pillars {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 44px;
  margin-bottom: 40px;
}
.gym-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--white);
}
.gym-pillar-icon {
  width: 62px;
  height: 62px;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-light);
}
.gym-pillar span {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
}
.gym-link {
  color: var(--sage-light);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.gym-link:hover { color: var(--white); }

/* ---- Space Cards ------------------------------------------ */
.space-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 36px;
}
.space-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.space-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.space-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}
.space-body { padding: 24px; }
.space-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.badge-blue   { background: rgba(32,58,91,0.12);  color: var(--navy); }
.badge-purple { background: rgba(120,80,180,0.12); color: #6b4fa0; }
.badge-green  { background: rgba(80,160,80,0.12);  color: #3a7a3a; }
.badge-red    { background: rgba(200,60,60,0.12);  color: #b03030; }
.space-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.space-body p { font-size: 0.93rem; color: #666; margin-bottom: 14px; }
.space-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.space-tags span {
  background: var(--warm);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 50px;
}
.space-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sage);
  transition: color 0.2s;
}
.space-link:hover { color: var(--navy); }

/* ---- Features Grid ---------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(142,151,117,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}
.feature-card h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}
.feature-card p { font-size: 0.88rem; color: #777; }

/* ---- Pricing Cards ---------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  border: 2px solid transparent;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card.featured {
  border-color: var(--navy);
  transform: scale(1.03);
}
.badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.price-unit { font-size: 1rem; font-weight: 500; color: #888; }
.price-sub { font-size: 0.88rem; color: #888; margin: 4px 0 6px; }
.price-detail {
  font-size: 0.92rem;
  color: #666;
  margin-bottom: 16px;
  min-height: 42px;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}
.price-features li {
  font-size: 0.88rem;
  color: #555;
  padding: 5px 0;
  border-bottom: 1px solid var(--warm);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-features li::before {
  content: "✓";
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card.featured .price-features li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.15); }
.pricing-card.featured .price-features li::before { color: rgba(255,255,255,0.9); }
.features-list { margin-bottom: 28px; }
.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--warm);
}
.check { color: var(--sage); flex-shrink: 0; }
.savings-note {
  background: rgba(142,151,117,0.12);
  border-left: 3px solid var(--sage);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #555;
  border-radius: 0 6px 6px 0;
  margin-bottom: 20px;
}

/* ---- Photo Grid ------------------------------------------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.photo-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-item:hover img { transform: scale(1.04); }

/* ---- Comparison Table ------------------------------------- */
.comparison-wrap { max-width: 800px; margin: 0 auto; }
.comparison-table {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.12);
}
.cmp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.cmp-row:last-child { border-bottom: none; }
.cmp-header { background: rgba(255,255,255,0.10); font-weight: 700; }
.cmp-row div {
  padding: 14px 20px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.85);
}
.cmp-header div { color: var(--white); font-size: 0.88rem; letter-spacing: 0.05em; text-transform: uppercase; }
.cmp-total { background: rgba(142,151,117,0.18) !important; font-weight: 700 !important; }
.cmp-total div { font-weight: 700 !important; color: var(--white) !important; }
.cmp-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
  margin-top: 12px;
  margin-bottom: 36px;
  text-align: center;
}
.savings-callout {
  background: rgba(142,151,117,0.20);
  border: 1px solid rgba(165,175,138,0.35);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-bottom: 36px;
}
.savings-callout p {
  color: var(--sage-light);
  font-size: 1.05rem;
  font-weight: 700;
}

/* ---- FAQ -------------------------------------------------- */
.faq-list { max-width: 760px; margin: 0 auto; }
/* Button-based FAQ (podcast studio, meeting room pages) */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.97rem;
  text-align: left;
  transition: background 0.2s;
  user-select: none;
  font-family: inherit;
}
.faq-question:hover { background: var(--warm); }
.faq-question::after {
  content: "+";
  color: var(--sage);
  font-size: 1.3rem;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding: 0 24px 18px;
  font-size: 0.93rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.97rem;
  transition: background 0.2s;
  user-select: none;
}
.faq-q:hover { background: var(--warm); }
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--sage);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 24px 18px;
  font-size: 0.93rem;
  color: #555;
  line-height: 1.65;
}

/* ---- Persona Grid ----------------------------------------- */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.persona-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border-top: 4px solid var(--sage);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.persona-icon {
  width: 48px;
  height: 48px;
  background: rgba(142,151,117,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  margin-bottom: 16px;
}
.persona-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.persona-card p { font-size: 0.9rem; color: #666; }

/* ---- Day Steps -------------------------------------------- */
.day-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.day-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.step-time {
  display: block;
  font-size: 0.75rem;
  color: var(--sage);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.step-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.step-content p { font-size: 0.88rem; color: #666; }

/* ---- Community Strip -------------------------------------- */
.community-strip {
  background: var(--sage);
  padding: 60px 20px;
  text-align: center;
}
.community-strip h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 36px;
}
.comm-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.comm-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.comm-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comm-icon span { font-size: 0.85rem; font-weight: 600; }

/* ---- Community Benefits ----------------------------------- */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.benefit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(142,151,117,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-light);
}
.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.benefit-card p { font-size: 0.9rem; color: rgba(255,255,255,0.70); }

/* ---- Contact Grid ----------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.info-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(142,151,117,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}
.info-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.info-text p, .info-text a {
  font-size: 0.9rem;
  color: #666;
}
.info-text a:hover { color: var(--navy); }
.map-embed {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-embed iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
}
.contact-form-col h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-col p {
  font-size: 0.93rem;
  color: #666;
  margin-bottom: 20px;
}

/* ---- CTA Section ------------------------------------------ */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--sage));
  padding: 90px 20px;
  text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}
.urgency-box {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* ---- Modal ----------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(20,32,52,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}
.modal.active {
  opacity: 1;
  pointer-events: all;
}
.modal-content {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 36px 36px;
  width: 100%;
  max-width: 560px;
  position: relative;
  box-shadow: 0 20px 60px rgba(20,32,52,0.3);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.modal-content > p {
  font-size: 0.93rem;
  color: #666;
  margin-bottom: 24px;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--warm);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--mid-grey); }

/* ---- Footer ---------------------------------------------- */
footer {
  background: var(--navy);
  padding: 48px 20px 32px;
  text-align: center;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s;
  text-decoration: none;
}
.social-btn:hover { color: var(--white); }
.social-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.social-btn:hover .social-icon-circle {
  background: rgba(255,255,255,0.22);
  transform: translateY(-3px);
}
.social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.social-btn span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 20px;
}
.footer-copy {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin: 20px 0;
}
.footer-nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.85); }

/* ---- Rooms note ------------------------------------------- */
.rooms-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.95rem;
  color: #666;
}
.rooms-note strong { color: var(--navy); }

/* ---- Misc Helpers ---------------------------------------- */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ---- Floor plan ------------------------------------------ */
.floorplan-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(32,58,91,0.14);
}
.floorplan-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta    { display: none; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(32,58,91,0.10);
    transition: max-height 0.35s ease;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links a {
    padding: 13px 20px 13px 24px;
    border-bottom: 1px solid var(--warm);
    font-size: 0.97rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 3px solid transparent;
    transition: background 0.15s, border-color 0.15s;
  }
  .nav-links a::after {
    content: "›";
    font-size: 1.25rem;
    color: var(--sage);
    line-height: 1;
    flex-shrink: 0;
    margin-left: 8px;
    opacity: 0.7;
    transform: none;
    background: none;
    height: auto;
    width: auto;
    position: static;
    display: block;
  }
  .nav-links a.active {
    border-left-color: var(--sage);
    background: rgba(142,151,117,0.07);
    font-weight: 700;
  }
  .nav-links a:hover {
    background: var(--warm);
    border-left-color: var(--sage);
  }
  .nav-links .nav-mobile-cta {
    display: flex;
    background: var(--navy);
    color: var(--white) !important;
    text-align: center;
    justify-content: center;
    font-weight: 700;
    border-bottom: none;
    border-left-color: transparent !important;
  }
  .nav-links .nav-mobile-cta::after { display: none; }

  .hero { background-attachment: scroll; }
  .page-banner { background-attachment: scroll; }

  .contact-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  .comparison-table .cmp-row { grid-template-columns: 1fr 1fr; }
  .cmp-row div:last-child { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .section { padding: 64px 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .space-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .modal-content { padding: 36px 20px 28px; }
  .gym-pillars { gap: 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { padding: 0 14px; }
}
