/* =========================================================
   🎨 CSS Variables — Brand Colors & Typography
   ========================================================= */
:root {
  --color-brand: #C2185B;       /* Fuchsia */
  --color-secondary: #5F7C77;   /* Sage */
  --color-bg: #FAFAFA;
  --color-white: #FFFFFF;
  --color-text: #333333;
  --color-muted: #666666;
  --color-border: #DDDDDD;

  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-brand: 0 4px 12px rgba(194, 24, 91, 0.25);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
}

/* =========================================================
   🧱 Global base styles
   ========================================================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.2;
  margin-top: 0;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

/* =========================================================
   🧘 Header
   ========================================================= */
header {
  text-align: center;
  padding: 40px 20px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

header h1 {
  margin: 0;
  color: var(--color-brand);
}

/* =========================================================
   🧾 Footer
   ========================================================= */
footer {
  text-align: center;
  padding: 20px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

footer p {
  margin: 0 0 6px;
  font-size: 14px;
}

footer a {
  font-size: 12px;
  opacity: 0.6;
  color: var(--color-text);
  text-decoration: none;
}

footer a:hover {
  opacity: 1;
}

/* =========================================================
   🧘‍♀️ About section
   ========================================================= */
#about {
  background: var(--color-white);
  padding: 60px 20px;
}

.about-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-image img {
  width: 300px;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.about-text {
  max-width: 700px;
  padding-left: 24px;
  border-left: 3px solid var(--color-brand);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

.about-text h2 {
  color: var(--color-brand);
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 14px;
}

.about-text p {
  line-height: 1.65;
  margin-bottom: 18px;
  color: var(--color-text);
}

/* Primera frase en itálica — efecto editorial */
.about-text p:first-of-type {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: #555;
}

.about-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-secondary);
  margin-top: -2px;
  margin-bottom: 24px;
}

.about-signature {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-brand);
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .about-subtitle {
    text-align: center;
  }
}

/* =========================================================
   📅 Schedule table
   ========================================================= */
.table-wrapper {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--color-white);
}

.schedule-table th,
.schedule-table td {
  padding: 10px 12px;
  text-align: center;
  border: 1px solid var(--color-border);
}

.schedule-table th {
  background: var(--color-bg);
  color: var(--color-secondary);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.schedule-table td.time {
  font-weight: 600;
  background: #F5F5F5;
  color: var(--color-muted);
}

.schedule-table td.empty {
  background: var(--color-bg);
}

/* Available slot */
td.slot {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-left: 4px solid var(--color-brand);
}

td.slot:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-brand);
}

td.slot a {
  text-decoration: none;
  font-weight: 600;
  color: var(--color-text);
  font-size: 13px;
}

td.slot a:hover {
  text-decoration: underline;
}

/* Gym slot and legend colors come from inline style (gym.color in data) */

/* =========================================================
   🏷️ Legend
   ========================================================= */
.legend {
  margin-top: 40px;
}

.legend h3 {
  margin-bottom: 20px;
  color: var(--color-brand);
  font-size: 24px;
}

#legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legend-item {
  flex: 1 1 280px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 5px;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

.legend-item a {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand);
  text-decoration: underline;
}

.legend-item a:hover {
  text-decoration: none;
}

/* =========================================================
   ✨ Animations
   ========================================================= */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   📱 Responsive base
   ========================================================= */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .about-text {
    padding-left: 0;
    border-left: none;
    text-align: center;
  }

  #legend {
    flex-direction: column;
  }
}

/* =========================================================
   🏠 Home / Landing fullscreen
   ========================================================= */
body.home {
  overflow-x: hidden;
}

/* Header + nav */
#site-header { min-height: 64px; }
.main-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
}

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

.nav-brand,
.nav-brand a {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-menu li.active a {
  color: var(--color-brand);
  font-weight: 600;
}

.nav-menu a:hover {
  opacity: 1;
  color: var(--color-brand);
}

/* Hero — base compartida por ambas secciones */
.hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sección 1: imagen de fondo */
.hero-image {
  background:
    image-set(
      url("../images/karla-home.webp") type("image/webp"),
      url("../images/karla-home.jpg")  type("image/jpeg")
    ) center top / cover no-repeat;
}

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

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 20px;
  animation: fadeUp 0.8s ease forwards;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: #fff;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: #F8BBD0;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  color: #f5f5f5;
  opacity: 0.9;
}

/* Footer on home — flujo normal, estilo estándar */
body.home footer {
  position: static;
  background: var(--color-white);
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
}

