/* ============================================
   AGOSTO FITNESS — INTERIOR PAGES
   interior.css — Shared styles for all non-homepage pages
   
   Extends style.css with:
   - Interior hero sections
   - Services hub grid
   - Split-layout content sections
   - Process/timeline sections
   - Trainer profile cards
   - FAQ accordion
   - Pricing cards
   - Interior CTA sections
   - Nav dropdown (services)
   ============================================ */


/* ============================================
   NAV DROPDOWN (Services) — Desktop only
   These rules are scoped to min-width: 769px so
   they do not override the mobile nav in style.css
   ============================================ */
@media (min-width: 769px) {
  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .dropdown-arrow {
    transition: transform 0.3s ease;
  }

  .nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(8px);
    z-index: 100;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }

  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.02em;
  }

  .dropdown-menu a:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.05);
  }
}


/* ============================================
   INTERIOR HERO
   ============================================ */
.interior-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0a0a0a;
}

.interior-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.interior-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interior-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.interior-hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  padding: 140px 24px 80px;
}

.interior-hero-headline {
  margin-bottom: 20px;
}

.interior-hero-headline .headline-text {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 10vw, 120px);
  line-height: 0.95;
  color: #ffffff;
  letter-spacing: 0;
  text-transform: uppercase;
}

.interior-hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}


/* ============================================
   SERVICES HUB GRID
   ============================================ */
.services-hub-section {
  padding: 120px 0;
  background: #111111;
}

.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-hub-card {
  display: block;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s;
  text-decoration: none;
  color: inherit;
}

.service-hub-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,228,224,0.1);
  border-color: rgba(232,228,224,0.15);
}

.service-hub-img-wrap {
  height: 280px;
  overflow: hidden;
}

.service-hub-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-hub-card:hover .service-hub-img-wrap img {
  transform: scale(1.06);
}

.service-hub-content {
  padding: 36px 32px 40px;
}

.service-hub-content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-hub-content p {
  font-size: 15px;
  color: #888888;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-hub-link {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8e4e0;
  border-bottom: 2px solid #e8e4e0;
  padding-bottom: 4px;
  transition: letter-spacing 0.3s;
}

.service-hub-card:hover .service-hub-link {
  letter-spacing: 0.16em;
}

.service-hub-link .arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.service-hub-card:hover .service-hub-link .arrow {
  transform: translateX(6px);
}


/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.process-section {
  padding: 120px 0;
  background: #0a0a0a;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-step {
  text-align: center;
  padding: 44px 24px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  background: #161616;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,228,224,0.08);
  border-color: rgba(232,228,224,0.12);
}

.process-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(232,228,224,0.15);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.process-step h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  color: #888888;
  line-height: 1.7;
}


/* ============================================
   SPLIT LAYOUT (alternating text/image)
   ============================================ */
.split-section {
  padding: 120px 0;
}

.split-section:nth-child(odd) {
  background: #0a0a0a;
}

.split-section:nth-child(even) {
  background: #111111;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-grid.reverse {
  direction: rtl;
}

.split-grid.reverse > * {
  direction: ltr;
}

.split-image {
  border-radius: 20px;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.split-image:hover img {
  transform: scale(1.03);
}

.split-content {
  max-width: 520px;
}

.split-content .section-label {
  margin-bottom: 16px;
}

.split-content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.split-content p {
  font-size: 16px;
  color: #999999;
  line-height: 1.8;
  margin-bottom: 16px;
}

.split-content .btn {
  margin-top: 12px;
}


/* ============================================
   FEATURE LIST (inside split sections)
   ============================================ */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: #bbbbbb;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #e8e4e0;
}


/* ============================================
   ICON CARDS (3-up grid)
   ============================================ */
.icon-cards-section {
  padding: 120px 0;
  background: #111111;
}

.icon-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.icon-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  background: #161616;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s;
}

.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,228,224,0.08);
  border-color: rgba(232,228,224,0.12);
}

.icon-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  color: #e8e4e0;
}

