  :root {
    --bg-page:        #FDFCFA;
    --bg-cream:       #F7F1E5;
    --bg-cream-soft:  #FBF6EC;
    --bg-white:       #FFFFFF;
    --ink:            #0F2C3D;
    --ink-soft:       #4A6B7E;
    --ink-mute:       #84A0B0;
    --line:           #E8DCC4;
    --line-soft:      #F1E8D4;
    --coral:          #E8643B;
    --coral-dark:     #C84F2A;
    --coral-soft:     #F8B89E;
    --coral-tint:     #FCEEE3;
    --success:        #4A8F5D;

    --shadow-card: 0 1px 3px rgba(15,44,61,.05), 0 12px 32px rgba(15,44,61,.08);
    --shadow-lift: 0 1px 2px rgba(15,44,61,.04), 0 20px 56px rgba(15,44,61,.10);

    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 28px;
    --r-pill: 999px;

    --container: 1160px;
    --gutter: clamp(20px, 4vw, 56px);

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg-page);
    line-height: 1.55;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; }
  h1 { font-size: clamp(2.8rem, 6.4vw, 5.2rem); }
  h2 { font-size: clamp(2rem, 4vw, 3rem); }
  h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); line-height: 1.2; }
  .italic { font-style: italic; color: var(--coral); font-weight: 400; }
  .eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral);
    font-weight: 600;
  }
  a { color: inherit; text-decoration: none; }

  .container { max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
  section { padding: clamp(56px, 6.5vw, 88px) 0; }
  /* Tighten transitions between adjacent thematic sections */
  .voices { padding-bottom: clamp(12px, 1.5vw, 20px); }
  .gift-mini { padding-top: clamp(4px, 0.8vw, 10px); padding-bottom: clamp(40px, 5vw, 60px); }
  .faq { padding-top: clamp(48px, 5.5vw, 72px); }
  .pillars-head { margin-bottom: clamp(36px, 4.5vw, 56px); }
  .how-head { margin-bottom: clamp(28px, 3.5vw, 40px); }
  .sitters-head { margin-bottom: clamp(36px, 4vw, 48px); }
  .voices-head { margin-bottom: clamp(36px, 4vw, 48px); }
  .faq-head { margin-bottom: clamp(28px, 3.5vw, 40px); }
  .sitters-foot { margin-top: clamp(32px, 4vw, 44px); }

  /* =========================================
     BUTTON SYSTEM — 3 variants only
     ========================================= */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-size: 15px; font-weight: 600;
    cursor: pointer; transition: all .22s ease;
    border: none; text-decoration: none;
    letter-spacing: 0.005em;
    white-space: nowrap;
  }
  /* Primary — only ever the booking CTA */
  .btn-primary { background: var(--coral); color: white; box-shadow: 0 2px 8px rgba(232,100,59,.28); }
  .btn-primary:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(232,100,59,.35); }
  /* Secondary — outlined, supporting actions */
  .btn-secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); padding: 14.5px 26px; }
  .btn-secondary:hover { background: var(--ink); color: var(--bg-cream); }
  /* Tertiary — text link for navigation */
  .btn-link {
    color: var(--ink); font-weight: 600; padding: 6px 0;
    border-bottom: 1.5px solid var(--ink);
    transition: color .2s, border-color .2s;
    border-radius: 0;
  }
  .btn-link:hover { color: var(--coral); border-bottom-color: var(--coral); }
  .arrow { transition: transform .22s; }
  .btn:hover .arrow { transform: translateX(3px); }
  .btn-sm { padding: 11px 20px; font-size: 14px; }

  /* =========================================
     NAV
     ========================================= */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(253,252,250,.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 24px; }
  .logo {
    display: flex; align-items: center; gap: 10px;
  }
  .logo img { height: 64px; width: auto; display: block; }
  .nav-links {
    display: flex; gap: 30px; align-items: center;
    font-size: 14px; font-weight: 500;
    color: var(--ink-soft);
  }
  .nav-links > a { transition: color .2s; }
  .nav-links > a:hover { color: var(--coral); }

  /* Parcerias dropdown */
  .nav-drop { position: relative; }
  .nav-drop-trigger {
    background: none; border: none; padding: 0;
    font: inherit; color: var(--ink-soft);
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
    transition: color .2s;
  }
  .nav-drop-trigger:hover,
  .nav-drop[data-open="true"] .nav-drop-trigger { color: var(--coral); }
  .nav-drop-trigger svg { width: 11px; height: 11px; transition: transform .2s; }
  .nav-drop[data-open="true"] .nav-drop-trigger svg { transform: rotate(180deg); }
  .nav-drop-menu {
    position: absolute; top: calc(100% + 14px); left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--bg-white);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-card);
    padding: 8px;
    min-width: 220px;
    display: flex; flex-direction: column;
    opacity: 0; pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 5;
  }
  .nav-drop[data-open="true"] .nav-drop-menu {
    opacity: 1; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav-drop-menu a {
    display: flex; flex-direction: column;
    gap: 2px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--ink);
    font-size: 14px; font-weight: 600;
    transition: background .15s, color .15s;
  }
  .nav-drop-menu a small {
    font-size: 12px; font-weight: 500;
    color: var(--ink-mute);
  }
  .nav-drop-menu a:hover { background: var(--bg-cream-soft); color: var(--coral); }
  .nav-drop-menu a:hover small { color: var(--ink-soft); }
  .nav-cta { display: flex; align-items: center; gap: 16px; }
  .nav-login { font-size: 14px; font-weight: 500; color: var(--ink-soft); }
  .nav-login:hover { color: var(--coral); }
  .lang-toggle {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 13px; font-weight: 600;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
  }
  .lang-btn {
    background: none; border: none; padding: 4px 6px; cursor: pointer;
    font: inherit; color: inherit; letter-spacing: inherit;
    border-radius: 4px; transition: color .2s;
  }
  .lang-btn:hover { color: var(--ink); }
  .lang-btn.is-active { color: var(--ink); }
  .lang-sep { color: var(--line); }

  /* Mobile hamburger + dropdown menu (shown only <=860px) */
  .nav-burger {
    display: none;
    width: 38px; height: 38px;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px;
    background: none; border: none; padding: 0; cursor: pointer;
  }
  .nav-burger span {
    display: block; width: 22px; height: 2px; border-radius: 2px;
    background: var(--ink); transition: transform .2s ease, opacity .2s ease;
  }
  .nav[data-menu-open="true"] .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav[data-menu-open="true"] .nav-burger span:nth-child(2) { opacity: 0; }
  .nav[data-menu-open="true"] .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-mobile {
    display: none;
    flex-direction: column;
    padding: 8px 0 16px;
    border-top: 1px solid var(--line-soft);
  }
  .nav-mobile a {
    padding: 14px 4px;
    font-size: 16px; font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid var(--line-soft);
    transition: color .15s;
  }
  .nav-mobile a:last-child { border-bottom: none; }
  .nav-mobile a:hover { color: var(--coral); }
  .nav-mobile .nav-mobile-login {
    margin-top: 12px;
    text-align: center;
    color: var(--bg-white);
    background: var(--coral);
    border-radius: var(--r-md);
    border-bottom: none;
  }
  .nav-mobile .nav-mobile-login:hover { color: var(--bg-white); opacity: .92; }

  @media (max-width: 860px) {
    .nav-links { display: none; }
    .nav-login { display: none; }
    .lang-toggle { font-size: 12px; }
    .nav-burger { display: inline-flex; }
    .nav[data-menu-open="true"] .nav-mobile { display: flex; }
  }
  @media (max-width: 520px) {
    .nav-cta .btn { padding: 11px 18px; font-size: 13px; }
    .logo img { height: 52px; }
  }

  /* =========================================
     HERO — minimal, single CTA
     ========================================= */
  .hero { padding: clamp(64px, 9vw, 112px) 0 clamp(56px, 7vw, 88px); position: relative; overflow: hidden; }
  .hero::before {
    content: '';
    position: absolute; pointer-events: none;
    width: 760px; height: 760px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,100,59,.08) 0%, transparent 65%);
    top: -260px; left: -260px;
    animation: heroBlob 16s ease-in-out infinite alternate;
  }
  .hero::after {
    content: '';
    position: absolute; pointer-events: none;
    width: 560px; height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247,241,229,.7) 0%, transparent 70%);
    bottom: -240px; right: -200px;
    animation: heroBlob 22s ease-in-out infinite alternate-reverse;
  }
  @keyframes heroBlob {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(40px,28px) scale(1.06); }
  }
  .hero .container { position: relative; z-index: 1; max-width: 980px; text-align: center; }

  .hero-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 16px 7px 14px;
    background: var(--bg-white);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    font-size: 12px; font-weight: 600;
    color: var(--ink);
    box-shadow: 0 1px 2px rgba(15,44,61,.04);
    margin-bottom: 28px;
  }
  .hero-pill .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 0 rgba(74,143,93,.5);
    animation: pulse 2s ease-out infinite;
  }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(74,143,93,.5); }
    70%  { box-shadow: 0 0 0 9px rgba(74,143,93,0); }
    100% { box-shadow: 0 0 0 0 rgba(74,143,93,0); }
  }
  .hero h1 {
    letter-spacing: -0.038em;
    line-height: 0.98;
    max-width: 900px;
    margin: 0 auto;
    text-wrap: balance;
  }
  .hero h1 .italic { display: inline; }
  .hero-sub {
    font-size: clamp(1.08rem, 1.4vw, 1.25rem);
    color: var(--ink-soft);
    margin: 28px auto 0;
    max-width: 620px;
    line-height: 1.55;
    text-wrap: pretty;
  }
  .hero-cta-row {
    margin-top: 40px;
    display: flex; align-items: center; justify-content: center;
    gap: 28px; flex-wrap: wrap;
  }
  .hero-reassure {
    margin-top: 18px;
    font-size: 13px;
    color: var(--ink-mute);
    display: inline-flex; align-items: center; gap: 14px;
    flex-wrap: wrap; justify-content: center;
  }
  .hero-reassure span { display: inline-flex; align-items: center; gap: 6px; }
  .hero-reassure .sep { color: var(--line); }
  .check-ic {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--coral-tint);
    color: var(--coral);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 10px;
  }

  .hero-trust {
    margin-top: 64px;
    display: flex; flex-direction: column; align-items: center; gap: 22px;
  }
  .hero-trust-line {
    display: flex; align-items: center; justify-content: center;
    gap: 28px; flex-wrap: wrap;
    font-size: 13px; color: var(--ink-soft);
  }
  .hero-trust-line strong { color: var(--ink); font-weight: 700; }
  .hero-trust-line .stars { color: var(--coral); letter-spacing: 0.05em; font-size: 14px; }
  .google-badge {
    display: inline-flex; align-items: center; gap: 11px;
    padding: 10px 17px 10px 15px;
    background: var(--bg-white);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    font-size: 14px;
    color: var(--ink-soft);
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(15,44,61,.04), 0 6px 16px rgba(15,44,61,.06);
  }
  .google-badge-logo { width: 19px; height: 19px; flex-shrink: 0; }
  .google-badge-rating {
    display: inline-flex; align-items: center; gap: 5px;
    color: var(--ink); font-weight: 700;
  }
  .google-badge-stars { color: #F5A623; letter-spacing: 0.04em; font-size: 13.5px; }
  .google-badge-meta { color: var(--ink-mute); }
  .hero-team-mini {
    display: inline-flex; align-items: center; gap: 16px;
  }
  .hero-team-mini img {
    width: 420px; height: 236px;
    object-fit: cover; object-position: center 30%;
    border-radius: 20px;
    border: 4px solid var(--bg-white);
    box-shadow: 0 1px 2px rgba(15,44,61,.06), 0 20px 44px rgba(15,44,61,.16);
    flex-shrink: 0;
  }
  .hero-team-mini-text {
    display: flex; flex-direction: column; line-height: 1.3;
    font-size: 13.5px; color: var(--ink-soft);
  }
  .hero-team-mini-text strong { color: var(--ink); font-weight: 700; font-size: 15px; }
  @media (max-width: 980px) {
    .hero-team-mini img { width: 336px; height: 188px; }
  }
  @media (max-width: 520px) {
    .hero-team-mini { gap: 12px; }
    .hero-team-mini img { width: 100%; max-width: 280px; height: 160px; }
  }
  .hero-press {
    display: flex; align-items: center; justify-content: center;
    gap: 38px; flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid var(--line-soft);
    width: 100%; max-width: 720px;
  }
  .hero-press-label {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-mute); font-weight: 600;
  }
  .hero-press-logos {
    display: flex; gap: 32px; flex-wrap: wrap; align-items: center; justify-content: center;
  }
  .hero-press-logos span {
    font-family: var(--font-display);
    font-size: 16px; font-weight: 500; letter-spacing: 0.04em;
    color: var(--ink-mute);
    transition: color .25s;
  }
  .hero-press-logos span:hover { color: var(--ink); }

  /* =========================================
     PHASES — horizontal chip row
     ========================================= */
  .phases {
    padding: clamp(28px, 4vw, 44px) 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    background: var(--bg-page);
  }
  .phases-inner {
    display: flex; align-items: center;
    gap: clamp(16px, 3vw, 32px);
    flex-wrap: wrap;
    justify-content: center;
  }
  .phases-label {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-mute); font-weight: 600;
    margin-right: 4px;
  }
  .phases-row {
    display: flex; flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .phase-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 18px;
    font-size: 14px; font-weight: 500;
    color: var(--ink);
    background: var(--bg-white);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    transition: border-color .2s, color .2s, background .2s, transform .2s;
    cursor: pointer;
  }
  .phase-chip:hover {
    border-color: var(--coral);
    color: var(--coral);
    background: var(--coral-tint);
    transform: translateY(-1px);
  }
  .phase-chip .chip-arrow {
    font-size: 12px;
    opacity: 0.5;
    transition: transform .2s, opacity .2s;
  }
  .phase-chip:hover .chip-arrow { opacity: 1; transform: translateX(2px); }
  @media (max-width: 520px) {
    .phases-label { display: none; }
    .phase-chip { padding: 8px 14px; font-size: 13px; }
  }

  /* =========================================
     GIFT VOUCHER — small inline card
     ========================================= */
  .gift-mini {
    padding: clamp(20px, 3vw, 36px) 0;
    background: var(--bg-page);
  }
  .gift-mini-card {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: white;
    border-radius: var(--r-lg);
    padding: 26px 32px;
    display: flex; align-items: center; gap: 24px;
    box-shadow: 0 1px 2px rgba(15,44,61,.04), 0 18px 40px rgba(200,79,42,.20);
    position: relative;
    overflow: hidden;
  }
  .gift-mini-card::before {
    content: '';
    position: absolute; right: -40px; top: -40px;
    width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.14) 0%, transparent 70%);
    pointer-events: none;
  }
  .gift-mini-icon {
    width: 52px; height: 52px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(255,255,255,.16);
    display: flex; align-items: center; justify-content: center;
    color: white;
    position: relative; z-index: 1;
  }
  .gift-mini-icon svg { width: 26px; height: 26px; }
  .gift-mini-body { flex: 1; position: relative; z-index: 1; }
  .gift-mini-eyebrow {
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,.78); font-weight: 700;
    margin-bottom: 4px;
  }
  .gift-mini-title {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  .gift-mini-title .italic { font-style: italic; color: var(--bg-cream); }
  .gift-mini-cta {
    flex-shrink: 0;
    position: relative; z-index: 1;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px;
    border-radius: var(--r-pill);
    background: white;
    color: var(--coral-dark);
    font-weight: 600; font-size: 14px;
    transition: transform .2s, background .2s;
  }
  .gift-mini-cta:hover { background: var(--bg-cream); transform: translateY(-1px); }
  @media (max-width: 720px) {
    .gift-mini-card {
      flex-direction: column; text-align: center;
      padding: 28px 24px;
      gap: 16px;
    }
  }

  /* =========================================
     PILLARS — 3 reasons we're different
     ========================================= */
  .pillars { background: var(--bg-cream-soft); }
  .pillars-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
  }
  .pillars-head h2 { margin: 12px 0 18px; text-wrap: balance; }
  .pillars-head p { color: var(--ink-soft); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) { .pillars-grid { grid-template-columns: 1fr; } }
  .pillar-wide { grid-column: 1 / -1; }
  @media (max-width: 900px) { .pillar-wide { grid-column: 1; } }

  .pillar {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 22px 22px 20px;
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 4px;
    align-items: start;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
  }
  .pillar:hover {
    border-color: var(--coral);
    background: var(--bg-white);
    transform: translateY(-2px);
  }
  .pillar-stat {
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 500;
    color: var(--coral);
    letter-spacing: -0.03em;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--coral-tint);
    border-radius: 12px;
    margin: 0;
    grid-row: 1;
    grid-column: 1;
  }
  .pillar-stat .pct { font-size: 0.55em; vertical-align: 0.2em; margin-left: 1px; }
  .pillar-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--coral-tint);
    color: var(--coral);
    display: flex; align-items: center; justify-content: center;
    margin: 0;
    grid-row: 1;
    grid-column: 1;
  }
  .pillar-icon svg { width: 22px; height: 22px; }
  .pillar h3 {
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.3;
    margin: 0 0 4px;
    grid-row: 1;
    grid-column: 2;
    align-self: center;
  }
  .pillar p {
    color: var(--ink-soft);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
    grid-row: 2;
    grid-column: 1 / -1;
  }
  .pillar-tag {
    position: absolute; top: 14px; right: 14px;
    font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-soft); font-weight: 700;
    background: transparent;
    padding: 0;
    border-radius: 0;
  }

  /* =========================================
     VALUE — compact toggle (Pais / Crianças / Família)
     ========================================= */
  .value {
    margin-top: clamp(64px, 8vw, 96px);
    max-width: 760px;
    margin-left: auto; margin-right: auto;
    background: var(--bg-white);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: clamp(24px, 3vw, 36px);
    box-shadow: 0 1px 2px rgba(15,44,61,.03), 0 10px 30px rgba(15,44,61,.04);
  }
  .value-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
    margin-bottom: 22px;
  }
  .value-head-text { min-width: 0; max-width: 360px; }
  .value-head .eyebrow { margin-bottom: 8px; }
  .value-head h3 {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.7vw, 1.35rem);
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.2;
    text-wrap: balance;
  }
  .value-head h3 .italic { color: var(--coral); font-style: italic; }

  /* Segmented toggle */
  .value-tabs {
    display: inline-flex;
    background: var(--bg-cream-soft);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-pill);
    padding: 4px;
    gap: 2px;
  }
  .value-tab {
    background: none; border: none;
    font: inherit; cursor: pointer;
    font-size: 13px; font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--r-pill);
    color: var(--ink-soft);
    transition: background .2s, color .2s;
    white-space: nowrap;
  }
  .value-tab:hover { color: var(--ink); }
  .value-tab[aria-selected="true"] {
    background: var(--ink);
    color: var(--bg-white);
  }

  .value-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  @media (max-width: 640px) { .value-panel { grid-template-columns: 1fr; } }
  .value-panel[hidden] { display: none; }

  .value-item {
    display: flex; flex-direction: column; gap: 6px;
    padding: 16px 16px 18px;
    background: var(--bg-cream-soft);
    border-radius: var(--r-md);
    border: 1px solid var(--line-soft);
    transition: background .2s, border-color .2s, transform .25s;
    animation: valueIn .35s ease both;
  }
  .value-item:hover { background: var(--bg-white); border-color: var(--coral-soft); transform: translateY(-2px); }
  @keyframes valueIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .value-item:nth-child(2) { animation-delay: .05s; }
  .value-item:nth-child(3) { animation-delay: .10s; }
  .value-item-ic {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: var(--bg-white);
    border: 1px solid var(--line-soft);
    color: var(--coral);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 4px;
  }
  .value-item-ic svg { width: 16px; height: 16px; }
  .value-item-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.25;
    color: var(--ink);
  }
  .value-item-sub {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.45;
  }


  /* =========================================
     HOW IT WORKS — 3 steps
     ========================================= */
  .how { background: var(--bg-page); padding: clamp(20px, 2.5vw, 32px) 0 clamp(24px, 3vw, 36px); }
  .how-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
  }
  .how-head .eyebrow { justify-content: center; display: inline-flex; }
  .how-head h2 { text-wrap: balance; margin-top: 12px; }
  .how-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
    position: relative;
    max-width: 880px;
    margin: 0 auto;
  }
  .how-steps::before { display: none; }
  .step {
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
  }
  .step-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 30px;
    color: var(--ink-soft);
    letter-spacing: 0;
    margin: 0 0 14px;
    width: auto; height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    display: block;
    transition: color .3s;
  }
  .step:hover .step-num { color: var(--coral); background: transparent; transform: none; }
  .step-illu {
    width: 76px; height: 76px;
    margin: 0 auto 14px;
    color: var(--coral);
    display: flex; align-items: center; justify-content: center;
  }
  .step-illu svg { width: 100%; height: 100%; }
  .step h3 { margin-bottom: 6px; font-size: 1rem; font-weight: 600; color: var(--ink); }
  .step p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.55; max-width: 220px; margin: 0 auto; }
  .step-time {
    margin-top: 10px;
    font-size: 11px; font-weight: 600;
    color: var(--coral);
    letter-spacing: 0.04em;
  }
  .step-sep {
    align-self: center;
    margin-top: 56px;
    color: var(--line);
    font-size: 18px;
    letter-spacing: 6px;
    user-select: none;
  }
  .how-cta { text-align: center; margin-top: 56px; }

  @media (max-width: 720px) {
    .how-steps {
      grid-template-columns: 1fr;
      gap: 28px;
      max-width: 360px;
    }
    .step-sep { display: none; }
    .step { padding: 0; }
    .how-cta { margin-top: 44px; }
  }

  /* =========================================
     BABYSITTERS — real photos
     ========================================= */
  .sitters { background: var(--bg-cream); }
  .sitters-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
  }
  .sitters-head h2 { margin: 12px 0 18px; text-wrap: balance; }
  .sitters-head p { color: var(--ink-soft); font-size: 1.05rem; }

  .sitters-carousel-wrap {
    position: relative;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: linear-gradient(to right, transparent 0, #000 3%, #000 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 3%, #000 97%, transparent 100%);
    user-select: none;
    -webkit-user-select: none;
  }
  .sitters-carousel-wrap::-webkit-scrollbar { display: none; }
  .sitters-track {
    display: flex;
    width: max-content;
    gap: 22px;
    padding: 4px 22px 4px 0;
  }
  .sitters-track .sitter {
    flex: 0 0 260px;
    min-width: 0;
  }
  .sitters-track .sitter-photo { aspect-ratio: 1 / 0.88; }
  .sitters-track .sitter-body { padding: 16px 18px 20px; gap: 12px; }
  .sitters-track .sitter-meta { gap: 8px 14px; padding-bottom: 12px; }
  .sitters-track .sitter-meta-val { font-size: 12.5px; }
  .sitters-track .sitter-quote { font-size: 13.5px; }
  @media (max-width: 600px) {
    .sitters-track .sitter { flex: 0 0 230px; }
  }

  .sitters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  @media (max-width: 980px) { .sitters-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 520px) { .sitters-grid { grid-template-columns: 1fr; } }

  .sitter {
    background: var(--bg-white);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    display: flex;
    flex-direction: column;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
  }
  .sitter:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--line);
  }
  .sitter:hover .sitter-photo { filter: brightness(1.03); }
  .sitter-photo { transition: filter .3s ease; }
  .sitter-photo {
    aspect-ratio: 1 / 1.05;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .sitter-photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,44,61,.45) 0%, transparent 35%);
  }
  .sitter-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--bg-white);
    color: var(--ink);
    font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 6px 10px;
    border-radius: var(--r-pill);
    display: inline-flex; align-items: center; gap: 6px;
    z-index: 1;
  }
  .sitter-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
  .sitter-name-overlay {
    position: absolute; bottom: 14px; left: 16px; right: 16px;
    color: white;
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 500;
    z-index: 1;
    display: flex; align-items: baseline; gap: 10px;
  }
  .sitter-name-overlay span:last-child {
    font-family: var(--font-body);
    font-size: 12px; font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.02em;
  }
  .sitter-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
  .sitter-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--line);
  }
  .sitter-meta-row { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .sitter-meta-label {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
  }
  .sitter-meta-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.25;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .sitter-meta-val.wrap { white-space: normal; }
  .sitter-tags { display: flex; flex-wrap: wrap; gap: 6px; }
  .sitter-tag {
    font-size: 11px; font-weight: 600;
    color: var(--coral);
    background: var(--coral-tint);
    border: 1px solid transparent;
    padding: 4px 10px;
    border-radius: var(--r-pill);
  }
  .sitter-quote {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.45;
    margin-top: 2px;
  }

  .sitter-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 11px 16px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
    border: 1.5px solid var(--coral);
    color: var(--coral);
    background: transparent;
    margin-top: auto;
  }
  .sitter-cta:hover { background: var(--coral); color: #fff; }
  .sitter-cta .arrow { transition: transform .2s; }
  .sitter-cta:hover .arrow { transform: translateX(3px); }

  .sitters-foot {
    text-align: center;
    margin-top: 48px;
  }

  .sitters-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 640px;
    margin: clamp(28px, 3vw, 40px) auto 0;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--color-border, #ece9e4);
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-muted, #6b6560);
  }
  .sitters-disclaimer svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--color-accent, #e85d26);
  }
  .sitters-disclaimer strong {
    color: var(--color-text, #1a1815);
    font-weight: 600;
  }

  /* =========================================
     TESTIMONIALS — with embedded video testimonial
     ========================================= */
  .voices { background: var(--bg-page); }
  .voices-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
  .voices-head h2 { margin: 12px 0; text-wrap: balance; }

  /* Layout: video tile on the left, stacked testimonials on the right */
  .voices-layout {
    display: grid;
    grid-template-columns: minmax(240px, 280px) 1fr;
    gap: clamp(22px, 3vw, 36px);
    align-items: start;
  }
  @media (max-width: 860px) {
    .voices-layout { grid-template-columns: 1fr; gap: 28px; }
  }

  .voices-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  /* Video testimonial card — same card vocabulary as written testimonials */
  .voice-video {
    background: var(--bg-white);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-lg);
    padding: 14px 14px 18px;
    display: flex; flex-direction: column;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative;
    overflow: hidden;
  }
  .voice-video:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
    border-color: var(--line);
  }
  @media (max-width: 860px) {
    .voice-video {
      flex-direction: row;
      gap: 20px;
      padding: 14px;
      align-items: stretch;
      max-width: 540px;
      margin: 0 auto;
      width: 100%;
    }
    .voice-video-frame { flex: 0 0 160px; }
    .voice-video-meta { flex: 1; align-self: center; margin-top: 0 !important; padding: 0 !important; }
  }
  @media (max-width: 520px) {
    .voice-video { flex-direction: column; }
    .voice-video-frame { flex: 1; max-width: 220px; margin: 0 auto; width: 100%; }
    .voice-video-meta { align-items: center !important; text-align: center !important; padding: 0 6px !important; }
  }

  .voice-video-frame {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: calc(var(--r-lg) - 6px);
    overflow: hidden;
    background: var(--bg-cream);
    box-shadow: 0 1px 2px rgba(15,44,61,.04), 0 14px 32px rgba(15,44,61,.10);
  }
  .voice-video-el {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    background: var(--bg-cream);
  }
  /* Subtle play affordance overlay on the poster, fades on hover */
  .voice-video-play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
    transition: opacity .25s ease;
  }
  .voice-video-play-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: var(--coral);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(15,44,61,.18);
  }
  .voice-video-play-btn svg { width: 22px; height: 22px; margin-left: 3px; }
  .voice-video-frame:hover .voice-video-play { opacity: 0.4; }

  /* Floating badge in the corner of the video — anchors it to the testimonials world */
  .voice-video-badge {
    position: absolute;
    top: 12px; left: 12px;
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--bg-white);
    color: var(--ink);
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 5px 10px;
    border-radius: var(--r-pill);
    z-index: 1;
  }
  .voice-video-badge .rec {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 0 rgba(232,100,59,.5);
    animation: pulse 2s ease-out infinite;
  }
  .voice-video-stars {
    position: absolute; bottom: 12px; left: 12px;
    color: white;
    letter-spacing: 0.08em; font-size: 13px;
    z-index: 1;
    text-shadow: 0 1px 4px rgba(15,44,61,.4);
  }
  .voice-video-frame::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,44,61,.45) 0%, transparent 35%);
    pointer-events: none;
  }

  .voice-video-meta {
    margin-top: 14px;
    display: flex; flex-direction: column; gap: 4px;
    align-items: flex-start;
    padding: 0 6px;
  }
  .voice-video-eyebrow {
    font-size: 10.5px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--coral);
  }
  .voice-video-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.98rem;
    line-height: 1.35;
    color: var(--ink);
    margin: 2px 0 6px;
    text-wrap: balance;
  }
  .voice-video-author {
    font-size: 12.5px;
    color: var(--ink-soft);
  }
  .voice-video-author strong { color: var(--ink); font-weight: 600; }

  /* Written testimonials — stacked on the right */
  .voices-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .voice {
    background: var(--bg-white);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-md);
    padding: 14px 16px;
    position: relative;
    transition: transform .3s, box-shadow .3s;
  }
  @media (max-width: 520px) { .voice { padding: 12px 14px; } }
  .voice:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
  .voice-stars { color: var(--coral); letter-spacing: 0.06em; font-size: 12px; margin-bottom: 6px; }
  .voice p {
    font-family: var(--font-display);
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--ink);
    margin: 0 0 8px;
    font-weight: 400;
    text-wrap: pretty;
  }
  .voice-author {
    display: flex; align-items: center; gap: 8px;
    border-top: none;
    padding-top: 0;
  }
  .voice-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background-size: cover; background-position: center;
    background-color: var(--bg-cream);
  }
  .voice-name { font-size: 12.5px; font-weight: 600; color: var(--ink); }
  .voice-meta { font-size: 11px; color: var(--ink-soft); }

  /* =========================================
     FAQ — compact accordion
     ========================================= */
  .faq { background: var(--bg-cream-soft); }
  .faq-wrap {
    max-width: 1080px;
    margin: 0 auto;
  }
  .faq-head { text-align: center; margin-bottom: 48px; }
  .faq-head h2 { margin: 12px 0; text-wrap: balance; }
  .faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
  }
  @media (max-width: 720px) { .faq-list { grid-template-columns: 1fr; } }
  .faq-item {
    background: var(--bg-white);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: box-shadow .25s, border-color .25s;
  }
  .faq-item[open] { box-shadow: var(--shadow-card); border-color: var(--line); }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px;
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--ink);
    display: flex; align-items: center;
    gap: 16px;
  }
  .faq-q-ic {
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--coral-tint);
    color: var(--coral);
    display: flex; align-items: center; justify-content: center;
    transition: background .25s, transform .25s;
  }
  .faq-q-ic svg { width: 20px; height: 20px; }
  .faq-item[open] .faq-q-ic { background: var(--coral); color: white; transform: rotate(-6deg); }
  .faq-q-text { flex: 1; min-width: 0; text-wrap: balance; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 22px; font-weight: 400;
    color: var(--coral);
    line-height: 1;
    transition: transform .25s;
    margin-left: auto;
    flex-shrink: 0;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item-body {
    padding: 0 22px 20px 22px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
  }
  @media (max-width: 520px) {
    .faq-item-body { padding-left: 22px; }
  }
  .faq-foot {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 22px;
    padding: 16px 20px;
    border-top: 1px solid var(--line-soft);
  }
  .faq-foot-text {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--ink);
  }
  .faq-foot-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 22px;
  }
  .faq-foot-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--coral);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
  }
  .faq-foot-link .arrow { transition: transform .2s; }
  .faq-foot-link:hover { color: var(--coral-deep, var(--coral)); }
  .faq-foot-link:hover .arrow { transform: translateX(3px); }
  .faq-foot-link-alt { color: var(--ink-soft); }
  .faq-foot-link-alt:hover { color: var(--ink); }

  /* =========================================
     FINAL CTA — harmonious cream/coral gradient
     ========================================= */
  .final {
    background:
      radial-gradient(circle at 80% 20%, rgba(232,100,59,.18) 0%, transparent 55%),
      radial-gradient(circle at 10% 85%, rgba(248,184,158,.30) 0%, transparent 60%),
      linear-gradient(180deg, var(--bg-cream-soft) 0%, var(--coral-tint) 100%);
    color: var(--ink);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line-soft);
  }
  .final::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(15,44,61,.04) 1px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.5;
  }
  .final .container {
    position: relative; z-index: 1;
    text-align: center;
    max-width: 760px;
  }
  .final .eyebrow { color: var(--coral-dark); }
  .final h2 { color: var(--ink); margin: 14px 0 22px; text-wrap: balance; }
  .final h2 .italic { color: var(--coral); }
  .final p {
    color: var(--ink-soft);
    font-size: 1.1rem;
    max-width: 540px;
    margin: 0 auto 36px;
  }
  .final-cta-row {
    display: flex; align-items: center; justify-content: center;
    gap: 18px; flex-wrap: wrap;
  }
  .final .btn-secondary {
    color: var(--ink); border-color: var(--ink);
  }
  .final .btn-secondary:hover { background: var(--ink); color: var(--bg-cream); border-color: var(--ink); }
  .final-reassure {
    margin-top: 22px;
    font-size: 13px;
    color: var(--ink-mute);
  }

  /* =========================================
     FOOTER
     ========================================= */
  footer {
    background: var(--ink);
    color: rgba(247,241,229,.7);
    padding: 56px 0 32px;
    font-size: 13px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(247,241,229,.12);
  }
  @media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
  @media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
  .footer-brand img { height: 38px; width: auto; margin-bottom: 14px; }
  .footer-brand p { font-size: 12px; line-height: 1.6; max-width: 280px; }
  .footer-contacts { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
  .footer-contacts li { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(247,241,229,.85); }
  .footer-contacts svg { width: 14px; height: 14px; color: var(--coral-soft); flex-shrink: 0; }
  .footer-contacts a { color: inherit; transition: color .2s; }
  .footer-contacts a:hover { color: var(--coral-soft); }
  .footer-social { display: flex; gap: 10px; margin-top: 18px; }
  .footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(247,241,229,.08);
    color: rgba(247,241,229,.85);
    transition: background .2s, color .2s, transform .2s;
  }
  .footer-social a:hover { background: var(--coral); color: white; transform: translateY(-1px); }
  .footer-social svg { width: 14px; height: 14px; }
  .footer-col h5 {
    font-family: var(--font-body);
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(247,241,229,.5);
    margin-bottom: 14px;
    font-weight: 600;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col a { color: rgba(247,241,229,.85); font-size: 12.5px; transition: color .2s; }
  .footer-col a:hover { color: var(--coral-soft); }
  .footer-support {
    padding: 24px 0;
    border-bottom: 1px solid rgba(247,241,229,.12);
    display: flex; flex-direction: column; gap: 14px;
  }
  .footer-support-label {
    font-family: var(--font-body);
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(247,241,229,.5);
    font-weight: 600;
  }
  .footer-support-row {
    display: flex; align-items: center; gap: 28px;
    flex-wrap: wrap;
  }
  .footer-support-prr {
    background: rgba(247,241,229,.92);
    border-radius: 8px;
    padding: 10px 14px;
    display: inline-flex; align-items: center;
    transition: background .2s;
  }
  .footer-support-prr:hover { background: #fff; }
  .footer-support-prr img { height: 38px; width: auto; max-width: 100%; display: block; }
  .footer-support-links {
    display: flex; align-items: center; gap: 20px;
    font-size: 11.5px; color: rgba(247,241,229,.7);
    flex-wrap: wrap;
  }
  .footer-support-links a { color: rgba(247,241,229,.85); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(247,241,229,.25); transition: color .2s, text-decoration-color .2s; }
  .footer-support-links a:hover { color: var(--coral-soft); text-decoration-color: var(--coral-soft); }
  .footer-base {
    padding-top: 22px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
    font-size: 11px;
    color: rgba(247,241,229,.45);
  }

  /* =========================================
     HOTEL PARTNERS MARQUEE — circular logo loop
     ========================================= */
  .hotel-marquee {
    padding: clamp(18px, 2.5vw, 32px) 0 clamp(4px, 0.6vw, 8px);
    background: var(--bg-cream);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    overflow: hidden;
  }
  .hotel-marquee-label {
    text-align: center;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-mute); font-weight: 600;
    margin-bottom: 28px;
  }
  .hotel-marquee-label .italic { color: var(--coral); text-transform: none; font-style: italic; font-family: var(--font-display); font-size: 15px; letter-spacing: 0; font-weight: 400; margin-left: 4px; }
  .hotel-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 48s linear infinite;
    mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  }
  .hotel-marquee:hover .hotel-marquee-track { animation-play-state: paused; }
  .hotel-marquee-group {
    display: flex; align-items: center;
    gap: clamp(48px, 5vw, 80px);
    padding-right: clamp(48px, 5vw, 80px);
  }
  .hotel-logo {
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    height: 88px;
    width: auto;
    transition: opacity .25s, transform .25s;
    opacity: 0.78;
  }
  .hotel-logo img {
    display: block;
    height: 100%;
    width: auto;
    max-width: 260px;
    object-fit: contain;
  }
  .hotel-logo:hover { opacity: 1; transform: translateY(-1px); }
  @media (max-width: 720px) { .hotel-logo { height: 68px; } .hotel-logo img { max-width: 190px; } }
  @keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hotel-marquee-track { animation: none; }
  }

  /* =========================================
     HERO TEAM BANNER — full-bleed photo strip inside hero
     ========================================= */
  .hero-team-banner {
    margin: clamp(48px, 6vw, 72px) auto 0;
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15,44,61,.04), 0 30px 70px rgba(15,44,61,.14);
    background: var(--bg-cream);
  }
  .hero-team-banner img {
    display: block; width: 100%; height: auto;
    aspect-ratio: 16 / 7;
    object-fit: cover; object-position: center 30%;
  }
  .hero-team-banner::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,44,61,.55) 0%, rgba(15,44,61,.15) 40%, transparent 65%);
    pointer-events: none;
  }
  .hero-team-caption {
    position: absolute; left: clamp(24px, 4vw, 56px); right: clamp(24px, 4vw, 56px); bottom: clamp(20px, 3vw, 36px);
    display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
    color: white; z-index: 1;
    flex-wrap: wrap;
  }
  .hero-team-caption-text { max-width: 540px; }
  .hero-team-caption-eyebrow {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,.78); font-weight: 600;
    margin-bottom: 8px;
  }
  .hero-team-caption h3 {
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(1.3rem, 2.4vw, 2rem); line-height: 1.15;
    color: white; text-wrap: balance;
  }
  .hero-team-caption h3 .italic { color: var(--coral-soft); }
  .hero-team-caption-meta {
    display: inline-flex; flex-direction: column; gap: 4px;
    text-align: right;
    font-size: 12.5px; color: rgba(255,255,255,.82);
  }
  .hero-team-caption-meta strong { color: white; font-weight: 700; font-size: 14px; }
  @media (max-width: 720px) {
    .hero-team-caption { position: relative; left: auto; right: auto; bottom: auto; color: var(--ink); padding: 18px 22px 20px; background: var(--bg-cream-soft); flex-direction: column; align-items: flex-start; }
    .hero-team-caption-eyebrow { color: var(--ink-mute); }
    .hero-team-caption h3 { color: var(--ink); }
    .hero-team-caption h3 .italic { color: var(--coral); }
    .hero-team-caption-meta { color: var(--ink-soft); text-align: left; }
    .hero-team-caption-meta strong { color: var(--ink); }
    .hero-team-banner::after { display: none; }
    .hero-team-banner img { aspect-ratio: 16 / 10; }
  }

  /* =========================================
     STICKY CTA — top on mobile, bottom on desktop
     ========================================= */
  .sticky-cta {
    position: fixed;
    z-index: 60;
    background: var(--coral);
    color: white;
    padding: 14px 18px 14px 22px;
    border-radius: var(--r-pill);
    display: flex;
    align-items: center; justify-content: space-between;
    box-shadow: 0 10px 28px rgba(232,100,59,.42), 0 2px 6px rgba(15,44,61,.18);
    font-weight: 600;
    font-size: 15px;
    transition: transform .35s ease, opacity .35s ease, background .2s;
    opacity: 0;
    pointer-events: none;
    text-decoration: none;
    /* default = desktop bottom-right floating pill */
    bottom: 28px;
    right: 28px;
    min-width: 280px;
    transform: translateY(20px);
  }
  .sticky-cta:hover { background: var(--coral-dark); }
  .sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .sticky-cta-meta {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.85;
    display: block;
    margin-top: 2px;
  }
  .sticky-cta-arrow {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: flex; align-items: center; justify-content: center;
    margin-left: 14px;
    flex-shrink: 0;
  }
  /* Mobile = fixed across the top */
  @media (max-width: 720px) {
    .sticky-cta {
      top: 12px;
      left: 12px;
      right: 12px;
      bottom: auto;
      min-width: 0;
      transform: translateY(-120%);
      padding: 12px 16px 12px 20px;
      font-size: 14px;
      box-shadow: 0 8px 22px rgba(232,100,59,.38), 0 2px 6px rgba(15,44,61,.16);
    }
    .sticky-cta.is-visible { transform: translateY(0); }
    .sticky-cta-meta { font-size: 10.5px; }
    .sticky-cta-arrow { width: 32px; height: 32px; margin-left: 10px; }
    /* push nav so it doesn't sit underneath the sticky bar */
    body.has-sticky-top .nav { top: 68px; }
  }

  /* =========================================
     REVEAL
     ========================================= */
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero::before, .hero::after { animation: none; }
    .hero-pill .dot { animation: none; }
  }

  /* =========================================
     TWEAK A — PALETTE (mood)
     Redefines the brand variables; whole page re-tones.
     ========================================= */
  body[data-palette="editorial"] {
    --bg-page:        #F4EFE7;
    --bg-cream:       #E8DECC;
    --bg-cream-soft:  #EFE7D8;
    --bg-white:       #FFFCF6;
    --ink:            #1E1A1D;
    --ink-soft:       #4F4347;
    --ink-mute:       #8A7C7E;
    --line:           #CFC0A6;
    --line-soft:      #DCD0B6;
    --coral:          #8C2F4B;     /* deep plum */
    --coral-dark:     #6C2239;
    --coral-soft:     #D9A4B0;
    --coral-tint:     #F1DDE2;
    --success:        #4A8F5D;
  }
  body[data-palette="sage"] {
    --bg-page:        #F4F1E7;
    --bg-cream:       #E7E5D2;
    --bg-cream-soft:  #EEEBDA;
    --bg-white:       #FAFAF2;
    --ink:            #1F2A22;
    --ink-soft:       #4A5A4D;
    --ink-mute:       #8A9388;
    --line:           #C9CFB2;
    --line-soft:      #D7DCC1;
    --coral:          #5E7F4A;     /* sage */
    --coral-dark:     #466235;
    --coral-soft:     #ADC494;
    --coral-tint:     #E2EBCE;
    --success:        #4A8F5D;
  }
  /* Editorial leans on heavier display weight + tighter tracking */
  body[data-palette="editorial"] h1,
  body[data-palette="editorial"] h2 { font-weight: 600; letter-spacing: -0.04em; }
  body[data-palette="editorial"] .hero h1 .italic,
  body[data-palette="editorial"] h2 .italic { font-weight: 500; }
  /* Sage gets a softer, slightly looser display */
  body[data-palette="sage"] h1,
  body[data-palette="sage"] h2 { font-weight: 400; }

  /* =========================================
     TWEAK B — HERO COMPOSITION
     Three variants live in DOM; show one at a time.
     ========================================= */
  .hero-variant { display: none; }
  body[data-hero="booking"]  .hero-variant.v-booking,
  body[data-hero="centered"] .hero-variant.v-centered,
  body[data-hero="split"]    .hero-variant.v-split,
  body[data-hero="quote"]    .hero-variant.v-quote {
    display: block;
  }

  /* — BOOKING (text + interactive widget) — */
  .v-booking { padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 80px); position: relative; overflow: hidden; }
  .v-booking::before {
    content: ''; position: absolute; pointer-events: none;
    width: 760px; height: 760px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,100,59,.10) 0%, transparent 65%);
    top: -260px; left: -260px;
    animation: heroBlob 16s ease-in-out infinite alternate;
  }
  body[data-palette="editorial"] .v-booking::before { background: radial-gradient(circle, rgba(140,47,75,.10) 0%, transparent 65%); }
  body[data-palette="sage"] .v-booking::before { background: radial-gradient(circle, rgba(94,127,74,.10) 0%, transparent 65%); }
  .v-booking::after {
    content: ''; position: absolute; pointer-events: none;
    width: 560px; height: 560px; border-radius: 50%;
    background: radial-gradient(circle, rgba(247,241,229,.7) 0%, transparent 70%);
    bottom: -240px; right: -200px;
    animation: heroBlob 22s ease-in-out infinite alternate-reverse;
  }
  .v-booking .container { position: relative; z-index: 1; max-width: 1180px; }
  .v-booking-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 6vw, 84px);
    align-items: center;
  }
  @media (max-width: 980px) { .v-booking-grid { grid-template-columns: 1fr; gap: 40px; } }
  .v-booking h1 {
    font-size: clamp(2.4rem, 5.4vw, 4.4rem);
    letter-spacing: -0.038em; line-height: 1; text-wrap: balance;
  }
  .v-booking h1 .italic { display: inline; }
  .v-booking .hero-sub { margin: 26px 0 0; max-width: 520px; }
  .v-booking .hero-reassure { justify-content: flex-start; margin-top: 24px; }
  .v-booking .hero-pill { margin-bottom: 24px; }
  .v-booking .hero-trust {
    margin-top: 36px; padding-top: 28px;
    border-top: 1px solid var(--line-soft);
    align-items: flex-start;
  }
  @media (max-width: 980px) { .v-booking .hero-trust { align-items: center; } }

  /* Booking widget card */
  .book-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--r-xl);
    border: 1px solid var(--line);
    box-shadow: 0 1px 2px rgba(15,44,61,.04), 0 24px 60px rgba(15,44,61,.10), 0 4px 14px rgba(232,100,59,.06);
    padding: 28px 28px 30px;
    overflow: hidden;
    z-index: 2;
    max-width: 480px;
    margin-left: auto;
    width: 100%;
  }
  @media (max-width: 980px) { .book-card { margin: 0 auto; } }
  .book-card::before {
    content: ''; position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--coral-tint) 0%, transparent 70%);
    top: -120px; right: -100px;
    pointer-events: none;
    z-index: 0;
  }
  .book-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 22px;
    position: relative; z-index: 2;
  }
  .book-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px 6px 10px;
    background: var(--bg-cream-soft);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
  }
  .book-badge .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 0 rgba(74,143,93,.5);
    animation: pulse 2s ease-out infinite;
  }
  .book-progress { display: flex; gap: 5px; }
  .book-progress .seg {
    width: 18px; height: 4px;
    border-radius: 2px;
    background: var(--line);
    transition: background .35s ease, width .35s ease;
  }
  .book-progress .seg.active { background: var(--coral); width: 28px; }
  .book-progress .seg.done { background: var(--coral-soft); }
  .book-step { display: none; position: relative; z-index: 2; animation: bookStep .45s cubic-bezier(.22,.61,.36,1); }
  .book-step.active { display: block; }
  @keyframes bookStep {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .book-back {
    background: none; border: none; padding: 0;
    font-family: var(--font-body);
    font-size: 12px; font-weight: 600;
    color: var(--ink-mute);
    cursor: pointer; margin-bottom: 10px;
    transition: color .2s;
  }
  .book-back:hover { color: var(--coral); }
  .book-q-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--coral);
    font-weight: 700;
    margin-bottom: 8px;
  }
  .book-q {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 18px;
  }
  .book-q .italic { color: var(--coral); font-style: italic; }
  .book-opts { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .book-opts.grid { grid-template-columns: 1fr 1fr; }
  .book-opt {
    background: var(--bg-cream-soft);
    border: 1.5px solid var(--line-soft);
    border-radius: var(--r-md);
    padding: 14px 16px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: all .22s ease;
    display: flex; align-items: center; gap: 12px;
    color: var(--ink);
  }
  .book-opt:hover {
    border-color: var(--coral);
    background: var(--coral-tint);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232,100,59,.10);
  }
  .book-opt-ic {
    width: 32px; height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--bg-white);
    border: 1px solid var(--line-soft);
    display: flex; align-items: center; justify-content: center;
    color: var(--coral);
  }
  .book-opt-ic svg { width: 16px; height: 16px; }
  .book-opt-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
  .book-opt-label { font-size: 14px; font-weight: 600; color: var(--ink); }
  .book-opt-sub { font-size: 11.5px; color: var(--ink-soft); }
  .book-opt-arrow { color: var(--ink-mute); font-size: 16px; transition: transform .2s, color .2s; }
  .book-opt:hover .book-opt-arrow { color: var(--coral); transform: translateX(3px); }
  .book-opt-tag {
    display: inline-block;
    font-size: 9px;
    background: var(--coral);
    color: white;
    padding: 2px 6px;
    border-radius: var(--r-pill);
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-left: 6px;
    vertical-align: middle;
  }
  .book-chip {
    background: var(--bg-cream-soft);
    border: 1.5px solid var(--line-soft);
    border-radius: var(--r-md);
    padding: 12px 14px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all .22s ease;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    color: var(--ink);
  }
  .book-chip strong { font-size: 14px; font-weight: 700; color: var(--ink); }
  .book-chip-sub { font-size: 10.5px; color: var(--ink-soft); font-weight: 500; }
  .book-chip:hover {
    border-color: var(--coral);
    background: var(--coral-tint);
    transform: translateY(-2px);
  }
  .book-coverage {
    margin-top: 14px;
    display: flex; align-items: center; gap: 8px;
    font-size: 12px;
    color: var(--ink-mute);
    padding: 10px 12px;
    background: var(--bg-cream-soft);
    border-radius: var(--r-md);
  }
  .book-coverage svg { color: var(--coral); flex-shrink: 0; }

  /* Address autocomplete (step "Onde") */
  .book-addr { position: relative; }
  .book-addr-field {
    position: relative;
    display: flex; align-items: center;
    background: var(--bg-cream-soft);
    border: 1.5px solid var(--line-soft);
    border-radius: var(--r-md);
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
  }
  .book-addr-field:focus-within {
    border-color: var(--coral);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(226, 98, 71, 0.12);
  }
  .book-addr-icon {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    color: var(--ink-soft); pointer-events: none;
  }
  .book-addr-input {
    flex: 1;
    width: 100%;
    border: 0; background: transparent; outline: none;
    padding: 14px 40px 14px 42px;
    font: 500 14.5px/1.2 var(--font-sans);
    color: var(--ink);
    border-radius: var(--r-md);
  }
  .book-addr-input::placeholder { color: var(--ink-soft); font-weight: 500; }
  .book-addr-clear {
    position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
    width: 26px; height: 26px; border-radius: 999px;
    display: none; align-items: center; justify-content: center;
    border: 0; background: var(--bg-cream); color: var(--ink-soft);
    cursor: pointer; transition: background .15s, color .15s;
  }
  .book-addr-clear:hover { background: var(--coral-tint); color: var(--coral); }
  .book-addr-field.has-value .book-addr-clear { display: inline-flex; }

  .book-addr-list {
    position: absolute; left: 0; right: 0; top: calc(100% + 6px);
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    list-style: none; margin: 0; padding: 6px;
    max-height: 240px; overflow-y: auto;
    z-index: 30;
  }
  .book-addr-opt {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .12s;
  }
  .book-addr-opt:hover,
  .book-addr-opt[aria-selected="true"] { background: var(--coral-tint); }
  .book-addr-opt-ic {
    flex-shrink: 0; width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--bg-cream-soft);
    display: flex; align-items: center; justify-content: center;
    color: var(--coral);
    margin-top: 1px;
  }
  .book-addr-opt-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .book-addr-opt-title {
    font: 600 14px/1.25 var(--font-sans);
    color: var(--ink);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .book-addr-opt-sub {
    font: 500 12px/1.3 var(--font-sans);
    color: var(--ink-soft);
  }
  .book-addr-opt-title b { color: var(--coral); font-weight: 700; }
  .book-addr-empty {
    padding: 14px 12px;
    font: 500 13px/1.4 var(--font-sans);
    color: var(--ink-soft);
    text-align: center;
  }

  /* Hotel checkbox */
  .book-hotel {
    margin-top: 12px;
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 14px;
    background: var(--bg-cream-soft);
    border: 1.5px solid var(--line-soft);
    border-radius: var(--r-md);
    cursor: pointer;
    transition: border-color .18s, background .18s;
  }
  .book-hotel:hover { border-color: var(--coral-soft); }
  .book-hotel input { position: absolute; opacity: 0; pointer-events: none; }
  .book-hotel-box {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 6px;
    background: #fff;
    border: 1.5px solid var(--line-soft);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    transition: background .15s, border-color .15s;
    margin-top: 1px;
  }
  .book-hotel-box svg { width: 14px; height: 14px; opacity: 0; transition: opacity .15s; }
  .book-hotel input:checked ~ .book-hotel-box {
    background: var(--coral); border-color: var(--coral);
  }
  .book-hotel input:checked ~ .book-hotel-box svg { opacity: 1; }
  .book-hotel input:focus-visible ~ .book-hotel-box {
    box-shadow: 0 0 0 4px rgba(226, 98, 71, 0.18);
  }
  .book-hotel:has(input:checked) {
    border-color: var(--coral);
    background: var(--coral-tint);
  }
  .book-hotel-text { display: flex; flex-direction: column; gap: 2px; }
  .book-hotel-title { font: 600 14px/1.25 var(--font-sans); color: var(--ink); }
  .book-hotel-sub { font: 500 12px/1.4 var(--font-sans); color: var(--ink-soft); }

  .book-addr-cta[disabled] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

  /* Calendar (step "Para que data?") */
  .book-cal {
    background: var(--bg-cream-soft);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-md);
    padding: 14px 14px 14px;
  }
  .book-cal-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 12px;
  }
  .book-cal-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
    text-transform: capitalize;
  }
  .book-cal-nav {
    background: var(--bg-white);
    border: 1px solid var(--line-soft);
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-soft);
    cursor: pointer;
    padding: 0;
    transition: all .2s;
  }
  .book-cal-nav:hover:not(:disabled) { background: var(--coral); color: white; border-color: var(--coral); }
  .book-cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }
  .book-cal-nav svg { width: 12px; height: 12px; }
  .book-cal-dow {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 6px;
  }
  .book-cal-dow span {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--ink-mute);
    text-align: center;
    padding: 4px 0;
  }
  .book-cal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 4px;
  }
  .book-cal-day {
    background: transparent;
    border: 1px solid transparent;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
  }
  .book-cal-day:hover:not(:disabled):not(.is-empty) {
    background: var(--bg-white);
    border-color: var(--coral);
    color: var(--coral);
    transform: translateY(-1px);
  }
  .book-cal-day:disabled { color: var(--ink-mute); opacity: 0.4; cursor: not-allowed; }
  .book-cal-day.is-empty { background: transparent; cursor: default; pointer-events: none; }
  .book-cal-day.is-today {
    background: var(--coral-tint);
    color: var(--coral);
    font-weight: 700;
  }
  .book-cal-day.is-today:hover {
    background: var(--coral);
    color: white;
    border-color: var(--coral);
  }
  .book-cal-day.is-selected,
  .book-cal-day.is-selected:hover {
    background: var(--coral);
    color: #fff;
    border-color: var(--coral);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(226, 98, 71, 0.35);
  }
  .book-cal-foot {
    margin-top: 14px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: var(--ink-mute);
  }
  .book-cal-foot-note {
    display: inline-flex; align-items: center; gap: 6px;
  }
  .book-cal-foot-note svg { color: var(--coral); }
  .book-cal-foot-quick {
    display: flex; gap: 6px;
  }

  /* Time fields (step "Quando" — appears after date pick) */
  .book-time {
    margin-top: 12px;
    padding: 12px 14px 14px;
    background: var(--bg-cream-soft);
    border: 1.5px solid var(--coral-soft);
    border-radius: var(--r-md);
    animation: bookTimeReveal .35s cubic-bezier(.22,.61,.36,1);
  }
  @keyframes bookTimeReveal {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .book-time-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 8px;
  }
  .book-time-field {
    display: flex; flex-direction: column; gap: 4px;
    min-width: 0;
  }
  .book-time-label {
    font: 600 10px/1 var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
  }
  .book-time-field input[type="time"] {
    width: 100%;
    padding: 9px 11px;
    font: 600 14.5px/1.2 var(--font-sans);
    color: var(--ink);
    background: #fff;
    border: 1.5px solid var(--line-soft);
    border-radius: 10px;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    font-variant-numeric: tabular-nums;
  }
  .book-time-field input[type="time"]:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(226, 98, 71, 0.12);
  }
  .book-time-field input[type="time"][aria-invalid="true"] {
    border-color: var(--error, #C44536);
  }
  .book-time-arrow {
    align-self: center;
    padding-bottom: 10px;
    color: var(--ink-soft);
    font-size: 16px;
  }
  .book-time-meta {
    margin-top: 10px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; flex-wrap: wrap;
  }
  .book-time-duration {
    font: 600 12px/1.2 var(--font-sans);
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line-soft);
    padding: 6px 10px;
    border-radius: 999px;
    font-variant-numeric: tabular-nums;
  }
  .book-time-duration.is-error {
    color: var(--error, #C44536);
    border-color: var(--error, #C44536);
    background: #fff;
  }
  .book-time-quick {
    display: flex; gap: 6px; flex-wrap: wrap;
  }
  .book-time-pill {
    background: #fff;
    border: 1px solid var(--line-soft);
    color: var(--ink);
    font: 600 11.5px/1.1 var(--font-sans);
    padding: 6px 10px;
    border-radius: 999px;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s, transform .15s;
  }
  .book-time-pill:hover { border-color: var(--coral); color: var(--coral); }
  .book-time-pill.is-active {
    background: var(--coral); border-color: var(--coral); color: #fff;
  }
  .book-time-cta[disabled] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

  /* Recurring mode (Regular / Full-time) */
  .book-range { display: flex; flex-direction: column; gap: 8px; }
  .book-range-dates input[type="date"] {
    width: 100%;
    padding: 7px 10px;
    font: 600 13px/1.2 var(--font-sans);
    color: var(--ink);
    background: #fff;
    border: 1.5px solid var(--line-soft);
    border-radius: 9px;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    font-variant-numeric: tabular-nums;
  }
  .book-range-dates input[type="date"]:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(226, 98, 71, 0.12);
  }
  .book-range-block {
    display: flex; flex-direction: column; gap: 6px;
    padding: 8px 10px 9px;
    background: var(--bg-cream-soft);
    border: 1.5px solid var(--coral-soft);
    border-radius: var(--r-md);
  }
  .book-range-block .book-time-label { margin-bottom: 0; }

  .book-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
  }
  .book-day {
    background: #fff;
    border: 1.5px solid var(--line-soft);
    color: var(--ink);
    font: 600 11px/1 var(--font-sans);
    padding: 9px 0;
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s, transform .15s;
  }
  .book-day:hover { border-color: var(--coral); color: var(--coral); }
  .book-day.is-active {
    background: var(--coral); border-color: var(--coral); color: #fff;
    box-shadow: 0 2px 6px rgba(226, 98, 71, 0.25);
  }

  .book-stepper {
    display: grid;
    grid-template-columns: 30px 1fr auto 30px;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1.5px solid var(--line-soft);
    border-radius: 9px;
    padding: 3px;
  }
  .book-stepper:focus-within { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(226, 98, 71, 0.12); }
  .book-stepper-btn {
    width: 26px; height: 26px;
    border: 0; border-radius: 7px;
    background: var(--bg-cream-soft);
    color: var(--ink);
    font: 700 14px/1 var(--font-sans);
    cursor: pointer;
    transition: background .15s, color .15s;
  }
  .book-stepper-btn:hover { background: var(--coral); color: #fff; }
  .book-stepper input[type="number"] {
    border: 0; background: transparent; outline: none;
    text-align: center;
    font: 700 14px/1.1 var(--font-sans);
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    -moz-appearance: textfield;
  }
  .book-stepper input[type="number"]::-webkit-outer-spin-button,
  .book-stepper input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
  .book-stepper-suffix {
    font: 600 11px/1 var(--font-sans);
    color: var(--ink-soft);
    padding-right: 4px;
  }
  .book-cal-quick {
    font-family: var(--font-body);
    font-size: 12px; font-weight: 600;
    color: var(--ink);
    background: var(--bg-white);
    border: 1px solid var(--line-soft);
    padding: 6px 12px;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all .2s;
  }
  .book-cal-quick:hover {
    background: var(--coral); color: white; border-color: var(--coral);
  }
  /* Success state */
  .book-success { text-align: left; padding-top: 4px; }
  .book-success-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--coral-tint);
    color: var(--coral);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    position: relative;
  }
  .book-success-icon svg { width: 28px; height: 28px; animation: matchSpin 2.6s linear infinite; }
  @keyframes matchSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
  .book-success-icon::after {
    content: ''; position: absolute; inset: -6px;
    border-radius: 22px;
    border: 1.5px dashed var(--coral-soft);
    opacity: 0.5;
    animation: matchPulse 2s ease-out infinite;
  }
  @keyframes matchPulse {
    0%   { transform: scale(1); opacity: 0.55; }
    100% { transform: scale(1.18); opacity: 0; }
  }
  .book-success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 12px;
    text-wrap: balance;
  }
  .book-success-title .italic { color: var(--coral); font-style: italic; }
  .book-success-sub {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 20px;
  }
  .book-success-cta { display: flex; flex-direction: column; gap: 10px; }
  .book-restart {
    background: none; border: none;
    font-family: var(--font-body);
    font-size: 12px; font-weight: 600;
    color: var(--ink-mute);
    cursor: pointer; padding: 6px;
  }
  .book-restart:hover { color: var(--coral); }
  .book-trust-row {
    display: flex; gap: 8px; margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
    flex-wrap: wrap;
  }
  .book-trust-pill {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 600;
    color: var(--ink-soft);
    background: var(--bg-cream-soft);
    border: 1px solid var(--line-soft);
    padding: 6px 10px;
    border-radius: var(--r-pill);
  }
  .book-trust-pill svg { color: var(--success); width: 12px; height: 12px; }
  /* Live working indicator (animated dots) */
  .book-working {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 4px;
    margin-bottom: 8px;
    font-size: 12px; font-weight: 600;
    color: var(--success);
    letter-spacing: 0.01em;
  }
  .book-working-dots { display: inline-flex; gap: 3px; }
  .book-working-dots span {
    width: 4px; height: 4px; border-radius: 50%; background: var(--success);
    animation: working 1.2s ease-in-out infinite;
  }
  .book-working-dots span:nth-child(2) { animation-delay: .15s; }
  .book-working-dots span:nth-child(3) { animation-delay: .3s; }
  @keyframes working {
    0%, 80%, 100% { opacity: 0.25; transform: translateY(0); }
    40%           { opacity: 1;    transform: translateY(-2px); }
  }

  /* — SPLIT — */
  .v-split { padding: clamp(64px, 9vw, 112px) 0 clamp(56px, 7vw, 88px); position: relative; overflow: hidden; }
  .v-split::before {
    content: ''; position: absolute; pointer-events: none;
    width: 720px; height: 720px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,100,59,.08) 0%, transparent 65%);
    top: -260px; left: -260px;
    animation: heroBlob 16s ease-in-out infinite alternate;
  }
  body[data-palette="editorial"] .v-split::before { background: radial-gradient(circle, rgba(140,47,75,.10) 0%, transparent 65%); }
  body[data-palette="sage"] .v-split::before { background: radial-gradient(circle, rgba(94,127,74,.10) 0%, transparent 65%); }
  .v-split .container { position: relative; z-index: 1; max-width: 1180px; }
  .v-split-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(36px, 5vw, 80px);
    align-items: center;
  }
  @media (max-width: 900px) { .v-split-grid { grid-template-columns: 1fr; } }
  .v-split h1 {
    font-size: clamp(2.4rem, 5.4vw, 4.4rem);
    letter-spacing: -0.038em; line-height: 1; text-wrap: balance;
  }
  .v-split h1 .italic { display: inline; }
  .v-split .hero-sub {
    margin: 26px 0 0; max-width: 480px; text-align: left;
  }
  .v-split .hero-cta-row { justify-content: flex-start; margin-top: 36px; }
  .v-split .hero-reassure { justify-content: flex-start; }
  .v-split .hero-pill { margin-bottom: 24px; }
  .v-split-photo {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background-size: cover; background-position: center;
    box-shadow: 0 1px 2px rgba(15,44,61,.04), 0 30px 80px rgba(15,44,61,.18);
  }
  .v-split-photo::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,44,61,.5) 0%, transparent 40%);
  }
  body[data-palette="editorial"] .v-split-photo::after { background: linear-gradient(to top, rgba(30,26,29,.55) 0%, transparent 40%); }
  body[data-palette="sage"] .v-split-photo::after { background: linear-gradient(to top, rgba(31,42,34,.5) 0%, transparent 40%); }
  .v-split-photo-quote {
    position: absolute; bottom: 26px; left: 26px; right: 26px;
    color: white;
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.25;
    font-style: italic;
    font-weight: 400;
    text-wrap: pretty;
  }
  .v-split-photo-attr {
    margin-top: 12px;
    font-family: var(--font-body);
    font-size: 12px;
    font-style: normal;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.82;
  }
  .v-split-photo-badge {
    position: absolute; top: 22px; left: 22px;
    background: var(--bg-white);
    color: var(--ink);
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 8px 14px;
    border-radius: var(--r-pill);
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 6px 16px rgba(15,44,61,.18);
  }
  .v-split-photo-badge .dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--success);
  }
  .v-split .hero-trust { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line-soft); align-items: flex-start; }
  .v-split .hero-press { justify-content: flex-start; padding-top: 0; border-top: none; max-width: none; }

  /* — QUOTE-LED — */
  .v-quote { padding: clamp(72px, 10vw, 128px) 0 clamp(56px, 7vw, 88px); position: relative; overflow: hidden; }
  .v-quote::before {
    content: ''; position: absolute; pointer-events: none;
    width: 820px; height: 820px; border-radius: 50%;
    background: radial-gradient(circle, rgba(247,241,229,.7) 0%, transparent 70%);
    top: -300px; left: 50%; transform: translateX(-50%);
  }
  .v-quote .container { position: relative; z-index: 1; max-width: 900px; text-align: center; }
  .v-quote-stars { color: var(--coral); letter-spacing: 0.1em; font-size: 16px; margin-bottom: 22px; }
  .v-quote-big {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.18;
    color: var(--ink);
    letter-spacing: -0.025em;
    max-width: 820px;
    margin: 0 auto;
    text-wrap: balance;
  }
  .v-quote-big::before { content: '\201C'; color: var(--coral); margin-right: 4px; font-style: normal; font-weight: 500; }
  .v-quote-big::after  { content: '\201D'; color: var(--coral); margin-left: 4px; font-style: normal; font-weight: 500; }
  .v-quote-attr {
    margin-top: 24px;
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--ink-soft);
    font-size: 14px;
  }
  .v-quote-attr-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background-size: cover; background-position: center;
  }
  .v-quote-attr strong { color: var(--ink); font-weight: 700; }
  .v-quote-divider {
    width: 40px; height: 1px;
    background: var(--line);
    margin: 48px auto 36px;
  }
  .v-quote h1 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    letter-spacing: -0.025em;
    line-height: 1.15;
    max-width: 720px;
    margin: 0 auto;
    text-wrap: balance;
    color: var(--ink);
  }
  .v-quote h1 .italic { display: inline; }
  .v-quote .hero-cta-row { margin-top: 32px; }
  .v-quote .hero-trust { margin-top: 56px; }

  /* =========================================
     TWEAK C — PACE (section rhythm)
     ========================================= */
  body[data-pace="dense"] section { padding: clamp(48px, 6vw, 80px) 0; }
  body[data-pace="dense"] .hero,
  body[data-pace="dense"] .v-split,
  body[data-pace="dense"] .v-quote { padding: clamp(40px, 5vw, 64px) 0 clamp(36px, 4.5vw, 56px); }
  body[data-pace="dense"] h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 0.98; }
  body[data-pace="dense"] h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
  body[data-pace="dense"] .pillars-head,
  body[data-pace="dense"] .voices-head,
  body[data-pace="dense"] .sitters-head { margin-bottom: 40px; }
  body[data-pace="dense"] .how-head { margin-bottom: 28px; }
  body[data-pace="dense"] .pillar { padding: 20px 20px 18px; }
  body[data-pace="dense"] .reveal { transition: opacity .45s ease, transform .45s cubic-bezier(.22,.61,.36,1); }

  body[data-pace="cinematic"] section { padding: clamp(80px, 9vw, 128px) 0; }
  body[data-pace="cinematic"] .hero,
  body[data-pace="cinematic"] .v-split,
  body[data-pace="cinematic"] .v-quote { padding: clamp(80px, 9vw, 128px) 0 clamp(64px, 7vw, 96px); }
  body[data-pace="cinematic"] h1 { font-size: clamp(3.4rem, 8vw, 7rem); line-height: 0.94; letter-spacing: -0.045em; }
  body[data-pace="cinematic"] h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
  body[data-pace="cinematic"] .hero-sub,
  body[data-pace="cinematic"] .voices-head p,
  body[data-pace="cinematic"] .pillars-head p { font-size: clamp(1.15rem, 1.6vw, 1.4rem); max-width: 680px; }
  body[data-pace="cinematic"] .pillars-head,
  body[data-pace="cinematic"] .voices-head,
  body[data-pace="cinematic"] .sitters-head { margin-bottom: clamp(40px, 5vw, 64px); }
  body[data-pace="cinematic"] .how-head { margin-bottom: clamp(36px, 4.5vw, 52px); }
  body[data-pace="cinematic"] .pillar { padding: 26px 26px 24px; }
  body[data-pace="cinematic"] .pillar-stat { font-size: 1.7rem; }
  body[data-pace="cinematic"] .reveal { transition: opacity 1.1s ease, transform 1.1s cubic-bezier(.22,.61,.36,1); transform: translateY(24px); }
  /* Tighten the testimonials → gift voucher pairing in cinematic too */
  body[data-pace="cinematic"] .voices { padding-bottom: clamp(16px, 2vw, 28px); }
  body[data-pace="cinematic"] .gift-mini { padding-top: clamp(6px, 1vw, 14px); padding-bottom: clamp(48px, 6vw, 72px); }