body.home footer p,
body.home footer a {
  color: var(--color-text);
}

/* Responsive home */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-tagline {
    font-size: 17px;
  }

  .hero-content p {
    font-size: 11px;
  }
}

/* =========================================================
   🚀 Hero CTAs
   ========================================================= */
.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.25s ease;
}

/* Primary CTA */
.btn-primary {
  background: var(--color-brand);
  color: white;
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Secondary CTA */
.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--color-brand);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .hero-actions {
    gap: 15px;
  }

  .btn {
    width: 100%;
    text-align: center;
    max-width: 280px;
  }
}

/* =========================================================
   🔒 Private Sessions & page intros
   ========================================================= */
.page-intro {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px 30px;
  text-align: center;
}

.page-intro h1 {
  color: var(--color-brand);
  font-size: 42px;
  margin-bottom: 8px;
}

.page-intro p {
  max-width: 700px;
  margin: auto;
  color: var(--color-muted);
}

#private-calendar h2 {
  color: var(--color-secondary);
  margin-top: 0;
  font-size: 26px;
}

.note {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 20px;
}

/* Private available slot */
.private-slot {
  background: #FCE4EC;
  color: var(--color-brand);
  font-weight: 600;
}

/* =========================================================
   🧭 Header – internal pages
   ========================================================= */
body.internal-page .main-header {
  position: relative;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

body.internal-page .nav-menu a {
  color: var(--color-text);
}

body.internal-page .nav-menu a:hover {
  color: var(--color-brand);
}

body.internal-page .nav-brand a {
  color: var(--color-brand);
}

/* =========================================================
   📦 Packages
   ========================================================= */
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

.package-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card h3 {
  margin-top: 0;
  color: var(--color-brand);
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.featured-badge {
  font-size: 11px;
  background: var(--color-brand);
  color: white;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.package-card.featured {
  border: 2px solid var(--color-brand);
}

.package-card ul {
  padding-left: 18px;
  margin: 15px 0;
  color: var(--color-text);
}

.package-card li {
  margin-bottom: 6px;
  font-size: 14px;
}

.package-card .price {
  font-weight: 600;
  margin: 15px 0;
  color: var(--color-secondary);
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* =========================================================
   👉 CTA section
   ========================================================= */
.cta-section {
  margin: 60px auto;
  padding: 40px 20px;
  max-width: 900px;
  text-align: center;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.cta-section h2 {
  margin-top: 0;
  color: var(--color-brand);
  font-size: 28px;
}

.cta-section p {
  max-width: 600px;
  margin: 15px auto 25px;
  color: var(--color-muted);
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Slightly softer CTA for inverse flow */
.cta-secondary {
  background: var(--color-bg);
  box-shadow: none;
}

.cta-secondary .btn-secondary {
  color: var(--color-brand);
  border-color: var(--color-brand);
}

.cta-secondary .btn-secondary:hover {
  background: var(--color-brand);
  color: white;
}

/* =========================================================
   📩 Global Footer / Contact (compact)
   ========================================================= */
.site-footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  margin-top: 50px;
}

.footer-content {
  max-width: 1000px;
  margin: auto;
  padding: 24px 20px 12px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand strong {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-brand p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--color-muted);
}

/* Contact block */
.footer-contact h4 {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-brand);
  font-family: var(--font-sans);
  font-weight: 600;
}

.footer-contact p {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.4;
}

.footer-contact a {
  color: var(--color-text);
  text-decoration: underline;
}

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

/* Bottom line */
.footer-bottom {
  max-width: 1000px;
  margin: auto;
  padding: 10px 20px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border);
  font-size: 12px;
}

.footer-bottom a {
  opacity: 0.6;
  color: var(--color-text);
  text-decoration: none;
}

.footer-bottom a:hover {
  opacity: 1;
}

.footer-tagline {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 4px;
  font-style: italic;
  font-family: var(--font-serif);
}

/* 📱 Responsive footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
  }
}

/* =========================================================
   📆 Table header day + date
   ========================================================= */
.day-name {
  font-weight: 600;
  color: var(--color-secondary);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.day-date {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 2px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}


/* =========================
   MODAL OVERLAY
========================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* =========================
   MODAL CARD
========================= */
.modal-card {
  background: #ffffff;
  width: 90%;
  max-width: 420px;
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.25s ease;
}

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

/* Close button */
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #000;
}

/* Titles */
.modal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 24px;
}

/* =========================
   FORM STYLES
========================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #666;
}

.contact-form input,
.contact-form textarea {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form textarea {
  resize: vertical;
  max-width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c9a44c;
  box-shadow: 0 0 0 2px rgba(201, 164, 76, 0.2);
  background: #fff;
}

/* =========================
   SUBMIT BUTTON + SPINNER
========================= */
.btn-submit {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .spinner {
  display: inline-block;
}

/* Status */
.form-status {
  font-size: 0.9rem;
  margin-top: 8px;
}

/* Temporary visibility — remove class to restore */
.temp-hidden { display: none; }

/* =========================================================
   ❀ FAQ Page
   ========================================================= */
.faq-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item[open] {
  border-color: var(--color-brand);
  box-shadow: var(--shadow-brand);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-brand);
  list-style: none;
  -webkit-user-select: none;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  margin-left: auto;
  font-size: 22px;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--color-brand);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-icon {
  color: var(--color-brand);
  font-size: 16px;
  flex-shrink: 0;
}

.faq-answer {
  margin: 0;
  padding: 0 20px 20px 48px;
  color: var(--color-text);
  line-height: 1.7;
  font-size: 15px;
}

.party-faq-list {
  max-width: 760px;
  margin: 0 auto 32px;
}

.faq-closing {
  margin-top: 52px;
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.faq-closing-text {
  font-style: italic;
  color: var(--color-muted);
  font-size: 15px;
  margin-bottom: 14px;
}

.faq-tagline {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-brand);
  margin: 0;
}

/* =========================================================
   🎉 Pilates Party Page
   ========================================================= */

/* ── Hero intro ── */
.party-hero {
  background: linear-gradient(160deg, #FFF0F5 0%, #FCE4EC 60%, #FAFAFA 100%);
  border-bottom: 1px solid #F8BBD0;
  text-align: center;
  padding: 70px 20px 60px;
}

.party-hero-inner {
  max-width: 680px;
  margin: auto;
}

.party-hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 14px;
}

.party-hero h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--color-brand);
  margin: 0 0 16px;
  line-height: 1.15;
}

