    :root {
      --yellow: #fff218;
      --yellow-soft: #fffbd2;
      --white: #ffffff;
      --bg: #fbfbf7;
      --surface: #ffffff;
      --surface-soft: #f7f7f1;
      --line: #ebebe1;
      --text: #111111;
      --muted: #5f5f57;
      --green: #25d366;
      --shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
      --heading: "Archivo", sans-serif;
      --body: "Manrope", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--body);
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(255, 242, 24, 0.16), transparent 24%),
        linear-gradient(180deg, #fffef9 0%, var(--bg) 100%);
    }
    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }

    .container { width: min(calc(100% - 2rem), 1120px); margin: 0 auto; }
    .client-container { width: min(calc(100% - 2rem), 1380px); }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(251, 251, 247, 0.93);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(17, 17, 17, 0.05);
    }
    .header-inner {
      min-height: 96px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.9rem;
      flex: none;
    }
    .brand-mark {
      width: 88px;
      height: 64px;
      border-radius: 20px;
      background: transparent;
      display: grid;
      place-items: center;
      overflow: hidden;
      border: 1px solid rgba(17, 17, 17, 0.08);
      padding: 0;
    }
    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
      transform: scale(1.5);
      transform-origin: center;
    }
    .brand-copy strong {
      display: block;
      font-family: var(--heading);
      font-size: 1.15rem;
      letter-spacing: 0.04em;
    }
    .brand-copy span {
      display: none;
      color: var(--muted);
      font-size: 0.8rem;
    }

    .nav {
      display: none;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .nav a, .nav details summary {
      color: #202020;
      font-size: 0.94rem;
      font-weight: 700;
      list-style: none;
      cursor: pointer;
    }
    .nav-service-group {
      position: relative;
      display: inline-flex;
      align-items: center;
    }
    .nav-service-group:hover .dropdown,
    .nav-service-group:focus-within .dropdown,
    .dropdown:hover { display: grid; }
    .nav details summary::-webkit-details-marker { display: none; }
    .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      padding: 0.55rem;
      border-radius: 18px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      display: none;
      gap: 0.25rem;
      z-index: 80;
    }
    .dropdown a { padding: 0.75rem 0.8rem; border-radius: 12px; }
    .dropdown a:hover { background: var(--yellow-soft); }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      flex: none;
    }
    .header-socials { display: flex; align-items: center; gap: 0.45rem; }
    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--white);
      border: 1px solid var(--line);
    }
    .social-link svg { width: 18px; height: 18px; fill: currentColor; }
    .lang-switch {
      display: inline-flex;
      padding: 0.24rem;
      border-radius: 999px;
      background: var(--white);
      border: 1px solid var(--line);
    }
    .lang-switch a {
      padding: 0.48rem 0.75rem;
      border-radius: 999px;
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 900;
    }
    .lang-switch a.active {
      background: var(--yellow);
      color: var(--text);
    }
    .client-access-btn {
      min-height: 46px;
      padding: 0.78rem 1rem;
      border-radius: 999px;
      border: 1px solid rgba(17, 17, 17, 0.08);
      background: var(--yellow);
      font-size: 0.84rem;
      font-weight: 900;
      white-space: nowrap;
    }
    .mobile-nav {
      display: inline-flex;
      position: relative;
    }
    .mobile-nav summary {
      list-style: none;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      border: 1px solid rgba(17, 17, 17, 0.08);
      background: var(--white);
      display: grid;
      place-items: center;
      cursor: pointer;
      font-size: 1.2rem;
      font-weight: 900;
    }
    .mobile-nav summary::-webkit-details-marker { display: none; }
    .mobile-nav-panel {
      position: absolute;
      top: calc(100% + 0.7rem);
      right: 0;
      width: min(88vw, 290px);
      padding: 0.8rem;
      border-radius: 22px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      display: grid;
      gap: 0.35rem;
    }
    .mobile-nav-panel a {
      padding: 0.82rem 0.9rem;
      border-radius: 14px;
      font-weight: 800;
    }
    .mobile-nav-panel a:hover { background: var(--yellow-soft); }
    .mobile-submenu { display:grid; gap:.35rem; }
    .mobile-submenu summary { list-style:none; padding:.82rem .9rem; border-radius:14px; font-weight:800; display:flex; align-items:center; justify-content:space-between; cursor:pointer; }
    .mobile-submenu summary::-webkit-details-marker { display:none; }
    .mobile-submenu[open] summary, .mobile-submenu summary:hover { background: var(--yellow-soft); }
    .mobile-submenu-panel { display:grid; gap:.3rem; padding:0 .35rem .15rem .8rem; }
    .mobile-submenu-panel a { padding:.74rem .82rem; border-radius:12px; font-size:.92rem; }

    .section, .hero { padding: 1rem 0; }
    .shell {
      padding: 1.35rem;
      border-radius: 34px;
      background: transparent;
      border: 1px solid rgba(17, 17, 17, 0.08);
    }
    .auth-register-shell {
      max-width: 1120px;
      margin: 0 auto;
    }
    .auth-shell {
      max-width: 1320px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
    }
    h1, h2, h3 {
      margin: 0;
      font-family: var(--heading);
      line-height: .98;
      letter-spacing: -.03em;
    }
    .kicker {
      color: #4f4a00;
      font-size: .8rem;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .hero-grid,
    .portal-grid,
    .admin-grid,
    .feature-grid {
      display: grid;
      gap: 1rem;
    }
    .hero-grid.logged-in {
      grid-template-columns: 1fr;
    }
    .hero-grid.logged-in .hero-copy-inner {
      max-width: 1000px;
    }
    .hero-grid.logged-in .hero-copy {
      align-content: start;
    }
    .hero-grid.logged-in .hero-copy .kicker,
    .hero-grid.logged-in .hero-copy h1,
    .hero-grid.logged-in .hero-copy p,
    .hero-grid.logged-in .hero-copy .cta-row {
      max-width: 100%;
    }
    .hero-grid.logged-in .hero-copy h1 {
      max-width: 11ch;
      font-size: clamp(3.2rem, 6vw, 5.4rem);
    }
    .hero-grid.logged-in .login-card {
      margin-top: .5rem;
    }
    .hero h1 {
      font-size: clamp(3rem, 6vw, 5.8rem);
      max-width: 12ch;
    }
    .hero p,
    .section p,
    .footer-shell p,
    .footer-shell a {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
    }
    .hero-copy,
    .section-heading {
      display: grid;
      gap: .9rem;
    }
    .cta-row,
    .mini-actions,
    .portal-actions,
    .admin-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: .88rem 1.18rem;
      border-radius: 999px;
      font-size: .94rem;
      font-weight: 900;
    }
    .btn-primary { background: var(--yellow); }
    .btn-secondary { background: var(--white); border: 1px solid var(--line); }

    .panel-card,
    .feature-card,
    .admin-card,
    .summary-card,
    .login-card {
      border-radius: 28px;
      border: 1px solid var(--line);
      background: var(--surface);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.035);
    }
    .login-card,
    .admin-card {
      padding: 1rem;
      display: grid;
      gap: .9rem;
      background: linear-gradient(180deg, #fffef9 0%, #ffffff 100%);
    }
    .login-card {
      position: relative;
      overflow: hidden;
      padding: .8rem;
      background: #ffffff;
    }
    .auth-shell .login-card {
      width: min(100%, 1160px);
      margin: 0 auto;
    }
    .auth-stage {
      display: grid;
      gap: 0;
      min-height: 620px;
      width: min(100%, 1120px);
      margin: 0 auto;
      border-radius: 32px;
      overflow: hidden;
      background: #ffffff;
      border: 1px solid rgba(17, 17, 17, 0.12);
      box-shadow: 0 18px 46px rgba(17, 17, 17, 0.08);
    }
    .auth-left {
      position: relative;
      display: grid;
      align-content: stretch;
      overflow: hidden;
      background: #ffffff;
    }
    .auth-left-glow {
      position: absolute;
      inset: auto;
      width: 420px;
      height: 420px;
      border-radius: 999px;
      pointer-events: none;
      background: radial-gradient(circle, rgba(255,242,24,0.18) 0%, rgba(255,255,255,0) 68%);
      filter: blur(18px);
      opacity: 0;
      transform: translate(-50%, -50%);
      transition: opacity .22s ease;
      z-index: 0;
    }
    .auth-left.is-hovering .auth-left-glow {
      opacity: 1;
    }
    .auth-grid-lines {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(17,17,17,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,17,17,0.04) 1px, transparent 1px);
      background-size: 22px 22px;
      pointer-events: none;
      z-index: 0;
    }
    .auth-form-wrap {
      position: relative;
      z-index: 1;
      height: 100%;
      display: grid;
      gap: 1rem;
      padding: 1.5rem;
      align-content: center;
      justify-items: center;
      text-align: center;
    }
    .auth-form-inner {
      width: min(100%, 940px);
      margin: 0 auto;
      display: grid;
      gap: 1rem;
    }
    .auth-form-card {
      width: 100%;
      padding: 1.45rem;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(17, 17, 17, 0.1);
      box-shadow: 0 16px 34px rgba(17, 17, 17, 0.06);
    }
    .auth-shell-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .8rem;
    }
    .auth-mini-label {
      color: rgba(17, 17, 17, 0.58);
      font-size: .72rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-weight: 900;
    }
    .auth-dot-row {
      display: inline-flex;
      gap: .38rem;
      align-items: center;
    }
    .auth-dot-row i {
      width: 7px;
      height: 7px;
      display: inline-block;
      border-radius: 999px;
      background: rgba(17,17,17,0.18);
    }
    .auth-dot-row i:nth-child(1) { background: #fff200; }
    .auth-dot-row i:nth-child(2) { background: #ff4aa2; }
    .auth-dot-row i:nth-child(3) { background: #5ca8ff; }
    .auth-heading {
      gap: .55rem;
      justify-items: center;
      text-align: center;
    }
    .auth-form-wrap .section-heading p {
      max-width: 56ch;
      color: rgba(17,17,17,0.68);
    }
    .auth-form-wrap .section-heading h2 {
      color: #111111;
    }
    .auth-form-wrap .kicker {
      font-size: .76rem;
      color: #111111;
    }
    .auth-switch-wrap {
      display: grid;
      gap: .45rem;
      justify-items: start;
    }
    .auth-switch-caption {
      color: rgba(17,17,17,0.48);
      font-size: .86rem;
      line-height: 1.45;
    }
    .auth-form-shell {
      display: grid;
      gap: .95rem;
    }
    .auth-right {
      position: relative;
      min-height: 320px;
      overflow: hidden;
      display: grid;
      place-items: center;
      background:
        linear-gradient(rgba(17,17,17,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,17,17,0.05) 1px, transparent 1px),
        #ffffff;
      background-size: 28px 28px, 28px 28px, auto;
      border-left: 1px solid rgba(17,17,17,0.08);
    }
    .auth-image-placeholder {
      position: relative;
      z-index: 1;
      width: min(100%, 420px);
      aspect-ratio: 4 / 5;
      border-radius: 34px;
      border: 1px solid rgba(17, 17, 17, 0.14);
      background: #ffffff;
      display: grid;
      place-items: center;
      padding: 1.8rem;
      text-align: center;
      box-shadow: 0 16px 34px rgba(17, 17, 17, 0.06);
    }
    .auth-image-placeholder span {
      display: grid;
      gap: .5rem;
      color: rgba(17, 17, 17, 0.7);
    }
    .auth-image-placeholder strong {
      font-family: var(--heading);
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      letter-spacing: -.02em;
      line-height: 1;
    }
    .auth-image-placeholder small {
      color: rgba(17, 17, 17, 0.72);
      font-size: .95rem;
      line-height: 1.65;
    }
    .auth-form-wrap .portal-actions {
      justify-content: flex-start;
    }
    .auth-form-shell,
    .register-steps,
    .register-step,
    .register-grid,
    .login-form,
    .login-field,
    .password-strength,
    .form-help {
      text-align: left;
    }
    .auth-photo-panel {
      align-content: center;
      justify-items: center;
    }
    .auth-photo-frame {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 28px;
      border: 1.5px dashed rgba(17, 17, 17, 0.22);
      background:
        linear-gradient(rgba(17,17,17,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,17,17,0.03) 1px, transparent 1px),
        #faf9f4;
      background-size: 24px 24px, 24px 24px, auto;
      display: grid;
      place-items: center;
      padding: 1.4rem;
      overflow: hidden;
    }
    .auth-photo-frame::before {
      content: "";
      position: absolute;
      inset: 1.4rem;
      border-radius: 22px;
      background:
        linear-gradient(135deg, rgba(17,17,17,0.06), rgba(17,17,17,0) 38%),
        linear-gradient(0deg, rgba(255,255,255,0.7), rgba(255,255,255,0.7));
      box-shadow: inset 0 0 0 1px rgba(17,17,17,0.08);
    }
    .auth-photo-copy {
      position: relative;
      z-index: 1;
      display: grid;
      gap: .8rem;
      justify-items: center;
      max-width: 260px;
      text-align: center;
    }
    .auth-photo-copy strong {
      font-family: var(--heading);
      font-size: clamp(1.45rem, 2.6vw, 1.95rem);
      line-height: 1.05;
      color: #111111;
    }
    .auth-photo-copy small {
      display: block;
      color: rgba(17,17,17,0.72);
      font-size: .95rem;
      line-height: 1.65;
    }
    .auth-photo-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 22px;
    }
    .interactive-auth .login-field {
      position: relative;
      padding: 0;
      border-radius: 24px;
      transition: transform .22s ease;
    }
    .interactive-auth .login-field:hover {
      transform: translateY(-1px);
    }
    .auth-switch {
      display: inline-flex;
      flex-wrap: wrap;
      align-items: stretch;
      padding: .35rem;
      gap: .35rem;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid rgba(17, 17, 17, 0.1);
      width: fit-content;
    }
    .auth-switch a,
    .auth-switch button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 42px;
      border: 0;
      background: transparent;
      padding: .72rem 1rem;
      border-radius: 999px;
      font-size: .88rem;
      font-weight: 900;
      color: rgba(17,17,17,0.56);
      cursor: pointer;
    }
    .auth-switch a.active,
    .auth-switch button.active {
      background: linear-gradient(90deg, #fff200 0%, #ff8c2f 100%);
      color: #111111;
      box-shadow: 0 10px 25px rgba(255, 196, 0, 0.22);
    }
    .login-form {
      display: grid;
      gap: 1rem;
    }
    .register-grid {
      display: grid;
      gap: 1rem;
    }
    .login-field {
      display: grid;
      gap: .45rem;
    }
    .password-row {
      display: grid;
      grid-column: 1 / -1;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .85rem;
      align-items: start;
    }
    .login-field label {
      font-size: .78rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: rgba(17,17,17,0.7);
    }
    .login-field-password label {
      min-height: 3.6rem;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      line-height: 1.2;
      text-align: center;
    }
    .login-fake-input {
      border-radius: 18px;
      border: 1px solid var(--line);
      background: #fbfbf7;
      padding: .92rem 1rem;
      color: var(--muted);
      font-weight: 700;
    }
    .login-input {
      width: 100%;
      border-radius: 18px;
      border: 1px solid rgba(17,17,17,0.1);
      background: #ffffff;
      min-height: 52px;
      padding: .95rem 1rem;
      color: #111111;
      font-weight: 700;
      line-height: 1.35;
      outline: none;
      box-shadow: none;
    }
    .login-input::placeholder {
      color: rgba(17,17,17,0.28);
    }
    .login-input:focus {
      border-color: #fff218;
      box-shadow: 0 0 0 3px rgba(255, 242, 24, 0.22);
      background: #ffffff;
    }
    .password-shell {
      position: relative;
      width: 100%;
    }
    .password-shell .login-input {
      padding-right: 4.9rem;
    }
    .password-toggle {
      position: absolute;
      top: 50%;
      right: .75rem;
      transform: translateY(-50%);
      width: auto;
      max-width: 60px;
      min-width: 44px;
      min-height: 36px;
      padding: .35rem .6rem;
      border-radius: 999px;
      border: 1px solid rgba(17, 17, 17, 0.1);
      background: transparent;
      color: #111111;
      font-size: .8rem;
      font-weight: 900;
      cursor: pointer;
      white-space: nowrap;
      flex: 0 0 auto;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    }
    .password-toggle:hover {
      transform: translateY(-50%);
      box-shadow: none;
      background: rgba(255, 242, 24, 0.18);
    }
    .password-toggle:focus-visible {
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 242, 24, 0.22);
    }
    .password-strength {
      display: grid;
      gap: .35rem;
      margin-top: .2rem;
    }
    .password-strength-bar {
      height: 8px;
      border-radius: 999px;
      background: rgba(17,17,17,0.08);
      overflow: hidden;
    }
    .password-strength-fill {
      width: 0;
      height: 100%;
      border-radius: 999px;
      background: #d0cbc0;
      transition: width .22s ease, background .22s ease;
    }
    .password-strength-text {
      color: rgba(17,17,17,0.54);
      font-size: .8rem;
      font-weight: 800;
    }
    .password-confirm-spacer {
      min-height: 4.8rem;
    }
    .remember-check {
      display: flex;
      align-items: center;
      gap: .7rem;
      padding: .2rem 0;
      color: rgba(17,17,17,0.78);
      font-size: .94rem;
      font-weight: 700;
      line-height: 1.45;
    }
    .remember-check input {
      width: 18px;
      height: 18px;
      accent-color: #ff4aa2;
      flex: 0 0 auto;
    }
    .login-select {
      width: 100%;
      border-radius: 18px;
      border: 1px solid rgba(17,17,17,0.1);
      background: #ffffff;
      min-height: 52px;
      padding: .95rem 1rem;
      color: #111111;
      font-weight: 700;
      line-height: 1.35;
      outline: none;
      appearance: none;
    }
    .login-select:focus {
      border-color: #fff218;
      box-shadow: 0 0 0 3px rgba(255, 242, 24, 0.22);
      background: #ffffff;
    }
    .login-tip {
      padding: .85rem .95rem;
      border-radius: 18px;
      background: var(--yellow-soft);
      border: 1px solid rgba(17, 17, 17, 0.06);
      color: #3c3600;
      font-size: .93rem;
      line-height: 1.55;
      font-weight: 700;
    }
    .login-alert {
      padding: .9rem 1rem;
      border-radius: 18px;
      border: 1px solid rgba(177, 36, 36, 0.12);
      background: #fff1f1;
      color: #8f2020;
      font-size: .92rem;
      font-weight: 800;
      line-height: 1.55;
    }
    .auth-verification-card {
      width: min(100%, 580px);
      margin: 0 auto;
      display: grid;
      justify-items: center;
      gap: 1rem;
      padding: clamp(1.25rem, 3vw, 2rem);
      border: 1px solid rgba(17, 17, 17, .1);
      border-radius: 24px;
      background: #ffffff;
      text-align: center;
    }
    .auth-verification-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: #dff6e6;
      color: #16733d;
      font-size: 1.55rem;
      font-weight: 900;
    }
    .auth-verification-copy {
      display: grid;
      gap: .55rem;
    }
    .auth-verification-copy h3,
    .auth-change-email-form h4 {
      margin: 0;
      font-family: var(--heading);
      color: #111111;
    }
    .auth-verification-copy p,
    .auth-verification-change span {
      margin: 0;
      color: var(--muted);
      line-height: 1.55;
    }
    .auth-verification-email {
      max-width: 100%;
      overflow-wrap: anywhere;
      padding: .7rem .9rem;
      border-radius: 14px;
      background: var(--yellow-soft);
      color: #111111;
      font-size: .98rem;
    }
    .auth-verification-actions,
    .auth-change-email-form {
      width: 100%;
      display: grid;
      gap: .75rem;
    }
    .auth-verification-actions .btn {
      width: 100%;
    }
    .auth-verification-actions .btn:disabled {
      cursor: not-allowed;
      opacity: .62;
    }
    .auth-verification-change {
      display: grid;
      gap: .2rem;
      justify-items: center;
      font-size: .9rem;
    }
    .auth-verification-change a {
      color: #4f4a00;
      font-weight: 900;
      text-decoration: underline;
      text-underline-offset: .18em;
    }
    .auth-change-email-form {
      padding-top: 1rem;
      border-top: 1px solid var(--line);
      text-align: left;
    }
    .auth-change-email-form .portal-actions {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 10px;
      justify-content: stretch;
    }
    .auth-change-email-form .portal-actions .btn {
      width: 100%;
      min-height: 0;
      height: 54px;
      padding: .65rem 1rem;
      flex: none;
    }
    .auth-change-email-form .portal-actions .btn-secondary {
      height: 50px;
    }
    .mini-benefits {
      display: flex;
      flex-wrap: wrap;
      gap: .55rem;
    }
    .mini-benefits span {
      padding: .55rem .78rem;
      border-radius: 999px;
      background: var(--yellow-soft);
      border: 1px solid rgba(17, 17, 17, 0.06);
      font-size: .85rem;
      font-weight: 800;
    }
    .tiny-link {
      color: #ffd858;
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: .14em;
      cursor: pointer;
    }
    .auth-helper-links {
      display: flex;
      flex-wrap: wrap;
      gap: .8rem 1rem;
      align-items: center;
      justify-content: center;
    }
    .auth-stage,
    .hero-copy {
      animation: authFadeUp .65s cubic-bezier(.16, 1, .3, 1);
    }
    .summary-grid {
      display: grid;
      gap: .85rem;
    }
    .summary-card {
      padding: 1rem;
      display: grid;
      gap: .35rem;
      background: var(--surface-soft);
    }
    .summary-card strong {
      font-family: var(--heading);
      font-size: 1.1rem;
    }
    .summary-card span {
      color: var(--muted);
      font-size: .92rem;
      line-height: 1.6;
    }
    .stat-grid {
      display: grid;
      gap: .85rem;
    }
    .stat-card {
      padding: 1rem;
      border-radius: 22px;
      background: var(--surface);
      border: 1px solid var(--line);
    }
    .stat-card span {
      color: var(--muted);
      font-size: .84rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .06em;
    }
    .stat-card strong {
      display: block;
      margin-top: .35rem;
      font-family: var(--heading);
      font-size: 1.65rem;
    }
    .section-heading h2 {
      font-size: clamp(2.2rem, 4.2vw, 3.8rem);
      max-width: 13ch;
    }
    .list {
      margin: 0;
      padding-left: 1.15rem;
      display: grid;
      gap: .55rem;
    }
    .list li {
      line-height: 1.55;
    }
    .portal-note,
    .security-note {
      padding: .85rem 1rem;
      border-radius: 18px;
      background: var(--yellow-soft);
      border: 1px solid rgba(17, 17, 17, 0.05);
      color: #3c3600;
      font-weight: 700;
      line-height: 1.55;
      font-size: .94rem;
    }
    .feature-card,
    .admin-card {
      padding: 1rem;
      display: grid;
      gap: .8rem;
      background: var(--surface-soft);
    }
    .feature-card h3,
    .admin-card h3 {
      font-size: 1.22rem;
    }
    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: var(--yellow-soft);
      border: 1px solid rgba(17, 17, 17, 0.05);
      color: #4f4a00;
    }
    .feature-icon svg {
      width: 22px;
      height: 22px;
      fill: currentColor;
    }
    .admin-stats {
      display: grid;
      gap: .8rem;
    }
    .admin-list {
      margin: 0;
      padding-left: 1.1rem;
      display: grid;
      gap: .5rem;
    }
    .admin-list li { line-height: 1.55; }
    .admin-user-grid {
      display: grid;
      gap: 1rem;
    }
    .admin-user-card {
      padding: 1.1rem;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #fffef8 0%, #ffffff 100%);
      display: grid;
      gap: .85rem;
    }
    .admin-user-head {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .admin-user-head strong {
      font-size: 1.08rem;
      font-family: var(--heading);
    }
    .admin-user-head span {
      display: block;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.55;
    }
    .admin-user-meta {
      display: grid;
      gap: .65rem;
    }
    .admin-user-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .65rem;
    }
    .admin-stat {
      padding: .85rem .95rem;
      border-radius: 18px;
      background: var(--surface-soft);
      border: 1px solid rgba(17, 17, 17, 0.05);
      display: grid;
      gap: .18rem;
    }
    .admin-stat span {
      color: #615d44;
      font-size: .76rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .admin-stat strong {
      font-size: .95rem;
      overflow-wrap: anywhere;
    }
    .admin-user-note {
      padding: .9rem 1rem;
      border-radius: 18px;
      background: var(--yellow-soft);
      border: 1px solid rgba(17, 17, 17, 0.06);
      color: #3c3600;
      font-size: .9rem;
      line-height: 1.6;
      font-weight: 700;
    }
    .dashboard-shell {
      display: grid;
      gap: 1rem;
    }
    .client-portal-layout {
      display: grid;
      gap: 1rem;
      align-items: start;
    }
    .client-sidebar {
      display: grid;
      gap: .9rem;
      padding: 1rem;
      border-radius: 28px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #2f3138 0%, #22242a 100%);
      color: #ffffff;
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
    }
    .client-avatar {
      display: grid;
      gap: .6rem;
      justify-items: center;
      text-align: center;
      padding-bottom: .8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .client-avatar-mark {
      width: 84px;
      height: 84px;
      border-radius: 26px;
      display: grid;
      place-items: center;
      background: #ffffff;
      color: #1b1d22;
      box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
    }
    .client-avatar-mark svg {
      width: 40px;
      height: 40px;
      fill: currentColor;
    }
    .client-avatar strong {
      font-family: var(--heading);
      font-size: 1rem;
    }
    .client-avatar span {
      color: rgba(255, 255, 255, 0.72);
      font-size: .82rem;
      line-height: 1.5;
    }
    .client-avatar-plan,
    .client-avatar-chevron {
      display: none;
    }
    @keyframes authFadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @keyframes authSlideIn {
      from {
        opacity: 0;
        transform: translateX(28px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    .client-side-nav {
      display: grid;
      gap: .45rem;
    }
    .client-side-nav button,
    .client-side-nav a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .8rem;
      min-height: 46px;
      padding: .78rem .88rem;
      border-radius: 16px;
      color: #ffffff;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.06);
      font-size: .9rem;
      font-weight: 800;
      text-align: left;
      cursor: pointer;
    }
    .client-side-nav button small,
    .client-side-nav a small {
      color: rgba(255, 255, 255, 0.62);
      font-size: .76rem;
      font-weight: 700;
    }
    .client-side-nav button:hover,
    .client-side-nav a:hover,
    .client-side-nav button.is-active {
      background: rgba(255, 242, 24, 0.14);
      border-color: rgba(255, 242, 24, 0.2);
    }
    .client-side-actions {
      display: grid;
      gap: .55rem;
    }
    .client-side-actions .btn-secondary {
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
      border-color: rgba(255, 255, 255, 0.12);
    }
    .client-main {
      display: grid;
      gap: 1rem;
      min-width: 0;
    }
    .client-content-panel {
      display: none;
    }
    .client-content-panel.is-active {
      display: grid;
      gap: 1rem;
    }
    .member-hero {
      display: grid;
      gap: 1rem;
    }
    .dashboard-header {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .dashboard-header h2 {
      margin: 0;
      font-size: clamp(1.8rem, 3vw, 2.7rem);
    }
    .dashboard-subtitle {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
      max-width: 58ch;
    }
    .dashboard-grid {
      display: grid;
      gap: .9rem;
    }
    .dashboard-panel {
      border-radius: 24px;
      border: 1px solid var(--line);
      background: var(--surface-soft);
      padding: 1.1rem;
      display: grid;
      gap: .7rem;
    }
    .dashboard-panel h3 {
      margin: 0;
      font-size: 1.05rem;
      font-family: var(--heading);
    }
    .dashboard-panel p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }
    .dashboard-panel strong {
      font-family: var(--heading);
      font-size: 1.7rem;
    }
    .dashboard-list {
      margin: 0;
      padding-left: 1.1rem;
      display: grid;
      gap: .45rem;
    }
    .dashboard-list li {
      line-height: 1.55;
    }
    .dashboard-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
    }
    .dashboard-stack {
      display: grid;
      gap: .9rem;
    }
    .dashboard-badge {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      width: fit-content;
      padding: .55rem .8rem;
      border-radius: 999px;
      background: var(--yellow-soft);
      border: 1px solid rgba(17, 17, 17, 0.06);
      font-size: .84rem;
      font-weight: 900;
      color: #4f4a00;
    }
    .dashboard-meta {
      display: flex;
      flex-wrap: wrap;
      gap: .6rem;
    }
    .dashboard-meta span {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: .55rem .78rem;
      border-radius: 999px;
      background: var(--white);
      border: 1px solid var(--line);
      font-size: .82rem;
      font-weight: 800;
      color: #37372f;
    }
    .member-top-grid {
      display: grid;
      gap: 1.1rem;
      align-items: start;
    }
    .member-top-card {
      padding: 1.35rem;
      border-radius: 28px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #fffef8 0%, #ffffff 100%);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.035);
      display: grid;
      gap: 1rem;
      align-content: start;
    }
    .member-top-card h1 {
      margin: 0;
      max-width: 14ch;
      font-size: clamp(2.35rem, 3.2vw, 3.3rem);
      line-height: 1;
      overflow-wrap: anywhere;
    }
    .member-top-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      max-width: 56ch;
    }
    .member-top-side {
      display: grid;
      gap: 1rem;
      align-content: start;
      min-width: 0;
    }
    .member-kpi-grid {
      display: grid;
      gap: .8rem;
    }
    .member-kpi-grid.top-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .member-kpi {
      min-height: 182px;
      padding: 1rem;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #fffef7 0%, #ffffff 100%);
      display: grid;
      gap: .35rem;
      align-content: start;
    }
    .member-kpi span {
      color: #615d44;
      font-size: .78rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .member-kpi strong {
      display: block;
      font-family: var(--heading);
      font-size: clamp(1.25rem, 1.9vw, 1.8rem);
      line-height: 1.08;
      overflow-wrap: anywhere;
    }
    .member-kpi.value-compact strong {
      font-size: clamp(1.12rem, 1.45vw, 1.42rem);
      line-height: 1.14;
    }
    .member-kpi p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }
    .member-kpi-wide {
      grid-column: 1 / -1;
    }
    .member-kpi.kpi-renew strong {
      font-size: clamp(1.08rem, 1.5vw, 1.32rem);
      line-height: 1.18;
    }
    .member-grid {
      display: grid;
      gap: 1rem;
    }
    .member-grid-single {
      grid-template-columns: minmax(0, 1fr);
    }
    .membership-dashboard {
      display: grid;
      gap: 1rem;
    }
    .membership-spotlight {
      display: grid;
      gap: 1rem;
      padding: 1.2rem;
      border-radius: 28px;
      border: 1px solid rgba(17, 17, 17, 0.06);
      background:
        radial-gradient(circle at top left, rgba(255, 242, 24, 0.22), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #fffef6 100%);
      box-shadow: 0 12px 30px rgba(17, 17, 17, 0.05);
    }
    .membership-spotlight-top,
    .membership-insight-grid {
      min-width: 0;
    }
    .membership-spotlight-top {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .membership-spotlight-copy {
      display: grid;
      gap: .32rem;
    }
    .membership-spotlight-copy h3 {
      font-size: clamp(1.5rem, 2.3vw, 2.25rem);
      line-height: 1;
    }
    .membership-spotlight-copy p {
      max-width: 56ch;
    }
    .membership-insight-grid {
      display: grid;
      gap: .85rem;
    }
    .membership-insight {
      padding: 1rem;
      border-radius: 22px;
      border: 1px solid rgba(17, 17, 17, 0.06);
      background: rgba(255, 255, 255, 0.92);
      display: grid;
      gap: .32rem;
    }
    .membership-insight span {
      color: #615d44;
      font-size: .78rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .membership-insight strong {
      font-size: 1.35rem;
      line-height: 1.1;
    }
    .member-primary-stack,
    .member-side-stack {
      display: grid;
      gap: 1rem;
      align-content: start;
    }
    .member-split-grid {
      display: grid;
      gap: .9rem;
    }
    .member-card {
      padding: 1.2rem;
      border-radius: 26px;
      border: 1px solid var(--line);
      background: var(--surface);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.035);
      display: grid;
      gap: .85rem;
    }
    .member-card.section-tight {
      gap: .65rem;
    }
    .member-card h3 {
      margin: 0;
      font-size: 1.1rem;
      font-family: var(--heading);
    }
    .member-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }
    .member-card strong {
      font-family: var(--heading);
    }
    .profile-disclosure {
      display: grid;
      gap: .85rem;
    }
    .profile-disclosure summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .8rem;
      cursor: pointer;
      padding: .95rem 1rem;
      border-radius: 20px;
      background: var(--surface-soft);
      border: 1px solid rgba(17, 17, 17, 0.06);
    }
    .profile-disclosure summary::-webkit-details-marker {
      display: none;
    }
    .profile-summary-copy {
      display: flex;
      align-items: center;
      gap: .8rem;
      min-width: 0;
    }
    .profile-summary-copy strong {
      font-size: 1rem;
    }
    .profile-summary-copy span {
      display: block;
      color: var(--muted);
      font-size: .88rem;
      line-height: 1.5;
    }
    .profile-toggle {
      font-size: 1.2rem;
      font-weight: 900;
      color: #3f3b24;
      transition: transform .2s ease;
      flex: 0 0 auto;
    }
    .profile-disclosure[open] .profile-toggle {
      transform: rotate(180deg);
    }
    .member-detail-list {
      display: grid;
      gap: .65rem;
    }
    .member-detail-item {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      padding: .8rem .95rem;
      border-radius: 18px;
      background: var(--surface-soft);
      border: 1px solid rgba(17, 17, 17, 0.05);
    }
    .member-detail-item span {
      color: var(--muted);
      font-size: .88rem;
      font-weight: 700;
    }
    .member-detail-item strong {
      font-size: .92rem;
      text-align: right;
    }
    .member-highlight {
      padding: 1rem;
      border-radius: 22px;
      background: linear-gradient(135deg, rgba(255, 242, 24, 0.28), rgba(255, 255, 255, 0.95));
      border: 1px solid rgba(17, 17, 17, 0.06);
      display: grid;
      gap: .45rem;
    }
    .member-highlight strong {
      font-size: 1rem;
    }
    .member-highlight p {
      color: #413d1f;
    }
    .member-action-grid {
      display: grid;
      gap: .75rem;
    }
    .member-action-tile {
      padding: 1rem;
      border-radius: 22px;
      background: var(--surface-soft);
      border: 1px solid var(--line);
      display: grid;
      gap: .45rem;
    }
    .member-action-tile strong {
      font-size: 1rem;
    }
    .member-action-tile p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }
    .member-timeline {
      display: grid;
      gap: .65rem;
    }
    .member-timeline-step {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: .8rem;
      align-items: start;
      padding: .9rem 0;
      border-bottom: 1px solid rgba(17, 17, 17, 0.06);
    }
    .member-timeline-step:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }
    .member-step-number {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      background: var(--yellow-soft);
      border: 1px solid rgba(17, 17, 17, 0.06);
      display: grid;
      place-items: center;
      font-size: .95rem;
      font-weight: 900;
      color: #4f4a00;
    }
    .member-step-copy {
      display: grid;
      gap: .22rem;
    }
    .member-step-copy strong {
      font-size: .98rem;
    }
    .member-step-copy p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }
    .promo-grid {
      display: grid;
      gap: .75rem;
    }
    .promo-card {
      padding: .95rem 1rem;
      border-radius: 20px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #fffef4 0%, #ffffff 100%);
      display: grid;
      gap: .55rem;
      align-content: start;
    }
    .promo-card strong {
      font-family: var(--heading);
      font-size: 1.02rem;
    }
    .promo-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }
    .promo-card .btn {
      width: fit-content;
      min-width: 0;
    }
    .benefit-stack {
      display: grid;
      gap: .7rem;
    }
    .benefit-overview {
      display: grid;
      gap: 1rem;
      padding: 1.1rem;
      border-radius: 22px;
      border: 1px solid rgba(17, 17, 17, 0.06);
      background: linear-gradient(180deg, #fffdf3 0%, #fff 100%);
      box-shadow: 0 12px 26px rgba(17, 17, 17, 0.05);
    }
    .benefit-overview-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .benefit-overview-copy {
      display: grid;
      gap: .2rem;
    }
    .benefit-overview-copy strong {
      font-size: 1.08rem;
    }
    .benefit-overview-copy span {
      color: var(--muted);
      font-size: .92rem;
      line-height: 1.6;
    }
    .benefit-cards-grid {
      display: grid;
      gap: .85rem;
    }
    .benefit-card {
      padding: 1rem 1.05rem;
      border-radius: 20px;
      border: 1px solid rgba(17, 17, 17, 0.06);
      background: #ffffff;
      display: grid;
      gap: .35rem;
      align-content: start;
    }
    .benefit-card strong {
      font-size: 1rem;
    }
    .benefit-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.62;
      font-size: .92rem;
    }
    .benefit-accordion {
      display: grid;
      gap: .8rem;
      padding: 1rem;
      border-radius: 22px;
      border: 1px solid rgba(17, 17, 17, 0.06);
      background: linear-gradient(180deg, #fffdf3 0%, #fff 100%);
      box-shadow: 0 12px 26px rgba(17, 17, 17, 0.05);
    }
    .benefit-accordion summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .8rem;
      cursor: pointer;
      min-height: 64px;
      padding: .95rem 1rem;
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(17, 17, 17, 0.06);
    }
    .benefit-accordion summary::-webkit-details-marker {
      display: none;
    }
    .benefit-accordion .benefit-head strong {
      font-size: 1rem;
    }
    .benefit-accordion .benefit-count {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 42px;
      height: 42px;
      padding: 0 .7rem;
      border-radius: 999px;
      background: var(--yellow-soft);
      color: var(--text);
      font-size: .85rem;
      font-weight: 800;
      flex: 0 0 auto;
    }
    .benefit-accordion summary:hover {
      background: rgba(255, 242, 24, 0.12);
    }
    .benefit-accordion[open] > summary {
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }
    .benefit-detail {
      border-radius: 20px;
      background: var(--surface-soft);
      border: 1px solid rgba(17, 17, 17, 0.05);
      overflow: hidden;
    }
    .benefit-detail summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .8rem;
      cursor: pointer;
      padding: 1rem 1rem;
      background: #ffffff;
      border-radius: 20px;
      min-height: 74px;
    }
    .benefit-detail summary::-webkit-details-marker {
      display: none;
    }
    .benefit-head {
      display: flex;
      align-items: center;
      gap: .75rem;
      min-width: 0;
    }
    .benefit-head strong {
      display: block;
      font-size: .98rem;
    }
    .benefit-head span {
      display: block;
      margin-top: .1rem;
      color: var(--muted);
      font-size: .85rem;
    }
    .benefit-toggle {
      font-size: 1.1rem;
      font-weight: 900;
      color: #3f3b24;
      transition: transform .2s ease;
      flex: 0 0 auto;
    }
    .benefit-detail summary:hover {
      background: rgba(255, 242, 24, 0.14);
    }
    .benefit-detail[open] .benefit-toggle {
      transform: rotate(180deg);
    }
    .benefit-body {
      padding: 0 1rem 1rem 1rem;
      color: var(--muted);
      line-height: 1.65;
      font-size: .93rem;
    }
    .calendar-card {
      padding: 1rem;
      border-radius: 22px;
      background: var(--white);
      border: 1px solid var(--line);
      display: grid;
      gap: .75rem;
    }
    .calendar-card strong {
      font-family: var(--heading);
      font-size: 1.05rem;
    }
    .calendar-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }
    .calendar-rules {
      display: grid;
      gap: .7rem;
      padding: 1rem 1.05rem;
      border-radius: 22px;
      border: 1px solid rgba(17, 17, 17, 0.06);
      background: linear-gradient(180deg, #fffdf3 0%, #ffffff 100%);
    }
    .calendar-rules ul {
      margin: 0;
      padding-left: 1.1rem;
      display: grid;
      gap: .6rem;
    }
    .calendar-rules li {
      line-height: 1.7;
      color: var(--muted);
    }
    .calendar-rules strong {
      color: var(--text);
    }
    .calendar-rules .rule-alert {
      color: #111111;
      text-transform: uppercase;
      letter-spacing: .02em;
    }
    .calendar-note {
      padding: .95rem 1rem;
      border-radius: 18px;
      background: var(--surface-soft);
      border: 1px solid rgba(17, 17, 17, 0.05);
      color: var(--muted);
      line-height: 1.65;
    }
.calendar-note strong {
  color: #111111;
}

.booking-room-use-note {
  padding: .95rem 1rem;
  border-radius: 18px;
  background: #fffde8;
  border: 1px solid rgba(255, 242, 24, .9);
  color: #25210a;
  line-height: 1.65;
  font-weight: 700;
}

.calendar-layout {
  display: grid;
  gap: .85rem;
}
    .booking-lock {
      display: grid;
      gap: .95rem;
      padding: 1.15rem;
      border-radius: 24px;
      border: 1px solid rgba(17, 17, 17, 0.06);
      background:
        radial-gradient(circle at top left, rgba(255, 242, 24, 0.18), transparent 36%),
        linear-gradient(180deg, #fffef8 0%, #ffffff 100%);
    }
    .booking-lock strong {
      font-size: 1.15rem;
      font-family: var(--heading);
    }
    .booking-lock p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }
    .calendar-mobile-card {
      display: none;
      gap: .75rem;
      padding: 1rem;
      border-radius: 22px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #fffef7 0%, #ffffff 100%);
    }
    .calendar-mobile-card strong {
      font-size: 1.05rem;
      font-family: var(--heading);
    }
    .calendar-mobile-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }
    .calendar-embed {
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--surface-soft);
    }
    .calendar-embed iframe {
      display: block;
      width: 100%;
      height: 640px;
      border: 0;
    }
    .stack-disclosure {
      display: grid;
      gap: .75rem;
    }
    .stack-disclosure summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .8rem;
      cursor: pointer;
      padding: 1rem 1.05rem;
      border-radius: 20px;
      background: var(--surface-soft);
      border: 1px solid rgba(17, 17, 17, 0.06);
    }
    .stack-disclosure summary::-webkit-details-marker {
      display: none;
    }
    .stack-summary-copy {
      display: grid;
      gap: .15rem;
      min-width: 0;
    }
    .stack-summary-copy strong {
      font-size: 1rem;
    }
    .stack-summary-copy span {
      color: var(--muted);
      font-size: .88rem;
      line-height: 1.5;
    }
    .stack-disclosure[open] .profile-toggle {
      transform: rotate(180deg);
    }
    .contract-mini {
      display: grid;
      gap: .65rem;
    }
    .contract-status {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      min-height: 36px;
      padding: .45rem .8rem;
      border-radius: 999px;
      background: var(--yellow-soft);
      border: 1px solid rgba(17, 17, 17, 0.06);
      font-size: .8rem;
      font-weight: 900;
      color: #4f4a00;
    }
    .contract-shell {
      display: grid;
      gap: 1rem;
      padding: 1.35rem;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #fffef5 0%, #ffffff 100%);
    }
    .contract-shell h3,
    .contract-shell h4 {
      margin: 0;
      font-family: var(--heading);
    }
    .contract-shell p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }
    .contract-plan-grid {
      display: grid;
      gap: .85rem;
    }
    .contract-plan-card {
      display: none;
      gap: .7rem;
      padding: 1rem;
      border-radius: 20px;
      border: 1px solid rgba(17, 17, 17, 0.06);
      background: #ffffff;
    }
    .contract-plan-card.is-active {
      display: grid;
    }
    .contract-plan-card ul,
    .contract-section ul {
      margin: 0;
      padding-left: 1.1rem;
      display: grid;
      gap: .45rem;
    }
    .contract-plan-card li,
    .contract-section li {
      color: var(--muted);
      line-height: 1.65;
    }
    .contract-sections {
      display: grid;
      gap: .85rem;
    }
    .contract-section {
      padding: 1.1rem;
      border-radius: 20px;
      background: var(--surface);
      border: 1px solid rgba(17, 17, 17, 0.06);
      display: grid;
      gap: .7rem;
    }
    .contract-launcher {
      display: grid;
      gap: .85rem;
      padding: 1.05rem;
      border-radius: 22px;
      border: 1px solid rgba(17, 17, 17, 0.06);
      background: linear-gradient(180deg, #fffdf4 0%, #ffffff 100%);
    }
    .contract-modal-card {
      width: min(100%, 960px);
      max-height: min(90vh, 860px);
      overflow: hidden;
      background: var(--white);
      border-radius: 28px;
      border: 1px solid var(--line);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
      padding: 1.2rem;
      display: grid;
      grid-template-rows: auto minmax(0, 1fr) auto;
      gap: 1rem;
    }
    .contract-modal-body {
      min-height: 0;
      max-height: 100%;
      overflow: auto;
      overflow-y: auto;
      overflow-x: hidden;
      padding-right: .35rem;
      overscroll-behavior: contain;
      -webkit-overflow-scrolling: touch;
      touch-action: pan-y;
    }
    body.modal-open {
      overflow: hidden;
    }
    .contract-check {
      display: flex;
      align-items: flex-start;
      gap: .75rem;
      padding: 1rem;
      border-radius: 20px;
      border: 1px solid rgba(17, 17, 17, 0.06);
      background: #ffffff;
    }
    .contract-check input {
      margin-top: .2rem;
      width: 18px;
      height: 18px;
      accent-color: #111111;
    }
    .contract-check strong,
    .contract-check span {
      display: block;
    }
    .contract-check span {
      color: var(--muted);
      line-height: 1.6;
    }
    .form-help {
      color: var(--muted);
      font-size: .92rem;
      line-height: 1.6;
    }
    .register-steps {
      display: grid;
      gap: .9rem;
    }
    .register-step {
      display: grid;
      gap: .85rem;
      padding: 1.2rem;
      border-radius: 24px;
      border: 1px solid rgba(17, 17, 17, 0.06);
      background: #ffffff;
      transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    }
    .register-step.is-hidden {
      display: none;
    }
    .register-step.is-active {
      border-color: rgba(255, 242, 24, 0.85);
      box-shadow: 0 20px 44px rgba(0, 0, 0, 0.06);
      transform: translateY(-2px);
    }
    .register-step.is-complete .register-step-number {
      background: var(--yellow);
      color: #111111;
    }
    .register-step-head {
      display: flex;
      align-items: center;
      gap: .7rem;
      flex-wrap: wrap;
    }
    .register-step-number {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: var(--yellow-soft);
      border: 1px solid rgba(17, 17, 17, 0.06);
      font-size: .88rem;
      font-weight: 900;
      color: #4f4a00;
      flex: 0 0 auto;
    }
    .register-step-head strong {
      font-size: 1rem;
      font-family: var(--heading);
    }
    .register-step-head span {
      color: var(--muted);
      line-height: 1.55;
      font-size: .92rem;
    }
    .register-step-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .7rem;
      align-items: center;
      justify-content: space-between;
      padding-top: .15rem;
    }
    .register-step-actions .step-actions-spacer {
      flex: 1 1 auto;
    }
    .payment-card-grid {
      display: grid;
      gap: .8rem;
    }
    .payment-summary {
      padding: 1rem;
      border-radius: 20px;
      background: var(--surface-soft);
      border: 1px solid rgba(17, 17, 17, 0.06);
      display: grid;
      gap: .35rem;
    }
    .payment-summary strong {
      font-size: 1rem;
      font-family: var(--heading);
    }
    .payment-table {
      display: grid;
      gap: .65rem;
    }
    .profile-form-grid {
      display: grid;
      gap: .85rem;
    }
    .payment-row {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      padding: .85rem .95rem;
      border-radius: 18px;
      background: var(--surface-soft);
      border: 1px solid rgba(17, 17, 17, 0.05);
    }
    .payment-row span {
      color: var(--muted);
      font-size: .88rem;
      font-weight: 700;
    }
    .payment-row strong {
      text-align: right;
      font-size: .92rem;
    }
    .admin-panel {
      display: grid;
      gap: .85rem;
      padding: 1rem;
      border-radius: 24px;
      background: linear-gradient(180deg, #fffef5 0%, #ffffff 100%);
      border: 1px solid rgba(17, 17, 17, 0.06);
    }

    .footer-shell {
      padding: 1.3rem;
      border-radius: 28px;
      background: var(--surface);
      border: 1px solid rgba(17, 17, 17, 0.05);
      box-shadow: var(--shadow);
    }
    .footer-grid {
      display: grid;
      gap: 1rem;
    }
    .footer-brand,
    .footer-block {
      display: grid;
      gap: .2rem;
      min-width: 0;
    }
    .footer-links {
      display: grid;
      gap: .12rem;
    }
    .footer-links a,
    .footer-shell p a,
    .footer-shell a[href^="mailto:"] {
      overflow-wrap: anywhere;
      word-break: break-word;
    }
    .footer-grid h3 {
      margin: 0 0 .75rem;
      font-size: 1rem;
      font-family: var(--heading);
    }
    .footer-shell p,
    .footer-shell a {
      line-height: 1.45;
    }
    .social-list {
      display: flex;
      gap: .7rem;
      flex-wrap: wrap;
      margin-top: .85rem;
    }
    .floating-stack {
      position: fixed;
      right: 1rem;
      bottom: 1rem;
      z-index: 70;
      display: flex;
      flex-direction: column;
      gap: .7rem;
      align-items: end;
      transition: opacity .22s ease, transform .22s ease;
    }
    .floating-stack.is-hidden {
      opacity: 0;
      pointer-events: none;
      transform: translateY(12px);
    }
    .floating-pill {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      padding: .8rem 1rem;
      border-radius: 999px;
      box-shadow: var(--shadow);
      font-size: .9rem;
      font-weight: 900;
    }
    .pill-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      line-height: 1;
      flex: 0 0 auto;
    }
    .pill-label {
      display: inline-flex;
      align-items: center;
    }
    .floating-pill.test { background: var(--yellow); }
    .floating-pill.whatsapp { background: var(--green); color: var(--white); }

    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(17, 17, 17, 0.54);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      z-index: 120;
    }
    .modal-backdrop.is-open { display: flex; }
    .modal-card {
      width: min(100%, 640px);
      background: var(--white);
      border-radius: 28px;
      border: 1px solid var(--line);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
      padding: 1.2rem;
      display: grid;
      gap: 1rem;
    }
    .modal-head {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: .8rem;
    }
    .modal-head h3 {
      font-family: var(--heading);
      font-size: clamp(1.55rem, 3vw, 2.2rem);
      margin: 0;
    }
    .modal-close {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: var(--surface-soft);
      font-size: 1.1rem;
      font-weight: 900;
      cursor: pointer;
    }
    .benefit-list {
      margin: 0;
      padding-left: 1.1rem;
      display: grid;
      gap: .55rem;
    }

    @media (min-width: 920px) {
      .nav { display: flex; }
      .mobile-nav { display: none; }
      .hero-grid {
        grid-template-columns: 1.05fr .95fr;
        align-items: start;
      }
      .auth-stage {
        grid-template-columns: minmax(0, 1fr);
        min-height: 700px;
      }
      .auth-form-wrap {
        padding: 2.6rem 2.5rem;
      }
      .portal-grid {
        grid-template-columns: .92fr 1.08fr;
        align-items: start;
      }
      .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .admin-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
      }
      .summary-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
      .dashboard-grid {
        grid-template-columns: 1.1fr .9fr;
      }
      .member-hero {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: start;
      }
      .member-grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
      }
      .member-grid.member-grid-single {
        grid-template-columns: minmax(0, 1fr);
      }
      .membership-spotlight {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
      }
      .membership-spotlight-top {
        align-self: start;
      }
      .benefit-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .membership-insight-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      .client-portal-layout {
        grid-template-columns: 280px minmax(0, 1fr);
      }
      .member-top-grid {
        grid-template-columns: minmax(480px, 1.04fr) minmax(430px, .96fr);
      }
      .contract-sections {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .calendar-embed iframe {
        height: 760px;
      }
      .promo-grid {
        grid-template-columns: 1fr;
      }
      .register-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .admin-user-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .footer-grid {
        grid-template-columns: 1.15fr 1fr 1fr 1fr;
      }
      .footer-brand,
      .footer-block {
        gap: .12rem;
      }
      .footer-links {
        gap: .08rem;
      }
      .footer-shell p,
      .footer-shell a {
        font-size: .94rem;
        line-height: 1.4;
      }
      .section, .hero { padding: 1.4rem 0; }
      .shell { padding: 2.2rem; }
      .hero-grid .login-card {
        align-self: start;
      }
    }

    @media (max-width: 919px) {
      .container { width: min(calc(100% - 32px), 1120px); }
      .header-inner { min-height: 74px; }
      .brand { flex: 1 1 auto; }
      .brand-mark { width: 72px; height: 58px; }
      .brand-copy span { display: none; }
      .header-socials, .client-access-btn { display: none; }
      .auth-shell {
        display: block;
      }
      .shell { border-radius: 24px; padding: .75rem; }
      .login-card {
        padding: .65rem;
        border-radius: 24px;
      }
      .auth-stage {
        width: 100%;
        min-height: auto;
        background: #ffffff;
      }
      .auth-form-wrap {
        padding: .85rem .2rem 1rem;
      }
      .auth-form-inner {
        width: 100%;
      }
      .auth-form-card { padding: 1rem; }
      .auth-form-card {
        padding: 1rem;
      }
      .auth-right {
        display: none;
      }
      .hero-grid,
      .portal-grid,
      .admin-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .dashboard-header,
      .dashboard-actions { flex-direction: column; }
      .client-portal-layout {
        grid-template-columns: 1fr;
      }
      .client-sidebar {
        position: static;
      }
      .client-side-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .member-detail-item {
        flex-direction: column;
        align-items: flex-start;
      }
      .member-detail-item strong { text-align: left; overflow-wrap: anywhere; }
      .member-kpi strong { font-size: clamp(1.5rem, 9vw, 2.35rem); }
      .member-kpi {
        min-height: 0;
      }
      .member-kpi-grid.top-grid {
        grid-template-columns: 1fr;
      }
      .membership-insight-grid,
      .benefit-cards-grid,
      .admin-user-grid,
      .admin-user-row {
        grid-template-columns: 1fr;
      }
      .calendar-embed { display: none; }
      .calendar-mobile-card { display: grid; }
      .contract-check {
        align-items: flex-start;
      }
      .payment-row {
        flex-direction: column;
        align-items: flex-start;
      }
      .payment-row strong {
        text-align: left;
      }
      .register-step {
        padding: .95rem;
      }
      .section-heading {
        gap: .6rem;
      }
      .section-heading h2 {
        max-width: 100%;
        font-size: clamp(2rem, 9vw, 2.5rem);
        line-height: 1.02;
      }
      .section-heading p {
        font-size: 1rem;
        line-height: 1.6;
      }
      .auth-switch {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 24px;
        gap: .45rem;
        padding: .45rem;
      }
      .auth-switch a {
        min-height: 58px;
        padding: .85rem .7rem;
        border-radius: 18px;
        font-size: .95rem;
        line-height: 1.15;
      }
      .register-grid {
        grid-template-columns: 1fr;
      }
      .password-row {
        grid-template-columns: 1fr;
      }
      .register-step-head {
        display: grid;
        grid-template-columns: 36px minmax(0, 1fr);
        align-items: start;
        gap: .75rem;
      }
      .register-step-head span:last-child {
        min-width: 0;
      }
      .register-step-head strong {
        display: block;
        font-size: 1.02rem;
        line-height: 1.2;
        margin-bottom: .15rem;
      }
      .register-step-head span {
        font-size: .98rem;
        line-height: 1.5;
      }
      .login-field label {
        font-size: .74rem;
        line-height: 1.35;
      }
      .login-field-password label {
        min-height: 0;
        display: block;
        text-align: left;
      }
      .login-input,
      .login-select {
        min-height: 54px;
        padding: .95rem 1rem;
        font-size: 16px;
      }
      .password-shell .login-input {
        padding-right: 4.8rem;
      }
      .password-toggle {
        position: absolute;
        top: 50%;
        right: .7rem;
        transform: translateY(-50%);
        width: auto;
        max-width: 58px;
        min-width: 44px;
        min-height: 36px;
        padding: .3rem .55rem;
        justify-content: center;
      }
      .password-toggle:hover {
        transform: translateY(-50%);
      }
      .password-strength-text,
      .form-help {
        text-align: left;
      }
      .password-confirm-spacer {
        display: none;
      }
      .contract-plan-card,
      .contract-launcher,
      .register-step {
        border-radius: 22px;
      }
      .profile-disclosure summary { padding: .9rem; }
      .profile-summary-copy { align-items: flex-start; }
      .member-top-card h1 { max-width: 100%; font-size: clamp(2.25rem, 10vw, 3.35rem); }
      .hero h1 { max-width: 100%; font-size: clamp(2.55rem, 10vw, 3.5rem); }
      .cta-row, .portal-actions, .admin-actions, .mini-actions { flex-direction: column; }
      .btn { width: 100%; }
      .stat-grid, .summary-grid, .feature-grid { grid-template-columns: 1fr; }
      .footer-shell {
        border-radius: 24px;
        padding: 1.15rem 1rem 4.9rem;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: .95rem;
        align-items: start;
      }
      .footer-brand {
        grid-column: auto;
        padding-bottom: .55rem;
        border-bottom: 1px solid rgba(17, 17, 17, 0.06);
      }
      .footer-block {
        padding-top: .15rem;
      }
      .footer-block + .footer-block {
        border-top: 1px solid rgba(17, 17, 17, 0.05);
        padding-top: .85rem;
      }
      .footer-grid h3 {
        margin-bottom: .35rem;
        font-size: 1rem;
      }
      .footer-shell p,
      .footer-shell a {
        font-size: .95rem;
        line-height: 1.55;
      }
      .footer-links {
        gap: .28rem;
      }
      .social-list {
        margin-top: .45rem;
        gap: .55rem;
      }
      .social-list .social-link {
        width: 40px;
        height: 40px;
      }
      .floating-stack { left: auto; right: .8rem; bottom: .8rem; gap: .45rem; align-items: end; }
      .floating-pill { justify-content: center; width: 52px; min-width: 52px; min-height: 52px; padding: 0; border-radius: 999px; font-size: .92rem; max-width: none; }
      .floating-pill .pill-label { display: none; }
      .modal-card { border-radius: 22px; padding: 1rem; }
      .contract-modal-card { border-radius: 22px; padding: 1rem; }
    }
    @media (max-width: 520px) {
      #contacto {
        padding-bottom: 1.2rem;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: .9rem;
      }
      .footer-brand {
        padding-bottom: .45rem;
      }
      .footer-shell {
        padding-left: .95rem;
        padding-right: .95rem;
        padding-bottom: 5.3rem;
      }
      .footer-shell p br {
        display: none;
      }
    }

    @media (max-width: 767px) {
      html,
      body {
        max-width: 100%;
        overflow-x: hidden;
        background: #ffffff !important;
        background-image: none !important;
      }

      body::before,
      body::after,
      .shell::before,
      .shell::after,
      .login-card::before,
      .login-card::after,
      .client-dashboard-shell::before,
      .client-dashboard-shell::after,
      .client-dashboard-card::before,
      .client-dashboard-card::after,
      .client-portal-layout::before,
      .client-portal-layout::after,
      .member-card::before,
      .member-card::after,
      .booking-surface::before,
      .booking-surface::after {
        content: none !important;
        display: none !important;
      }

      .container,
      .client-container {
        width: min(calc(100% - 20px), 430px);
      }

      .section,
      .hero {
        padding: .55rem 0;
      }

      .site-header {
        background: #ffffff;
        border-bottom: 1px solid rgba(17, 17, 17, .06);
        box-shadow: none;
      }

      .header-inner {
        min-height: 68px;
        gap: .55rem;
      }

      .brand {
        gap: .55rem;
        min-width: 0;
      }

      .brand-mark {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        border-color: rgba(17, 17, 17, .06);
      }

      .brand-copy strong {
        font-size: .86rem;
        letter-spacing: .02em;
      }

      .lang-switch {
        padding: .18rem;
      }

      .lang-switch a {
        padding: .38rem .56rem;
        font-size: .75rem;
        color: #111111;
      }

      .mobile-nav summary {
        width: 42px;
        height: 42px;
        border-radius: 14px;
      }

      .shell,
      .shell.auth-shell,
      .shell.client-dashboard-shell,
      .login-card,
      .client-dashboard-card,
      .auth-stage,
      .auth-left,
      .auth-form-card {
        border: 0 !important;
        outline: 0 !important;
        box-shadow: none !important;
        background: #ffffff !important;
        background-image: none !important;
      }

      .shell,
      .login-card,
      .client-dashboard-card {
        padding: 0 !important;
        border-radius: 0 !important;
      }

      .auth-form-wrap {
        padding: .55rem 0 1rem;
      }

      .auth-form-card {
        padding: .95rem;
        border-radius: 24px !important;
      }

      .auth-grid-lines,
      .auth-left-glow,
      .auth-photo-frame::before {
        display: none !important;
      }

      .btn-primary,
      .btn-primary:visited,
      .auth-switch a.active,
      .client-side-nav button.is-active,
      .client-side-actions .btn-primary,
      .booking-slot.is-selected,
      .booking-slot.is-range-edge {
        color: #111111 !important;
      }

      .client-portal-layout {
        grid-template-columns: 1fr;
        gap: .85rem;
      }

      .client-main,
      .dashboard-shell,
      .client-content-panel.is-active {
        gap: .75rem;
      }

      .client-sidebar,
      .client-portal-layout .client-sidebar {
        position: static;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0;
        background: #ffffff !important;
        background-image: none !important;
        color: #111111 !important;
        box-shadow: none !important;
        gap: .78rem;
      }

      .client-avatar {
        position: relative;
        display: grid;
        grid-template-columns: 64px minmax(0, 1fr) 22px;
        grid-template-areas:
          "avatar name chevron"
          "avatar number chevron"
          "avatar plan chevron";
        align-items: center;
        justify-items: start;
        gap: .15rem .78rem;
        min-height: 92px;
        padding: .82rem .9rem;
        border: 1px solid rgba(17, 17, 17, .08);
        border-radius: 22px;
        background: #ffffff;
        text-align: left;
        box-shadow: 0 8px 20px rgba(17, 17, 17, .035);
      }

      .client-avatar-mark {
        grid-area: avatar;
        width: 64px;
        height: 64px;
        border-radius: 999px;
        background: #fffbd2;
        color: #111111;
        box-shadow: none;
      }

      .client-avatar strong {
        grid-area: name;
        width: 100%;
        font-size: .84rem;
        line-height: 1.15;
        color: #111111;
        text-align: left;
        text-transform: uppercase;
        overflow-wrap: anywhere;
      }

      .client-avatar > span:not(.client-avatar-mark):not(.client-avatar-plan):not(.client-avatar-chevron) {
        grid-area: number;
        color: rgba(17, 17, 17, .55);
        font-size: .74rem;
        line-height: 1.2;
      }

      .client-avatar-plan {
        grid-area: plan;
        display: inline-flex;
        align-items: center;
        min-height: 24px;
        padding: .25rem .54rem;
        border-radius: 999px;
        background: #fff218;
        color: #111111 !important;
        font-size: .68rem;
        font-weight: 900;
        line-height: 1;
        max-width: 100%;
      }

      .client-avatar-chevron {
        grid-area: chevron;
        display: grid;
        place-items: center;
        color: #111111 !important;
        font-size: 1.6rem;
        font-weight: 900;
      }

      .client-side-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .58rem;
      }

      .client-side-nav button,
      .client-side-nav a,
      .client-portal-layout .client-side-nav button,
      .client-portal-layout .client-side-nav a {
        min-height: 58px;
        padding: .72rem .72rem;
        border-radius: 16px;
        border: 1px solid rgba(17, 17, 17, .08) !important;
        background: #ffffff !important;
        color: #111111 !important;
        box-shadow: 0 6px 16px rgba(17, 17, 17, .025) !important;
        justify-content: flex-start;
        gap: .5rem;
      }

      .client-side-nav button::before,
      .client-side-nav a::before {
        content: "";
        display: block;
        flex: 0 0 auto;
        width: 22px;
        height: 22px;
        border-radius: 0;
        background: #111111;
        background-image: none;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
        -webkit-mask-size: 21px 21px;
        mask-size: 21px 21px;
      }

      .client-side-nav [data-client-panel="membership"]::before {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 8 4 3 5-7 5 7 4-3-2 11H5L3 8Z'/%3E%3Cpath d='M5 19h14'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 8 4 3 5-7 5 7 4-3-2 11H5L3 8Z'/%3E%3Cpath d='M5 19h14'/%3E%3C/svg%3E");
      }

      .client-side-nav [data-client-panel="bookings"]::before {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='15' rx='3'/%3E%3Cpath d='M8 3v4M16 3v4M4 10h16'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='15' rx='3'/%3E%3Cpath d='M8 3v4M16 3v4M4 10h16'/%3E%3C/svg%3E");
      }

      .client-side-nav [data-client-panel="payments"]::before {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='6' width='18' height='13' rx='3'/%3E%3Cpath d='M3 10h18M7 15h4'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='6' width='18' height='13' rx='3'/%3E%3Cpath d='M3 10h18M7 15h4'/%3E%3C/svg%3E");
      }

      .client-side-nav [data-client-panel="profile"]::before {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21a8 8 0 0 1 16 0'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21a8 8 0 0 1 16 0'/%3E%3C/svg%3E");
      }

      .client-side-nav [data-client-panel="contract"]::before {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h7l4 4v14H7V3Z'/%3E%3Cpath d='M14 3v5h5M9 13h6M9 17h6'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h7l4 4v14H7V3Z'/%3E%3Cpath d='M14 3v5h5M9 13h6M9 17h6'/%3E%3C/svg%3E");
      }

      .client-side-nav [data-client-panel="promotions"]::before {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 5 5 19'/%3E%3Ccircle cx='7' cy='7' r='2'/%3E%3Ccircle cx='17' cy='17' r='2'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 5 5 19'/%3E%3Ccircle cx='7' cy='7' r='2'/%3E%3Ccircle cx='17' cy='17' r='2'/%3E%3C/svg%3E");
      }

      .client-side-nav button span,
      .client-side-nav a span {
        color: #111111;
        font-size: .78rem;
        line-height: 1.1;
      }

      .client-side-nav button small,
      .client-side-nav a small {
        display: none;
      }

      .client-side-nav button.is-active,
      .client-side-nav button:hover,
      .client-side-nav a:hover,
      .client-portal-layout .client-side-nav button.is-active,
      .client-portal-layout .client-side-nav button:hover,
      .client-portal-layout .client-side-nav a:hover {
        background: #fff218 !important;
        border-color: rgba(17, 17, 17, .12) !important;
      }

      .client-side-nav button.is-active::before {
        background: #111111;
      }

      .client-side-actions {
        gap: .42rem;
      }

      .client-side-actions .btn-primary {
        min-height: 50px;
        border-radius: 999px;
        background: #fff218;
        color: #111111;
      }

      .client-side-actions .btn-primary::before {
        content: "";
        width: 20px;
        height: 20px;
        background: #111111;
        -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12a9 9 0 0 1 15.5-6.2L21 8'/%3E%3Cpath d='M21 3v5h-5'/%3E%3Cpath d='M21 12a9 9 0 0 1-15.5 6.2L3 16'/%3E%3Cpath d='M3 21v-5h5'/%3E%3C/svg%3E") center / 20px 20px no-repeat;
        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12a9 9 0 0 1 15.5-6.2L21 8'/%3E%3Cpath d='M21 3v5h-5'/%3E%3Cpath d='M21 12a9 9 0 0 1-15.5 6.2L3 16'/%3E%3Cpath d='M3 21v-5h5'/%3E%3C/svg%3E") center / 20px 20px no-repeat;
      }

      .client-side-actions .btn-secondary {
        min-height: 42px;
        background: transparent;
        border: 0;
        color: rgba(17, 17, 17, .72);
        box-shadow: none;
      }

      .client-side-actions .btn-secondary::before {
        content: "";
        width: 18px;
        height: 18px;
        background: currentColor;
        -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H6a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3'/%3E%3Cpath d='M16 17l5-5-5-5'/%3E%3Cpath d='M21 12H9'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H6a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3'/%3E%3Cpath d='M16 17l5-5-5-5'/%3E%3Cpath d='M21 12H9'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
      }

      .member-top-grid,
      .member-grid,
      .member-grid-single,
      .member-primary-stack,
      .member-kpi-grid.member-kpi-grid-summary,
      .membership-dashboard,
      .payment-card-grid,
      .booking-list-grid {
        gap: .72rem;
      }

      .member-top-card,
      .member-card,
      .membership-spotlight,
      .benefit-accordion,
      .booking-surface,
      .booking-calendar,
      .payment-summary,
      .request-card,
      .promo-card,
      .booking-list-card,
      .calendar-note,
      .booking-room-use-note,
      .contract-launcher,
      .stack-disclosure summary,
      .member-detail-item {
        background: #ffffff !important;
        background-image: none !important;
        border: 1px solid rgba(17, 17, 17, .08) !important;
        box-shadow: none !important;
      }

      .member-top-card,
      .member-card,
      .booking-surface {
        padding: .95rem;
        border-radius: 22px;
      }

      .member-top-card h1 {
        font-size: 1.3rem;
        line-height: 1.08;
      }

      .member-top-card .section-heading {
        gap: .25rem !important;
      }

      .member-top-card .kicker,
      .booking-record-head .kicker {
        font-size: .68rem;
      }

      .dashboard-meta {
        gap: .38rem;
      }

      .dashboard-meta span {
        min-height: 30px;
        padding: .4rem .62rem;
        border-radius: 999px;
        font-size: .74rem;
      }

      .member-top-card .member-detail-list {
        grid-template-columns: 1fr;
      }

      .member-top-card .member-detail-item {
        padding: .68rem .78rem;
        border-radius: 16px;
      }

      .member-kpi-grid.member-kpi-grid-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .member-kpi-grid.member-kpi-grid-summary .value-compact {
        display: none;
      }

      .member-kpi {
        min-height: 110px;
        padding: .86rem;
        border-radius: 20px;
        background: #ffffff;
        border: 1px solid rgba(17, 17, 17, .08);
        box-shadow: none;
      }

      .member-kpi.kpi-renew {
        grid-column: 1 / -1;
        min-height: 92px;
      }

      .member-kpi span,
      .membership-insight span,
      .member-detail-item span,
      .booking-stat span {
        font-size: .7rem;
        letter-spacing: .04em;
      }

      .member-kpi strong {
        font-size: 1.28rem;
      }

      .member-kpi p {
        font-size: .8rem;
        line-height: 1.35;
      }

      .membership-spotlight {
        padding: .9rem;
        border-radius: 22px;
      }

      .membership-spotlight-copy h3 {
        font-size: 1.12rem;
      }

      .membership-spotlight-copy p {
        font-size: .86rem;
        line-height: 1.45;
      }

      .membership-insight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .55rem;
      }

      .membership-insight {
        min-height: 92px;
        padding: .78rem;
        border-radius: 18px;
      }

      .membership-insight:last-child {
        grid-column: 1 / -1;
      }

      .membership-insight strong {
        font-size: 1.18rem;
      }

      .membership-insight p {
        font-size: .78rem;
        line-height: 1.35;
      }

      .benefit-accordion {
        padding: .75rem;
        border-radius: 20px;
      }

      .benefit-accordion summary {
        min-height: 52px;
        padding: .75rem;
        border-radius: 16px;
      }

      .benefit-cards-grid {
        gap: .55rem;
      }

      .benefit-detail,
      .benefit-detail summary {
        border-radius: 16px;
      }

      .benefit-detail summary {
        min-height: 58px;
        padding: .75rem;
      }

      .benefit-head strong,
      .stack-summary-copy strong,
      .promo-card strong {
        font-size: .9rem;
      }

      .benefit-head span,
      .benefit-body,
      .stack-summary-copy span,
      .promo-card p {
        font-size: .8rem;
        line-height: 1.42;
      }

      [data-client-panel-view="membership"] .member-card > h3 {
        font-size: 1rem;
      }

      .booking-record-head {
        align-items: center;
      }

      .booking-record-head h3,
      [data-client-panel-view="payments"] .member-card > h3,
      [data-client-panel-view="profile"] .member-card > h3,
      [data-client-panel-view="contract"] .member-card > h3,
      [data-client-panel-view="promotions"] .member-card > h3 {
        font-size: 1.15rem;
        line-height: 1.08;
      }

      .booking-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .55rem;
        margin-top: .75rem !important;
      }

      [data-client-panel-view="bookings"] .booking-stats-grid {
        display: none;
      }

      .booking-mobile-hours-card {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: .78rem;
        align-items: center;
        margin-top: .95rem;
        padding: .86rem .9rem;
        border-radius: 20px;
        border: 1px solid rgba(17, 17, 17, .1);
        background: #ffffff;
      }

      .booking-mobile-hours-icon {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border-radius: 15px;
        background: #fff218;
        color: #111111;
      }

      .booking-mobile-hours-icon svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
      }

      .booking-mobile-hours-copy {
        display: grid;
        gap: .2rem;
        min-width: 0;
      }

      .booking-mobile-hours-copy strong {
        color: #111111;
        font-family: var(--heading);
        font-size: 1.18rem;
        line-height: 1.05;
      }

      .booking-mobile-hours-copy span {
        color: #5f5f5f;
        font-size: .84rem;
        line-height: 1.35;
      }

      .booking-mobile-hours-progress {
        display: block;
        width: 100%;
        height: 6px;
        margin-top: .18rem;
        overflow: hidden;
        border-radius: 999px;
        background: #f1f1ee;
      }

      .booking-mobile-hours-progress i {
        display: block;
        height: 100%;
        border-radius: inherit;
        background: #fff218;
      }

      .booking-stat {
        min-height: 86px;
        padding: .78rem;
        border-radius: 18px;
      }

      .booking-stat::before {
        display: none;
      }

      .booking-stat:nth-child(3) {
        order: -1;
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: .7rem;
        align-items: center;
      }

      .booking-stat:nth-child(3)::after {
        content: "◷";
        grid-column: 1;
        grid-row: 1 / span 2;
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border-radius: 14px;
        background: #fff218;
        color: #111111;
        font-size: 1.2rem;
      }

      .booking-stat:nth-child(3) span,
      .booking-stat:nth-child(3) strong {
        grid-column: 2;
      }

      .booking-public-shell,
      .booking-public-shell-single {
        grid-template-columns: 1fr;
      }

      .booking-public-shell {
        gap: .7rem;
      }

      .booking-surface {
        border-radius: 22px;
      }

      .booking-toolbar-hidden {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        margin: 0 0 .7rem;
        overflow: visible;
        clip: auto;
        white-space: normal;
        border: 0;
        display: grid;
        grid-template-columns: 1fr;
      }

      [data-client-panel-view="bookings"] .booking-toolbar-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }

      .booking-toolbar-hidden label:first-of-type,
      .booking-toolbar-hidden [data-booking-refresh] {
        display: none;
      }

      .booking-toolbar-hidden label {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 128px;
        align-items: center;
        gap: .6rem;
        padding: .68rem .75rem;
        border-radius: 18px;
        border: 1px solid rgba(17, 17, 17, .08);
        background: #ffffff;
      }

      .booking-toolbar-hidden label span {
        color: #111111;
        font-size: .82rem;
        font-weight: 900;
      }

      .booking-toolbar-hidden select {
        min-height: 40px;
        border-radius: 999px;
        padding: .45rem .65rem;
        font-size: .82rem;
      }

      .booking-calendar {
        padding: 0;
        border: 0 !important;
        border-radius: 0;
        overflow: visible;
      }

      .booking-picker {
        display: grid;
        gap: 22px;
        min-height: 0;
        margin-top: 0;
        padding: 0;
        border: 0;
        background: transparent;
      }

      .booking-picker-panel {
        padding: .88rem;
        border-radius: 22px !important;
        border: 1px solid rgba(17, 17, 17, .08);
        background: #ffffff;
      }

      .booking-picker-panel-times {
        border-top: 1px solid rgba(17, 17, 17, .08);
        border-left: 1px solid rgba(17, 17, 17, .08);
      }

      .booking-picker-nav {
        grid-template-columns: 40px 1fr 40px;
        margin-bottom: .65rem;
        gap: .55rem;
      }

      .booking-picker-nav strong {
        font-size: 1rem;
      }

      .booking-picker-arrow {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(17, 17, 17, .08);
        background: #ffffff;
        color: #111111;
        font-size: 1.6rem;
      }

      .booking-picker-weekdays,
      .booking-picker-days {
        gap: .18rem;
      }

      .booking-picker-weekdays span {
        min-height: 30px;
        font-size: .72rem;
        color: rgba(17, 17, 17, .62);
      }

      .booking-day {
        min-height: 38px;
        border-radius: 12px;
        font-size: .84rem;
      }

      .booking-day span {
        width: 36px;
        height: 36px;
        border-radius: 12px;
      }

      .booking-day.is-selected span {
        background: #fff218;
        color: #111111;
      }

      .booking-picker-side-head {
        margin-bottom: .65rem;
      }

      .booking-picker-side-head strong {
        font-size: 1.08rem;
      }

      .booking-picker-side-head p {
        font-size: .84rem;
      }

      .booking-timezone-note {
        margin-top: .1rem;
        font-size: .78rem;
      }

      .booking-member-time-selectors {
        display: grid;
        gap: 1rem;
        margin-top: .9rem;
      }

      .booking-member-time-selectors .booking-time-estimate {
        padding: .78rem .85rem;
        border-radius: 16px;
      }

      .booking-member-time-selectors .booking-time-remaining-after {
        background: #ffffff;
      }

      .booking-member-time-selectors .booking-member-confirm-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: .2rem;
        background: #fff218;
        color: #111111 !important;
      }

      .booking-slot-grid-agenda {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .5rem;
        max-height: none;
        overflow: visible;
        padding-right: 0;
      }

      .booking-slot-grid-agenda .booking-slot {
        min-height: 50px;
        padding: .6rem .45rem;
        border-radius: 12px;
        box-shadow: none;
      }

      .booking-slot-time {
        font-size: .86rem;
      }

      [data-client-panel-view="bookings"] .booking-slot-grid-agenda {
        display: none;
      }

      .booking-modal {
        padding: .75rem;
        align-items: end;
      }

      .booking-modal-card {
        max-height: calc(100vh - 1.5rem);
        padding: 1rem;
        border-radius: 24px;
        background: #ffffff;
      }

      .booking-modal-actions {
        gap: .55rem;
      }

      .booking-room-use-note {
        padding: .78rem .85rem;
        border-radius: 18px;
        background: #fffde8 !important;
        border-color: rgba(255, 242, 24, .9) !important;
        color: #25210a;
        font-size: .83rem;
        line-height: 1.48;
      }

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

      .booking-list-card {
        padding: .82rem;
        border-radius: 18px;
        gap: .38rem;
      }

      .booking-hide-button {
        background: rgba(17, 17, 17, .06);
      }

      [data-client-panel-view="payments"] .payment-summary {
        position: relative;
        padding: .95rem .95rem .95rem 3.7rem;
        border-radius: 22px;
        background: #fffde8 !important;
        border-color: rgba(255, 242, 24, .9) !important;
      }

      [data-client-panel-view="payments"] .payment-summary::before {
        content: "✓";
        position: absolute;
        left: .95rem;
        top: .95rem;
        display: grid;
        place-items: center;
        width: 38px;
        height: 38px;
        border-radius: 999px;
        background: #26b34a;
        color: #ffffff;
        font-weight: 900;
      }

      [data-client-panel-view="payments"] .payment-summary strong {
        font-size: .98rem;
      }

      [data-client-panel-view="payments"] .payment-summary p {
        font-size: .82rem;
        line-height: 1.45;
      }

      [data-client-panel-view="payments"] .member-detail-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .5rem;
      }

      [data-client-panel-view="payments"] .member-detail-item {
        padding: .68rem;
        border-radius: 16px;
        gap: .25rem;
      }

      [data-client-panel-view="payments"] .member-detail-item:nth-child(n+4) {
        grid-column: 1 / -1;
      }

      [data-client-panel-view="payments"] .member-detail-item strong {
        font-size: .86rem;
      }

      [data-client-panel-view="payments"] .request-card {
        padding: .9rem;
        border-radius: 20px;
        background: #ffffff !important;
      }

      [data-client-panel-view="payments"] .request-card > .promo-grid {
        display: grid;
        gap: .55rem;
      }

      [data-client-panel-view="payments"] .promo-card {
        grid-template-columns: 34px minmax(0, 1fr) auto;
        align-items: center;
        gap: .55rem .72rem;
        min-height: 66px;
        padding: .66rem;
        border-radius: 18px;
      }

      [data-client-panel-view="payments"] .promo-card::before {
        content: "◌";
        display: grid;
        place-items: center;
        width: 34px;
        height: 34px;
        border-radius: 999px;
        background: #fffbd2;
        color: #111111;
        font-size: 1rem;
      }

      [data-client-panel-view="payments"] .promo-card strong,
      [data-client-panel-view="payments"] .promo-card p {
        grid-column: 2;
      }

      [data-client-panel-view="payments"] .promo-card .btn,
      [data-client-panel-view="payments"] .promo-card a.btn {
        grid-column: 3;
        grid-row: 1 / span 2;
        width: auto;
        min-height: 38px;
        padding: .55rem .7rem;
        font-size: .74rem;
      }

      .profile-form-grid,
      .register-grid {
        gap: .72rem;
      }

      [data-client-panel-view="profile"] .member-card,
      [data-client-panel-view="contract"] .member-card,
      [data-client-panel-view="promotions"] .member-card {
        border-radius: 22px;
      }

      .stack-disclosure summary {
        min-height: 58px;
        padding: .78rem;
        border-radius: 18px;
      }

      .promo-grid-rich,
      .promo-grid-accordion,
      .promo-grid {
        grid-template-columns: 1fr;
        gap: .55rem;
      }

      .promo-accordion-summary {
        min-height: 58px;
        padding: .78rem;
      }

      .promo-card,
      .promo-card-rich {
        padding: .82rem;
      }

      .portal-actions {
        gap: .55rem;
      }

      .portal-actions .btn,
      .register-step-actions .btn,
      .booking-modal-actions .btn {
        min-height: 48px;
        border-radius: 16px;
      }

      .floating-stack {
        right: .65rem;
        bottom: calc(.65rem + env(safe-area-inset-bottom));
      }

      .floating-pill {
        width: 48px;
        min-width: 48px;
        min-height: 48px;
      }
    }
