  /* ===== Rubattino Design System tokens (tokens/colors|typography|spacing.css) ===== */
  :root {
    --slate-900: #232C33; --slate-800: #2B3740; --slate-700: #33414C;
    --slate-600: #46545F; --slate-500: #5C6B76; --slate-400: #8A9299;
    --slate-300: #B9BFC4; --slate-200: #DBDEE1; --slate-100: #EDEFF0;
    --paper-0: #FBFAF8; --paper-100: #F4F3F1; --paper-200: #ECEAE6; --paper-300: #E1DED8;
    --gold-700: #A9895B; --gold-600: #C9A876; --gold-300: #E2D2B4; --gold-100: #F2ECDF;

    --text-heading: var(--slate-800); --text-body: var(--slate-600);
    --text-muted: var(--slate-400); --text-inverse: var(--paper-0);
    --text-accent: var(--gold-700);
    --surface-page: var(--paper-100); --surface-card: var(--paper-0);
    --surface-sunken: var(--paper-200); --surface-ink: var(--slate-700);
    --surface-ink-deep: var(--slate-900);
    --action-primary: var(--slate-700); --action-primary-hover: var(--slate-800);
    --action-primary-active: var(--slate-900);
    --action-accent: var(--gold-600); --action-accent-hover: var(--gold-700);
    --border-subtle: rgba(51, 65, 76, 0.10); --border-default: rgba(51, 65, 76, 0.18);
    --border-strong: rgba(51, 65, 76, 0.34); --border-focus: var(--slate-700);
    --status-success: #4E7A5F; --status-success-bg: #E9F0EB;

    --font-display: 'Jost', 'Futura', sans-serif;
    --font-body: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;
    --text-xs: 12px; --text-sm: 14px; --text-md: 16px; --text-lg: 19px;
    --text-xl: 24px; --text-2xl: 32px; --text-3xl: 44px; --text-4xl: 60px;
    --weight-light: 300; --weight-regular: 400; --weight-medium: 500; --weight-semibold: 600;
    --tracking-tight: -0.01em; --tracking-wide: 0.08em; --tracking-caps: 0.22em;
    --leading-tight: 1.1; --leading-snug: 1.3; --leading-body: 1.6;

    --radius-xs: 2px; --radius-sm: 3px; --radius-md: 6px; --radius-pill: 999px;
    --shadow-card: 0 1px 2px rgba(35, 44, 51, 0.05);
    --shadow-raised: 0 6px 24px rgba(35, 44, 51, 0.08);
    --shadow-overlay: 0 20px 60px rgba(35, 44, 51, 0.18);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --duration-fast: 150ms; --duration-base: 250ms; --duration-slow: 450ms;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  @media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
  body {
    font-family: var(--font-body);
    background: var(--surface-page);
    color: var(--text-body);
    font-size: var(--text-md);
    line-height: var(--leading-body);
    -webkit-font-smoothing: antialiased;
  }
  img { display: block; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

  .eyebrow {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    color: var(--text-accent);
    display: flex; align-items: center; gap: 14px;
  }
  .eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--gold-600); }
  .eyebrow.on-ink { color: var(--gold-300); }

  h1, h2 {
    font-family: var(--font-display);
    font-weight: var(--weight-light);
    color: var(--text-heading);
    letter-spacing: var(--tracking-tight);
  }

  /* ===== Buttons (components/core/Button.jsx) ===== */
  .btn {
    font-family: var(--font-display);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background var(--duration-fast) var(--ease-out), opacity var(--duration-fast) var(--ease-out);
  }
  .btn-sm { padding: 8px 16px; font-size: var(--text-xs); }
  .btn-md { padding: 12px 24px; font-size: var(--text-sm); }
  .btn-lg { padding: 16px 36px; font-size: var(--text-sm); }
  .btn-primary { background: var(--action-primary); color: var(--text-inverse); }
  .btn-primary:hover { background: var(--action-primary-hover); }
  .btn-primary:active { background: var(--action-primary-active); }
  .btn-accent { background: var(--action-accent); color: var(--slate-700); }
  .btn-accent:hover { background: var(--gold-300); }
  .btn-ghost { background: transparent; color: var(--text-heading); border-color: var(--border-strong); }
  .btn-ghost:hover { background: rgba(51,65,76,0.05); }
  .btn-ghost:active { background: rgba(51,65,76,0.10); }
  .btn-link { background: transparent; color: var(--text-heading); padding: 4px 0; font-size: var(--text-sm); }
  .btn-link:hover { opacity: 0.7; }

  /* ===== Nav (parts.jsx SiteNav) ===== */
  header.site {
    position: sticky; top: 0; z-index: 60;
    background: rgba(244, 243, 241, 0.85);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
    height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  }
  .nav-inner .logo { height: 64px; mix-blend-mode: multiply; }
  nav.main { display: flex; gap: 32px; align-items: center; }
  nav.main a {
    font-family: var(--font-display); font-size: 13px;
    letter-spacing: var(--tracking-wide); text-transform: uppercase;
    text-decoration: none; color: var(--text-muted);
    border-bottom: 1px solid transparent; padding-bottom: 3px;
    transition: color var(--duration-fast) var(--ease-out);
  }
  nav.main a:hover { color: var(--text-heading); }
  nav.main a.active { color: var(--text-heading); border-bottom-color: var(--gold-600); }
  nav.main a.lang-switch {
    color: var(--text-heading);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    padding: 4px 8px;
  }

  /* ===== Hero — split: copy left, living portrait video right (Jeff 2026-07-03) ===== */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex; align-items: center;
    overflow: hidden;
  }
  .hero-grid {
    max-width: 1200px; margin: 0 auto; width: 100%;
    padding: 96px 40px 72px;
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(32px, 5vw, 72px); align-items: center;
  }
  .hero-copy { display: flex; flex-direction: column; gap: 26px; }
  .hero .eyebrow { color: var(--text-accent); }
  .hero h1 {
    font-size: clamp(46px, 5.4vw, 76px);
    line-height: 1.04; color: var(--text-heading);
    max-width: 14ch;
  }
  .hero p { font-size: 19px; max-width: 440px; color: var(--text-body); }
  .hero-ctas { display: flex; gap: 16px; margin-top: 6px; }
  .hero-stats {
    display: flex; gap: clamp(24px, 3.5vw, 56px);
    margin-top: 26px; padding-top: 22px;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
  }
  .hero-stats .st strong {
    display: block; font-family: var(--font-display);
    font-weight: var(--weight-light); font-size: 30px; color: var(--text-heading);
  }
  .hero-stats .st span {
    font-size: 11.5px; letter-spacing: var(--tracking-wide); text-transform: uppercase;
    color: var(--text-muted); font-family: var(--font-display);
  }
  .hero-visual { position: relative; }
  .hero-media {
    position: relative; overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 1440 / 1734;
    width: 100%;
    height: clamp(480px, 72vh, 640px);
    box-shadow: var(--shadow-raised);
  }
  .hero-media video, .hero-media img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: 50% 18%;
  }
  .hero-media video { opacity: 0; transition: opacity var(--duration-slow) var(--ease-out); }
  .hero-media video.playing { opacity: 1; }
  .hero-visual::after {
    content: "";
    position: absolute; inset: 22px -22px -22px 22px;
    border: 1px solid var(--gold-300);
    border-radius: var(--radius-md); z-index: -1;
  }
  .scroll-cue {
    position: absolute; left: 40px; bottom: 34px; z-index: 2;
    width: 1px; height: 56px; overflow: hidden;
  }
  .scroll-cue::before {
    content: ""; position: absolute; left: 0; top: -100%;
    width: 1px; height: 100%; background: var(--gold-600);
    animation: cue-fall 2.4s var(--ease-out) infinite;
  }
  @keyframes cue-fall { 0% { top: -100%; } 55% { top: 0; } 100% { top: 100%; } }
  @media (prefers-reduced-motion: reduce) { .scroll-cue { display: none; } }
  .btn-ghost.on-ink { color: var(--paper-0); border-color: rgba(251, 250, 248, 0.5); }
  .btn-ghost.on-ink:hover { background: rgba(251, 250, 248, 0.1); }

  /* ===== Treatments ===== */
  .treatments {
    background: var(--paper-0);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }
  .treatments .inner { max-width: 1200px; margin: 0 auto; padding: 100px 40px; }
  .sec-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: 56px; }
  .sec-head h2 { font-size: 40px; }
  /* Interactive image accordion (adapted from the shadcn interactive-image-accordion,
     rebuilt on DS tokens: near-square corners, slate overlay, calm easing) */
  .acc { display: flex; flex-direction: row; gap: 12px; height: 480px; }
  .acc-item {
    position: relative; overflow: hidden; cursor: pointer;
    border-radius: var(--radius-md);
    flex: 1 1 0%;
    transition: flex-grow 450ms var(--ease-out);
    min-width: 0;
  }
  .acc-item.active { flex-grow: 7; }
  .acc-item img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: 50% 30%;
  }
  .acc-item::after {
    content: ""; position: absolute; inset: 0;
    background: rgba(35, 44, 51, 0.55);
    transition: background 450ms var(--ease-out);
  }
  .acc-item.active::after { background: rgba(35, 44, 51, 0.28); }
  .acc-label {
    position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
    padding: 24px;
    display: flex; flex-direction: column; gap: 8px;
    color: var(--paper-0);
  }
  .acc-label .num {
    font-family: var(--font-display); font-size: 11px;
    color: var(--gold-300); letter-spacing: var(--tracking-caps);
  }
  .acc-label .name {
    font-family: var(--font-display); font-size: 22px; font-weight: var(--weight-light);
    white-space: nowrap;
  }
  .acc-label p {
    margin: 0; font-size: var(--text-sm); line-height: 1.55; color: var(--paper-100);
    max-width: 40ch;
    opacity: 0; transform: translateY(8px);
    transition: opacity 450ms var(--ease-out) 150ms, transform 450ms var(--ease-out) 150ms;
  }
  .acc-item.active .acc-label p { opacity: 1; transform: none; }
  .acc-item:not(.active) .acc-label {
    left: 50%; right: auto; bottom: 24px; padding: 0;
    transform: translateX(-50%);
  }
  .acc-item:not(.active) .acc-label .name {
    writing-mode: vertical-rl; transform: rotate(180deg);
    font-size: 16px; color: var(--paper-100);
  }
  .acc-item:not(.active) .acc-label .num,
  .acc-item:not(.active) .acc-label p { display: none; }
  .acc-item:focus-visible { outline: 1px solid var(--border-focus); outline-offset: 2px; }

  .t-cta {
    margin-top: 24px;
    background: var(--surface-ink); border-radius: var(--radius-md);
    padding: 28px 32px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    color: var(--paper-100);
  }
  .t-cta .name { font-family: var(--font-display); font-size: 22px; font-weight: var(--weight-light); }
  .t-cta p { margin: 0; font-size: var(--text-sm); color: var(--slate-300); }

  /* ===== Opiniones (Google reviews) ===== */
  .trust-band { border-bottom: 1px solid var(--border-subtle); padding-bottom: 56px; }
  .trust-inner {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    padding-top: 48px; padding-bottom: 32px; flex-wrap: wrap; text-align: center;
  }
  .trust-band .stars { color: var(--gold-600); letter-spacing: 4px; font-size: 15px; }
  .trust-copy { font-size: var(--text-md); color: var(--text-body); }
  .trust-copy strong { color: var(--text-heading); font-weight: var(--weight-semibold); }
  .rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .rev-grid.single { grid-template-columns: minmax(0, 520px); justify-content: center; }
  .rev-card {
    margin: 0;
    background: var(--surface-card);
    border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 28px 26px;
    display: flex; flex-direction: column; gap: 14px;
  }
  .rev-card .stars { font-size: 13px; letter-spacing: 3px; }
  .rev-card blockquote {
    margin: 0; border: none; padding: 0;
    font-family: var(--font-body); font-style: normal;
    font-size: var(--text-sm); line-height: 1.65; color: var(--text-body);
    flex: 1;
  }
  .rev-card figcaption { display: flex; align-items: center; gap: 12px; }
  .rev-card .ini {
    width: 36px; height: 36px; border-radius: 50%; flex: none;
    background: var(--surface-ink); color: var(--gold-300);
    font-family: var(--font-display); font-size: 15px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .rev-card figcaption strong { display: block; font-size: 13.5px; color: var(--text-heading); font-weight: var(--weight-semibold); }
  .rev-card figcaption em { display: block; font-style: normal; font-size: var(--text-xs); color: var(--text-muted); }
  .rev-more { text-align: center; margin-top: 28px; }

  /* ===== Doctor ===== */
  .doctor {
    max-width: 1200px; margin: 0 auto; padding: 110px 40px;
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center;
  }
  .doctor-photo { width: 100%; height: 520px; object-fit: cover; object-position: 50% 25%; border-radius: var(--radius-md); }
  .doctor-copy { display: flex; flex-direction: column; gap: 24px; }
  .doctor-copy h2 { font-size: 40px; }
  .doctor-copy .bio { max-width: 480px; line-height: 1.7; }
  .creds { display: flex; flex-direction: column; gap: 10px; font-size: var(--text-sm); }

  /* ===== Gallery ===== */
  .gallery { background: var(--surface-ink-deep); }
  .gallery .inner { max-width: 1200px; margin: 0 auto; padding: 100px 40px; }
  .gallery .sec-head { margin-bottom: 48px; }
  .gallery h2 { color: var(--paper-100); font-size: 40px; }
  .g-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
  .g-grid img { width: 100%; height: 340px; object-fit: cover; border-radius: var(--radius-md); }

  /* ===== Booking flow (ui_kits/booking, DS-native) ===== */
  .book-card {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-raised);
    padding: clamp(24px, 3vw, 40px);
    display: flex; flex-direction: column; gap: 28px;
    overflow: hidden;
  }
  .dots { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
  .dot { display: flex; align-items: center; gap: 10px; }
  .dot .n {
    width: 24px; height: 24px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-body); font-size: 12px;
    border: 1px solid var(--border-strong); color: var(--text-muted);
    background: transparent;
    transition: background var(--duration-base) var(--ease-out), color var(--duration-base) var(--ease-out);
  }
  .dot .l {
    font-family: var(--font-display); font-size: 12px;
    letter-spacing: var(--tracking-wide); text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--duration-base) var(--ease-out);
  }
  .dot.active .n, .dot.done .n { background: var(--slate-700); border-color: var(--slate-700); color: var(--paper-0); }
  .dot.active .l { color: var(--text-heading); }
  .bsteps { position: relative; }
  .bstep { display: none; }
  .bstep.on { display: block; animation: step-in var(--duration-slow) var(--ease-out); }
  @keyframes step-in { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
  .treat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .treat {
    text-align: left; cursor: pointer;
    padding: 16px 18px; border-radius: var(--radius-md);
    border: 1px solid var(--border-default); background: var(--surface-card);
    color: var(--text-heading);
    font-family: var(--font-display); font-size: 16px;
    transition: all var(--duration-fast) var(--ease-out);
  }
  .treat small { display: block; font-family: var(--font-body); font-size: 12px; margin-top: 5px; color: var(--text-muted); }
  .treat:hover { border-color: var(--border-strong); }
  .treat.sel { background: var(--slate-700); border-color: var(--slate-700); color: var(--paper-0); }
  .treat.sel small { color: var(--slate-300); }
  .cap-label {
    font-family: var(--font-display); font-size: 12px;
    letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--text-muted);
    display: block; margin: 0 0 12px;
  }
  .days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .day {
    cursor: pointer; padding: 12px 0; border-radius: var(--radius-sm);
    border: 1px solid var(--border-default); background: var(--surface-card);
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    font-family: var(--font-body); color: var(--text-heading);
    transition: all var(--duration-fast) var(--ease-out);
  }
  .day span:first-child { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
  .day span:last-child { font-family: var(--font-display); font-size: 20px; font-weight: var(--weight-light); }
  .day.sel { background: var(--slate-700); border-color: var(--slate-700); color: var(--paper-0); }
  .day.sel span:first-child { color: var(--slate-300); }
  .slots { display: flex; gap: 8px; flex-wrap: wrap; }
  .slot {
    cursor: pointer; padding: 8px 18px; border-radius: var(--radius-pill);
    border: 1px solid var(--border-default); background: var(--surface-card);
    font-family: var(--font-body); font-size: 14px; color: var(--text-heading);
    transition: all var(--duration-fast) var(--ease-out);
  }
  .slot.sel { background: var(--slate-700); border-color: var(--slate-700); color: var(--paper-0); }
  .dq-note {
    display: flex; gap: 12px; align-items: flex-start;
    background: var(--gold-100); border: 1px solid var(--gold-300);
    border-radius: var(--radius-sm); padding: 12px 16px;
    font-size: 12.5px; color: var(--gold-700); line-height: 1.55;
  }
  .book-nav { display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid var(--border-subtle); padding-top: 20px; }
  .book-done { text-align: center; padding: 28px 12px; display: none; }
  .book-done.on { display: block; animation: step-in var(--duration-slow) var(--ease-out); }
  .book-done .mark { font-family: var(--font-display); font-size: 40px; color: var(--status-success); }
  .book-done h3 { font-family: var(--font-display); font-weight: var(--weight-regular); font-size: var(--text-xl); color: var(--text-heading); margin: 10px 0 6px; }
  .book-done p { font-size: var(--text-sm); color: var(--text-body); }

  /* ===== Contact ===== */
  .contact {
    max-width: 1200px; margin: 0 auto; padding: 110px 40px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  }
  .contact-copy { display: flex; flex-direction: column; gap: 24px; }
  .contact-copy h2 { font-size: 40px; }
  .contact-copy .note { max-width: 420px; line-height: 1.7; }
  .contact-copy .addr { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.8; }
  form.f { display: flex; flex-direction: column; gap: 20px; }
  .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .f label { display: flex; flex-direction: column; gap: 8px; }
  .f label span {
    font-family: var(--font-display); font-size: var(--text-xs);
    letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--text-muted);
  }
  .f input, .f textarea {
    font-family: var(--font-body); font-size: var(--text-md); color: var(--text-heading);
    background: var(--surface-card); padding: 12px 14px;
    border: 1px solid var(--border-default); border-radius: var(--radius-xs);
    outline: none; width: 100%;
    transition: border-color var(--duration-fast) var(--ease-out);
  }
  .f input:focus, .f textarea:focus { border-color: var(--border-focus); }
  .f textarea { resize: vertical; min-height: 96px; }
  .f label.bad input, .f label.bad textarea { border-color: #B75C5C; }
  .consent a {
    color: var(--text-heading);
    text-decoration-color: var(--gold-600);
    text-underline-offset: 3px;
  }
  .field-error {
    font-size: 12.5px;
    line-height: 1.4;
    color: #9F3E3E;
    font-family: var(--font-body);
    letter-spacing: 0;
    text-transform: none;
  }
  .form-status {
    background: #FFF7F5;
    border: 1px solid #E7B8B0;
    border-radius: var(--radius-sm);
    color: #8F332E;
    font-size: var(--text-sm);
    line-height: 1.5;
    padding: 12px 14px;
  }
  .form-status a { color: var(--slate-700); font-weight: var(--weight-semibold); }
  .form-status[hidden] { display: none; }
  .btn:disabled { cursor: default; }
  .toast {
    display: none; align-items: center; gap: 12px;
    background: var(--status-success-bg); color: var(--status-success);
    border: 1px solid var(--status-success); border-radius: var(--radius-sm);
    padding: 12px 16px; font-size: var(--text-sm);
  }
  .toast.show { display: flex; }

  /* ===== Footer (parts.jsx SiteFooter) ===== */
  footer.site { background: var(--surface-ink-deep); color: var(--paper-100); }
  .foot-grid {
    max-width: 1200px; margin: 0 auto; padding: 80px 40px 48px;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px;
  }
  .foot-col { display: flex; flex-direction: column; gap: 12px; }
  .foot-col .mark { font-family: var(--font-display); font-size: 26px; letter-spacing: 0.24em; }
  .foot-col .about { font-size: var(--text-sm); line-height: 1.7; color: var(--slate-300); max-width: 300px; }
  .foot-col .head {
    font-family: var(--font-display); font-size: var(--text-xs);
    letter-spacing: var(--tracking-caps); text-transform: uppercase;
    color: var(--gold-300); margin-bottom: 6px;
  }
  .foot-col a, .foot-col .line { color: var(--slate-300); text-decoration: none; font-size: var(--text-sm); }
  .foot-col a:hover { color: var(--gold-300); }
  .foot-bottom { border-top: 1px solid rgba(251, 250, 248, 0.12); }
  .foot-bottom .inner {
    max-width: 1200px; margin: 0 auto; padding: 20px 40px;
    font-size: var(--text-xs); color: var(--slate-400);
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  }
  .foot-bottom a {
    color: var(--slate-400);
    text-decoration: none;
  }
  .foot-bottom a:hover { color: var(--gold-300); }

  /* ===== Dialog (surfaces/Dialog pattern) ===== */
  .dialog-back {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(35, 44, 51, 0.35);
    display: none; align-items: center; justify-content: center; padding: 24px;
  }
  .dialog-back.open { display: flex; }
  .dialog {
    background: var(--surface-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); box-shadow: var(--shadow-overlay);
    max-width: 440px; width: 100%; padding: 32px;
    display: flex; flex-direction: column; gap: 16px;
  }
  .dialog h3 { font-family: var(--font-display); font-weight: var(--weight-regular); font-size: var(--text-xl); color: var(--text-heading); }
  .dialog p { font-size: var(--text-sm); line-height: 1.7; }
  .dialog .actions { display: flex; gap: 12px; margin-top: 8px; }

  /* ===== Motion — GSAP-driven, fail-safe visible ===== */
  /* Initial hidden states are applied by JS only (gsap.set) so content is always
     visible with JS off, reduced motion, or motion paused — never stuck at opacity 0. */
  .split-line { display: block; overflow: hidden; }
  .split-line > span { display: block; }

  .motion-toggle {
    background: none; border: none; cursor: pointer;
    font-family: var(--font-display); font-size: var(--text-xs);
    letter-spacing: var(--tracking-caps); text-transform: uppercase;
    color: var(--slate-400); padding: 0;
  }
  .motion-toggle:hover { color: var(--gold-300); }

  /* ===== Inner pages (Rubattino production subpages) ===== */
  main.page { background: var(--surface-page); }
  .page-hero {
    background: var(--surface-page);
    border-bottom: 1px solid var(--border-subtle);
  }
  .page-hero .inner {
    max-width: 1200px; margin: 0 auto; padding: 96px 40px 76px;
    display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 64px; align-items: center;
  }
  .page-hero.no-media .inner { grid-template-columns: minmax(0, 780px); }
  .breadcrumbs {
    display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
    font-family: var(--font-display); font-size: var(--text-xs);
    letter-spacing: var(--tracking-wide); text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 22px;
  }
  .breadcrumbs a { color: var(--text-muted); text-decoration: none; }
  .breadcrumbs a:hover { color: var(--text-heading); }
  .breadcrumbs span { color: var(--text-accent); }
  .page-hero h1 {
    font-size: var(--text-4xl); line-height: 1.05; letter-spacing: 0;
    max-width: 12ch; margin-top: 18px;
  }
  .page-hero p {
    font-size: var(--text-lg); line-height: 1.65; max-width: 600px;
    margin-top: 24px; color: var(--text-body);
  }
  .page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
  .page-hero-media img {
    width: 100%; height: 430px; object-fit: cover; object-position: 50% 36%;
    border-radius: var(--radius-md); box-shadow: var(--shadow-raised);
  }
  .page-band {
    background: var(--paper-0);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }
  .page-band.ink { background: var(--surface-ink-deep); color: var(--paper-100); }
  .page-section, .page-band .inner {
    max-width: 1200px; margin: 0 auto; padding: 86px 40px;
  }
  .page-section.narrow { max-width: 880px; }
  .page-section h2, .page-band h2, .cta-band h2 {
    font-family: var(--font-display); font-weight: var(--weight-light);
    font-size: 38px; line-height: 1.15; letter-spacing: 0;
    color: var(--text-heading);
  }
  .page-band.ink h2 { color: var(--paper-100); }
  .section-lead { max-width: 640px; margin-top: 18px; line-height: 1.75; }
  .card-grid {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px; margin-top: 34px;
  }
  .info-card, .treatment-index-card {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
  }
  .info-card { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
  .info-card .num {
    font-family: var(--font-display); font-size: 11px;
    letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--text-accent);
  }
  .info-card h2, .info-card h3 {
    font-family: var(--font-display); font-size: 24px; line-height: 1.2;
    font-weight: var(--weight-light); letter-spacing: 0; color: var(--text-heading);
  }
  .info-card p { font-size: var(--text-sm); line-height: 1.7; color: var(--text-body); }
  .treatment-index-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px; margin-top: 36px;
  }
  .treatment-index-card {
    min-height: 260px; overflow: hidden; text-decoration: none; color: var(--paper-0);
    position: relative; display: flex; align-items: flex-end;
  }
  .treatment-index-card img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: 50% 34%;
    transition: transform var(--duration-slow) var(--ease-out);
  }
  .treatment-index-card::after {
    content: ""; position: absolute; inset: 0; background: rgba(35, 44, 51, 0.48);
  }
  .treatment-index-card:hover img { transform: scale(1.035); }
  .treatment-index-card .copy {
    position: relative; z-index: 1; padding: 28px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .treatment-index-card .num {
    font-family: var(--font-display); font-size: 11px;
    letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--gold-300);
  }
  .treatment-index-card h2 {
    color: var(--paper-0); font-size: 28px; line-height: 1.15; letter-spacing: 0;
  }
  .treatment-index-card p { color: var(--paper-100); font-size: var(--text-sm); line-height: 1.65; max-width: 42ch; }
  .text-panel {
    background: var(--surface-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); box-shadow: var(--shadow-card);
    padding: 34px; margin-top: 34px;
  }
  .text-panel h2 { margin-bottom: 18px; }
  .text-panel p { line-height: 1.8; max-width: 760px; }
  .text-panel p + p { margin-top: 14px; }
  .text-panel a { color: var(--text-heading); text-decoration-color: var(--gold-600); text-underline-offset: 3px; }
  .image-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 34px;
  }
  .image-row img {
    width: 100%; height: 280px; object-fit: cover;
    border-radius: var(--radius-md);
  }
  .cta-band {
    max-width: 1200px; margin: 0 auto; padding: 44px 40px 92px;
  }
  .cta-band .inner {
    background: var(--surface-ink); color: var(--paper-100);
    border-radius: var(--radius-md); padding: 34px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
  }
  .cta-band h2 { color: var(--paper-100); font-size: 30px; }
  .cta-band p { color: var(--slate-300); margin-top: 6px; max-width: 620px; }
  .about-split, .contact-page-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
  }
  .about-copy { display: flex; flex-direction: column; gap: 18px; }
  .about-copy p { line-height: 1.75; }
  .about-photo {
    width: 100%; height: 520px; object-fit: cover; object-position: 50% 24%;
    border-radius: var(--radius-md); box-shadow: var(--shadow-raised);
  }
  .contact-list {
    display: grid; gap: 14px; margin-top: 28px;
  }
  .contact-list .item {
    border-top: 1px solid var(--border-subtle); padding-top: 16px;
  }
  .contact-list dt {
    font-family: var(--font-display); font-size: var(--text-xs);
    letter-spacing: var(--tracking-caps); text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 6px;
  }
  .contact-list dd, .contact-list a { color: var(--text-heading); text-decoration: none; }
  .contact-list a:hover { color: var(--text-accent); }
  .map-placeholder {
    min-height: 420px; border-radius: var(--radius-md);
    background: var(--surface-card); border: 1px solid var(--border-default);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px; box-shadow: var(--shadow-card);
    position: relative; overflow: hidden;
  }
  .map-placeholder::before {
    content: ""; position: absolute; inset: 22px;
    border: 1px solid var(--border-subtle);
  }
  .map-placeholder .pin {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--gold-600); border: 8px solid var(--gold-100);
    position: absolute; left: 50%; top: 44%; transform: translate(-50%, -50%);
    box-shadow: var(--shadow-raised);
  }
  .map-placeholder strong, .map-placeholder span { position: relative; z-index: 1; }
  .map-placeholder strong {
    font-family: var(--font-display); font-size: var(--text-xl);
    font-weight: var(--weight-light); color: var(--text-heading);
  }
  .map-placeholder span { color: var(--text-muted); margin-top: 4px; }

  /* ===== Responsive ===== */
  @media (max-width: 960px) {
    nav.main { display: none; }
    .hero-grid, .doctor, .contact { grid-template-columns: 1fr; gap: 48px; padding-top: 64px; padding-bottom: 64px; }
    .page-hero .inner, .about-split, .contact-page-grid { grid-template-columns: 1fr; gap: 42px; }
    .page-hero .inner { padding-top: 70px; padding-bottom: 62px; }
    .page-hero h1 { font-size: var(--text-3xl); }
    .page-hero-media { max-width: 520px; }
    .page-hero-media img, .about-photo { height: 420px; }
    .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .treatment-index-grid { grid-template-columns: 1fr; }
    .image-row { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: var(--text-3xl); }
    .hero-media { height: 440px; }
    .hero-visual { max-width: 420px; }
    .hero-visual::after { display: none; }
    .scroll-cue { display: none; }
    .doctor-photo { order: -1; height: 420px; }
    .acc { flex-direction: column; height: auto; gap: 10px; }
    .acc-item { flex: none; height: 64px; transition: height 450ms var(--ease-out); }
    .acc-item.active { flex-grow: 0; height: 340px; }
    .acc-item:not(.active) .acc-label {
      left: 20px; bottom: 50%; transform: translateY(50%);
    }
    .acc-item:not(.active) .acc-label .name {
      writing-mode: horizontal-tb; transform: none; font-size: 16px;
    }
    .g-grid { grid-template-columns: 1fr 1fr; }
    .g-grid img:first-child { grid-column: 1 / -1; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .container, .nav-inner, .treatments .inner, .gallery .inner { padding-left: 24px; padding-right: 24px; }
    .hero-grid, .doctor, .contact, .page-hero .inner, .page-section, .page-band .inner, .cta-band { padding-left: 24px; padding-right: 24px; }
  }
  @media (max-width: 620px) {
    .f-row, .g-grid, .foot-grid, .treat-grid, .rev-grid, .card-grid, .image-row { grid-template-columns: 1fr; }
    .days { grid-template-columns: repeat(3, 1fr); }
    .g-grid img:first-child { grid-column: auto; }
    .hero h1, .page-hero h1 { font-size: var(--text-3xl); }
    .sec-head h2, .doctor-copy h2, .gallery h2, .contact-copy h2, .page-section h2, .page-band h2 { font-size: 32px; }
    .hero-ctas { flex-wrap: wrap; }
    .page-hero-actions, .cta-band .inner, .dialog .actions { align-items: stretch; flex-direction: column; }
    .page-hero-actions .btn, .cta-band .btn, .dialog .btn { justify-content: center; }
    .treatment-index-card { min-height: 320px; }
    .map-placeholder { min-height: 340px; }
  }