.party-hero-sub {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.party-includes {
  display: inline-block;
  text-align: left;
  background: var(--color-white);
  border: 1px solid #F8BBD0;
  border-radius: 12px;
  padding: 24px 32px;
  box-shadow: var(--shadow-soft);
}

.party-includes-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text);
  margin: 0 0 12px;
}

.party-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.party-includes-list li {
  font-size: 14px;
  color: var(--color-text);
  padding-left: 22px;
  position: relative;
}

.party-includes-list li::before {
  content: '▪';
  color: var(--color-brand);
  position: absolute;
  left: 0;
  font-size: 13px;
}

/* ── Generic section wrapper ── */
.party-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.party-section-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--color-brand);
  text-align: center;
  margin: 0 0 6px;
}

.party-section-sub {
  text-align: center;
  font-style: italic;
  color: var(--color-muted);
  font-size: 15px;
  margin: 0 0 32px;
}

/* ── Package cards ── */
.packages-section {
  background: var(--color-bg);
  max-width: none;
  padding: 60px 20px;
}

.packages-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pkg-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.pkg-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.11);
}

.pkg-featured {
  border-color: var(--color-brand);
  box-shadow: var(--shadow-brand);
}

.pkg-featured:hover {
  box-shadow: 0 10px 32px rgba(194, 24, 91, 0.28);
}

.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-brand);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pkg-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 6px;
}

.pkg-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-brand);
  margin: 0;
  line-height: 1.2;
}

.pkg-guests {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-secondary);
  letter-spacing: 0.5px;
}

.pkg-price {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-text);
  margin: 10px 0 14px;
  line-height: 1;
}

.pkg-tagline {
  font-style: italic;
  font-size: 14px;
  color: var(--color-muted);
  border-left: 3px solid #F8BBD0;
  padding-left: 12px;
  margin: 0 0 20px;
  line-height: 1.6;
}

.pkg-includes-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 10px;
}

.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pkg-list li {
  font-size: 13px;
  color: var(--color-text);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.pkg-list li::before {
  content: '▪';
  color: var(--color-brand);
  position: absolute;
  left: 0;
  font-size: 12px;
}

.pkg-details {
  background: #FFF5F8;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 22px;
  flex: 1;
}

.pkg-details-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 6px;
}

.pkg-details p:last-child {
  font-size: 13px;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

.pkg-btn {
  text-align: center;
  margin-top: auto;
}

.btn-outline-brand {
  background: transparent;
  color: var(--color-brand);
  border: 2px solid var(--color-brand);
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

.btn-outline-brand:hover {
  background: var(--color-brand);
  color: white;
}

/* ── Info boxes (what's different, travel, booking) ── */
.party-details-section,
.party-extras-section {
  padding: 40px 20px 20px;
}

.party-details-grid,
.party-extras-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.party-info-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-soft);
}