.booking-public-shell,
.booking-admin-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, .8fr);
  gap: 1.25rem;
}

.booking-surface {
  background: #fffef8;
  border: 1px solid rgba(17, 17, 17, .09);
  border-radius: 28px;
  padding: 1.35rem;
  box-shadow: 0 16px 40px rgba(17, 17, 17, .06);
}

.booking-surface-head,
.booking-calendar-head,
.booking-record-head,
.booking-admin-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.booking-pill {
  display: inline-flex;
  align-items: center;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: #fff218;
  color: #111;
  font-weight: 800;
  font-size: .82rem;
}

.booking-toolbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin: 1rem 0 1.25rem;
  align-items: end;
}

.booking-toolbar-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.booking-toolbar label,
.booking-admin-grid label {
  display: grid;
  gap: .45rem;
  font-size: .92rem;
  color: #555047;
  font-weight: 700;
}

.booking-toolbar input,
.booking-toolbar select,
.booking-admin-grid input,
.booking-admin-grid select,
.booking-admin-grid textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, .12);
  background: #fff;
  padding: .9rem 1rem;
  font: inherit;
}

.booking-calendar {
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, .10);
  background: linear-gradient(180deg, #fffdf4 0%, #fff4b4 100%);
  padding: 1.2rem;
  overflow: hidden;
  color: #171717;
}

