
  :root {
    --navy: #0d1b2a;
    --navy-soft: #1a2a3d;
    --teal: #2fa68c;
    --teal-soft: #d6ebe5;
    --teal-deep: #1f7a66;
    --coral: #e57b3f;
    --coral-soft: #f8e1d2;
    --cream: #faf7f2;
    --cream-warm: #f3ede2;
    --paper: #ffffff;
    --ink-1: #0d1b2a;
    --ink-2: #4a5568;
    --ink-3: #8a94a3;
    --rule: #e8e2d6;
    --rule-soft: #efeae0;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-pill: 100px;
    --shadow-sm: 0 1px 2px rgba(13, 27, 42, 0.04), 0 1px 3px rgba(13, 27, 42, 0.03);
    --shadow-md: 0 4px 16px rgba(13, 27, 42, 0.06), 0 2px 6px rgba(13, 27, 42, 0.04);
  }
  
  
  .ipv33 svg.icon { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
  .ipv33 .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

  /* ===== VARIANT VISIBILITY ===== */
  .ipv33 .profile-variant { display: none; }
  .ipv33 .profile-variant.active { display: block; }

  /* ===== TOP NAV ===== */
  .ipv33 .topbar {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rule);
    padding: 16px 36px;
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .ipv33 .logotype { font-size: 22px; display: flex; align-items: baseline; gap: 1px; cursor: pointer; text-decoration: none; }
  .ipv33 .logotype .inna { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; color: var(--teal); }
  .ipv33 .logotype .pace { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--navy); }
  .ipv33 .top-nav { display: flex; gap: 28px; align-items: center; }
  .ipv33 .top-nav a { color: var(--ink-2); text-decoration: none; font-size: 14px; font-weight: 500; cursor: pointer; }
  .ipv33 .top-nav a:hover { color: var(--teal-deep); }
  .ipv33 .top-nav .signin-btn {
    color: var(--teal-deep);
    border: 1.5px solid var(--teal-deep);
    padding: 9px 18px;
    border-radius: 100px;
    font-weight: 600;
  }
  .ipv33 .top-nav .signin-btn:hover { background: var(--teal-deep); color: var(--cream); }

  /* ===== BREADCRUMB ===== */
  .ipv33 .breadcrumb-bar {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
  }
  .ipv33 .breadcrumb {
    padding: 12px 0;
    font-size: 13px;
    color: var(--ink-3);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .ipv33 .breadcrumb a {
    color: var(--ink-3);
    text-decoration: none;
    cursor: pointer;
  }
  .ipv33 .breadcrumb a:hover { color: var(--teal-deep); }
  .ipv33 .breadcrumb .current { color: var(--navy); font-weight: 500; }
  .ipv33 .breadcrumb .sep { color: var(--rule); }

  /* ===== HERO BANNER ===== */
  .ipv33 .profile-hero-banner {
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream-warm) 0%, var(--coral-soft) 50%, var(--teal-soft) 100%);
    position: relative;
  }
  .ipv33 .profile-hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 30% 40%, rgba(47, 166, 140, 0.18) 0%, transparent 60%),
      radial-gradient(ellipse 60% 70% at 80% 60%, rgba(229, 123, 63, 0.12) 0%, transparent 65%);
    pointer-events: none;
  }
  .ipv33 .profile-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    mix-blend-mode: multiply;
  }
  /* Soft bottom fade so the strip below blends */
  .ipv33 .profile-hero-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent 0%, var(--cream) 100%);
    z-index: 2;
    pointer-events: none;
  }

  /* ===== INFO STRIP ===== */
  .ipv33 .profile-info-strip {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    position: relative;
    margin-top: -50px;
    z-index: 3;
    box-shadow: 0 -10px 40px rgba(13, 27, 42, 0.04);
    border-radius: 20px 20px 0 0;
  }
  .ipv33 .profile-info-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px 32px 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: start;
  }
  .ipv33 .profile-id {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 22px;
    align-items: start;
  }
  .ipv33 .profile-avatar-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin-top: -52px; /* lift into the hero band */
  }
  /* SQUARE avatar — matches v29 dashboard decision */
  .ipv33 .profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    background: linear-gradient(135deg, #b5685b, #8d4538);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 36px;
    letter-spacing: 0.01em;
    overflow: hidden;
    border: 3px solid var(--paper);
    box-shadow: 0 8px 20px rgba(13, 27, 42, 0.12);
  }
  .ipv33 .profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ipv33 .profile-verified {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--teal-deep);
    border: 2px solid var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ipv33 .profile-name-block { min-width: 0; padding-top: 2px; }
  .ipv33 .profile-name-block h1 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.1;
    color: var(--navy);
    letter-spacing: -0.015em;
    margin-bottom: 6px;
  }
  .ipv33 .profile-designation {
    font-size: 14px;
    color: var(--ink-2);
    margin-bottom: 14px;
  }
  .ipv33 .profile-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
    margin-bottom: 14px;
  }
  .ipv33 .profile-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--ink-2);
  }
  .ipv33 .profile-meta-item svg { color: var(--ink-3); }
  .ipv33 .profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 100px;
    background: var(--cream-warm);
    color: var(--ink-2);
    border: 1px solid var(--rule);
  }
  .ipv33 .profile-badge.both {
    background: var(--teal-soft);
    color: var(--teal-deep);
    border-color: #c5dfd6;
  }
  .ipv33 .profile-badge.verified-badge {
    background: var(--coral-soft);
    color: var(--coral);
    border-color: #f0c8aa;
  }
  .ipv33 .profile-badge.verified-badge svg { color: var(--coral); }
  .ipv33 .fitness-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--ink-3);
    font-family: 'Fraunces', serif;
    font-style: italic;
  }
  .ipv33 .fi-icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: conic-gradient(var(--teal) 0% 50%, var(--rule) 50% 100%);
    position: relative;
    flex-shrink: 0;
  }
  .ipv33 .fi-icon::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--paper);
    border-radius: 50%;
  }
  .ipv33 .profile-cultural-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .ipv33 .cultural-tag {
    font-size: 11.5px;
    font-weight: 500;
    background: var(--teal-soft);
    color: var(--teal-deep);
    padding: 4px 11px;
    border-radius: 100px;
    border: 1px solid #c5dfd6;
  }
  .ipv33 .profile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
  }
  .ipv33 .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    border: none;
    border-radius: 100px;
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, gap 0.2s, border-color 0.15s;
    white-space: nowrap;
  }
  .ipv33 .btn-primary {
    background: var(--navy);
    color: var(--cream);
  }
  .ipv33 .btn-primary:hover { background: var(--navy-soft); gap: 10px; }
  .ipv33 .btn-secondary {
    background: var(--teal);
    color: var(--navy);
  }
  .ipv33 .btn-secondary:hover { background: var(--teal-deep); color: var(--cream); }
  .ipv33 .btn-ghost {
    background: var(--paper);
    color: var(--navy);
    border: 1.5px solid var(--rule);
  }
  .ipv33 .btn-ghost:hover { border-color: var(--teal-deep); color: var(--teal-deep); }
  .ipv33 .btn-outline {
    background: transparent;
    color: var(--ink-2);
    border: 1px solid var(--rule);
    padding: 10px 16px;
    font-size: 13px;
  }
  .ipv33 .btn-outline:hover { border-color: var(--teal-deep); color: var(--teal-deep); }
  .ipv33 .btn-sm { padding: 9px 16px; font-size: 13px; }

  /* ===== TABS ===== */
  .ipv33 .profile-tabs-bar {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 71px;
    z-index: 30;
  }
  .ipv33 .profile-tabs-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .ipv33 .profile-tabs-inner::-webkit-scrollbar { display: none; }
  .ipv33 .profile-tab {
    padding: 16px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
  }
  .ipv33 .profile-tab:hover { color: var(--navy); }
  .ipv33 .profile-tab.active {
    color: var(--teal-deep);
    border-bottom-color: var(--teal-deep);
    font-weight: 600;
  }

  /* ===== BODY LAYOUT ===== */
  .ipv33 .profile-body {
    max-width: 1240px;
    margin: 32px auto 0;
    padding: 0 32px 80px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 36px;
    align-items: start;
  }
  .ipv33 .profile-main { min-width: 0; }
  .ipv33 .profile-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 140px; }

  /* ===== SECTION STYLES ===== */
  .ipv33 .profile-section {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 28px 32px;
    margin-bottom: 16px;
  }
  /* About section gets extra spacing — this is the most-read tab and benefits from premium feel */
  .ipv33 .profile-section[data-panel="about"] {
    padding: 40px 48px 44px;
  }
  .ipv33 .profile-section h2 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 24px;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin-bottom: 18px;
  }
  .ipv33 .profile-section[data-panel="about"] h2 {
    font-size: 30px;
    margin-bottom: 24px;
  }
  .ipv33 .profile-section h2 em { font-style: italic; }
  .ipv33 .profile-section h3 {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 10px;
  }
  .ipv33 .profile-section h4 {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 14.5px;
    color: var(--navy);
  }
  .ipv33 .profile-section p { font-size: 15px; color: var(--ink-2); line-height: 1.65; }
  .ipv33 .profile-section p + p { margin-top: 14px; }

  /* Pull quote — editorial treatment with oversized opening mark */
  .ipv33 .pull-quote {
    position: relative;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 23px;
    line-height: 1.55;
    color: var(--navy);
    padding: 14px 0 14px 56px;
    margin: 8px 0 32px;
    letter-spacing: -0.005em;
  }
  .ipv33 .pull-quote::before {
    content: '\201C';
    position: absolute;
    top: -22px;
    left: 0;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 110px;
    line-height: 1;
    color: var(--teal);
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
  }

  /* Background card */
  .ipv33 .background-card {
    background: var(--cream-warm);
    border-radius: 12px;
    padding: 22px 26px;
    margin-top: 22px;
    border-left: 3px solid var(--coral);
  }
  .ipv33 .background-card h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--coral);
    margin-bottom: 8px;
    font-weight: 700;
  }
  .ipv33 .background-card p {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--ink-1);
    font-size: 15.5px;
    line-height: 1.55;
  }

  /* === EDITORIAL SPREAD (replaces background card) ===
     No box. No colored bar. Just typography between two hairline rules.
     Reads as an inset from a magazine: confident, premium, self-evident. */
  .ipv33 .editorial-spread {
    margin: 36px 0 32px;
    padding: 0 24px;
  }
  .ipv33 .editorial-rule {
    height: 1px;
    background: var(--rule);
    margin: 0;
  }
  .ipv33 .editorial-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--coral);
    text-align: center;
    margin: 22px 0 18px;
  }
  .ipv33 .editorial-body {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.6;
    color: var(--navy);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 22px;
    letter-spacing: -0.005em;
  }

  /* === WELLNESS SECTION (replaces emoji chips) ===
     Hairline custom icons, generous spacing, label below each icon. */
  .ipv33 .wellness-section {
    margin-top: 34px;
    padding-top: 32px;
    border-top: 1px solid var(--rule-soft);
  }
  .ipv33 .wellness-section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-3);
    margin-bottom: 24px;
  }
  .ipv33 .wellness-icon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
  .ipv33 .wellness-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 18px 8px;
    border-radius: 10px;
    transition: background 0.2s ease;
    cursor: default;
  }
  .ipv33 .wellness-icon-item:hover {
    background: var(--cream);
  }
  .ipv33 .wellness-icon {
    width: 40px;
    height: 40px;
    color: var(--teal-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.2s ease;
  }
  .ipv33 .wellness-icon-item:hover .wellness-icon {
    transform: translateY(-2px);
    color: var(--coral);
  }
  .ipv33 .wellness-icon svg {
    width: 32px;
    height: 32px;
    display: block;
  }
  .ipv33 .wellness-icon-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-2);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* Tag clouds */
  .ipv33 .profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .ipv33 .profile-tag {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    background: var(--cream-warm);
    color: var(--ink-2);
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid var(--rule);
    font-weight: 500;
  }
  .ipv33 .profile-tag.teal {
    background: var(--teal-soft);
    color: var(--teal-deep);
    border-color: #c5dfd6;
  }

  /* Credential items */
  .ipv33 .cred-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--rule-soft);
  }
  .ipv33 .cred-item:last-child { border-bottom: none; }
  .ipv33 .cred-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal-soft);
    color: var(--teal-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .ipv33 .cred-text h4 {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
  }
  .ipv33 .cred-text p {
    font-size: 13px;
    color: var(--ink-3);
    font-family: 'Fraunces', serif;
    font-style: italic;
  }
  .ipv33 .experience-card {
    margin-top: 22px;
    padding: 14px 18px;
    background: var(--cream);
    border-radius: 8px;
    border: 1px solid var(--rule);
  }
  .ipv33 .experience-card .head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
  }
  .ipv33 .experience-card .head strong { font-size: 14px; color: var(--navy); }
  .ipv33 .experience-card p { font-size: 12.5px; color: var(--ink-3); font-style: italic; font-family: 'Fraunces', serif; }


  /* ===== SERVICES TABLE ===== */
  .ipv33 .services-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 22px;
  }
  .ipv33 .services-table thead th {
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-3);
    padding: 10px 12px 10px 0;
    border-bottom: 1.5px solid var(--rule);
  }
  .ipv33 .services-table thead th:last-child { text-align: right; }
  .ipv33 .services-table tbody td {
    padding: 16px 12px 16px 0;
    border-bottom: 1px solid var(--rule-soft);
    vertical-align: top;
    font-size: 14px;
    color: var(--ink-2);
  }
  .ipv33 .services-table tbody tr:last-child td { border-bottom: none; }
  .ipv33 .svc-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 14.5px;
    margin-bottom: 2px;
  }
  .ipv33 .svc-desc {
    font-size: 12.5px;
    color: var(--ink-3);
    font-family: 'Fraunces', serif;
    font-style: italic;
  }
  .ipv33 .svc-price {
    text-align: right;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    color: var(--navy);
    font-size: 18px;
    font-style: italic;
    white-space: nowrap;
  }
  .ipv33 .format-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 100px;
    margin: 1px 4px 1px 0;
  }
  .ipv33 .format-badge.virtual {
    background: var(--teal-soft);
    color: var(--teal-deep);
  }
  .ipv33 .format-badge.inperson {
    background: var(--coral-soft);
    color: var(--coral);
  }

  .ipv33 .info-trio {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 22px;
  }
  .ipv33 .info-trio-item {
    padding: 14px 16px;
    background: var(--cream);
    border-radius: 8px;
    border: 1px solid var(--rule);
  }
  .ipv33 .info-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }
  .ipv33 .info-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
  }
  .ipv33 .info-detail {
    font-size: 12px;
    color: var(--ink-2);
    font-family: 'Fraunces', serif;
    font-style: italic;
  }

  .ipv33 .booking-note-card {
    margin-top: 20px;
    padding: 14px 18px;
    background: var(--teal-soft);
    border-radius: 10px;
    border-left: 3px solid var(--teal-deep);
    display: flex;
    gap: 12px;
    align-items: start;
  }
  .ipv33 .booking-note-card svg { flex-shrink: 0; margin-top: 1px; }
  .ipv33 .booking-note-card p {
    font-size: 13.5px;
    color: var(--ink-1);
    line-height: 1.55;
  }

  /* ===== GALLERY ===== */
  .ipv33 .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .ipv33 .gallery-item {
    aspect-ratio: 1;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .ipv33 .gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(13, 27, 42, 0.12);
  }
  .ipv33 .gallery-bg-1 { background: linear-gradient(135deg, var(--teal-soft) 0%, var(--teal) 100%); }
  .ipv33 .gallery-bg-2 { background: linear-gradient(135deg, var(--coral-soft) 0%, var(--coral) 100%); }
  .ipv33 .gallery-bg-3 { background: linear-gradient(135deg, var(--cream-warm) 0%, #d4ccb8 100%); }
  .ipv33 .gallery-bg-4 { background: linear-gradient(135deg, #c4d4e0 0%, #6b8eaa 100%); }
  .ipv33 .gallery-bg-5 { background: linear-gradient(135deg, #d6c8b8 0%, #8a7654 100%); }
  .ipv33 .gallery-bg-6 { background: linear-gradient(135deg, #cdd9c8 0%, #6b8e6f 100%); }
  .ipv33 .gallery-note {
    margin-top: 16px;
    font-size: 12.5px;
    color: var(--ink-3);
    font-family: 'Fraunces', serif;
    font-style: italic;
    text-align: center;
  }

  /* Gallery follow/connect block */
  .ipv33 .gallery-follow {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--rule-soft);
  }
  .ipv33 .gallery-follow-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--coral);
    margin-bottom: 12px;
  }
  .ipv33 .gallery-follow-text {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--ink-2) !important;
    font-size: 15px !important;
    margin-bottom: 18px !important;
    max-width: 540px;
  }
  .ipv33 .gallery-follow-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .ipv33 .follow-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    background: var(--cream);
    border: 1px solid var(--rule);
    border-radius: 12px;
    color: var(--ink-1);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.15s, transform 0.15s, color 0.15s;
  }
  .ipv33 .follow-link svg { color: var(--teal-deep); }
  .ipv33 .follow-link:hover {
    border-color: var(--teal-deep);
    transform: translateY(-2px);
  }
  .ipv33 .follow-link span:nth-of-type(1) {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
  }
  .ipv33 .follow-handle {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 12.5px;
    color: var(--ink-3);
  }
  @media (max-width: 760px) {

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

  /* ===== RECOMMENDATIONS ===== */
  .ipv33 .rec-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .ipv33 .recommendation-card {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: var(--cream);
    border: 1px solid var(--rule);
    border-radius: 12px;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .ipv33 .recommendation-card:hover {
    border-color: var(--teal-soft);
    box-shadow: 0 6px 18px rgba(13, 27, 42, 0.05);
  }
  .ipv33 .rec-badge {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--teal-soft);
    color: var(--teal-deep);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ipv33 .rec-info { min-width: 0; flex: 1; }
  .ipv33 .rec-info h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 2px;
  }
  .ipv33 .rec-meta {
    font-size: 12.5px !important;
    color: var(--teal-deep) !important;
    font-weight: 600;
    margin-bottom: 10px !important;
  }
  .ipv33 .rec-quote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--ink-2) !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    border-left: 2px solid var(--rule);
    padding-left: 14px;
    margin: 0 !important;
  }
  .ipv33 .rec-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
  }
  .ipv33 .rec-pill {
    background: var(--teal-soft);
    color: var(--teal-deep);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 100px;
  }
  .ipv33 .rec-pending {
    font-size: 12px;
    color: var(--ink-3);
    font-style: italic;
    font-family: 'Fraunces', serif;
  }
  .ipv33 .invite-cta {
    margin-top: 26px;
    padding: 22px;
    background: var(--cream-warm);
    border-radius: 12px;
    text-align: center;
  }
  .ipv33 .invite-cta p {
    font-size: 14px !important;
    color: var(--ink-2) !important;
    margin-bottom: 14px !important;
  }

  /* ===== SIDEBAR ===== */
  .ipv33 .sidebar-card, .ipv33 .booking-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 22px;
  }
  .ipv33 .booking-card { padding: 24px; }
  .ipv33 .booking-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .ipv33 .booking-title em { font-style: italic; color: var(--teal-deep); }
  .ipv33 .booking-subtitle {
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.55;
    margin-bottom: 16px;
  }
  .ipv33 .booking-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-soft);
    color: var(--teal-deep);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
    margin-bottom: 18px;
    border: 1px solid #c5dfd6;
  }
  .ipv33 .booking-status .status-dot {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(47, 166, 140, 0.18);
  }
  .ipv33 .avail-grid {
    background: var(--cream);
    border-radius: 10px;
    padding: 6px 14px;
    margin-bottom: 16px;
  }
  .ipv33 .avail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid var(--rule-soft);
  }
  .ipv33 .avail-row:last-child { border-bottom: none; }
  .ipv33 .avail-day {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy);
  }
  .ipv33 .avail-badges { display: flex; gap: 4px; }
  .ipv33 .avail-badge {
    font-size: 10.5px;
    background: var(--teal-soft);
    color: var(--teal-deep);
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 500;
  }
  .ipv33 .avail-na {
    font-size: 11.5px;
    color: var(--ink-3);
    font-style: italic;
    font-family: 'Fraunces', serif;
  }
  .ipv33 .booking-divider {
    height: 1px;
    background: var(--rule-soft);
    margin: 16px 0;
  }
  .ipv33 .booking-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
  }
  .ipv33 .booking-price-label {
    font-size: 12px;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
  }
  .ipv33 .booking-price-val {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 24px;
    color: var(--navy);
  }
  .ipv33 .booking-btn {
    width: 100%;
    margin-bottom: 8px;
  }
  .ipv33 .booking-note {
    font-size: 11.5px;
    color: var(--ink-3);
    text-align: center;
    margin-top: 6px;
    font-family: 'Fraunces', serif;
    font-style: italic;
  }

  .ipv33 .sidebar-card h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 14px;
  }
  .ipv33 .contact-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    align-items: start;
  }
  .ipv33 .contact-label {
    color: var(--ink-3);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    padding-top: 3px;
  }
  .ipv33 .contact-value {
    color: var(--ink-1);
    line-height: 1.5;
  }
  .ipv33 .contact-value.link {
    color: var(--teal-deep);
    cursor: pointer;
    text-decoration: none;
  }
  .ipv33 .contact-value.link:hover { text-decoration: underline; }
  .ipv33 .contact-socials {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--rule-soft);
  }
  .ipv33 .social-link {
    width: 32px;
    height: 32px;
    border: 1px solid var(--rule);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-2);
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
  }
  .ipv33 .social-link:hover { border-color: var(--teal-deep); color: var(--teal-deep); }

  .ipv33 .similar-list { display: flex; flex-direction: column; gap: 12px; }
  .ipv33 .similar-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px;
    margin: -8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    color: inherit;
  }
  .ipv33 .similar-item:hover { background: var(--cream); }
  .ipv33 .similar-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
  }
  .ipv33 .av-1 { background: linear-gradient(135deg, #2fa68c, #1f7a66); }
  .ipv33 .av-2 { background: linear-gradient(135deg, #e57b3f, #c8632b); }
  .ipv33 .av-3 { background: linear-gradient(135deg, #4a7c9d, #2c5876); }
  .ipv33 .av-4 { background: linear-gradient(135deg, #b5685b, #8d4538); }
  .ipv33 .similar-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
  }
  .ipv33 .similar-meta {
    font-size: 12px;
    color: var(--ink-3);
    font-family: 'Fraunces', serif;
    font-style: italic;
  }

  .ipv33 .share-card { text-align: center; }
  .ipv33 .share-prompt {
    font-size: 13px !important;
    color: var(--ink-2) !important;
    margin-bottom: 12px !important;
  }
  .ipv33 .share-buttons {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .ipv33 .share-btn {
    background: var(--cream);
    border: 1px solid var(--rule);
    color: var(--ink-2);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    cursor: pointer;
    font-family: 'Inter';
    font-weight: 500;
    transition: border-color 0.15s;
  }
  .ipv33 .share-btn:hover { border-color: var(--teal-deep); }
  .ipv33 .share-btn.whatsapp { background: #25d366; color: white; border-color: #25d366; }
  .ipv33 .share-btn.facebook { background: #1877f2; color: white; border-color: #1877f2; }

  /* ===== MODAL ===== */
  .ipv33 .modal-wrapper {
    position: fixed;
    inset: 0;
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 16px;
  }
  .ipv33 .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.55);
    backdrop-filter: blur(3px);
  }
  .ipv33 .modal-content {
    background: var(--paper);
    border-radius: 16px;
    padding: 32px;
    max-width: 580px;
    width: 100%;
    position: relative;
    z-index: 1;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(13, 27, 42, 0.25);
  }
  .ipv33 .modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--cream);
    border: 1px solid var(--rule);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 18px;
    color: var(--ink-2);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .ipv33 .modal-close:hover { border-color: var(--teal-deep); color: var(--teal-deep); }
  .ipv33 .modal-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .ipv33 .modal-title em { font-style: italic; color: var(--teal-deep); }
  .ipv33 .modal-subtitle {
    font-size: 13.5px;
    color: var(--ink-2);
    margin-bottom: 22px;
  }
  .ipv33 .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
  }
  .ipv33 .form-group { margin-bottom: 14px; }
  .ipv33 .form-label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
  }
  .ipv33 .form-mini-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .ipv33 .form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--rule);
    border-radius: 8px;
    font-family: 'Inter';
    font-size: 14px;
    color: var(--navy);
    background: var(--paper);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .ipv33 .form-input:focus {
    border-color: var(--teal-deep);
    box-shadow: 0 0 0 3px rgba(47, 166, 140, 0.12);
  }
  .ipv33 .form-input-small { font-size: 13px; padding: 8px 12px; }
  .ipv33 .form-input::placeholder { color: var(--ink-3); }
  .ipv33 textarea.form-input { resize: vertical; font-family: 'Inter'; }
  .ipv33 .form-checkbox-row { margin: 10px 0 16px; }
  .ipv33 .form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: var(--ink-1);
    cursor: pointer;
  }
  .ipv33 .form-checkbox-label input { accent-color: var(--teal-deep); }
  .ipv33 .booking-fields {
    background: var(--cream);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
  }
  .ipv33 .booking-fields-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .ipv33 .booking-days {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
  }
  .ipv33 .booking-days label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    cursor: pointer;
  }
  .ipv33 .booking-days input, .ipv33 .booking-times input { accent-color: var(--teal-deep); }
  .ipv33 .booking-times {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 12px;
  }
  .ipv33 .booking-times label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    cursor: pointer;
  }
  .ipv33 .form-radios {
    display: flex;
    gap: 16px;
  }
  .ipv33 .form-radios label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    cursor: pointer;
  }
  .ipv33 .form-radios input { accent-color: var(--teal-deep); }
  .ipv33 .required { color: var(--coral); }
  .ipv33 .modal-submit {
    width: 100%;
    padding: 14px;
    margin-top: 6px;
  }
  .ipv33 .modal-privacy {
    font-size: 12px;
    color: var(--ink-3);
    text-align: center;
    margin-top: 12px;
    font-family: 'Fraunces', serif;
    font-style: italic;
  }

  /* ===== FOOTER ===== */
  .ipv33 .site-footer {
    margin-top: 60px;
    padding: 48px 48px 32px;
    border-top: 1px solid var(--rule);
    background: var(--cream);
  }
  .ipv33 .footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .ipv33 .footer-brand .logotype { margin-bottom: 14px; }
  .ipv33 .footer-brand p {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--ink-2);
    font-size: 13.5px;
    line-height: 1.65;
    max-width: 260px;
  }
  .ipv33 .footer-col h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-3);
    font-weight: 700;
    margin-bottom: 14px;
  }
  .ipv33 .footer-col a {
    display: block;
    color: var(--ink-2);
    text-decoration: none;
    font-size: 13.5px;
    margin-bottom: 8px;
    cursor: pointer;
  }
  .ipv33 .footer-col a:hover { color: var(--teal-deep); }
  .ipv33 .footer-bottom {
    max-width: 1240px;
    margin: 36px auto 0;
    padding-top: 22px;
    border-top: 1px solid var(--rule-soft);
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: var(--ink-3);
  }
  .ipv33 .footer-bottom em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--ink-2);
  }

  /* ===========================================
     CATEGORY VARIANT MODULES (Body + Spaces)
     =========================================== */

  /* Hero variants — gradient differs per category to subtly signal */
  .ipv33 .profile-hero-body::after {
    background:
      radial-gradient(ellipse 80% 60% at 30% 40%, rgba(229, 123, 63, 0.16) 0%, transparent 60%),
      radial-gradient(ellipse 60% 70% at 80% 60%, rgba(47, 166, 140, 0.14) 0%, transparent 65%);
  }
  .ipv33 .profile-hero-spaces {
    height: 400px;
  }
  .ipv33 .profile-hero-spaces::after {
    background:
      radial-gradient(ellipse 70% 70% at 70% 50%, rgba(13, 27, 42, 0.18) 0%, transparent 60%),
      radial-gradient(ellipse 50% 60% at 25% 70%, rgba(229, 123, 63, 0.14) 0%, transparent 65%);
  }

  /* Avatar gradients per category */
  .ipv33 .av-body { background: linear-gradient(135deg, #6b8e6f, #4a6e4e); }
  .ipv33 .av-spaces { background: linear-gradient(135deg, var(--navy), var(--navy-soft)); }

  /* ===== HOURS GRID (sidebar, used by Body + Spaces) ===== */
  .ipv33 .hours-grid {
    background: var(--cream);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 16px;
  }
  .ipv33 .hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid var(--rule-soft);
    font-size: 13px;
  }
  .ipv33 .hours-row:last-child { border-bottom: none; }
  .ipv33 .hours-day { font-weight: 600; color: var(--navy); }
  .ipv33 .hours-time { color: var(--ink-2); font-family: 'Fraunces', serif; font-style: italic; }
  .ipv33 .hours-row.unavailable .hours-time { color: var(--ink-3); }

  /* ===== SCHEDULE TAB (Body) ===== */
  .ipv33 .schedule-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
  }
  .ipv33 .schedule-day {
    background: var(--cream);
    border: 1px solid var(--rule);
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
  }
  .ipv33 .schedule-day.closed { background: var(--cream-warm); opacity: 0.6; }
  .ipv33 .schedule-day-head {
    border-bottom: 1px solid var(--rule);
    padding-bottom: 10px;
    margin-bottom: 12px;
  }
  .ipv33 .schedule-day-name {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-3);
    font-weight: 700;
    margin-bottom: 4px;
  }
  .ipv33 .schedule-day-date {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--navy);
    font-size: 14px;
  }
  .ipv33 .schedule-slots {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .ipv33 .slot {
    display: inline-block;
    padding: 7px 4px;
    border: 1px solid var(--teal-soft);
    background: var(--paper);
    color: var(--teal-deep);
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
  }
  .ipv33 .slot:hover { background: var(--teal-deep); color: var(--cream); }
  .ipv33 .slot.booked {
    border-color: var(--rule);
    background: var(--rule-soft);
    color: var(--ink-3);
    cursor: not-allowed;
    text-decoration: line-through;
  }
  .ipv33 .slot.booked:hover { background: var(--rule-soft); color: var(--ink-3); }
  .ipv33 .schedule-closed-note {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--ink-3);
    font-size: 13px;
    padding: 20px 0;
  }
  .ipv33 .schedule-legend {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--rule-soft);
    font-size: 12px;
    color: var(--ink-3);
    flex-wrap: wrap;
  }
  .ipv33 .schedule-legend > span:not(.schedule-legend-note) {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .ipv33 .slot-legend {
    width: 16px;
    height: 16px;
    padding: 0;
    cursor: default;
  }
  .ipv33 .slot-legend:hover { background: var(--paper); color: var(--teal-deep); }
  .ipv33 .slot.booked.slot-legend:hover { background: var(--rule-soft); color: var(--ink-3); }
  .ipv33 .schedule-legend-note {
    margin-left: auto;
    font-family: 'Fraunces', serif;
    font-style: italic;
  }

  /* ===== SOCIAL ROW (sidebar follow) ===== */
  .ipv33 .follow-sidebar h4 { margin-bottom: 4px; }
  .ipv33 .social-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 8px;
    margin: 0 -8px;
    border-radius: 8px;
    color: var(--ink-1);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid var(--rule-soft);
  }
  .ipv33 .social-row:last-of-type { border-bottom: none; }
  .ipv33 .social-row:hover { background: var(--cream); }
  .ipv33 .social-row svg { color: var(--teal-deep); flex-shrink: 0; }
  .ipv33 .social-row > span:first-of-type {
    flex: 1;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--navy);
    min-width: 0;
  }
  .ipv33 .social-count {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--ink-3);
    font-size: 12.5px;
  }

  /* ===== FOUNDERS SECTION (Spaces About) ===== */
  .ipv33 .founders-section {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--rule-soft);
  }
  .ipv33 .founders-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--coral);
    margin-bottom: 18px;
  }
  .ipv33 .founders-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .ipv33 .founder-card {
    display: flex;
    gap: 14px;
    align-items: start;
    padding: 18px;
    background: var(--cream);
    border-radius: 12px;
    border: 1px solid var(--rule);
  }
  .ipv33 .founder-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 20px;
    flex-shrink: 0;
  }
  .ipv33 .founder-name {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 2px;
  }
  .ipv33 .founder-meta {
    font-size: 12px;
    color: var(--teal-deep);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .ipv33 .founder-bio {
    font-size: 13px !important;
    color: var(--ink-2) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  /* ===== AMENITIES GRID (Spaces) ===== */
  .ipv33 .amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .ipv33 .amenity-card {
    background: var(--cream);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 22px 18px;
    text-align: center;
    transition: border-color 0.15s, transform 0.15s;
  }
  .ipv33 .amenity-card:hover {
    border-color: var(--teal-deep);
    transform: translateY(-2px);
  }
  .ipv33 .amenity-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    color: var(--teal-deep);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ipv33 .amenity-card h4 {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 14px !important;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .ipv33 .amenity-card p {
    font-size: 12.5px !important;
    color: var(--ink-2) !important;
    line-height: 1.45 !important;
    margin: 0 !important;
  }

  /* ===== CLASS LIST (Spaces) ===== */
  .ipv33 .class-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .ipv33 .class-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px 22px;
    background: var(--cream);
    border: 1px solid var(--rule);
    border-radius: 12px;
    transition: border-color 0.15s;
  }
  .ipv33 .class-item:hover { border-color: var(--teal-deep); }
  .ipv33 .class-time {
    text-align: center;
    padding-right: 18px;
    border-right: 1px solid var(--rule);
  }
  .ipv33 .class-day {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-3);
    margin-bottom: 4px;
  }
  .ipv33 .class-hour {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 17px;
    color: var(--navy);
  }
  .ipv33 .class-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .ipv33 .class-desc {
    font-size: 13px;
    color: var(--ink-2);
    margin-bottom: 6px;
    line-height: 1.45;
  }
  .ipv33 .class-meta {
    font-size: 11.5px;
    color: var(--ink-3);
    font-family: 'Fraunces', serif;
    font-style: italic;
  }
  .ipv33 .class-status {
    font-size: 12px;
    font-weight: 600;
    color: var(--teal-deep);
    padding: 8px 14px;
    border-radius: 100px;
    background: var(--teal-soft);
    white-space: nowrap;
  }
  .ipv33 .class-status.full {
    color: var(--coral);
    background: var(--coral-soft);
  }

  /* ===== MEMBERSHIP CARDS (Spaces) ===== */
  .ipv33 .membership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }
  .ipv33 .membership-card {
    background: var(--cream);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 28px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .ipv33 .membership-card.featured {
    background: var(--navy);
    color: var(--cream);
    border-color: var(--navy);
  }
  .ipv33 .membership-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--coral);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 100px;
  }
  .ipv33 .membership-name {
    font-family: 'Inter';
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-3);
    margin-bottom: 14px;
  }
  .ipv33 .membership-card.featured .membership-name { color: var(--teal); }
  .ipv33 .membership-price {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 48px;
    line-height: 1;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .ipv33 .membership-card.featured .membership-price { color: var(--cream); }
  .ipv33 .price-cycle {
    font-size: 16px;
    color: var(--ink-3);
    font-style: normal;
    font-family: 'Inter';
    font-weight: 500;
    margin-left: 4px;
  }
  .ipv33 .membership-card.featured .price-cycle { color: rgba(250, 247, 242, 0.6); }
  .ipv33 .membership-desc {
    font-size: 13.5px !important;
    color: var(--ink-2) !important;
    margin-bottom: 18px !important;
  }
  .ipv33 .membership-card.featured .membership-desc { color: rgba(250, 247, 242, 0.75) !important; }
  .ipv33 .membership-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex: 1;
  }
  .ipv33 .membership-list li {
    padding: 7px 0 7px 22px;
    font-size: 13.5px;
    color: var(--ink-2);
    position: relative;
    line-height: 1.45;
  }
  .ipv33 .membership-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--teal-deep);
    font-weight: 700;
    font-size: 13px;
  }
  .ipv33 .membership-card.featured .membership-list li {
    color: rgba(250, 247, 242, 0.88);
  }
  .ipv33 .membership-card.featured .membership-list li::before {
    color: var(--teal);
  }
  .ipv33 .membership-cta {
    width: 100%;
    margin-top: auto;
  }

  /* ===== TEAM GRID (Spaces - trainers) ===== */
  .ipv33 .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .ipv33 .team-card {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: var(--cream);
    border: 1px solid var(--rule);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, transform 0.15s;
  }

  /* ACTIVE state — fully clickable, hover lifts */
  .ipv33 .team-card-active {
    cursor: pointer;
  }
  .ipv33 .team-card-active:hover {
    border-color: var(--teal-deep);
    transform: translateY(-2px);
  }

  /* LISTED-ONLY state — visible but not navigable, only the inquire button is interactive */
  .ipv33 .team-card-listed {
    cursor: default;
    background: var(--paper);
    border-style: dashed;
    border-color: var(--rule);
  }
  .ipv33 .team-card-listed:hover {
    /* Subtle hover — no lift, no border color change (it's not clickable as a unit) */
    border-color: #d8d2c5;
  }

  .ipv33 .team-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 20px;
    flex-shrink: 0;
  }

  /* Listed-only avatar: neutral cream-warm tone, grey letters, no gradient */
  .ipv33 .avatar-listed {
    background: var(--cream-warm);
    color: var(--ink-3);
    border: 1px dashed var(--rule);
    box-shadow: none;
  }

  .ipv33 .team-name {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 2px;
  }
  .ipv33 .team-card-listed .team-name {
    /* Listed name is slightly quieter — still readable but signals "not yet here" */
    color: var(--ink-1);
  }
  .ipv33 .team-role {
    font-size: 12.5px;
    color: var(--teal-deep);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .ipv33 .team-card-listed .team-role {
    color: var(--ink-3);
    font-weight: 500;
  }
  .ipv33 .team-bio {
    font-size: 12.5px;
    color: var(--ink-2);
    line-height: 1.45;
    margin-bottom: 8px;
  }
  .ipv33 .team-link {
    font-size: 12px;
    color: var(--teal-deep);
    font-weight: 600;
  }

  /* Listed-only label + action */
  .ipv33 .team-listed-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 11.5px;
    color: var(--ink-3);
    margin: 8px 0 10px;
    padding-top: 8px;
    border-top: 1px solid var(--rule-soft);
  }
  .ipv33 .team-listed-label svg {
    color: var(--ink-3);
    flex-shrink: 0;
  }
  .ipv33 .team-listed-action {
    background: none;
    border: none;
    padding: 0;
    color: var(--coral);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: var(--coral-soft);
    text-underline-offset: 3px;
    transition: color 0.15s;
  }
  .ipv33 .team-listed-action:hover {
    color: var(--coral);
    text-decoration-color: var(--coral);
  }

  /* Inquire-about banner inside modal — shown only when reached via team card */
  .ipv33 .inquire-about-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: var(--coral-soft);
    border: 1px solid #f0c8aa;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--ink-1);
    line-height: 1.45;
  }
  .ipv33 .inquire-about-banner svg {
    color: var(--coral);
    flex-shrink: 0;
  }
  .ipv33 .inquire-about-banner strong {
    color: var(--coral);
    font-weight: 600;
  }

  /* ===== MAP placeholder (Spaces sidebar) ===== */
  .ipv33 .map-card { padding-top: 22px; }
  .ipv33 .map-placeholder {
    height: 120px;
    margin: 0 -22px 16px;
    background: var(--cream-warm);
    overflow: hidden;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .ipv33 .map-placeholder svg { width: 100%; height: 100%; display: block; }

  /* ===== GALLERY VARIANTS ===== */
  .ipv33 .gallery-grid-body {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .ipv33 .gallery-grid-body .gallery-feature {
    grid-row: span 2;
    grid-column: span 1;
  }
  .ipv33 .gallery-grid-spaces {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .ipv33 .gallery-grid-spaces .gallery-feature-large {
    grid-row: span 2;
    grid-column: span 2;
  }

  /* ===========================================
     GROUP PRACTICE MODULES (Variant 4)
     =========================================== */

  /* Hero variant for Group — softer than Spaces */
  .ipv33 .profile-hero-group::after {
    background:
      radial-gradient(ellipse 60% 70% at 25% 50%, rgba(47, 166, 140, 0.14) 0%, transparent 60%),
      radial-gradient(ellipse 65% 65% at 80% 60%, rgba(13, 27, 42, 0.10) 0%, transparent 65%);
  }

  /* Avatar gradient for Group Practice — navy + teal accent signals collective */
  .ipv33 .av-group {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-deep) 100%);
  }

  /* Clinician filter pills above the grid */
  .ipv33 .clinician-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rule-soft);
  }
  .ipv33 .cf-pill {
    background: var(--paper);
    border: 1px solid var(--rule);
    color: var(--ink-2);
    padding: 7px 14px;
    border-radius: 100px;
    font-family: 'Inter';
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
  }
  .ipv33 .cf-pill:hover {
    border-color: var(--teal-deep);
    color: var(--teal-deep);
  }
  .ipv33 .cf-pill.active {
    background: var(--navy);
    color: var(--cream);
    border-color: var(--navy);
  }

  /* Team availability indicator (Group Practice clinician grid) */
  .ipv33 .team-availability {
    font-size: 11.5px;
    font-weight: 600;
    margin: 4px 0 6px;
  }
  .ipv33 .team-availability.accepting {
    color: var(--teal-deep);
  }
  .ipv33 .team-availability.waitlist {
    color: var(--ink-3);
    font-style: italic;
    font-family: 'Fraunces', serif;
    font-weight: 400;
  }

  /* Clinician grid lays out single column on smaller mobile (more text per card) */

  /* ===== INTAKE FLOW (main content tab) ===== */
  .ipv33 .intake-flow {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
  }
  .ipv33 .intake-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 22px;
    align-items: start;
    padding: 22px;
    background: var(--cream);
    border: 1px solid var(--rule);
    border-radius: 14px;
    transition: border-color 0.15s, transform 0.15s;
  }
  .ipv33 .intake-step:hover {
    border-color: var(--teal-deep);
    transform: translateY(-1px);
  }
  .ipv33 .intake-step-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 44px;
    line-height: 1;
    color: var(--teal-deep);
    letter-spacing: -0.02em;
  }
  .ipv33 .intake-step-content h3 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 19px !important;
    color: var(--navy);
    margin-bottom: 8px !important;
    letter-spacing: -0.005em;
  }
  .ipv33 .intake-step-content p {
    font-size: 14px !important;
    color: var(--ink-2) !important;
    line-height: 1.6 !important;
    margin-bottom: 10px !important;
  }
  .ipv33 .intake-step-content p strong {
    color: var(--navy);
    font-weight: 600;
  }
  .ipv33 .intake-step-meta {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 12.5px;
    color: var(--ink-3);
    padding-top: 8px;
    border-top: 1px solid var(--rule-soft);
  }

  /* Intake CTA at bottom of intake tab */
  .ipv33 .intake-cta {
    text-align: center;
    padding: 32px 24px;
    background: var(--cream-warm);
    border-radius: 14px;
  }
  .ipv33 .intake-cta p {
    font-size: 15px !important;
    color: var(--ink-2) !important;
    margin-bottom: 14px !important;
  }
  .ipv33 .intake-cta .btn {
    padding: 14px 28px;
  }
  .ipv33 .intake-cta-note {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 13px !important;
    color: var(--ink-3) !important;
    margin-top: 18px !important;
    margin-bottom: 0 !important;
  }
  .ipv33 .intake-cta-note strong {
    color: var(--navy);
    font-weight: 600;
  }

  /* ===== SIDEBAR INTAKE QUICK VIEW ===== */
  .ipv33 .intake-quick {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--cream);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
  }
  .ipv33 .intake-quick-step {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12.5px;
    color: var(--ink-1);
  }
  .ipv33 .iq-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--teal-deep);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .ipv33 .iq-text {
    line-height: 1.4;
  }

  /* ===== INSURANCE SIDEBAR CARD ===== */
  .ipv33 .insurance-card h4 {
    margin-bottom: 12px;
  }
  .ipv33 .insurance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 12px;
  }
  .ipv33 .insurance-item {
    background: var(--cream);
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 12px;
    color: var(--ink-1);
    font-weight: 500;
  }
  .ipv33 .insurance-note {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 12px;
    color: var(--ink-3);
    line-height: 1.5;
    padding-top: 8px;
    border-top: 1px solid var(--rule-soft);
  }

  /* ===== LANGUAGES SIDEBAR ===== */
  .ipv33 .languages-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .ipv33 .lang-tag {
    font-size: 11.5px;
    background: var(--teal-soft);
    color: var(--teal-deep);
    border: 1px solid #c5dfd6;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 500;
  }

  /* Map placeholder slightly taller for Group Practice (2 locations) */
  .ipv33 .profile-variant[data-variant="group"] .map-placeholder {
    height: 100px;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1050px) {

    .ipv33 .profile-body { grid-template-columns: 1fr; }
    .ipv33 .profile-sidebar { position: static; }
    .ipv33 .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .ipv33 .wellness-icon-grid { grid-template-columns: repeat(3, 1fr); }
    .ipv33 .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .ipv33 .membership-grid { grid-template-columns: 1fr; }
    .ipv33 .team-grid { grid-template-columns: 1fr; }
    .ipv33 .founders-list { grid-template-columns: 1fr; }
    .ipv33 .schedule-week { grid-template-columns: repeat(4, 1fr); }
    .ipv33 .schedule-day:nth-child(7) { grid-column: span 2; }
    .ipv33 .insurance-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  
}
  @media (max-width: 760px) {

    .ipv33 .topbar { padding: 14px 20px; }
    .ipv33 .top-nav { gap: 12px; }
    .ipv33 .top-nav a:not(.signin-btn) { display: none; }
    .ipv33 .container { padding: 0 20px; }
    .ipv33 .profile-info-strip { margin-top: -40px; }
    .ipv33 .profile-info-inner {
      padding: 20px 20px 20px;
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .ipv33 .profile-id {
      grid-template-columns: 80px 1fr;
      gap: 16px;
    }
    .ipv33 .profile-avatar-wrap, .ipv33 .profile-avatar { width: 80px; height: 80px; }
    .ipv33 .profile-avatar { font-size: 28px; }
    .ipv33 .profile-name-block h1 { font-size: 24px; }
    .ipv33 .profile-hero-banner { height: 220px; }
    .ipv33 .profile-tabs-bar { top: 65px; }
    .ipv33 .profile-tabs-inner { padding: 0 20px; gap: 20px; }
    .ipv33 .profile-tabs-inner .profile-tab { font-size: 13px; padding: 14px 0; }
    .ipv33 .profile-body { padding: 0 20px 60px; margin-top: 24px; gap: 18px; }
    .ipv33 .profile-section { padding: 22px 20px; }
    .ipv33 .profile-section[data-panel="about"] { padding: 28px 22px; }
    .ipv33 .profile-section h2 { font-size: 20px; }
    .ipv33 .profile-section[data-panel="about"] h2 { font-size: 24px; }
    .ipv33 .pull-quote {
      font-size: 18px;
      padding: 8px 0 8px 38px;
    }
    .ipv33 .pull-quote::before {
      font-size: 76px;
      top: -14px;
    }
    .ipv33 .editorial-spread { padding: 0 8px; }
    .ipv33 .editorial-body { font-size: 17px; }
    .ipv33 .wellness-icon-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .ipv33 .services-table thead { display: none; }
    .ipv33 .services-table tbody td { display: block; padding: 6px 0; border: none; }
    .ipv33 .services-table tbody tr {
      display: block;
      padding: 14px 0;
      border-bottom: 1px solid var(--rule-soft);
    }
    .ipv33 .svc-price { text-align: left; }
    .ipv33 .info-trio { grid-template-columns: 1fr; }
    .ipv33 .gallery-grid { grid-template-columns: 1fr 1fr; }
    .ipv33 .footer-grid { grid-template-columns: 1fr; }
    .ipv33 .footer-bottom { flex-direction: column; gap: 8px; padding: 22px 20px 0; }
    .ipv33 .site-footer { padding: 36px 20px 24px; }
    .ipv33 .modal-content { padding: 22px; }
    .ipv33 .form-grid { grid-template-columns: 1fr; }
    .ipv33 .schedule-week { grid-template-columns: 1fr 1fr; }
    .ipv33 .schedule-day:nth-child(7) { grid-column: span 2; }
    .ipv33 .amenities-grid { grid-template-columns: 1fr 1fr; }
    .ipv33 .class-item { grid-template-columns: 1fr; gap: 10px; text-align: left; }
    .ipv33 .class-time { padding-right: 0; border-right: none; border-bottom: 1px solid var(--rule); padding-bottom: 10px; display: flex; gap: 10px; align-items: baseline; text-align: left; }
    .ipv33 .schedule-legend { font-size: 11px; }
    .ipv33 .schedule-legend-note { margin-left: 0; width: 100%; margin-top: 8px; }
    .ipv33 .clinician-filters { gap: 4px; }
    .ipv33 .cf-pill { padding: 6px 12px; font-size: 11.5px; }
    .ipv33 .intake-step { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
    .ipv33 .intake-step-num { font-size: 34px; }
    .ipv33 .intake-step-content h3 { font-size: 17px !important; }
    .ipv33 .insurance-grid { grid-template-columns: 1fr 1fr; }
  
}


/* DEMO badge directive (2026-06-12): all demo listings show amber DEMO ribbon, not Featured */
.ipv33 .ip-demo-ribbon { background: #FEF3C7 !important; color: #B45309 !important; }

/* culturis-design-lock-2026-06-12 */
.ipv33 .pull-quote,.ipv33 .booking-note-card,.ipv33 .background-card,.ipv33 .editorial-spread{border-left:none !important;border-top:none !important;border-right:none !important}
.ipv33 .pull-quote,.ipv33 .booking-card,.ipv33 .sidebar-card,.ipv33 .aside-card,.ipv33 .recommendation-card,.ipv33 .experience-card,.ipv33 .amenity-card,.ipv33 .membership-card,.ipv33 .booking-note-card,.ipv33 .insurance-card,.ipv33 .map-card,.ipv33 .follow-sidebar,.ipv33 .share-card,.ipv33 .team-card,.ipv33 .info-trio-item,.ipv33 .profile-main,.ipv33 .modal-content,.ipv33 .ip-empty-card{border-radius:14px 14px 0 14px !important}
.ipv33 .pull-quote{background:rgba(248,225,210,0.45) !important;padding:24px 28px 24px 56px !important}
