*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream:      #F7F5EE;
  --teal:       #006464;
  --teal-dark:  #005050;
  --amber:      #F0A014;
  --amber-dark: #DCA014;
  --amber-text: #8C5E0A; /* WCAG AA-safe amber for small text on light backgrounds (~5.2:1+, headroom above the 4.5:1 minimum) */
  --amber-on-dark: #FFD27F; /* WCAG AA-safe amber for small text on teal backgrounds (~4.9:1, headroom above the 4.5:1 minimum) */
  --ink:        #282828;
  --slate:      #666666;
  --teal-mist:  #E8F2F2;
  --amber-mist: #FDF4E0;
  --white:      #FFFFFF;

  /* Escala tipográfica */
  --fs-2xs:  13px;  /* eyebrows, tags, labels en mayúsculas, botones, links de footer */
  --fs-xs:   14px;  /* base del footer, notas pequeñas */
  --fs-sm:   15px;  /* texto de tarjetas, meta, texto de diagramas */
  --fs-base: 17px;  /* párrafos de cuerpo */
  --fs-lg:   19px;  /* párrafos destacados: hero, brand-strip, booking */
  --fs-md:   18px;  /* flechas de flujo del diagrama de herramientas */
  --fs-xl:   20px;  /* footer-brand, flecha del diagrama hub (diag-arrow-line) */
  --fs-2xl:  22px;  /* nav-brand */
  --fs-3xl:  24px;  /* títulos de las tarjetas del menú */
  --fs-4xl:  28px;  /* flecha del diagrama de journey */
  --fs-5xl:  32px;  /* split-content h2 en móvil (≤860px) */
  --fs-6xl:  34px;  /* hero h1 en móvil (≤420px) */
  --fs-7xl:  38px;  /* split-content h2 en escritorio */

  /* Escala de iconos/emoji */
  --icon-sm: 20px;  /* pills, badges, ⭐ */
  --icon-md: 28px;  /* iconos de herramienta (ChatGPT/Claude/Canva) */
  --icon-lg: 34px;  /* círculos de diagrama (🌱 / 🥭) */
}

