:root {
        --panel-strong: rgba(255, 248, 239, 0.92);
        --text: #2e261f;
        --muted: #6c5d52;
        --accent-deep: #8c6b52;
        --line: rgba(70, 50, 37, 0.12);
        --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia,
          serif;
        --sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      section,
      [id="top"] {
        scroll-margin-top: 110px;
      }

      body {
        margin: 0;
        font-family: var(--sans);
        color: var(--text);
        background: #f7f1e7;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      .inline-link {
        font-weight: 700;
        text-decoration: none;
      }

      img {
        max-width: 100%;
        display: block;
      }

      .page-shell {
        width: min(1180px, calc(100% - 40px));
        margin: 24px auto 48px;
        overflow-x: visible;
      }

      .site-nav {
        position: sticky;
        top: 16px;
        margin-bottom: 18px;
        z-index: 40;
      }

      .hero-card {
        position: relative;
        min-height: auto;
        padding: 28px;
        border: 1px solid rgba(110, 90, 70, 0.1);
        border-radius: 32px;
        background: #f4ede1;
        box-shadow: none;
        overflow: hidden;
      }

      .topbar {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 14px 18px;
        border: 1px solid rgba(91, 71, 52, 0.1);
        border-radius: 24px;
        background: transparent;
        backdrop-filter: blur(14px);
        box-shadow: 0 10px 30px rgba(86, 61, 42, 0.06);
        z-index: 1;
      }

      .hero-content {
        position: relative;
        z-index: 1;
      }

      .brand,
      .brand-name {
        display: inline-flex;
        align-items: baseline;
        gap: 0;
        text-transform: none;
        font-family: var(--sans);
        letter-spacing: 0;
      }

      .brand {
        position: relative;
        align-items: center;
        font-size: 1.725rem;
        padding: 0.34rem 0.82rem 0.42rem 0.6rem;
        isolation: isolate;
        min-height: 3.35rem;
      }

      .brand-high {
        font-family: var(--sans);
        font-weight: 600;
        font-style: normal;
        letter-spacing: 0;
      }

      .brand-base {
        font-weight: 500;
        letter-spacing: -0.02em;
      }

      .brand-inline {
        font-size: 1em;
        letter-spacing: 0;
        white-space: nowrap;
      }

      .menu {
        display: flex;
        align-items: center;
        gap: 12px 18px;
        flex-wrap: wrap;
        justify-content: flex-end;
        font-size: 0.83rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
      }

      .menu a {
        position: relative;
        flex: 0 0 auto;
        padding-bottom: 4px;
        white-space: nowrap;
      }

      .menu .book-link {
        padding: 12px 18px;
        border-radius: 999px;
        border: 1px solid rgba(52, 40, 30, 0.92);
        background: rgba(52, 40, 30, 0.92);
        backdrop-filter: blur(10px);
        letter-spacing: 0.16em;
        color: #f8f3ec;
      }

      .mobile-book-link {
        display: none;
        padding: 12px 18px;
        border-radius: 999px;
        border: 1px solid rgba(52, 40, 30, 0.92);
        background: rgba(52, 40, 30, 0.92);
        color: #f8f3ec;
        font-size: 0.78rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        white-space: nowrap;
      }

      .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .menu .book-link::after {
        display: none;
      }

      .menu a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: currentColor;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 180ms ease;
      }

      .menu a:hover::after,
      .menu a:focus-visible::after {
        transform: scaleX(1);
      }

      .nav-toggle {
        display: none;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        padding: 0;
        border: 1px solid rgba(52, 40, 30, 0.16);
        border-radius: 999px;
        background: rgba(255, 248, 239, 0.88);
        color: var(--text);
        cursor: pointer;
      }

      .nav-toggle-line {
        display: block;
        width: 18px;
        height: 1.5px;
        background: currentColor;
        transition: transform 180ms ease, opacity 180ms ease;
      }

      .nav-toggle-line + .nav-toggle-line {
        margin-top: 4px;
      }

      .nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child {
        transform: translateY(5.5px) rotate(45deg);
      }

      .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
        opacity: 0;
      }

      .nav-toggle[aria-expanded="true"] .nav-toggle-line:last-child {
        transform: translateY(-5.5px) rotate(-45deg);
      }

      .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: stretch;
        min-height: 560px;
        padding: 290px 6px 12px;
      }

      .hero-notice {
        position: absolute;
        top: 55px;
        left: 34px;
        z-index: 3;
        display: block;
        width: min(360px, calc(100% - 8px));
        padding: 16px 18px 18px;
        border-radius: 28px;
        border: 1px solid rgba(84, 66, 50, 0.14);
        background: rgba(255, 248, 239, 0.78);
        backdrop-filter: blur(16px);
        box-shadow: 0 12px 28px rgba(72, 52, 36, 0.08);
        cursor: pointer;
        transition:
          transform 180ms ease,
          border-color 180ms ease,
          box-shadow 180ms ease;
      }

      .hero-notice-label {
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 0 11px;
        border-radius: 999px;
        background: rgba(223, 209, 191, 0.82);
        color: var(--accent-deep);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }

      .hero-notice-copy {
        display: block;
        margin: 12px 0 0;
        font-size: 0.95rem;
        line-height: 1.72;
        color: rgba(46, 38, 31, 0.9);
      }

      .hero-notice-inline-link {
        font-weight: 700;
        text-decoration: underline;
        text-decoration-thickness: 1px;
        text-underline-offset: 0.16em;
      }

      .hero-notice:hover,
      .hero-notice:focus-visible {
        border-color: rgba(84, 66, 50, 0.22);
        box-shadow: 0 16px 32px rgba(72, 52, 36, 0.1);
        transform: translateY(-1px);
      }

      .hero-notice:focus-visible {
        outline: 2px solid rgba(140, 107, 82, 0.28);
        outline-offset: 3px;
      }

      .eyebrow {
        margin: 0 0 18px;
        font-size: 0.8rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--muted);
      }

      h1 {
        max-width: 8.5ch;
        margin: 0;
        font-family: var(--serif);
        font-size: clamp(4rem, 10vw, 7.25rem);
        line-height: 0.92;
        font-weight: 500;
        letter-spacing: -0.05em;
      }

      .hero-copy p {
        max-width: 33rem;
        margin: 24px 0 0;
        font-size: 1.05rem;
        line-height: 1.8;
        color: rgba(46, 38, 31, 0.88);
      }

      .hero-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 46px;
        padding: 0 18px;
        border-radius: 999px;
        border: 1px solid rgba(52, 40, 30, 0.18);
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        transition:
          transform 180ms ease,
          background-color 180ms ease,
          border-color 180ms ease,
          opacity 180ms ease;
      }

      .hero-pill-icon {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
      }

      .hero-pill:hover,
      .hero-pill:focus-visible {
        transform: translateY(-1px);
      }

      .hero-pill-primary {
        background: rgba(52, 40, 30, 0.92);
        border-color: rgba(52, 40, 30, 0.92);
        color: #f8f3ec;
      }

      .hero-pill-secondary {
        background: rgba(255, 248, 239, 0.74);
        color: var(--text);
      }

      .social-pill {
        color: #3b2e23;
      }

      .social-pill-instagram {
        background: linear-gradient(135deg, #d7c2b6, #e7d2c7 52%, #d5c5dd);
        border-color: rgba(123, 88, 92, 0.18);
      }

      .social-pill-whatsapp {
        background: linear-gradient(135deg, #cad8c0, #dbe7d1);
        border-color: rgba(85, 113, 83, 0.18);
      }

      .social-pill-telegram {
        background: linear-gradient(135deg, #c9d9df, #d8e5ea);
        border-color: rgba(82, 106, 122, 0.18);
      }

      .hero-copy {
        max-width: 42rem;
        align-self: end;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
      }

      .hero-media {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: inherit;
        z-index: 0;
        background: #f4ede1;
      }

      .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: calc(50% + 200px) center;
        transform: none;
        display: block;
      }

      main {
        margin-top: 34px;
      }

      section {
        display: grid;
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        gap: 24px;
        margin-bottom: 24px;
      }

      #personal-training {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
      }

      #socials {
        grid-template-columns: 1fr;
      }

      .section-card {
        padding: 30px;
        border-radius: 28px;
        background: var(--panel-strong);
        border: 1px solid rgba(91, 71, 52, 0.08);
        box-shadow: none;
      }

      .full-span {
        grid-column: 1 / -1;
      }

      .socials-card {
        padding-top: 22px;
        padding-bottom: 22px;
      }

      .socials-shell {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px 24px;
      }

      .socials-copy {
        font-size: 1rem;
        color: rgba(46, 38, 31, 0.84);
        white-space: nowrap;
      }

      .socials-pills {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 12px;
      }

      .section-card h2 {
        margin: 0 0 16px;
        font-family: var(--serif);
        font-size: clamp(2.1rem, 4vw, 3rem);
        font-weight: 500;
      }

      .section-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.8;
      }

      .list-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-top: 24px;
      }

      #classes {
        align-items: start;
      }

      #classes > .section-card:first-child {
        display: flex;
        flex-direction: column;
        min-height: 100%;
      }

      #classes > .section-card:last-child {
        padding: 24px;
      }

      .classes-highlight {
        display: grid;
        gap: 12px;
        margin-top: 24px;
        padding: 22px 22px 24px;
        border-radius: 24px;
        background: rgba(246, 238, 228, 0.92);
        border: 1px solid rgba(101, 79, 59, 0.08);
      }

      .classes-highlight-label {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        min-height: 34px;
        padding: 0 12px;
        border-radius: 999px;
        background: rgba(223, 209, 191, 0.76);
        color: var(--accent-deep);
        font-size: 0.74rem;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
      }

      .classes-highlight p {
        margin: 0;
        color: rgba(46, 38, 31, 0.84);
        line-height: 1.75;
      }

      #classes .list-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 0;
      }

      #classes .list-item {
        display: grid;
        grid-template-columns: minmax(100px, 130px) minmax(0, 1fr);
        align-items: start;
        gap: 18px;
        padding: 18px 20px;
        border-radius: 22px;
      }

      #classes .list-item:nth-child(1) {
        background: #c7d7e8;
      }

      #classes .list-item:nth-child(2) {
        background: #d8cbbf;
      }

      #classes .list-item:nth-child(3) {
        background: #ddb7ab;
      }

      #classes .list-item:nth-child(4) {
        background: #c9dbc0;
      }

      #classes .list-item:nth-child(5) {
        background: #e1d4a8;
      }

      #classes .list-item strong {
        margin: 0;
        font-size: 1.02rem;
        line-height: 1.2;
      }

      #classes .list-item span {
        line-height: 1.7;
      }

      .personal-training-support-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        flex: 1;
      }

      .list-item {
        padding: 18px;
        border-radius: 20px;
        background: rgba(246, 238, 228, 0.92);
        border: 1px solid rgba(101, 79, 59, 0.08);
      }

      .list-item strong {
        display: block;
        margin-bottom: 8px;
        font-size: 1rem;
      }

      .list-item span {
        color: var(--muted);
        line-height: 1.6;
        font-size: 0.94rem;
      }

      .consultation-card {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 24px;
        border-radius: 24px;
        background: rgba(246, 238, 228, 0.92);
        border: 1px solid rgba(101, 79, 59, 0.08);
      }

      .consultation-card-standalone {
        margin-top: 28px;
      }

      .consultation-card strong {
        display: block;
        font-size: 1rem;
        line-height: 1.2;
      }

      .consultation-card span {
        color: var(--muted);
        line-height: 1.65;
        font-size: 0.95rem;
      }

      .consultation-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: fit-content;
        max-width: 100%;
        margin-top: 12px;
        padding: 14px 18px;
        border-radius: 999px;
        background: rgba(52, 40, 30, 0.92);
        border: 1px solid rgba(52, 40, 30, 0.92);
        color: #f8f3ec;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        line-height: 1.35;
        text-transform: uppercase;
        transition:
          transform 180ms ease,
          background 180ms ease,
          opacity 180ms ease;
      }

      .consultation-pill:hover,
      .consultation-pill:focus-visible {
        background: rgba(41, 31, 23, 0.96);
        transform: translateY(-1px);
      }

      .personal-training-primary {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
      }

      .personal-training-secondary {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }

      .personal-training-support-copy {
        display: grid;
        gap: 10px;
        margin-bottom: 22px;
      }

      .personal-training-support-copy h3 {
        margin: 0;
        font-family: var(--serif);
        font-size: clamp(1.5rem, 2.4vw, 2rem);
        font-weight: 500;
        line-height: 1.15;
      }

      .personal-training-support-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        padding: 24px 22px;
        border-radius: 22px;
        background: rgba(246, 238, 228, 0.92);
        border: 1px solid rgba(101, 79, 59, 0.08);
      }

      .personal-training-support-item strong {
        display: block;
        font-size: 1rem;
        line-height: 1.2;
      }

      .personal-training-support-item span {
        color: var(--muted);
        line-height: 1.65;
        font-size: 0.95rem;
      }

      .schedule-board {
        overflow: visible;
        margin-top: 24px;
        padding-bottom: 6px;
      }

      .schedule-grid {
        display: grid;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 10px;
        min-width: 0;
      }

      .schedule-day {
        min-height: 100%;
        min-width: 0;
        padding: 14px;
        border-radius: 22px;
        background: rgba(243, 234, 223, 0.88);
        border: 1px solid rgba(91, 71, 52, 0.08);
      }

      .schedule-day-toggle {
        width: 100%;
        padding: 0;
        border: 0;
        background: none;
        color: inherit;
        font: inherit;
        text-align: left;
        cursor: default;
        appearance: none;
        -webkit-appearance: none;
        border-radius: 0;
        box-shadow: none;
        -webkit-tap-highlight-color: transparent;
      }

      .schedule-day-toggle:focus-visible {
        outline: 1px solid rgba(124, 93, 71, 0.28);
        outline-offset: -1px;
      }

      .schedule-day-toggle h3 {
        margin: 0 0 12px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(91, 71, 52, 0.12);
        font-size: 0.85rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
      }

      .day-stack {
        display: grid;
        gap: 10px;
        min-width: 0;
      }

      .schedule-day-content {
        overflow: visible;
      }

      .schedule-day-content[hidden] {
        display: none;
      }

      .class-block {
        width: 100%;
        min-width: 0;
        padding: 12px;
        border-radius: 16px;
        color: #2f261f;
        border: 1px solid rgba(91, 71, 52, 0.08);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
      }

      .class-block time {
        display: block;
        margin-bottom: 6px;
        font-size: 0.7rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        opacity: 0.88;
        overflow-wrap: anywhere;
      }

      .class-block strong {
        display: block;
        margin-bottom: 4px;
        font-size: 0.92rem;
        line-height: 1.2;
        overflow-wrap: anywhere;
      }

      .class-block span {
        display: block;
        font-size: 0.84rem;
        line-height: 1.4;
        color: rgba(47, 38, 31, 0.72);
        overflow-wrap: anywhere;
      }

      .tone-strength {
        background: #d8cbbf;
      }

      .tone-build {
        background: #c7d7e8;
      }

      .tone-endurance {
        background: #ddb7ab;
      }

      .tone-mobility {
        background: #c9dbc0;
      }

      .tone-bodyweight {
        background: #e1d4a8;
      }

      .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
        margin-top: 24px;
      }

      .pricing-shell {
        margin-top: 28px;
        display: grid;
        grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
        gap: 22px;
        align-items: stretch;
      }

      .pricing-story,
      .pricing-menu {
        padding: 28px;
        border-radius: 24px;
        border: 1px solid rgba(91, 71, 52, 0.1);
        box-shadow: none;
      }

      .pricing-story {
        background:
          linear-gradient(160deg, rgba(247, 238, 227, 0.96), rgba(235, 226, 212, 0.82));
      }

      .pricing-story h3,
      .pricing-menu h3 {
        margin: 0 0 14px;
        font-family: var(--serif);
        font-size: 1.7rem;
        font-weight: 500;
      }

      .pricing-story p,
      .pricing-menu p {
        margin: 0;
        color: var(--muted);
        line-height: 1.8;
      }

      .perk-note {
        margin-top: 22px;
        padding-top: 18px;
        border-top: 1px solid rgba(91, 71, 52, 0.12);
      }

      .booking-note {
        margin-top: 24px;
        padding: 20px;
        border-radius: 20px;
        background: rgba(255, 250, 244, 0.72);
        border: 1px solid rgba(91, 71, 52, 0.14);
        box-shadow: none;
      }

      .booking-note p {
        margin: 0;
      }

      .booking-button {
        display: inline-block;
        margin-top: 16px;
        padding: 14px 20px;
        border-radius: 999px;
        background: rgba(52, 40, 30, 0.92);
        color: #f8f3ec;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }

      .booking-button:hover,
      .booking-button:focus-visible {
        background: rgba(39, 30, 22, 0.96);
      }

      .perk-label {
        display: inline-block;
        margin-bottom: 10px;
        font-size: 0.76rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--accent-deep);
      }

      .pricing-menu {
        display: flex;
        flex-direction: column;
        background: rgba(255, 250, 244, 0.9);
      }

      .pricing-menu-intro {
        margin-top: 10px;
      }

      .pricing-plans {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        margin-top: 22px;
      }

      .plan-card {
        position: relative;
        display: flex;
        flex-direction: column;
        min-height: 100%;
        padding: 22px 20px;
        border-radius: 22px;
        border: 1px solid rgba(91, 71, 52, 0.1);
        background: rgba(247, 239, 230, 0.92);
      }

      .plan-card.featured {
        background: linear-gradient(180deg, rgba(232, 220, 204, 0.96), rgba(243, 234, 223, 0.92));
        border-color: rgba(140, 107, 82, 0.22);
      }

      .plan-card-sold-out {
        background: rgba(241, 234, 224, 0.72);
        border-color: rgba(91, 71, 52, 0.08);
      }

      .plan-card-sold-out::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(180deg, rgba(255, 252, 248, 0.12), rgba(222, 212, 198, 0.16));
        pointer-events: none;
      }

      .plan-card-sold-out > * {
        position: relative;
        z-index: 1;
      }

      .membership-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: fit-content;
        max-width: 100%;
        align-self: flex-end;
        margin: 24px 0 0;
        padding: 14px 18px;
        border-radius: 999px;
        background: rgba(52, 40, 30, 0.92);
        border: 1px solid rgba(52, 40, 30, 0.92);
        color: #f8f3ec;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        line-height: 1.35;
        text-transform: uppercase;
        transition:
          transform 180ms ease,
          background 180ms ease,
          opacity 180ms ease;
      }

      .membership-pill:hover,
      .membership-pill:focus-visible {
        background: rgba(41, 31, 23, 0.96);
        transform: translateY(-1px);
      }

      .plan-badge {
        align-self: flex-start;
        margin-bottom: 18px;
        padding: 7px 11px;
        border-radius: 999px;
        background: rgba(223, 209, 191, 0.76);
        color: var(--accent-deep);
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
      }

      .plan-badge.placeholder {
        visibility: hidden;
      }

      .plan-badge-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 18px;
        flex-wrap: wrap;
      }

      .plan-badge-row .plan-badge {
        margin-bottom: 0;
      }

      .plan-badge-sold-out {
        background: rgba(181, 112, 100, 0.14);
        color: #9d5e54;
        border: 1px solid rgba(181, 112, 100, 0.22);
      }

      .plan-price-line {
        display: flex;
        align-items: baseline;
        gap: 6px;
      }

      .plan-price {
        font-family: var(--serif);
        font-size: clamp(1.9rem, 4vw, 2.5rem);
        line-height: 1;
        letter-spacing: -0.04em;
      }

      .plan-unit {
        color: var(--muted);
        font-size: 0.92rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }

      .plan-name {
        margin: 16px 0 8px;
        font-size: 1.2rem;
        font-weight: 700;
      }

      .plan-copy {
        color: var(--muted);
        line-height: 1.65;
        font-size: 0.95rem;
      }

      .plan-meta {
        display: grid;
        gap: 10px;
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid rgba(91, 71, 52, 0.1);
      }

      .plan-meta strong {
        display: block;
        margin-bottom: 4px;
        font-size: 0.76rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--accent-deep);
      }

      .plan-meta span {
        display: block;
        color: var(--muted);
        line-height: 1.6;
        font-size: 0.94rem;
      }

      .plan-total {
        margin-top: auto;
        padding-top: 18px;
        font-size: 0.92rem;
        color: rgba(46, 38, 31, 0.82);
      }

      .plan-card-sold-out .plan-price,
      .plan-card-sold-out .plan-unit,
      .plan-card-sold-out .plan-name,
      .plan-card-sold-out .plan-copy,
      .plan-card-sold-out .plan-meta span,
      .plan-card-sold-out .plan-total {
        color: rgba(108, 93, 82, 0.72);
      }

      .plan-card-sold-out s {
        text-decoration-thickness: 1.5px;
        text-decoration-color: rgba(124, 93, 71, 0.5);
      }

      .location-shell {
        display: grid;
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        gap: 22px;
        margin-top: 28px;
      }

      .location-card,
      .map-card {
        padding: 28px;
        border-radius: 24px;
        border: 1px solid rgba(91, 71, 52, 0.1);
        background: rgba(255, 250, 244, 0.88);
        box-shadow: none;
      }

      .location-card h3 {
        margin: 0 0 14px;
        font-family: var(--serif);
        font-size: 1.7rem;
        font-weight: 500;
      }

      .location-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.8;
      }

      .location-meta {
        display: grid;
        gap: 14px;
        margin-top: 24px;
      }

      .location-meta strong {
        display: block;
        margin-bottom: 6px;
        font-size: 0.9rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
      }

      .location-link {
        display: inline-block;
        margin-top: 24px;
        padding: 13px 18px;
        border-radius: 999px;
        background: rgba(52, 40, 30, 0.92);
        color: #f8f3ec;
        font-size: 0.78rem;
        letter-spacing: 0.17em;
        text-transform: uppercase;
      }

      .map-card {
        padding: 0;
        overflow: hidden;
        min-height: 420px;
      }

      .map-card iframe {
        width: 100%;
        height: 100%;
        min-height: 420px;
        border: 0;
      }

      .team-card {
        position: relative;
        min-height: 400px;
        padding: 22px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        border-radius: 24px;
        overflow: hidden;
        background:
          linear-gradient(180deg, rgba(245, 236, 226, 0.18), rgba(53, 41, 31, 0.7)),
          var(--image) center/cover;
        color: #fff8f0;
      }

      .team-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(245, 236, 226, 0.12), rgba(53, 41, 31, 0.72));
        z-index: 1;
      }

      .team-card > * {
        position: relative;
        z-index: 2;
      }

      .team-card video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        z-index: 0;
      }

      .team-card small {
        font-size: 0.78rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        opacity: 0.8;
      }

      .team-card strong {
        margin-top: 10px;
        font-size: 1.4rem;
        font-family: var(--serif);
        font-weight: 500;
      }

      .team-card span {
        margin-top: 8px;
        line-height: 1.6;
        color: rgba(255, 248, 240, 0.86);
      }

      footer {
        padding: 20px 10px 10px;
        text-align: center;
        color: var(--muted);
        font-size: 0.9rem;
      }

      .reveal {
        opacity: 0;
        transform: translateY(28px);
        animation: revealUp 800ms ease forwards;
      }

      .delay-1 {
        animation-delay: 80ms;
      }

      @keyframes revealUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @media (max-width: 920px) {
        .hero-content,
        section {
          grid-template-columns: 1fr;
        }

        .hero-media {
          inset: 0;
        }

        .menu {
          gap: 12px 16px;
          justify-content: flex-end;
        }

        .menu .book-link {
          margin-top: 6px;
        }

        .list-grid,
        .pricing-shell {
          grid-template-columns: 1fr;
        }

        #classes > .section-card:last-child {
          padding: 20px;
        }

        .classes-highlight {
          margin-top: 24px;
        }

        #classes .list-grid {
          grid-template-columns: 1fr;
        }

        #classes .list-item {
          grid-template-columns: 1fr;
          gap: 8px;
        }

        .location-shell {
          grid-template-columns: 1fr;
        }

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

        .membership-pill {
          width: 100%;
          align-self: stretch;
          justify-content: center;
          text-align: center;
        }

        .map-card,
        .map-card iframe {
          min-height: 360px;
        }
      }

      @media (max-width: 1040px) and (min-width: 871px) {
        .schedule-grid {
          gap: 8px;
        }

        .schedule-day {
          padding: 10px;
          border-radius: 18px;
        }

        .schedule-day h3 {
          margin-bottom: 10px;
          padding-bottom: 8px;
          font-size: 0.78rem;
          letter-spacing: 0.1em;
        }

        .day-stack {
          gap: 8px;
        }

        .class-block {
          padding: 10px 9px;
          border-radius: 14px;
        }

        .class-block time {
          margin-bottom: 5px;
          font-size: 0.64rem;
          letter-spacing: 0.08em;
        }

        .class-block strong {
          margin-bottom: 3px;
          font-size: 0.8rem;
        }

        .class-block span {
          font-size: 0.74rem;
          line-height: 1.3;
        }
      }

      @media (max-width: 870px) {
        .page-shell {
          width: min(100% - 20px, 1180px);
          margin-top: 10px;
        }

        #personal-training {
          grid-template-columns: 1fr;
        }

        .hero-card,
        .section-card {
          padding: 20px;
          border-radius: 24px;
        }

        .personal-training-primary,
        .personal-training-secondary {
          width: 100%;
          max-width: 100%;
        }

        .personal-training-support-item {
          padding: 20px 18px;
        }

        .consultation-pill {
          width: 100%;
          justify-content: center;
          text-align: center;
        }

        .brand {
          font-size: 1.02rem;
          letter-spacing: 0.05em;
        }

        .topbar {
          align-items: center;
          flex-direction: row;
          justify-content: space-between;
        }

        .nav-toggle {
          display: inline-flex;
          flex-direction: column;
        }

        .mobile-book-link {
          display: inline-flex;
          align-items: center;
          justify-content: center;
        }

        .menu {
          position: absolute;
          top: calc(100% + 12px);
          left: 0;
          right: 0;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 14px;
          padding: 18px 18px 20px;
          border-radius: 20px;
          border: 1px solid rgba(91, 71, 52, 0.1);
          background: rgba(255, 248, 239, 0.96);
          font-size: 0.76rem;
          letter-spacing: 0.1em;
          justify-content: flex-start;
          z-index: 20;
          opacity: 0;
          visibility: hidden;
          pointer-events: none;
          transform: translateY(-10px);
          transition:
            opacity 180ms ease,
            transform 220ms ease,
            visibility 0s linear 220ms;
        }

        .menu.is-open {
          opacity: 1;
          visibility: visible;
          pointer-events: auto;
          transform: translateY(0);
          transition:
            opacity 180ms ease,
            transform 220ms ease,
            visibility 0s linear 0s;
        }

        .menu a {
          padding-bottom: 0;
        }

        .menu a::after {
          display: none;
        }

        .menu .book-link {
          display: none;
        }

        .hero-content {
          min-height: auto;
          padding-top: 34px;
          padding-bottom: 6px;
          gap: 20px;
        }

        .hero-media {
          border-radius: inherit;
          opacity: 0.42;
        }

        .hero-video {
          width: 100%;
          object-position: center center;
          transform: none;
        }

        h1 {
          font-size: clamp(3.1rem, 17vw, 4.6rem);
          max-width: 9.5ch;
        }

        .hero-copy {
          max-width: 100%;
        }

        .hero-notice {
          position: relative;
          top: auto;
          left: auto;
          width: min(100%, 420px);
          padding: 15px 16px 16px;
          border-radius: 24px;
        }

        .hero-notice-copy {
          max-width: none;
          font-size: 0.92rem;
          line-height: 1.66;
        }

        .hero-copy p {
          font-size: 1rem;
        }

        .hero-pill {
          flex: 1 1 180px;
        }

        .socials-shell {
          flex-direction: column;
          align-items: flex-start;
        }

        .socials-copy {
          white-space: normal;
        }

        .socials-pills {
          width: 100%;
          justify-content: flex-start;
        }

        .booking-button,
        .location-link {
          width: 100%;
          text-align: center;
        }

        .schedule-board {
          overflow: visible;
        }

        .schedule-grid {
          min-width: 0;
          grid-template-columns: 1fr;
        }

        .schedule-day,
        .pricing-story,
        .pricing-menu,
        .location-card {
          padding: 20px;
        }

        .schedule-day {
          min-height: 0;
          border-radius: 20px;
          padding: 0;
          overflow: hidden;
        }

        .schedule-day-toggle {
          position: relative;
          padding: 18px 20px;
          cursor: pointer;
        }

        .schedule-day-toggle::after {
          content: "+";
          position: absolute;
          right: 20px;
          top: 50%;
          transform: translateY(-50%);
          font-size: 1.1rem;
          font-weight: 600;
          color: var(--accent-deep);
        }

        .schedule-day.is-open .schedule-day-toggle::after {
          content: "-";
        }

        .schedule-day-toggle h3 {
          margin: 0;
          padding: 0;
          padding-right: 30px;
          border-bottom: 0;
          font-size: 0.88rem;
        }

        .day-stack {
          gap: 10px;
          padding: 0 20px 20px;
        }

        .schedule-day-content {
          overflow: visible;
        }

        .class-block {
          padding: 13px 14px;
        }

        .class-block time {
          font-size: 0.72rem;
        }

        .class-block strong {
          font-size: 0.96rem;
        }

        .class-block span {
          font-size: 0.9rem;
        }

        .team-card {
          min-height: 400px;
        }

        .map-card,
        .map-card iframe {
          min-height: 300px;
        }
      }