.booking-picker {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .75fr);
  gap: 0;
  margin-top: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, .10);
  background: rgba(255, 255, 255, .72);
  padding: 0;
  min-height: 500px;
}

.booking-picker-panel {
  background: transparent;
  border-radius: 24px;
  padding: 1.6rem 1.7rem;
  min-width: 0;
}

.booking-picker-panel-times {
  border-left: 1px solid rgba(17, 17, 17, .10);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.booking-picker-panel-calendar {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.booking-picker-nav {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.booking-picker-nav strong {
  text-align: center;
  font-family: var(--heading);
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  text-transform: none;
  letter-spacing: -.03em;
  font-weight: 700;
  color: #171717;
}

.booking-picker-arrow {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #67614f;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
}

.booking-picker-arrow:hover {
  color: #171717;
  background: rgba(255, 242, 24, .4);
}

.booking-picker-weekdays,
.booking-picker-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .45rem;
}

.booking-picker-weekdays {
  margin-bottom: .65rem;
}

.booking-picker-weekdays span {
  display: grid;
  place-items: center;
  min-height: 40px;
  color: #766f5b;
  font-size: .95rem;
  font-weight: 500;
}

.booking-day {
  min-height: 64px;
  border: 0;
  border-radius: 20px;
  background: transparent;
  color: #171717;
  font-family: var(--heading);
  font-size: 1.15rem;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

.booking-day span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
}

.booking-day:hover:not(:disabled) span {
  background: rgba(255, 242, 24, .35);
}

.booking-day.is-selected span {
  background: #fff218;
  color: #171717;
}

.booking-day.is-today:not(.is-selected) span {
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, .18);
}

.booking-day.is-outside {
  color: #c8c1a7;
}

.booking-day.is-disabled {
  color: #d3ccb3;
  cursor: not-allowed;
}

.booking-day.is-disabled span {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.booking-picker-side-head {
  display: grid;
  gap: .15rem;
  margin-bottom: 1rem;
}

.booking-picker-side-head strong {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  text-transform: capitalize;
  letter-spacing: -.03em;
  color: #171717;
}

.booking-picker-side-head p {
  margin: 0;
  color: #655f50;
  font-size: .95rem;
}

.booking-duration-switch { display:none; }
.booking-duration-chip { display:none; }
.booking-mobile-hours-card,
.booking-member-time-selectors {
  display: none;
}

.booking-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: .7rem;
  margin-top: 1rem;
}

.booking-slot-grid-agenda {
  grid-template-columns: 1fr;
  gap: .45rem;
  max-height: 360px;
  overflow: auto;
  padding-right: .3rem;
  margin-top: 0;
}

.booking-public-shell-single {
  grid-template-columns: 1fr;
}

.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, .42);
  display: grid;
  place-items: center;
  padding: 1.25rem;
  z-index: 80;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal-open {
  overflow: hidden;
}