html { scroll-behavior: smooth; }

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

  .emoji {
    font-size: var(--icon-sm);
    line-height: 1;
    vertical-align: -0.12em;
    font-style: normal;
    display: inline-block;
  }
  .emoji-md { font-size: var(--icon-md); }
  .emoji-lg { font-size: var(--icon-lg); }

  .skip-link {
    position: absolute;
    left: 8px;
    top: -48px;
    background: var(--teal);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 6px;
    z-index: 200;
    text-decoration: none;
    font-size: var(--fs-2xs);
    font-weight: 600;
    transition: top 0.2s;
  }
  .skip-link:focus { top: 8px; }

  a:focus-visible,
  button:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
  }

  body {
    background: var(--cream);
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    font-size: var(--fs-base);
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* Images ship as AVIF with a WebP fallback, so each one is wrapped in a
     <picture>. display:contents makes that wrapper generate no box, so every
     rule below still targets the <img> exactly as it did before. */
  picture {
    display: contents;
  }

  /* Shared-chrome wrapper elements (site-chrome.js) must not generate a box
     of their own, so nav/footer inside them lay out exactly as if they were
     direct children of body. */
  site-header, site-footer { display: contents; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(247,245,238,0.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,100,100,0.1);
    padding: 0 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-brand {
    font-family: 'DM Serif Display', serif;
    font-size: var(--fs-2xl);
    letter-spacing: 0.01em;
    text-decoration: none;
  }
  .nav-brand .m { color: var(--teal); }
  .nav-brand .b { color: var(--amber); }

  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
  }

  .nav-links a {
    font-size: var(--fs-2xs);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
  }
  .nav-links a:hover { opacity: 1; }

  .nav-cta {
    background: var(--amber) !important;
    color: var(--ink) !important;
    opacity: 1 !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600 !important;
  }

  /* ── BUTTONS ── */
  .btn-primary {
    display: inline-block;
    background: var(--amber);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
    border: none;
  }
  .btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); }

  /* ── QUIZ MODAL ── */
  .menu-quiz-cta { margin-top: 48px; text-align: center; }
  .menu-quiz-hint {
    font-size: var(--fs-xs);
    color: var(--ink);
    opacity: 0.8;
    margin-bottom: 16px;
  }
  .quiz-modal[hidden] { display: none; }
  .quiz-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(40, 40, 40, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .quiz-modal-box {
    position: relative;
    background: var(--cream);
    border-radius: 12px;
    width: min(760px, 100%);
    height: min(720px, 100%);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }
  .quiz-modal-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: var(--cream);
  }
  .quiz-close {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--amber);
    color: var(--ink);
    font-size: var(--fs-sm);
    line-height: 1;
  }
  .quiz-close:hover { background: var(--amber-dark); }
  body.quiz-open { overflow: hidden; }

  /* Quiz-scoped overrides. These rules also style cuestionario_embed.html:
     that document has no stylesheet of its own and asks the parent for this
     whole <style> block over postMessage, so anything scoped to #quiz-root
     only ever applies inside the embedded quiz. */
  #quiz-root {
    padding: 40px 28px;
    max-width: 620px;
    margin: 0 auto;
  }
  #quiz-root .section-title { margin-bottom: 12px; }
  #quiz-root .section-subtitle { margin-bottom: 28px; }

  /* The question/result card is not a clickable card here, so it must not
     lift or glow on hover the way the pricing cards do. */
  #quiz-root .menu-card { padding: 28px 24px; }
  #quiz-root .menu-card:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(0,100,100,0.1);
  }
  #quiz-root .menu-card.featured:hover { border-color: var(--teal); }

  #quiz-root .menu-card h3 {
    font-size: var(--fs-lg);
    line-height: 1.35;
    margin-bottom: 20px;
  }
  #quiz-root .menu-card p { margin-bottom: 12px; }
  #quiz-root .menu-card p:last-child { margin-bottom: 0; }

  /* Options: full width, left-aligned (they are sentences, not labels). */
  #quiz-root .diag-inputs {
    max-width: none;
    width: 100%;
    gap: 10px;
  }
  #quiz-root .diag-pill {
    display: block;
    text-align: left;
    padding: 12px 16px;
    line-height: 1.5;
    font-weight: 400;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
  }
  #quiz-root .diag-pill:hover { border-color: var(--teal); }
  #quiz-root .diag-pill.out { font-weight: 600; }
  #quiz-root .diag-pill.out:hover { border-color: var(--amber-dark); }
  #quiz-root .diag-pill:focus-within {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
  }

  /* Validation notice: a sentence, not an uppercase tag. */
  #quiz-root .quiz-validation {
    display: block;
    margin: 16px 0 0;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--amber-text);
    text-transform: none;
    letter-spacing: normal;
  }
  #quiz-root .quiz-validation[hidden] { display: none; }

  /* Breathing room between the card and the Back/Next row. */
  #quiz-root .hero-ctas {
    margin-top: 28px;
    gap: 12px;
  }
  #quiz-root .hero-ctas .btn-outline,
  #quiz-root .hero-ctas .btn-primary { margin-bottom: 0; }

  @media (max-width: 480px) {
    #quiz-root { padding: 28px 18px; }
    #quiz-root .hero-ctas { flex-direction: column-reverse; align-items: stretch; }
    #quiz-root .hero-ctas .btn-outline,
    #quiz-root .hero-ctas .btn-primary { width: 100%; text-align: center; }
  }

  .btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--teal);
    font-family: 'DM Sans', sans-serif;
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    border: 1.5px solid var(--teal);
    transition: all 0.2s;
    cursor: pointer;
  }
  .btn-outline:hover { background: var(--teal); color: var(--white); }

  /* ── HERO ── */
  .hero {
    padding: 160px 24px 100px;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }

  .eyebrow {
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-text);
    display: block;
    margin-bottom: 16px;
  }
  .hero .eyebrow { margin-bottom: 24px; }
  .menu-section .eyebrow,
  .booking-section .eyebrow { margin-bottom: 12px; }

  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.1;
    color: var(--teal);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--amber-text);
  }

  .hero p {
    font-size: var(--fs-lg);
    color: var(--slate);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 40px;
    font-weight: 300;
  }

  .hero p.hero-fact {
    font-size: var(--fs-sm);
    max-width: 620px;
    margin-bottom: 16px;
  }

  .hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  /* ── SPLIT SECTIONS ── */
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 440px;
    border-top: 1px solid rgba(0,100,100,0.08);
  }

  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }

  .split-image {
    background: var(--teal-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 400px;
    position: relative;
  }

  .split-image.amber-bg { background: var(--amber-mist); }

  .split-content {
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
  }

  .split-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: var(--fs-7xl);
    color: var(--teal);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .split-content h2 em {
    font-style: italic;
    color: var(--amber);
  }

  .split-content p {
    color: var(--slate);
    font-size: var(--fs-base);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 300;
  }

  /* ── DIAGRAM PLACEHOLDERS ── */
  .diagram {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }

  /* Diagram 1 — Green to Ripe */
  .diag-journey-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 340px;
  }

  .diag-note {
    font-size: var(--fs-2xs);
    color: var(--slate);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
  }

  .diag-journey {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 380px;
  }

  .diag-stage {
    flex: 1;
    text-align: center;
  }

  .diag-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: var(--icon-lg);
    line-height: 1;
    font-weight: 400;
  }

  .diag-circle.green {
    background: #C8E6C8;
    color: #2D5A2D;
    border: 2px dashed #5A9E5A;
  }

  .diag-circle.ripe {
    background: var(--amber);
    color: var(--ink);
    border: 2px solid var(--amber-dark);
  }

  .diag-label {
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal-dark);
  }

  .diag-arrow {
    color: var(--amber);
    font-size: var(--fs-4xl);
    opacity: 0.6;
    flex-shrink: 0;
  }

  .diag-sessions {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    max-width: none;
  }

  .diag-session-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,0.7);
  }

  .diag-session-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .diag-session-text {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--teal-dark);
    letter-spacing: 0.02em;
  }

  .diagram-journey-img {
    flex-direction: column;
    gap: 16px;
  }
  .journey-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
  }

  /* Diagram 2 — AI Workflow */
  .diag-flow {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 300px;
  }

  .diag-tool {
    background: var(--white);
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(0,100,100,0.1);
  }

  .diag-tool-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--icon-md);
    line-height: 1;
    flex-shrink: 0;
  }

  .diag-tool-name {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--teal);
  }

  .diag-tool-role {
    font-size: var(--fs-2xs);
    color: var(--slate);
    margin-top: 1px;
  }

  .diag-flow-arrow {
    text-align: center;
    color: var(--amber);
    font-size: var(--fs-md);
    opacity: 0.7;
  }

  .flow-badge {
    margin-top: 8px;
    padding: 10px 16px;
    background: var(--amber);
    border-radius: 8px;
    text-align: center;
    font-size: var(--fs-2xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
  }

  /* Diagram 3 — Command Centre */
  .diag-hub {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 400px;
  }

  .diag-inputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .diag-pill {
    border-radius: 20px;
    padding: 9px 14px;
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    border: 1.5px solid var(--teal-mist);
    background: var(--white);
    color: var(--teal-dark);
  }
  .diag-pill.out {
    background: var(--amber-mist);
    border-color: var(--amber);
    color: var(--amber-text);
  }

  .diag-hub-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .diag-hub-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,100,100,0.3);
  }

  .diag-hub-label {
    font-size: var(--fs-2xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-dark);
    margin-top: 6px;
  }

  .diag-arrow-line {
    color: var(--amber);
    font-size: var(--fs-xl);
    letter-spacing: -2px;
    opacity: 0.7;
  }

  .diag-outputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* ── BRAND STORY STRIP ── */
  .brand-strip {
    background: var(--teal);
    padding: 0;
    color: var(--white);
    overflow: hidden;
  }

  .brand-strip-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .brand-strip-content {
    padding: 96px 24px 96px 48px;
    text-align: center;
  }

  .brand-strip-art {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brand-strip-art img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
  }

  .brand-strip h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .brand-strip h2 em {
    font-style: italic;
    color: var(--amber);
  }

  .brand-strip p {
    font-size: var(--fs-lg);
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 40px;
  }

  /* ── MENU SECTION ── */
  .menu-section {
    padding: 100px 24px;
    background: var(--white);
    text-align: center;
  }

  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--teal);
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: var(--fs-base);
    color: var(--slate);
    max-width: 480px;
    margin: 0 auto 64px;
    font-weight: 300;
  }

  .menu-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }

  /* ── FAQ SECTION ── */
  .faq-section {
    padding: 100px 24px;
    background: var(--cream);
    text-align: center;
  }

  .faq-section .section-title { margin-bottom: 48px; }

  .faq-list {
    display: grid;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
  }

  .faq-item {
    background: var(--white);
    border: 1.5px solid rgba(0,100,100,0.1);
    border-radius: 14px;
    padding: 28px 32px;
  }

  .faq-item h3 {
    font-size: var(--fs-base);
    color: var(--teal);
    margin-bottom: 8px;
  }

  .faq-item p {
    font-size: var(--fs-sm);
    color: var(--slate);
    font-weight: 300;
    line-height: 1.6;
  }

  .menu-card {
    border-radius: 14px;
    padding: 36px 24px;
    text-align: left;
    position: relative;
    border: 1.5px solid rgba(0,100,100,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    background: var(--cream);
  }

  .menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,100,100,0.1);
  }

  .menu-card.featured {
    background: var(--teal);
    border-color: var(--teal);
  }

  .menu-card-icon {
    height: 96px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
  }

  .menu-card-tag {
    font-size: var(--fs-2xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-text);
    margin-bottom: 8px;
    display: block;
  }

  .menu-card.featured .menu-card-tag { color: var(--amber-on-dark); }

  .menu-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: var(--fs-3xl);
    color: var(--teal);
    margin-bottom: 8px;
  }

  .menu-card.featured h3 { color: var(--white); }

  .menu-card-meta {
    font-size: var(--fs-sm);
    color: var(--slate);
    margin-bottom: 16px;
    font-weight: 500;
  }

  .menu-card.featured .menu-card-meta { color: rgba(255,255,255,0.8); }

  .menu-card p {
    font-size: var(--fs-sm);
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
  }

  .menu-card.featured p { color: rgba(255,255,255,0.8); }

  .menu-card-price {
    font-size: var(--fs-xs) !important;
    font-style: italic;
    margin-bottom: 0 !important;
  }

  /* ── BOOKING SECTION ── */
  .booking-section {
    padding: 100px 24px;
    background: var(--white);
    text-align: center;
  }

  .booking-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--teal);
    margin-bottom: 16px;
  }

  .booking-section p {
    font-size: var(--fs-lg);
    color: var(--slate);
    max-width: 520px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
  }

  .booking-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--teal);
    padding: 48px 24px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-xs);
  }

  .footer-logo-wrap {
    margin-bottom: 16px;
  }

  .footer-logo {
    width: 72px;
    height: auto;
    display: block;
    margin: 0 auto 12px;
  }

  .footer-brand {
    font-family: 'DM Serif Display', serif;
    font-size: var(--fs-xl);
    margin-bottom: 8px;
  }

  .footer-brand .m { color: var(--white); }
  .footer-brand .b { color: var(--amber); }

  .footer-tagline {
    color: rgba(255,255,255,0.8);
    font-size: var(--fs-2xs);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 24px;
  }

  .footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: var(--fs-2xs);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--amber-on-dark); }

  .footer-contact {
    color: rgba(255,255,255,0.8);
    font-size: var(--fs-xs);
    margin-bottom: 4px;
  }

  .footer-copy {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
  }

  /* ── LANGUAGE BADGE ── */
  .lang-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
  }

  .lang-badge {
    background: rgba(0,100,100,0.08);
    border: 1px solid rgba(0,100,100,0.15);
    color: var(--teal);
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
  }

  /* ── MOBILE NAV TOGGLE ── */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── RESPONSIVE ── */
  @media (max-width: 860px) {
    nav { padding: 0 20px; }

    .nav-toggle { display: flex; }

    .nav-links {
      position: fixed;
      top: 64px; left: 0; right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: var(--cream);
      border-bottom: 1px solid rgba(0,100,100,0.1);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.25s ease;
    }
    .nav-links.open { max-height: 320px; }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block;
      padding: 16px 24px;
      opacity: 1;
      border-bottom: 1px solid rgba(0,100,100,0.06);
    }
    .nav-cta { margin: 12px 24px; text-align: center; }

    .hero { padding: 112px 20px 64px; }
    .hero p { font-size: var(--fs-base); }

    .split {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .split-image { min-height: 260px; padding: 32px 0; }
    .split-content { padding: 48px 24px; }
    .split-content h2 { font-size: var(--fs-5xl); }

    .diag-hub { grid-template-columns: 1fr; gap: 16px; }

    .brand-strip-inner {
      grid-template-columns: 1fr;
    }
    .brand-strip-content { padding: 56px 20px 32px; }
    .brand-strip p { max-width: 100%; }
    .brand-strip-art {
      align-items: center;
      padding: 0 20px 40px;
    }
    .brand-strip-art img { max-width: 220px; }

    .menu-card-icon { height: 88px; margin-bottom: 16px; }

    .menu-section { padding: 64px 20px; }
    .menu-cards { grid-template-columns: 1fr; max-width: 420px; }

    .booking-section { padding: 64px 20px; }

    footer { padding: 40px 20px; }
    .footer-links { flex-wrap: wrap; gap: 16px; }
  }

  @media (max-width: 420px) {
    .hero h1 { font-size: var(--fs-6xl); }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas a { width: 100%; text-align: center; }

    .diag-journey { flex-direction: column; gap: 12px; }
    .diag-arrow { display: block; transform: rotate(90deg); }
    .diag-session-row { padding: 8px 12px; }
  }

  /* ── PRIVACY PAGE ── */
  .privacy-page {
    max-width: 640px;
    margin: 0 auto;
    padding: 128px 24px 96px;
  }

  .privacy-page h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4vw, 38px);
    color: var(--teal);
    margin-bottom: 8px;
  }

  .privacy-page .updated {
    font-size: var(--fs-xs);
    color: var(--slate);
    margin-bottom: 40px;
  }

  .privacy-page h2 {
    font-family: 'DM Serif Display', serif;
    font-size: var(--fs-xl);
    color: var(--teal);
    margin: 32px 0 8px;
  }

  .privacy-page p {
    margin-bottom: 16px;
    color: var(--slate);
    font-weight: 300;
  }

  .privacy-page a { color: var(--teal); }

  .privacy-page .back {
    display: inline-block;
    margin-top: 40px;
    font-size: var(--fs-sm);
  }

  @media (max-width: 860px) {
    .privacy-page { padding: 96px 20px 64px; }
  }

  /* ── REDUCED MOTION ── */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .btn-primary:hover,
    .menu-card:hover {
      transform: none;
    }
  }

  /* ── TESTIMONIALS PAGE ── */
  .testimonials-header {
    padding: 160px 24px 64px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
  }

  .testimonials-header .eyebrow { display: block; }

  .testimonials-header h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    color: var(--teal);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .testimonials-header p {
    font-size: var(--fs-lg);
    color: var(--slate);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
  }

  .case-block {
    padding: 80px 24px;
  }

  .case-block.cream { background: var(--cream); }
  .case-block.mist { background: var(--teal-mist); }

  .case-inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .case-tag {
    display: inline-block;
    font-size: var(--fs-2xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-text);
    margin-bottom: 16px;
  }

  .case-quote {
    font-family: 'DM Serif Display', serif;
    font-size: var(--fs-4xl);
    line-height: 1.3;
    color: var(--teal);
    margin-bottom: 12px;
    max-width: 780px;
  }

  .case-attribution {
    font-size: var(--fs-sm);
    color: var(--slate);
    font-weight: 500;
    margin-bottom: 48px;
  }

  .case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
  }

  .case-col-label {
    display: block;
    font-size: var(--fs-2xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-dark);
    margin-bottom: 12px;
  }

  .case-col p,
  .case-col ul {
    font-size: var(--fs-sm);
    color: var(--slate);
    line-height: 1.7;
    font-weight: 300;
  }

  .case-col ul {
    padding-left: 20px;
  }

  .case-col li { margin-bottom: 8px; }

  .case-outcome {
    color: var(--ink);
    font-weight: 400;
  }

  .case-outcome-placeholder {
    font-style: italic;
    color: var(--amber-text);
  }

  @media (max-width: 860px) {
    .testimonials-header { padding: 112px 20px 48px; }
    .case-block { padding: 56px 20px; }
    .case-grid { grid-template-columns: 1fr; gap: 24px; }
    .case-quote { font-size: var(--fs-3xl); }
  }