.party-info-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-brand);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F8BBD0;
}

.party-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.party-info-list li {
  font-size: 14px;
  color: var(--color-text);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.party-info-list li::before {
  content: '▪';
  color: var(--color-brand);
  position: absolute;
  left: 0;
}

/* ── Add-ons list ── */
.party-addons-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.party-addons-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--color-border);
}

.party-addons-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.addon-name {
  color: var(--color-text);
}

.addon-price {
  font-weight: 700;
  color: var(--color-brand);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Vibe cards ── */
.vibe-section {
  background: var(--color-white);
  max-width: none;
  padding: 50px 20px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.vibe-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vibe-card {
  background: var(--color-bg);
  border: 1px solid #F8BBD0;
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.vibe-card:hover {
  border-color: var(--color-brand);
  box-shadow: var(--shadow-brand);
}

.vibe-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-brand);
  margin: 0 0 6px;
}

.vibe-desc {
  font-size: 13px;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

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

@media (max-width: 680px) {
  .party-hero h1 {
    font-size: 32px;
  }

  .party-details-grid,
  .party-extras-grid {
    grid-template-columns: 1fr;
  }

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

  .party-includes {
    padding: 20px 20px;
  }
}

/* =========================================================
   🧘 Signature Private Pilates Page
   ========================================================= */

/* ── Quick info strip ── */
.sp-meta-section {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}

.sp-meta-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}

.sp-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 16px;
  gap: 4px;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.sp-meta-item:last-child {
  border-right: none;
}

.sp-meta-icon {
  font-size: 20px;
  margin-bottom: 2px;
}

.sp-meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-brand);
}

.sp-meta-value {
  font-size: 13px;
  color: var(--color-text);
  font-weight: 500;
}

/* ── About section ── */
.sp-about-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px 30px;
}

.sp-about-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-brand);
  border-radius: 12px;
  padding: 32px 36px;
  box-shadow: var(--shadow-soft);
}

.sp-about-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-brand);
  margin: 0 0 18px;
}

.sp-about-card p {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.75;
  margin: 0 0 14px;
}

.sp-about-card p:last-child {
  margin-bottom: 0;
}

.sp-about-highlight {
  font-style: italic;
  color: var(--color-secondary) !important;
  font-family: var(--font-serif);
  font-size: 17px !important;
}

/* ── Pricing section ── */
.sp-pricing-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px 60px;
}

.sp-table-group {
  margin-top: 48px;
}

.sp-table-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sp-table-icon {
  color: var(--color-brand);
  font-size: 14px;
  letter-spacing: -2px;
}

.sp-table-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-muted);
  font-family: var(--font-sans);
}

/* ── Pricing cards grid ── */
.sp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sp-pkg-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px 20px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sp-pkg-card:hover {
  border-color: var(--color-brand);
  box-shadow: 0 6px 22px rgba(194, 24, 91, 0.14);
}

.sp-pkg-featured {
  border-color: var(--color-brand);
  box-shadow: var(--shadow-brand);
}

.sp-pkg-badge {
  display: inline-block;
  background: var(--color-brand);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: -6px;
  align-self: flex-start;
}

.sp-pkg-badge-alt {
  background: var(--color-secondary);
}

.sp-pkg-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.25;
}

.sp-pkg-duration {
  font-size: 13px;
  font-weight: 400;
  font-family: var(--font-sans);
  color: var(--color-muted);
}

/* ── Options (In-Home / Virtual) ── */
.sp-pkg-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.sp-option {
  background: #FFF5F8;
  border: 1px solid #F8BBD0;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.sp-option-alt {
  background: #F3F8F7;
  border-color: #B2DFDB;
}

.sp-option-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-brand);
}

.sp-option-alt .sp-option-type {
  color: var(--color-secondary);
}

.sp-option-price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.sp-book-btn {
  width: 100%;
  text-align: center;
  padding: 9px 12px;
  font-size: 10px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .sp-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sp-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-meta-item:nth-child(2) {
    border-right: none;
  }

  .sp-meta-item:nth-child(3),
  .sp-meta-item:nth-child(4) {
    border-top: 1px solid var(--color-border);
  }

  .sp-pricing-grid {
    grid-template-columns: 1fr;
  }

  .sp-about-card {
    padding: 24px 20px;
  }
}