.booking-modal-card {
  width: min(680px, 100%);
  max-height: calc(100vh - 2.5rem);
  overflow: auto;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, .1);
  background: linear-gradient(180deg, #fffdf5 0%, #fff7cc 100%);
  box-shadow: 0 28px 70px rgba(17, 17, 17, .22);
  padding: 1.5rem;
  position: relative;
}

.booking-modal-card h3 {
  margin: 0 2rem .9rem 0;
}

.booking-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, .12);
  background: #fff;
  color: #171717;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.booking-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: .8rem;
  margin-top: 1rem;
}

.booking-slot {
  border: 1px solid rgba(17, 17, 17, .12);
  background: #ffffff;
  color: #171717;
  border-radius: 16px;
  min-height: 48px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.booking-slot-grid-agenda .booking-slot {
  min-height: 58px;
  border-radius: 16px;
  padding: .85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  text-align: center;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, .06);
}

.booking-slot-time {
  display: block;
  font-family: var(--heading);
  font-size: 1.05rem;
  line-height: 1.1;
  font-weight: 600;
  color: inherit;
}

.booking-slot-meta {
  display: none;
}

.booking-slot:hover:not(:disabled),
.booking-slot.is-selected {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(255, 204, 0, .24);
  background: #fff218;
  color: #171717;
}

