html {
    scroll-behavior: smooth;
}

/* Animaciones */
* {
    animation: appear 0.3s ease-in-out;
}

.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home__hero {
    background-image: url('../img/home/hero.png');
    min-height: 85vh;
}

.home-hero-overlay {
    background-color: rgba(105, 98, 70, 0.18);
}

.physical__hero {
    background-image: url('../img/physical/hero.jpg');
    min-height: 50vh;
}

.small__hero {
    background-image: url('../img/small/hero.png');
    min-height: 50vh;
}

.contact__hero {
    background-image: url('../img/contact/generated/contact-hero-inclusive-pnw.jpg');
    min-height: 50vh;
}

.imgcontact__hero {
    background-image: url('../img/contact/contact.png');
    min-height: 50vh;
}

.pilates__hero {
    background-image: url('../img/pilates/generated/pilates-hero-pnw.jpg');
    min-height: 50vh;
}

.about__hero {
    background-image: url('../img/about/generated/about-hero-pnw.jpg');
    min-height: 50vh;
}

.home__video {
    height: 680px;
    position: relative;
}

.home__video > div {
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 32px;
    width: 80%;
}

.service__item {
    position: relative;
}

.service__item h3 {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.service__item a.btn {
    display: inline-block;
    margin-top: 24px;
}

.service__item figure {
    position: relative;
}

.service__item figure::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 45%);
    pointer-events: none;
    z-index: 1;
}

.service__item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
}