.icon-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.icon-card p {
  font-size: 15px;
  color: #888888;
  line-height: 1.7;
}


/* NUTRITION CALLOUT */
.nutrition-callout {
  margin-top: 48px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  background: linear-gradient(135deg, #161616 0%, #1a1a1a 100%);
}

.nutrition-callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nutrition-callout-text h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.nutrition-callout-text p {
  font-size: 15px;
  color: #888888;
  line-height: 1.7;
  max-width: 600px;
}

.nutrition-callout .btn {
  flex-shrink: 0;
}


/* ============================================
   TESTIMONIAL CALLOUT (single featured review)
   ============================================ */
.testimonial-callout {
  padding: 80px 0;
  background: #0d0d0d;
}

.testimonial-callout-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  background: #161616;
}

.testimonial-callout-inner .stars {
  font-size: 24px;
  color: #f5a623;
  margin-bottom: 24px;
  letter-spacing: 4px;
}

.testimonial-callout-inner blockquote {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  margin-bottom: 24px;
}

.testimonial-callout-inner .attribution {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.testimonial-callout-inner .attribution span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  letter-spacing: 0.05em;
}


/* ============================================
   INTERIOR CTA SECTION
   ============================================ */
.interior-cta-section {
  padding: 120px 0;
  background: #111111;
  position: relative;
}

.interior-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.interior-cta h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.interior-cta p {
  font-size: 18px;
  font-weight: 300;
  color: #999999;
  line-height: 1.8;
  margin-bottom: 40px;
}

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


/* ============================================
   TRAINER PROFILES
   ============================================ */
.trainers-section {
  padding: 120px 0;
  background: #111111;
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.trainer-card {
  text-align: center;
  padding: 48px 36px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  background: #161616;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s;
}

.trainer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,228,224,0.08);
  border-color: rgba(232,228,224,0.12);
}

.trainer-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 3px solid rgba(232,228,224,0.1);
}

.trainer-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.trainer-card .trainer-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8e4e0;
  margin-bottom: 20px;
  display: block;
}

.trainer-card .trainer-certs {
  font-size: 13px;
  color: #888888;
  line-height: 1.8;
  margin-bottom: 20px;
}

.trainer-card .trainer-quote {
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}


/* ============================================
   STUDIO GALLERY
   ============================================ */
.gallery-section {
  padding: 120px 0;
  background: #0a0a0a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item.gallery-wide {
  grid-column: span 2;
}


/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-section {
  padding: 120px 0;
  background: #111111;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  background: #161616;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,228,224,0.08);
  border-color: rgba(232,228,224,0.15);
}

.pricing-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e8e4e0;
  margin-bottom: 12px;
  display: block;
}

.pricing-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pricing-card .pricing-duration {
  font-size: 14px;
  color: #777777;
  margin-bottom: 28px;
}

.pricing-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: #bbbbbb;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pricing-includes li:last-child {
  border-bottom: none;
}

.pricing-includes li svg {
  flex-shrink: 0;
  color: #e8e4e0;
}


/* ============================================
   ROUTINE TYPES
   ============================================ */
.routines-section {
  padding: 120px 0;
  background: #0a0a0a;
}

.routines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.routine-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  background: #161616;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s;
}

.routine-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,228,224,0.08);
  border-color: rgba(232,228,224,0.12);
}

.routine-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.routine-card .routine-reps {
  font-size: 14px;
  font-weight: 600;
  color: #e8e4e0;
  margin-bottom: 16px;
  display: block;
}

.routine-card p {
  font-size: 15px;
  color: #888888;
  line-height: 1.7;
}


/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
  padding: 120px 0;
  background: #0d0d0d;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #e8e4e0;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #e8e4e0;
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-bottom: 0;
  visibility: hidden;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
  visibility: visible;
}

.faq-answer p {
  font-size: 15px;
  color: #999999;
  line-height: 1.8;
}


/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.contact-page-section {
  padding: 120px 0;
  background: #111111;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.map-embed {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid rgba(255,255,255,0.06);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(1) contrast(0.9) brightness(0.6);
}