.booking-slot-grid-agenda .booking-slot:hover:not(:disabled),
.booking-slot-grid-agenda .booking-slot.is-selected {
  background: #fff218;
  color: #171717;
  box-shadow: 0 12px 24px rgba(255, 204, 0, .22);
}

.booking-slot.is-in-range {
  background: #fff9d2;
  color: #171717;
  border-color: rgba(17, 17, 17, .12);
}

.booking-slot.is-range-edge {
  background: #fff218;
  color: #171717;
}

.booking-slot.is-busy,
.booking-slot:disabled {
  cursor: not-allowed;
  opacity: 1;
  background: #f0ede0;
  color: #b4ac96;
}

.booking-slot-grid-agenda .booking-slot.is-busy,
.booking-slot-grid-agenda .booking-slot:disabled {
  background: #f0ede0;
  color: #b4ac96;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, .05);
}

.booking-calendar-head {
  display: none;
}

.booking-calendar [data-booking-feedback] {
  display: none;
}

.booking-stats-grid,
.booking-record-grid,
.booking-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .85rem;
}

.booking-stat,
.booking-record,
.booking-list-card {
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, .08);
  background: #fff;
  padding: 1rem;
}

.booking-stat {
  position: relative;
  overflow: hidden;
  padding: 1.05rem 1.1rem 1.05rem 1.15rem;
}