.footer__social {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.footer__social li {
    margin: 0 8px;
}

.footer__social a {
    border: 1px solid var(--gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    align-content: center;
    color: var(--gold);
    display: block;
}

.benefits__item {
    padding: 12px;
    text-align: center;
    align-content: center;
    background-color: var(--gold);
    color: white;
    border-radius: 12px;
    display: block;
    width: fit-content;
    font-family: "Marcellus", serif;
    font-size: 48px;
}

.images--2cols {
    display: grid;
    grid-template-columns: 2fr 3fr;
}

.pilates-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pilates-collage img {
    aspect-ratio: 1 / 1;
    height: 100%;
    object-fit: cover;
}

.faq__item {
    margin-bottom: 24px;
}


.accordion-header button{
    font-size: 18px !important;
    font-weight: 400 !important;
    font-family: "Marcellus", serif;
}

.accordion-body {
    font-size: 14px !important;
    color: #696246 !important;
}

.accordion-item {
    border-radius: 8px !important;
    border: none !important;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 36px;
}

.accordion-button {
    border: none;
    border-radius: 0 !important;
}

.accordion-button:not(.collapsed),
.accordion-item {
    background-color: #FFFFFF !important;
    color: #696246 !important;
}

.accordion-button:not(.collapsed) {
    border: none !important;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Ocultamos el ::after por defecto */
#accordionExample .accordion-button::after {
    display: none !important;
}

/* Creamos un ::before para poner el ícono a la izquierda */
#accordionExample .accordion-button::before {
    content: "";
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url('../img/plusIcon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 0.75rem; /* espacio entre ícono y texto */
}

/* Cambiamos el ícono cuando no está colapsado */
#accordionExample .accordion-button:not(.collapsed)::before {
    background-image: url('../img/lessIcon.png');
}

#accordionExample .accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

.class__type {
    position: relative;
}

.class__type h3 {
    position: absolute;
    top: 24px;
    left: 24px;
    color: white;
}

.text--404 {
    font-size: 280px;
    font-weight: 700 !important;
}

.tabs-wrapper {
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 12px;
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #696246;
    padding: 2px 0;
    position: relative;
    transition: color 0.25s ease;
    font-family: "Marcellus", serif;
}

.tab-btn:hover {
    color: var(--gold);
}

.tab-btn.active {
    color: var(--gold);
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.tab-content {
    display: none;
    padding: 24px;
    border-radius: 8px;
    background: #fff;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    margin-bottom: 12px;
    color: #696246;
    font-size: 24px;
}

.tab-content p {
    color: #696246;
    line-height: 1.6;
    font-size: 15px;
}

.service-section {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
}

/* Imagen superior */
.service-image-wrap {
    position: relative;
    z-index: 2;
    width: calc(100% - 120px);
    margin: 0 auto;
}

.service-image-wrap img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
    border-radius: 38px;
}

.service-title {
    position: absolute;
    left: 36px;
    bottom: 85px;
    color: #fff;
    font-size: 3.2rem;
    line-height: 1.05;
    font-weight: 400;
    max-width: 360px;
}

/* Bloque inferior */
.service-content {
    background: var(--light-green);
    margin-top: -320px;
    padding: 360px 90px 90px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.service-content p {
    color: #fff;
    font-size: 32px;
    line-height: 1.5;
    max-width: 980px;
    margin: 0 auto 38px;
}

.service-content p:last-child {
    margin-bottom: 0;
}

.dry-needling__item {
    background-color: white;
    color: var(--gold);
    padding: 24px;
    font-family: "Marcellus", serif;
    font-size: 48px;
    border-radius: 4px;
}


.benefits__item--pilates {
    background-color: var(--pink);
    color: white;
    padding: 24px;
    font-family: "Marcellus", serif;
    font-size: 48px;
    border-radius: 4px;
}

.header__sticky {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
}

.header__sticky {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header__sticky #headerStickyInner {
    transition: background-color .3s ease, box-shadow .3s ease;
}

.header__sticky.header__sticky--scrolled #headerStickyInner {
    background-color: #696246;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1200px) {
    .service-image-wrap {
        width: calc(100% - 60px);
    }

    .service-image-wrap img {
        height: 520px;
    }

    .service-title {
        font-size: 2.6rem;
        bottom: 60px;
    }

    .service-content {
        padding: 120px 50px 70px;
    }

    .home__video {
        height: calc(100vw * 9 / 16) !important;
    }
}

@media (max-width: 990px) {
    .home__cuadrocontacto {
        height: auto !important;
    }

    .home__cuadrocontacto > div {
        position: static;
        transform: none;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {

    .service-image-wrap {
        width: 100%;
    }

    .service-image-wrap img {
        height: 340px;
        border-radius: 24px;
    }

    .service-title {
        left: 20px;
        bottom: 28px;
        font-size: 2rem;
        max-width: 220px;
    }

    .service-content {
        margin-top: -35px;
        padding: 80px 22px 40px;
    }

    .service-content p {
        font-size: 1rem;
    }

    .tabs-nav {
        gap: 14px;
    }

    .tab-btn {
        font-size: 14px;
    }

    .tab-content {
        padding: 18px;
    }
}

@media (max-width: 720px) {
    .home__video {
        height: auto !important;
    }

    .home__video > div {
        position: static;
        transform: none;
        margin: 0;
        width: 100%;
    }

    .hero {
        min-height: 20vh !important;
    }

    .text--404 {
        font-size: 120px;
    }
}

@keyframes appear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Nuevas clases para layout Services Masonry */
.services-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card-sports {
    grid-column: span 2;
    border-radius: 12px;
    overflow: hidden;
    background-color: white;
}

.card-neuro {
    grid-column: 3;
    border-radius: 12px;
    background-color: #D4CFB1;
}

.card-ortho {
    grid-column: 1;
    border-radius: 12px;
    background-color: #DEE0D1;
}

.card-large {
    grid-column: span 2;
    border-radius: 12px;
    overflow: hidden;
    min-height: 480px;
}

@media (max-width: 990px) {
    .services-masonry {
        grid-template-columns: 1fr;
    }
    .card-sports, .card-neuro, .card-ortho, .card-large {
        grid-column: span 1;
    }
}

/* Filled — Pilates */
.btn-book-pilates {
  background: #D4CFB1;
  color: #ffffff;
  border: 2px solid #D4CFB1;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
}

/* Outlined — Physical Therapy */
.btn-book-pt {
  background: transparent;
  color: #D4CFB1;
  border: 2px solid #D4CFB1;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
}

/* Hover states */
.btn-book-pilates:hover {
  color: #ffffff;
}

.pilates-intention-cta,
.pilates-intention-cta:hover,
.pilates-intention-cta:focus,
.pilates-intention-cta:active,
.pilates-intention-cta:focus-visible {
  background-color: #D4CFB1 !important;
  border-color: #D4CFB1 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.btn-book-pt:hover {
  background: #D4CFB1;
  color: #ffffff;
}

.momence-page .btn-book-pilates,
.momence-page button.btn-book-pilates {
  --bs-btn-bg: #696246;
  --bs-btn-border-color: #696246;
  --bs-btn-color: #ffffff;
  --bs-btn-hover-bg: #5A543B;
  --bs-btn-hover-border-color: #5A543B;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-active-bg: #504A35;
  --bs-btn-active-border-color: #504A35;
  --bs-btn-active-color: #ffffff;
  --bs-btn-focus-shadow-rgb: 105, 98, 70;
  background-color: #696246 !important;
  border-color: #696246 !important;
  color: #ffffff !important;
}

.momence-page .btn-book-pilates:hover,
.momence-page .btn-book-pilates:focus,
.momence-page .btn-book-pilates:active,
.momence-page .btn-book-pilates:focus-visible,
.momence-page button.btn-book-pilates:hover,
.momence-page button.btn-book-pilates:focus,
.momence-page button.btn-book-pilates:active,
.momence-page button.btn-book-pilates:focus-visible {
  background-color: #5A543B !important;
  border-color: #5A543B !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 0.2rem rgba(105, 98, 70, 0.18);
}

.momence-page .btn-book-pt,
.momence-page button.btn-book-pt {
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #696246;
  --bs-btn-color: #696246;
  --bs-btn-hover-bg: #696246;
  --bs-btn-hover-border-color: #696246;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-active-bg: #5A543B;
  --bs-btn-active-border-color: #5A543B;
  --bs-btn-active-color: #ffffff;
  --bs-btn-focus-shadow-rgb: 105, 98, 70;
  background-color: transparent !important;
  border-color: #696246 !important;
  color: #696246 !important;
}

.momence-page .btn-book-pt:hover,
.momence-page .btn-book-pt:focus,
.momence-page .btn-book-pt:active,
.momence-page .btn-book-pt:focus-visible,
.momence-page button.btn-book-pt:hover,
.momence-page button.btn-book-pt:focus,
.momence-page button.btn-book-pt:active,
.momence-page button.btn-book-pt:focus-visible {
  background-color: #696246 !important;
  border-color: #696246 !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 0.2rem rgba(105, 98, 70, 0.18);
}

/* Homepage hero CTA styling */
.home__hero .btn-book-pilates {
  background: transparent;
  border-color: #D4CFB1;
  color: #ffffff;
}

.home__hero .btn-book-pt {
  background: #D4CFB1;
  border-color: #D4CFB1;
  color: #ffffff;
}

.home__hero .btn-book-pilates:hover {
  background: rgba(212, 207, 177, 0.18);
  border-color: #D4CFB1;
  color: #ffffff;
}

.home__hero .btn-book-pt:hover {
  background: #C8C2A3;
  border-color: #C8C2A3;
  color: #ffffff;
}

/* Navbar specific CTA styling */
.header__sticky .btn-book-pilates {
  background-color: #D4CFB1 !important;
  border-color: #D4CFB1 !important;
  color: #ffffff !important;
}

.header__sticky .btn-book-pilates:hover {
  background-color: #C8C2A3 !important;
  border-color: #C8C2A3 !important;
  color: #ffffff !important;
}

.header__sticky .btn-book-pt {
  background-color: transparent !important;
  border-color: #D4CFB1 !important;
  color: #ffffff !important;
}

.header__sticky .btn-book-pt:hover {
  background-color: rgba(212, 207, 177, 0.18) !important;
  border-color: #D4CFB1 !important;
  color: #ffffff !important;
}

/* Prevent line-breaking on the number */
.footer-phone {
  white-space: nowrap;
}

.footer-contact-list {
  gap: 16px 24px;
}

footer .footer-address {
  color: black !important;
  display: inline-block;
  font-family: "Marcellus", serif !important;
  font-size: var(--text-md) !important;
  font-weight: 400 !important;
  line-height: inherit !important;
  text-decoration: none !important;
}

footer .footer-address span {
  color: inherit;
  display: block;
  font: inherit;
  font-weight: inherit;
  line-height: inherit;
  white-space: nowrap;
}

footer .footer-address:hover {
  color: #696246 !important;
  text-decoration: none !important;
}

.pilates-membership-card {
  border: 1px solid rgba(105, 98, 70, 0.12);
}

.pilates-membership-card--flagship {
  border-color: rgba(105, 98, 70, 0.32);
  box-shadow: rgba(80, 74, 53, 0.18) 0 12px 34px 0;
}

.pilates-price-note {
  color: rgba(105, 98, 70, 0.6);
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.35;
  margin: 0;
}

.pilates-card-tagline {
  font-size: 13px;
  font-weight: 400;
}

.pilates-card-quote {
  border-top: 1px solid rgba(105, 98, 70, 0.14);
  margin-top: 18px;
  padding-top: 18px;
}

/* Style "Text us" as a subtle secondary link */
.footer-text-link {
  font-size: 12px;
  color: #696246;
  display: block;
  margin-top: 4px;
  text-decoration: none;
}
.footer-text-link:hover { text-decoration: underline; }

/* Disabled CTA state for temporarily unavailable flows */
.btn-coming-soon,
.btn-coming-soon:disabled {
  background-color: #D4CFB1;
  border: 1px solid #D4CFB1;
  color: #ffffff;
  opacity: 0.78;
  cursor: default;
  pointer-events: none;
}

.btn-coming-soon:hover {
  background-color: #D4CFB1;
  border-color: #D4CFB1;
  color: #ffffff;
}

.pilates-coming-soon-banner {
  background: #ffffff;
  border: 1px solid rgba(105, 98, 70, 0.2);
  border-radius: 8px;
  box-shadow: rgba(100, 100, 111, 0.08) 0 7px 24px 0;
  max-width: 720px;
  padding: 18px 22px;
}

.pilates-coming-soon-banner span {
  color: #696246;
  display: block;
  font-family: "Marcellus", serif;
  font-size: 26px;
  line-height: 1.2;
  text-transform: uppercase;
}

.pilates-coming-soon-banner p {
  color: rgba(36, 33, 22, 0.68);
  font-family: "Marcellus", serif;
  font-size: 16px;
  line-height: 1.55;
  margin: 8px 0 0;
}

.momence-panel {
  background: #ffffff;
  border: 1px solid rgba(105, 98, 70, 0.14);
  border-radius: 8px;
  box-shadow: rgba(100, 100, 111, 0.12) 0 7px 29px 0;
  padding: 32px;
  max-width: 100%;
}

.momence-detail-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.momence-detail-list div {
  border-bottom: 1px solid rgba(105, 98, 70, 0.12);
  padding-bottom: 16px;
}

.momence-detail-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.momence-detail-list dt {
  color: #696246;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.momence-detail-list dd {
  color: #242116;
  font-family: "Marcellus", serif;
  font-size: 20px;
  margin: 0;
  overflow-wrap: anywhere;
}

.momence-list {
  display: grid;
  gap: 16px;
}

.momence-list-item,
.momence-booking {
  border: 1px solid rgba(105, 98, 70, 0.14);
  border-radius: 8px;
  padding: 20px;
}

.momence-booking {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.momence-booking--cancelled {
  opacity: 0.72;
}

.momence-booking-status span {
  background: #D4CFB1;
  border-radius: 999px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  white-space: nowrap;
}

.momence-schedule-filters {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(150px, 0.9fr) repeat(3, minmax(160px, 1fr)) auto;
}

.momence-schedule-filters label {
  color: #696246;
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.momence-schedule-filters input,
.momence-schedule-filters select {
  background: #ffffff;
  border: 1px solid rgba(105, 98, 70, 0.24);
  border-radius: 6px;
  color: #242116;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

.momence-schedule-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.momence-day-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.momence-day-tab {
  background: #ffffff;
  border: 1px solid rgba(105, 98, 70, 0.22);
  border-radius: 999px;
  color: #696246;
  font-size: 13px;
  font-weight: 600;
  min-width: 56px;
  padding: 9px 14px;
}

.momence-day-tab.active,
.momence-day-tab:hover {
  background: #696246;
  border-color: #696246;
  color: #ffffff;
}

.momence-schedule-days {
  display: grid;
  gap: 28px;
}

.momence-day-block {
  display: grid;
  gap: 14px;
}

.momence-day-header {
  align-items: center;
  background: #D4CFB1;
  border: 1px solid rgba(105, 98, 70, 0.18);
  border-radius: 8px;
  color: #696246;
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
}

.momence-day-header span:first-child {
  font-family: "Marcellus", serif;
  font-size: 24px;
}

.momence-day-header span:last-child {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.momence-day-sessions {
  display: grid;
  gap: 14px;
}

.momence-session-card {
  background: #ffffff;
  border: 1px solid rgba(105, 98, 70, 0.14);
  border-radius: 8px;
  box-shadow: rgba(100, 100, 111, 0.12) 0 7px 29px 0;
  overflow: hidden;
}

.momence-session-row {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(112px, 0.8fr) minmax(220px, 2fr) minmax(110px, 0.9fr) auto;
  padding: 22px 24px;
}

.momence-session-time-main {
  color: #696246;
  display: block;
  font-family: "Marcellus", serif;
  font-size: 30px;
  line-height: 1.05;
}

.momence-session-time-end {
  color: rgba(105, 98, 70, 0.62);
  display: block;
  font-size: 12px;
  margin-top: 6px;
}

.momence-session-class h3 {
  color: #242116;
  font-family: "Marcellus", serif;
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 6px;
}

.momence-session-class p {
  color: rgba(105, 98, 70, 0.72);
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.momence-session-class .momence-session-snippet {
  color: rgba(36, 33, 22, 0.68);
  font-size: 13px;
  line-height: 1.55;
  margin-top: 10px;
  max-width: 760px;
}

.momence-session-availability {
  color: rgba(105, 98, 70, 0.72);
  display: grid;
  font-size: 12px;
  gap: 5px;
  justify-items: end;
  text-align: right;
}

.momence-availability {
  align-items: center;
  color: #696246;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
}

.momence-availability i {
  border-radius: 999px;
  display: inline-block;
  height: 9px;
  width: 9px;
}

.momence-availability--open i {
  background: #6E8D62;
}

.momence-availability--filling i {
  background: #C49A4A;
}

.momence-availability--full i {
  background: #B56A5E;
}

.momence-session-actions {
  align-items: end;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.momence-session-actions strong {
  color: #696246;
  font-family: "Marcellus", serif;
  font-size: 17px;
  white-space: nowrap;
}

.momence-session-image {
  aspect-ratio: 16 / 7;
  display: block;
  object-fit: cover;
  width: 100%;
}

.momence-session-body {
  padding: 28px;
}

.momence-session-meta {
  display: grid;
  gap: 10px;
}

.momence-session-meta span {
  align-items: center;
  color: #696246;
  display: flex;
  font-size: 14px;
  gap: 10px;
}

.momence-session-meta i {
  color: #D4CFB1;
  width: 16px;
}

.momence-session-description {
  line-height: 1.6;
}

.momence-form-label {
  color: #696246;
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.momence-form-control {
  background: #ffffff;
  border: 1px solid rgba(105, 98, 70, 0.24);
  border-radius: 6px;
  color: #242116;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

.momence-checkout-total {
  align-items: center;
  background: #F6F7F2;
  border: 1px solid rgba(105, 98, 70, 0.12);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}

.momence-checkout-total span {
  color: #696246;
  font-size: 13px;
}

.momence-checkout-total strong {
  color: #696246;
  font-family: "Marcellus", serif;
  font-size: 24px;
  white-space: nowrap;
}

@media (max-width: 990px) {
  .momence-grid,
  .momence-schedule-grid {
    grid-template-columns: 1fr;
  }

  .momence-session-row {
    align-items: start;
    grid-template-columns: minmax(100px, 0.7fr) minmax(0, 1.6fr);
  }

  .momence-session-availability,
  .momence-session-actions {
    justify-items: start;
    text-align: left;
  }

  .momence-schedule-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .momence-panel {
    padding: 22px;
  }

  .momence-booking {
    align-items: flex-start;
    flex-direction: column;
  }

  .momence-schedule-filters {
    grid-template-columns: 1fr;
  }

  .momence-day-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .momence-day-tab {
    flex: 0 0 auto;
  }

  .momence-day-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .momence-session-row {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .momence-session-body {
    padding: 22px;
  }
}

.park-coming-soon-section {
  position: relative;
  overflow: hidden;
}

.park-coming-soon-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 18, 13, 0.46);
  z-index: 2;
  pointer-events: none;
}

.park-coming-soon-badge {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding: 24px;
}

.park-coming-soon-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(420px, 86vw);
  padding: 22px 36px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: #ffffff;
  font-family: "Marcellus", serif;
  font-size: 34px;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

@media (max-width: 575.98px) {
  .park-coming-soon-badge span {
    min-width: 0;
    width: 100%;
    padding: 18px 24px;
    font-size: 26px;
  }
}

/* Optionally hide SMS link on desktop */
@media (min-width: 768px) {
  .footer-text-link { display: none; }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .footer-contact-list {
    flex-wrap: wrap;
    justify-content: center !important;
  }

  .footer-location-item {
    text-align: center;
  }
}

/* Paragraph width fix for PT hero copy */
.pt-hero-body p {
  max-width: 65ch;
  margin: 0;
}

/* Footer links hover fix */
footer a.a--white:hover,
footer a.a--black:hover,
footer .footer-text-link:hover {
  color: #696246 !important;
}

/* Responsive refinements */
.grid--2cols.pilates-intro-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.pilates-intro-copy {
  min-width: 0;
}

.pilates-intro-copy .section__title {
  line-height: 1.05;
}

.pilates-collage {
  align-items: stretch;
}

.pilates-collage img {
  aspect-ratio: 1 / 1;
  display: block;
  height: auto;
  min-width: 0;
  object-fit: cover;
}

.contact-quick-action-section {
  margin-top: -32px;
  position: relative;
  z-index: 2;
}

.contact-quick-action {
  max-width: calc(100vw - 32px);
  text-align: center;
}

.contact-card {
  height: auto;
  padding: clamp(18px, 3vw, 36px);
  padding-bottom: clamp(42px, 4vw, 56px);
}

.grid--2cols.contact-card-grid {
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
}

.ntp-contact-form,
.contact-info-panel {
  min-width: 0;
}

.ntp-contact-form .form-control {
  border: 1px solid rgba(105, 98, 70, 0.24);
  color: #242116;
  min-height: 46px;
}

.ntp-contact-form .form-control::placeholder {
  color: rgba(105, 98, 70, 0.58);
  opacity: 1;
}

.contact-info-panel a {
  overflow-wrap: anywhere;
}

.grid--2cols.about-equipment-grid {
  align-items: center;
}

.about-equipment-copy,
.about-equipment-image {
  min-width: 0;
}

.about-equipment-image img {
  display: block;
}

.team-bio-card a {
  overflow-wrap: anywhere;
}

.team-apply-link {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
  white-space: normal;
}

.about-faq-section {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  padding-bottom: 32px !important;
  padding-top: 24px !important;
}

.about-faq-section .section__title {
  margin-bottom: 32px !important;
  margin-top: 16px !important;
}

.pt-review-link {
  align-self: flex-start;
  border-color: #696246 !important;
  color: #696246 !important;
  max-width: 100%;
  white-space: normal;
}

.pt-review-link:hover,
.pt-review-link:focus {
  background-color: #696246 !important;
  color: #ffffff !important;
}

footer .footer-contact-list {
  align-items: flex-start !important;
  gap: 24px;
}

footer .footer-contact-list > li {
  margin: 0 !important;
  min-width: 0;
}

footer .footer-email-link {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal !important;
}

footer .footer-address span {
  white-space: normal;
}

@media (max-width: 990px) {
  .grid--2cols.pilates-intro-grid,
  .grid--2cols.contact-card-grid,
  .grid--2cols.about-equipment-grid {
    grid-template-columns: 1fr;
  }

  .grid--2cols.pilates-intro-grid {
    gap: 32px !important;
  }

  .pilates-intro-copy {
    padding: 0 !important;
  }

  .about-equipment-image {
    margin-top: 28px;
  }
}

@media (max-width: 767.98px) {
  .contact-card {
    padding: 16px;
    padding-bottom: 44px;
  }

  .contact-card .p-4 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .contact-info-panel .ms-4 {
    margin-left: 0 !important;
  }

  footer figure {
    margin-bottom: 32px !important;
  }

  footer .footer-contact-list {
    align-items: center !important;
    gap: 28px;
    text-align: center;
  }

  footer .footer-contact-list > li {
    width: 100%;
  }

  footer .col-md-4 {
    padding: 24px 0 0 !important;
    text-align: center !important;
  }

  footer .footer__social {
    justify-content: center !important;
  }
}

@media (max-width: 575.98px) {
  .pilates-intro-section {
    margin-top: 16px !important;
    padding-top: 32px !important;
  }

  .pilates-collage {
    gap: 12px !important;
    margin-bottom: 6px;
  }

  .pilates-collage img {
    border-radius: 6px;
  }

  .pilates-intro-copy .section__title {
    font-size: 34px;
    line-height: 1.08;
  }

  .pilates-intention-cta {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
  }

  .contact-quick-action-section {
    margin-top: -20px;
    padding: 0 16px;
  }

  .contact-quick-action {
    justify-content: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 18px 20px !important;
    width: 100%;
  }

  .about-equipment-section {
    padding-bottom: 40px !important;
    padding-top: 40px !important;
  }

  .about-equipment-image {
    margin-top: 34px;
  }

  .about-faq-section {
    padding-top: 8px !important;
  }

  .pt-google-review-card {
    border-left-width: 5px !important;
    padding: 28px !important;
  }

  .pt-google-review-card .pt-review-quote-mark {
    font-size: 38px !important;
  }

  .pt-google-review-card .pt-review-copy {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .hww-faq-item h3 {
    font-size: 19px !important;
    line-height: 1.25 !important;
  }
}