/* ============================================
   RESULTS PAGE
   ============================================ */
.results-trust-bar {
  padding: 80px 0;
  background: #0a0a0a;
}

.results-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.results-trust-item strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 44px;
  color: #e8e4e0;
  margin-bottom: 4px;
  text-shadow: 0 2px 12px rgba(232,228,224,0.08);
}

.results-trust-item span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.elfsight-reviews-section {
  padding: 80px 0 120px;
  background: #0a0a0a;
}


/* ============================================
   BLOG PLACEHOLDER
   ============================================ */
.blog-coming-soon {
  padding: 200px 0;
  text-align: center;
  background: #0a0a0a;
}

.blog-coming-soon h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 16px;
}

.blog-coming-soon p {
  font-size: 18px;
  color: #777777;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}


/* ============================================
   ELFSIGHT WIDGET CONTAINER
   ============================================ */
.elfsight-widget-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ============================================
   RESPONSIVE — INTERIOR PAGES
   ============================================ */
@media (max-width: 1024px) {
  .services-hub-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

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

  .gallery-item.gallery-wide {
    grid-column: span 1;
  }

  .routines-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

  .interior-hero-content {
    padding: 120px 24px 60px;
  }

  /* Mobile nav overrides handled entirely by style.css */

  .split-grid,
  .split-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .split-content {
    max-width: 100%;
  }

  .process-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .icon-cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .nutrition-callout {
    padding: 32px 24px;
  }

  .nutrition-callout-inner {
    flex-direction: column;
    text-align: center;
  }

  .nutrition-callout-text p {
    max-width: 100%;
  }

  .trainers-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonial-callout-inner {
    padding: 36px 24px;
  }

  .results-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .services-hub-grid {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .interior-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .interior-cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}


/* ============================================
   TESTIMONIAL CAROUSEL (replaces single callout)
   ============================================ */
.testimonial-carousel {
  padding: 80px 0;
  background: #0d0d0d;
}

.carousel-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.carousel-track {
  overflow: hidden;
  border-radius: 20px;
}

.carousel-slide {
  display: none;
  text-align: center;
  padding: 56px 48px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  background: #161616;
  animation: carouselFadeIn 0.5s ease;
}

.carousel-slide.active {
  display: block;
}

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

.carousel-slide .stars {
  font-size: 24px;
  color: #f5a623;
  margin-bottom: 24px;
  letter-spacing: 4px;
}

.carousel-slide blockquote {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  margin-bottom: 24px;
}

.carousel-slide .attribution {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.carousel-slide .attribution span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #e8e4e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(232,228,224,0.3);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.carousel-dot.active {
  background: #e8e4e0;
  transform: scale(1.3);
}


/* ============================================
   FULL-BLEED IMAGE SECTION (homepage-style)
   ============================================ */
.fullbleed-image-section {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fullbleed-image-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fullbleed-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.fullbleed-image-text {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}

.fullbleed-image-text h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.1;
}

.fullbleed-image-text p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}


/* ============================================
   SHORT HERO VARIANT
   ============================================ */
.interior-hero-short {
  min-height: 45vh;
}


/* ============================================
   CONTACT PAGE — SINGLE COLUMN REDESIGN
   ============================================ */
.contact-section {
  padding: 80px 0 120px;
  background: #0a0a0a;
}

.contact-single-col {
  max-width: 680px;
  margin: 0 auto;
}

.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-info-block {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  background: #161616;
}

.contact-info-block svg {
  color: #e8e4e0;
  margin-bottom: 12px;
}

.contact-info-block strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-info-block span,
.contact-info-block a,
.contact-info-block address {
  font-size: 14px;
  color: #999999;
  line-height: 1.6;
  font-style: normal;
}

.contact-info-block a {
  color: #e8e4e0;
  text-decoration: none;
  border-bottom: 1px solid rgba(232,228,224,0.2);
  transition: border-color 0.3s;
}

.contact-info-block a:hover {
  border-color: #e8e4e0;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-form-header p {
  font-size: 16px;
  color: #888888;
  line-height: 1.7;
}

.contact-map-single {
  margin-top: 64px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.contact-map-single iframe {
  width: 100%;
  height: 300px;
  border: 0;
  filter: grayscale(1) invert(1) contrast(0.9) brightness(0.6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-block {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.form-success-msg,
.form-error-msg {
  text-align: center;
  padding: 40px;
  border-radius: 16px;
  margin-top: 24px;
}

.form-success-msg {
  background: rgba(199,182,150,0.08);
  border: 1px solid rgba(199,182,150,0.2);
}

.form-success-msg h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: #e8e4e0;
  margin-bottom: 8px;
}

.form-success-msg p {
  font-size: 16px;
  color: #999999;
  line-height: 1.7;
}

.form-error-msg {
  background: rgba(220,50,50,0.08);
  border: 1px solid rgba(220,50,50,0.2);
}

.form-error-msg p {
  color: #cc4444;
}

.form-error-msg a {
  color: #e8e4e0;
}


@media (max-width: 768px) {
  .contact-info-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .carousel-slide {
    padding: 36px 24px;
  }

  .carousel-slide blockquote {
    font-size: 16px;
  }
}


/* ============================================
   LEGAL PAGES (Terms, Privacy, Accessibility)
   ============================================ */
.legal-content {
  background: #111;
  padding: 80px 0;
}

.legal-body {
  max-width: 760px;
  margin: 0 auto;
}

.legal-body h2 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 48px 0 16px;
  letter-spacing: 0.01em;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 24px 0 12px;
}

.legal-body p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.legal-body ul li {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.legal-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4c5a0;
}

.legal-body a {
  color: #d4c5a0;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 197, 160, 0.3);
  transition: border-color 0.3s ease;
}

.legal-body a:hover {
  border-color: #d4c5a0;
}

.legal-body code {
  font-family: monospace;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 3px;
  color: #d4c5a0;
}

/* Short hero variant for legal pages */
.interior-hero--short {
  min-height: 320px;
}

.interior-hero--short .interior-hero-content {
  padding-top: 100px;
}

/* Footer legal links row */
.footer-legal {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #d4c5a0;
}

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  user-select: none;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 48px 0;
  }

  .legal-body h2 {
    font-size: 18px;
    margin: 36px 0 12px;
  }

  .interior-hero--short {
    min-height: 260px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-legal {
    order: 2;
  }
}

/* ============================================
   TRAIN TOGETHER / CREAM SPLIT SECTION
   ============================================ */
.split-section--cream {
  background: #f5f0e8 !important;
}

.split-section--cream .split-content h2 {
  color: #0a0a0a;
}

.split-section--cream .split-content p {
  color: #444444;
}

.split-section--cream .section-label {
  color: #0a0a0a;
  border-color: #0a0a0a;
}

.split-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.split-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15px;
  color: #333333;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.split-list li:last-child {
  border-bottom: none;
}

.split-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  font-weight: 700;
  color: #0a0a0a;
}