.booking-stat::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: #fff218;
}

.booking-stat span,
.booking-record span {
  display: block;
  font-size: .85rem;
  color: #6b655a;
}

.booking-stat strong,
.booking-record strong {
  display: block;
  margin-top: .35rem;
  font-size: 1.4rem;
  color: #111;
}

.booking-surface-side h3,
.booking-surface-main h2,
.booking-surface-main h3 {
  margin: 0;
}

.booking-record p,
.booking-list-card p,
.booking-calendar-head p {
  margin: .35rem 0 0;
  color: #59544a;
}

.booking-list-card {
  display: grid;
  gap: .65rem;
  position: relative;
}

.booking-list-card .tag {
  justify-self: start;
}

.booking-list-card.is-cancelled {
  padding-right: 3rem;
}

.booking-hide-form {
  position: absolute;
  top: .7rem;
  right: .7rem;
  margin: 0;
}

.booking-hide-button {
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  min-height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, .06);
  color: #333;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  padding: 0;
}

.booking-hide-button:hover,
.booking-hide-button:focus-visible {
  background: #fff218;
  color: #111;
  outline: 2px solid rgba(17, 17, 17, .16);
  outline-offset: 2px;
}

.booking-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.booking-admin-grid .full {
  grid-column: 1 / -1;
}

.booking-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.booking-table th,
.booking-table td {
  padding: .8rem .7rem;
  border-bottom: 1px solid rgba(17, 17, 17, .08);
  text-align: left;
  vertical-align: top;
}

.booking-table th {
  color: #5f594e;
  font-size: .85rem;
}

.booking-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.booking-mini-form {
  display: inline-flex;
}

.booking-email-note {
  padding: .9rem 1rem;
  border-radius: 18px;
  border: 1.5px solid rgba(17, 17, 17, .14);
  background: #fffbd1;
  color: #111111;
  line-height: 1.5;
}

.booking-email-note strong {
  color: #111111;
  font-weight: 900;
}

.booking-public-page {
  background: #ffffff;
  color: #111111;
}

.booking-public-hero {
  padding: 2.2rem 0 1.15rem !important;
}

.booking-public-hero .section-heading {
  margin-bottom: 1.25rem;
}

.booking-public-hero .section-heading h1 {
  max-width: 18ch;
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: .94;
  letter-spacing: -.07em;
}

.booking-info-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .8fr) minmax(0, 1.35fr);
  gap: 0;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, .18);
  border-radius: 26px;
  background: #ffffff;
  overflow: hidden;
}

.booking-info-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 104px;
  padding: 1.25rem 1.45rem;
}