/* ============================================
   STUDIO PHOTO SLIDESHOW
   Overrides for image-based carousel inside split sections
   ============================================ */
.studio-slideshow {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.studio-slideshow .carousel-track {
  border-radius: 16px;
  overflow: hidden;
}

.studio-slideshow .carousel-slide {
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
}

.studio-slideshow .carousel-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.studio-slideshow .carousel-controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  z-index: 2;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 30px;
}

.studio-slideshow .carousel-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}

.studio-slideshow .carousel-btn:hover {
  background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .studio-slideshow .carousel-slide img {
    height: 280px;
  }
}


/* ============================================
   MOBILE/TABLET UX IMPROVEMENTS — INTERIOR
   ============================================ */

/* Tablet-specific (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .split-grid {
    gap: 40px;
  }
  
  .interior-hero-content {
    padding: 140px 40px 80px;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .icon-cards-grid {
    gap: 20px;
  }
  
  .trainers-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
  }
}

/* Mobile improvements (max-width: 768px) */
@media (max-width: 768px) {
  /* Reduce section padding on interior pages */
  .split-section,
  .icon-cards-section,
  .process-section,
  .pricing-section,
  .routines-section,
  .trainers-section,
  .gallery-section,
  .results-section,
  .testimonial-carousel,
  .interior-cta-section {
    padding: 64px 0;
  }
  
  /* Interior hero mobile */
  .interior-hero {
    min-height: 45vh;
  }
  
  .interior-hero-content h1 {
    font-size: clamp(40px, 10vw, 80px);
  }
  
  .interior-hero-content p {
    font-size: 15px;
    padding: 0 16px;
  }
  
  /* Split section image height */
  .split-image img {
    max-height: 350px;
    object-fit: cover;
    border-radius: 12px;
  }
  
  /* Icon cards mobile */
  .icon-card {
    padding: 28px 20px;
  }
  
  .icon-card h3 {
    font-size: 16px;
  }
  
  .icon-card p {
    font-size: 14px;
  }
  
  /* Pricing card mobile */
  .pricing-card {
    padding: 32px 24px;
  }
  
  /* Carousel touch targets — testimonial carousel */
  .carousel-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
  
  .carousel-dot {
    width: 8px;
    height: 8px;
    /* Increase tap area with invisible padding */
    padding: 6px;
    box-sizing: content-box;
  }
  
  /* Studio slideshow — smaller controls on mobile */
  .studio-slideshow .carousel-controls {
    padding: 6px 12px;
    gap: 10px;
  }
  
  .studio-slideshow .carousel-btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
  }
  
  .studio-slideshow .carousel-dots {
    gap: 6px;
  }
  
  .studio-slideshow .carousel-dot {
    width: 6px;
    height: 6px;
    padding: 4px;
  }
  
  /* Contact section mobile */
  .contact-section {
    padding: 64px 0 80px;
  }
  
  .contact-info-block {
    padding: 24px 16px;
  }
  
  /* FAQ mobile */
  .faq-question {
    padding: 18px 20px;
    font-size: 15px;
    min-height: 56px;
  }
  
  .faq-answer {
    padding: 0 20px;
    padding-bottom: 0;
    font-size: 14px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 18px;
  }
  
  /* Interior CTA section */
  .interior-cta-section {
    padding: 64px 0;
  }
  
  .interior-cta-section h2 {
    font-size: clamp(28px, 6vw, 40px);
  }
  
  .interior-cta-section p {
    font-size: 15px;
    padding: 0 16px;
  }
  
  /* Full-bleed image section mobile */
  .fullbleed-image-section {
    min-height: 280px;
    height: 40vh;
  }
  
  .fullbleed-image-text p {
    font-size: 15px;
  }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
  /* Further reduce section padding */
  .split-section,
  .icon-cards-section,
  .process-section,
  .pricing-section,
  .routines-section,
  .trainers-section,
  .gallery-section,
  .results-section,
  .testimonial-carousel,
  .interior-cta-section {
    padding: 48px 0;
  }
  
  .interior-hero-content {
    padding: 100px 16px 48px;
  }
  
  .interior-hero-content h1 {
    font-size: clamp(36px, 12vw, 60px);
  }
  
  /* Split section */
  .split-content h2 {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .split-content p {
    font-size: 15px;
  }
  
  /* Carousel mobile */
  .carousel-slide {
    padding: 28px 16px;
  }
  
  .carousel-slide blockquote {
    font-size: 15px;
    line-height: 1.7;
  }
  
  /* Contact info blocks */
  .contact-info-block {
    padding: 20px 12px;
  }
  
  .contact-info-block strong {
    font-size: 12px;
  }
  
  /* Pricing card */
  .pricing-card {
    padding: 28px 20px;
  }
  
  .pricing-card .price {
    font-size: clamp(36px, 8vw, 48px);
  }
  
  /* Process steps */
  .process-card {
    padding: 24px 16px;
  }
  
  /* Studio slideshow */
  .studio-slideshow .carousel-slide img {
    height: 220px;
  }
}