.booking-info-item + .booking-info-item {
  border-left: 1px solid rgba(17, 17, 17, .14);
}

.booking-info-icon,
.booking-summary-icon {
  display: inline-grid;
  place-items: center;
  color: #111111;
  flex: 0 0 auto;
}

.booking-info-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.booking-info-item strong,
.booking-info-item small {
  display: block;
}

.booking-info-item strong {
  font-family: var(--heading);
  font-size: 1.16rem;
  line-height: 1.08;
}

.booking-info-item small {
  margin-top: .2rem;
  color: #5f5f5f;
  font-size: .95rem;
  line-height: 1.45;
}

.booking-public-page .booking-public-shell {
  width: min(calc(100% - 64px), 1400px);
  max-width: 1400px;
}

.booking-public-page .booking-surface {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, .14);
  box-shadow: none;
  border-radius: 28px;
  padding: 1.2rem;
}

.booking-public-page .booking-surface-head {
  display: none;
}

.booking-public-page .booking-calendar {
  border: 0;
  border-radius: 0;
  background: #ffffff;
  background-image: none;
  padding: 0;
  overflow: visible;
}

.booking-public-page .booking-public-picker {
  grid-template-columns: minmax(360px, 1.15fr) minmax(280px, .78fr) minmax(300px, .72fr);
  gap: 0;
  min-height: 0;
  margin-top: 0;
  border: 0;
  background: #ffffff;
}

.booking-public-page .booking-picker-panel {
  padding: 1.45rem 1.65rem;
  border-radius: 0;
}

.booking-public-page .booking-picker-panel + .booking-picker-panel {
  border-left: 1px solid rgba(17, 17, 17, .1);
}

.booking-public-page .booking-picker-panel-times {
  border-top: 0;
}

.booking-public-page .booking-picker-nav {
  grid-template-columns: 48px 1fr 48px;
  margin-bottom: 1.55rem;
}

.booking-public-page .booking-picker-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(17, 17, 17, .16);
  background: #ffffff;
  color: #111111;
  font-size: 2rem;
  box-shadow: 0 6px 18px rgba(17, 17, 17, .04);
}

.booking-public-page .booking-picker-arrow:hover {
  background: #fff218;
}

.booking-public-page .booking-picker-nav strong,
.booking-public-page .booking-picker-side-head strong {
  font-size: clamp(1.6rem, 2vw, 2.15rem);
  font-weight: 900;
}

.booking-public-page .booking-picker-weekdays,
.booking-public-page .booking-picker-days {
  gap: .35rem;
}

.booking-public-page .booking-day {
  min-height: 58px;
  border-radius: 18px;
}

.booking-public-page .booking-day span {
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.booking-public-page .booking-day.is-selected span {
  background: #fff218;
  color: #111111;
}

.booking-public-page .booking-day.is-disabled {
  color: #bdbdbd;
}

.booking-public-page .booking-day.is-disabled span {
  text-decoration: none;
}

.booking-public-page .booking-picker-side-head {
  gap: .35rem;
  margin-bottom: 1rem;
}

.booking-public-page .booking-picker-side-head p {
  color: #676767;
}

.booking-timezone-note {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: #4f4f4f;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.35;
}

.booking-timezone-note svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}

.booking-member-confirm-button {
  width: 100%;
  min-height: 52px;
  margin-top: .15rem;
  border-radius: 999px;
  color: #111111 !important;
  font-weight: 900;
}

.booking-public-page .booking-slot-grid-agenda {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.booking-public-page .booking-slot-source {
  display: none;
}

.booking-time-selectors {
  display: grid;
  gap: 1rem;
}

.booking-time-selectors label {
  display: grid;
  gap: .45rem;
  color: #555555;
  font-weight: 800;
}

.booking-time-selectors label span {
  font-size: .9rem;
}

.booking-time-select {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, .16);
  background: #ffffff;
  color: #111111;
  padding: .9rem 1rem;
  font: inherit;
  font-weight: 800;
}

.booking-time-select:focus {
  outline: 3px solid rgba(255, 242, 24, .42);
  border-color: #111111;
}

.booking-time-select:disabled {
  background: #f5f5f2;
  color: #999999;
  cursor: not-allowed;
}

.booking-time-estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem .95rem;
  border-radius: 18px;
  background: #fffdf0;
  border: 1px solid rgba(17, 17, 17, .1);
}

.booking-time-estimate span {
  color: #666666;
  font-weight: 800;
  font-size: .9rem;
}

.booking-time-estimate strong {
  color: #111111;
  font-family: var(--heading);
  font-size: 1.05rem;
}

.booking-public-page .booking-slot-grid-agenda .booking-slot {
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, .16);
  box-shadow: none;
}

.booking-public-page .booking-slot-grid-agenda .booking-slot:hover:not(:disabled),
.booking-public-page .booking-slot-grid-agenda .booking-slot.is-selected,
.booking-public-page .booking-slot.is-range-edge {
  background: #fff218;
  color: #111111;
  box-shadow: none;
}

.booking-public-page .booking-slot.is-in-range {
  background: #fff9bd;
}

.booking-public-page .booking-slot-grid-agenda .booking-slot:disabled,
.booking-public-page .booking-slot-grid-agenda .booking-slot.is-busy {
  background: #f5f5f2;
  color: #a8a8a8;
}

.booking-reservation-summary {
  align-self: stretch;
  background: linear-gradient(180deg, #fffdf0 0%, #fff9cf 100%);
  border-radius: 24px !important;
  margin: 1.1rem;
  border-left: 0 !important;
}

.booking-reservation-summary h3 {
  margin: 0 0 1rem;
  font-family: var(--heading);
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  letter-spacing: -.04em;
}

.booking-summary-list {
  display: grid;
  gap: .9rem;
}

.booking-summary-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: .85rem;
  align-items: center;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(17, 17, 17, .12);
}

.booking-summary-row:last-child {
  border-bottom: 0;
}

.booking-summary-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.booking-summary-row small,
.booking-summary-row strong {
  display: block;
}

.booking-summary-row small {
  color: #6c6c6c;
  font-size: .92rem;
  line-height: 1.2;
}

.booking-summary-row strong {
  margin-top: .16rem;
  color: #111111;
  font-family: var(--heading);
  font-size: 1rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.booking-summary-total strong {
  font-size: 1.45rem;
}

.booking-summary-cta {
  width: 100%;
  min-height: 54px;
  margin-top: .75rem;
  border-radius: 999px;
  color: #111111 !important;
  font-weight: 900;
}

.booking-public-page [data-booking-review-button],
.booking-public-page .booking-summary-cta {
  background: #fff218;
  color: #111111 !important;
  font-weight: 900;
}

.booking-public-page [data-booking-review-button] .button-spinner,
.booking-public-page .booking-summary-cta .button-spinner {
  color: #111111;
}

.booking-summary-cta:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.booking-summary-edit {
  width: 100%;
  margin-top: 1rem;
  border-radius: 999px;
}

.booking-summary-contact {
  display: grid;
  gap: .2rem;
  margin-top: 1rem;
  padding: .9rem 1rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, .12);
}

.booking-summary-contact[hidden] {
  display: none;
}

.booking-summary-contact span,
.booking-summary-contact small {
  color: #666666;
  font-size: .9rem;
  line-height: 1.35;
}

.booking-summary-contact strong {
  color: #111111;
  font-family: var(--heading);
  line-height: 1.2;
}

.booking-summary-footnote {
  margin: .85rem 0 0;
  color: #777777;
  text-align: center;
  font-size: .9rem;
  line-height: 1.45;
}

.booking-email-note-summary {
  margin-top: .9rem;
  padding: .8rem .9rem;
  background: rgba(255, 242, 24, .22);
}

.visually-hidden-submit {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.btn[disabled],
.btn.is-loading {
  cursor: wait;
  opacity: .82;
  pointer-events: none;
}

.button-spinner {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  flex: 0 0 auto;
  animation: workitSpin .72s linear infinite;
}

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

@media (max-width: 980px) {
  .booking-public-shell,
  .booking-admin-shell,
  .booking-toolbar,
  .booking-admin-grid {
    grid-template-columns: 1fr;
  }

  .booking-picker {
    grid-template-columns: 1fr;
  }

  .booking-picker-panel-times {
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 17, .08);
  }

  .booking-modal-card {
    padding: 1.15rem;
  }

  .booking-modal-actions {
    flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  .booking-toolbar-hidden {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0 0 .7rem;
    overflow: visible;
    clip: auto;
    white-space: normal;
    border: 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-toolbar-hidden label:first-of-type,
  .booking-toolbar-hidden [data-booking-refresh] {
    display: none;
  }

  .booking-calendar {
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    overflow: visible;
    background: #ffffff !important;
    background-image: none !important;
  }

  .booking-picker {
    gap: .75rem;
    min-height: 0;
    margin-top: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .booking-slot-grid-agenda {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .5rem;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 980px) {
  .booking-public-page .booking-public-shell {
    width: min(calc(100% - 32px), 1120px);
  }

  .booking-info-strip {
    grid-template-columns: 1fr;
  }

  .booking-info-item + .booking-info-item {
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 17, .12);
  }

  .booking-public-page .booking-public-picker {
    grid-template-columns: 1fr;
  }

  .booking-public-page .booking-picker-panel + .booking-picker-panel {
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 17, .1);
  }

  .booking-reservation-summary {
    margin: 0;
    border-radius: 0 0 24px 24px !important;
  }
}

@media (max-width: 767px) {
  .booking-public-page .booking-toolbar-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .booking-public-hero {
    padding: 1.45rem 0 .9rem !important;
  }

  .booking-public-hero .section-heading {
    margin-bottom: .85rem;
  }

  .booking-public-hero .section-heading h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 12vw, 3.25rem);
    line-height: .96;
  }

  .booking-info-strip {
    border-radius: 22px;
  }

  .booking-info-item {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
    padding: .95rem 1rem;
    gap: .85rem;
  }

  .booking-info-icon svg {
    width: 30px;
    height: 30px;
  }

  .booking-info-item strong {
    font-size: 1rem;
  }

  .booking-info-item small {
    font-size: .88rem;
  }

  .booking-public-page .booking-surface {
    padding: .75rem;
    border-radius: 24px;
  }

  .booking-public-page .booking-picker {
    gap: 0;
  }

  .booking-public-page .booking-picker-panel {
    padding: 1rem .75rem;
  }

  .booking-public-page .booking-picker-panel-times {
    margin-top: 22px;
  }

  .booking-time-selectors {
    gap: 1.05rem;
  }

  .booking-time-estimate:first-of-type {
    margin-top: .35rem;
  }

  .booking-time-estimate + .booking-time-estimate {
    margin-top: .1rem;
  }

  .booking-public-page .booking-picker-nav {
    grid-template-columns: 42px 1fr 42px;
    gap: .65rem;
    margin-bottom: .95rem;
  }

  .booking-public-page .booking-picker-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }

  .booking-public-page .booking-picker-nav strong,
  .booking-public-page .booking-picker-side-head strong {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
  }

  .booking-public-page .booking-picker-weekdays span {
    min-height: 32px;
    font-size: .82rem;
  }

  .booking-public-page .booking-picker-days {
    gap: .18rem;
  }

  .booking-public-page .booking-day {
    min-height: 44px;
    font-size: .98rem;
  }

  .booking-public-page .booking-day span {
    width: 36px;
    height: 36px;
  }

  .booking-public-page .booking-slot-grid-agenda {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .5rem;
  }

  .booking-public-page .booking-slot-grid-agenda .booking-slot {
    min-height: 46px;
    padding: .65rem .35rem;
    border-radius: 13px;
  }

  .booking-public-page .booking-slot-time {
    font-size: .94rem;
  }

  .booking-reservation-summary {
    margin-top: 24px;
    border-radius: 22px !important;
    padding: 1rem !important;
  }

  .booking-summary-list {
    gap: .7rem;
  }

  .booking-summary-row {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: .7rem;
    padding-bottom: .75rem;
  }

  .booking-summary-icon svg {
    width: 23px;
    height: 23px;
  }

  .booking-summary-total strong {
    font-size: 1.28rem;
  }

  .booking-summary-cta {
    min-height: 52px;
    margin-top: 1rem;
  }

  .booking-summary-edit,
  .booking-email-note-summary {
    margin-top: 1.05rem;
  }

  .booking-public-body .whatsapp-float {
    right: .65rem;
    bottom: calc(.65rem + env(safe-area-inset-bottom));
  }

  .booking-public-body .whatsapp-button {
    width: 48px;
    height: 48px;
  }
}
