  /* ================= Base ================= */
  html { background: #EAE6DD; }
  /* En movil toda la tipografia crece ~6% (todo esta en rem) */
  @media (max-width: 767px) { html { font-size: 17px; } }
  html.lenis, html.lenis body { height: auto; }
  .lenis.lenis-smooth { scroll-behavior: auto !important; }

  body {
    font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: -0.008em;
    font-optical-sizing: auto;
    color: #161513;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  ::selection { background: #26262B; color: #EAE6DD; }

  :focus-visible { outline: 2px solid #2C3A64; outline-offset: 4px; }

  /* ================= Grain ================= */
  .grain {
    position: fixed; inset: -50%;
    width: 200%; height: 200%;
    pointer-events: none;
    z-index: 90;
    opacity: 0.085;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 1150px 1150px;
    animation: grainShift 0.8s steps(4) infinite;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
  @keyframes grainShift {
    0% { transform: translate(0,0) translateZ(0); }
    25% { transform: translate(3.5%, -2.5%) translateZ(0); }
    50% { transform: translate(-2.5%, 3.5%) translateZ(0); }
    75% { transform: translate(2.5%, 2.5%) translateZ(0); }
    100% { transform: translate(-3.5%, -2%) translateZ(0); }
  }
  @media (prefers-reduced-motion: reduce) { .grain { animation: none; } }

  /* Extra animated grain just for the hero (the light silver mutes the global film) */
  #hero::after {
    content: "";
    position: absolute; inset: -50%;
    width: 200%; height: 200%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.11;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 1150px 1150px;
    animation: grainShift 0.8s steps(4) infinite;
  }
  @media (prefers-reduced-motion: reduce) { #hero::after { animation: none; } }

  /* Short viewports (13" MacBooks, small laptops): compress the hero so the
     centred block never climbs into the fixed eyebrows */
  @media (max-height: 860px) {
    .hero-logo [data-hero-title]:has(#trobaLogo) { width: min(62vw, 560px) !important; }
    .hero-logo .mask + .mask { margin-top: 0.5rem !important; }
    #hero .hero-logo ~ p.mask { margin-top: 1.4rem !important; font-size: 0.92rem !important; }
    #hero .hero-logo ~ div.mask { margin-top: 1.4rem !important; }
    #hero [data-parallax] { display: none; }
  }
  @media (max-height: 700px) {
    .hero-logo [data-hero-title]:has(#trobaLogo) { width: min(52vw, 460px) !important; }
  }

  /* ================= Custom cursor ================= */
  .cursor {
    position: fixed; top: 0; left: 0;
    opacity: 0;
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
    z-index: 200;
    transform: translate(-50%, -50%) translateZ(0);
    will-change: transform;
  }
  .cursor svg {
    width: 16px; height: 16px;
    transition: width 0.35s cubic-bezier(0.22,1,0.36,1), height 0.35s cubic-bezier(0.22,1,0.36,1);
  }
  .cursor.is-hover svg { width: 24px; height: 24px; }
  /* Expanding inverted ring on hover (reads on any background) */
  .cursor-ring {
    position: absolute; inset: 0;
    border-radius: 999px;
    backdrop-filter: invert(1);
    -webkit-backdrop-filter: invert(1);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2.5px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2.5px));
    transform: scale(0.3);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
  }
  @supports not ((backdrop-filter: invert(1)) or (-webkit-backdrop-filter: invert(1))) {
    .cursor-ring { border: 2px solid #EAE6DD; mix-blend-mode: difference; }
  }
  .cursor.is-hover .cursor-ring { transform: scale(1); opacity: 1; }
  @media (hover: none) { .cursor { display: none; } }

  .cursor svg {
    display: block;
    animation: curSpin 14s linear infinite;
  }
  .cursor.is-hover svg { animation-play-state: paused; }
  @keyframes curSpin { to { transform: rotate(360deg); } }
  .cursor .cur-k { transition: opacity 0.3s ease; }
  .cursor.is-hover .cur-k { opacity: 0; }
  /* Safari-specific optimization: disable expensive mix-blend-mode */
  @supports (-webkit-hyphens: none) {
    .cursor { mix-blend-mode: normal; opacity: 0.92; }
  }

  /* ================= Preloader ================= */
  .preloader {
    position: fixed; inset: 0;
    background: #26262B;
    z-index: 300;
    display: flex; align-items: center; justify-content: center;
  }
  .pre-logo {
    display: block;
    width: min(60vw, 440px);
    height: auto;
    color: #EAE6DD;
  }
  .pre-logo .eye-pupil path,
  .pre-logo .eye-spray circle { fill: #6E80AD; } /* gota y splatter, misma tinta clara */
  .preloader__word {
    visibility: hidden; /* el JS la revela ya con el SVG dentro — sin flash del texto */
    font-family: "Fraunces", Georgia, serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: clamp(2.4rem, 7vw, 5.5rem);
    letter-spacing: -0.03em;
    color: #EAE6DD;
    overflow: hidden;
    display: flex;
  }
  .preloader__word .char { display: inline-block; transform: translateY(120%); }
  .pre-frame {
    display: inline-block;
    width: 0.66em; height: 0.73em;
    margin-left: 0.06em;
    transform: scale(0);
  }
  .pre-frame svg { width: 100%; height: 100%; display: block; }

  /* ================= Line mask reveal ================= */
  .mask { overflow: hidden; display: block; }
  .mask > span { display: block; transform: translateY(120%); will-change: transform; }
  /* Once the intro is done: no transform at all (avoids raster seams on the
     big logo SVG) and no clipping (the magnetic CTA can wander) */
  .mask.intro-done { overflow: visible; }
  .mask.intro-done > span { transform: none !important; will-change: auto; }

  /* ================= Language switch ================= */
  .lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: rgba(234, 230, 221, 0.5);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem 0.2rem;
  }
  .lang-switch [data-lang-opt] { transition: color 0.25s ease; }
  .lang-switch [data-lang-opt].is-active { color: #EAE6DD; font-weight: 500; }
  .lang-switch:hover [data-lang-opt]:not(.is-active) { color: rgba(234, 230, 221, 0.85); }

  /* ================= Mobile menu ================= */
  .menu-toggle {
    width: 48px; height: 48px;
    display: none; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 7px;
    background: none; border: none; cursor: pointer;
    margin-right: -10px;
  }
  .menu-toggle span {
    display: block; width: 24px; height: 2px;
    background: #EAE6DD;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  }
  @media (max-width: 767px) { .menu-toggle { display: flex; } }
  .menu-toggle.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

  .mobile-menu {
    position: fixed; inset: 0;
    z-index: 95;
    background: #26262B;
    color: #EAE6DD;
    display: flex; flex-direction: column; justify-content: center;
    padding: 6rem 1.6rem 2.2rem;
    visibility: hidden; opacity: 0;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  }
  .mobile-menu.is-open {
    visibility: visible; opacity: 1;
    transition: opacity 0.35s ease;
  }
  .mobile-menu__links { display: flex; flex-direction: column; gap: 0.4rem; }
  .mobile-menu__links a {
    font-family: "Fraunces", Georgia, serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: clamp(2.2rem, 10vw, 3.6rem);
    letter-spacing: -0.01em; line-height: 1.18;
    color: #EAE6DD; text-decoration: none;
    padding: 0.2rem 0;
  }
  .mobile-menu__lang { margin-top: auto; font-size: 0.85rem; padding: 0.8rem 0.2rem; }

  /* ================= Hero ================= */
  /* 100vh fallback for Safari < 15.4, dvh where supported */
  .hero-full { min-height: 100vh; min-height: 100dvh; }

  .hero-title { font-family: "Fraunces", Georgia, serif; font-optical-sizing: auto; font-weight: 600; text-transform: uppercase; }
  /* Hero micro-labels stay readable over any state of the halftone */
  .hero-eyebrow { text-shadow: 0 1px 14px rgba(22,21,19,0.95), 0 0 4px rgba(22,21,19,0.85); }

  /* Wordmark as architecture: solid TROBA with the O-mark, outline STUDIO below */
  .t-troba {
    display: block;
    font-size: clamp(3.4rem, min(24.5vw, 24vh), 44rem);
    letter-spacing: -0.01em;
    line-height: 0.84;
    margin-left: -0.02em;
    white-space: nowrap;
    will-change: transform;
  }
  .t-studio {
    display: block;
    font-size: clamp(2.2rem, min(21.5vw, 21vh), 39rem);
    letter-spacing: 0.035em;
    line-height: 0.94;
    color: transparent;
    -webkit-text-stroke: 2px #EAE6DD;
    margin-left: 0.01em;
    white-space: nowrap;
  }
  @media (max-width: 640px) {
    .t-studio { -webkit-text-stroke-width: 1.4px; }
  }

  /* The O of TROBA is the mark: a solid disc with the asterisk knocked out.
     On scroll it splits into two halves and the tagline emerges inside. */
  .o-mark {
    position: relative;
    display: inline-block;
    width: 0.78em;
    height: 0.72em;
    margin: 0 0.015em;
    vertical-align: baseline;
  }
  .o-half {
    position: absolute;
    top: 0;
    width: 0.78em;
    height: 100%;
    overflow: visible;
  }
  .o-half--l { left: 0; clip-path: inset(-6% 49.6% -6% -6%); }
  .o-half--r { right: 0; clip-path: inset(-6% -6% -6% 49.6%); }
  .o-tagline {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45em;
    font-family: "Fraunces", Georgia, serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: clamp(0.72rem, 1.15vw, 1.05rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
    color: #EAE6DD;
    opacity: 0;
    pointer-events: none;
  }
  .o-tagline > span { display: block; line-height: 1; }
  .o-tagline > span + span { font-size: 0.82em; opacity: 0.8; }
  .preloader__word .o-tagline { font-size: 0.6rem; letter-spacing: 0.2em; }

  /* Scroll hint: cursor-follower on desktop, breathing line on touch */
  .scroll-hint {
    position: fixed; top: 0; left: 0;
    z-index: 150;
    pointer-events: none;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #161513;
    text-shadow: 0 1px 10px rgba(234, 230, 221, 0.9);
    opacity: 0;
    will-change: transform, opacity;
  }
  #scrollHint { display: inline-flex; align-items: center; gap: 0.5em; }
  #scrollHint svg { animation: scrollNudge 1.9s ease-in-out infinite; }
  .svc-cta svg { animation: arrowNudge 1.9s ease-in-out infinite; }
  @media (prefers-reduced-motion: reduce) { .svc-cta svg { animation: none; } }
  @keyframes scrollNudge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
  }
  @media (hover: none) { .scroll-hint { display: none; } }

  .scroll-hint-touch {
    display: none;
    position: absolute;
    bottom: 5.5rem; left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.55rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(22, 21, 19, 0.65);
    pointer-events: none;
  }
  .scroll-hint-touch::before {
    content: "";
    width: 1px; height: 2.6rem;
    background: rgba(22, 21, 19, 0.22);
    /* segmento de tinta que desciende por la linea */
    background-image: linear-gradient(to bottom, transparent 0%, #2C3A64 35%, #2C3A64 65%, transparent 100%);
    background-size: 1px 1.1rem;
    background-repeat: no-repeat;
    animation: inkTravel 2.2s cubic-bezier(0.45, 0, 0.35, 1) infinite;
  }
  @keyframes inkTravel {
    0%   { background-position: 0 -1.1rem; }
    62%  { background-position: 0 2.6rem; }
    100% { background-position: 0 2.6rem; }
  }
  @media (prefers-reduced-motion: reduce) {
    #scrollHint svg { animation: none; }
    .scroll-hint-touch::before { animation: none; background-image: none; }
  }
  @keyframes hintBreath {
    0%, 100% { transform: scaleY(0.55); opacity: 0.45; }
    50% { transform: scaleY(1); opacity: 1; }
  }
  @media (hover: none) { .scroll-hint-touch { display: flex; } }

  /* ================= Marquee ================= */
  .marquee { overflow: hidden; white-space: nowrap; }
  /* Pantallas de altura contenida (portatiles 13-15", iPad apaisado):
     fuera los eyebrows, que se pegaban al logo; la cinta se queda */
  @media (max-height: 1000px) {
    .hero-eyebrow { display: none !important; }
  }
  /* La cinta la mueve GSAP (app.js): la animacion CSS sobre una capa tan
     ancha se congelaba o desaparecia en Safari de iPad */
  .marquee__track { display: inline-flex; will-change: transform; }

  /* ================= Manifesto scrub words ================= */
  .manifesto-word { opacity: 0.12; display: inline-block; will-change: opacity; }

  /* ================= Works index cards ================= */
  .work-card { cursor: pointer; display: flex; flex-direction: column; height: 100%; }
  .work-card__label {
    display: flex; align-items: center; gap: 0.55rem;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #55524B;
    margin-bottom: 0.9rem;
  }
  .work-card__label svg { flex: none; }
  .work-card__media {
    position: relative;
    z-index: 95; /* above the grain film so photos stay clean */
    overflow: hidden;
    background: #D8D2C6;
    aspect-ratio: 3 / 4;
    flex: none;
  }
  .work-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  @media (hover: hover) {
    .work-card:hover .work-card__media img { transform: scale(1.05); }
  }
  /* Museum-label plate: one solid colour per project */
  .work-card__plate {
    flex: 1 0 auto;
    padding: 1.15rem 1.25rem 1.4rem;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  @media (hover: hover) {
    .work-card:hover .work-card__plate { transform: translateY(-4px); }
  }
  .work-card--c0 .work-card__plate { background: #2C3A64; color: #EAE6DD; } /* añil */
  .work-card--c1 .work-card__plate { background: #8A1728; color: #EAE6DD; } /* burgundy */
  .work-card--c2 .work-card__plate { background: #D5A32C; color: #1A1206; } /* mostaza */
  .work-card--c3 .work-card__plate { background: #4F5338; color: #EAE6DD; } /* verde oliva */
  .work-card--c4 .work-card__plate { background: #4A2E23; color: #EAE6DD; } /* chocolate */
  .work-card--c5 .work-card__plate { background: #26262B; color: #EAE6DD; } /* antracita */
  .work-card__name {
    font-family: "Fraunces", Georgia, serif;
    font-optical-sizing: auto;
    font-weight: 600;
    letter-spacing: -0.01em;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    color: inherit;
  }
  .work-card__meta {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: inherit;
    opacity: 0.72;
    margin-top: 0.6rem;
  }

  /* ---------- Work focus overlay ---------- */
  #workFocus { position: fixed; inset: 0; z-index: 130; display: none; }
  #workFocus.open { display: block; }
  .workfocus-panel {
    position: absolute; inset: 0;
    margin: auto;
    width: min(1120px, 94vw);
    height: min(88vh, 920px);
    border-radius: 14px;
    background: #EAE6DD; color: #161513;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
    scrollbar-width: none; /* la barra recortaba las esquinas derechas */
  }
  .workfocus-panel::-webkit-scrollbar { display: none; }
  .workfocus-close { position: fixed; top: max(0.9rem, calc((100vh - min(88vh, 920px)) / 2 - 22px)); right: max(0.9rem, calc((100vw - min(1120px, 94vw)) / 2 - 22px)); z-index: 10; }

  /* ================= Section-entrance details ================= */
  /* Kickers draw a rule beside them when the section arrives */
  .kicker-line { display: flex; align-items: center; gap: 1rem; }
  .kicker-line::after {
    content: "";
    flex: 0 0 auto;
    width: 3.5rem; height: 1px;
    background: currentColor;
    opacity: 0.55;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1) 0.15s;
  }
  .kicker-line.is-inview::after { transform: scaleX(1); }

  /* Accent words underline themselves after the title reveals */
  .u-sweep { position: relative; }
  .u-sweep::after {
    content: "";
    position: absolute; left: 0; bottom: 0.05em;
    width: 100%; height: 0.07em;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.55s;
  }
  .u-sweep.is-inview::after { transform: scaleX(1); }

  /* Accent phrases: a hand-drawn brush circle that draws itself on scroll */
  .u-mark {
    position: relative;
    display: inline-block;
    padding: 0 0.12em;
    z-index: 0;
  }
  .scribble {
    position: absolute;
    left: -0.5em; top: -0.28em;
    width: calc(100% + 1em);
    height: calc(100% + 0.48em);
    overflow: visible;
    pointer-events: none;
    z-index: -1;
    filter: blur(1.2px); /* tinta húmeda, más fundida en el papel */
  }
  .scribble path {
    stroke: #2C3A64;
    fill: none;
    stroke-width: 5.5;
    stroke-linecap: butt; /* con remate redondo se veia un puntito antes de dibujar */
    stroke-opacity: 0.58;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    transition: stroke-dashoffset 1.15s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
  }
  .is-inview .scribble path { stroke-dashoffset: 0; stroke-linecap: round; }

  /* Hand-drawn ink underline for accent words inside body text */
  .u-line { position: relative; display: inline-block; z-index: 0; }
  .uline {
    position: absolute;
    left: -1%; bottom: -0.24em;
    width: 102%; height: 0.42em;
    overflow: visible;
    pointer-events: none;
    z-index: -1;
    filter: blur(1px);
  }
  .uline path {
    stroke: #2C3A64;
    fill: none;
    stroke-width: 6.5;
    stroke-linecap: butt; /* con remate redondo se veia un puntito antes de dibujar */
    stroke-opacity: 0.6;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    transition: stroke-dashoffset 0.9s cubic-bezier(0.65, 0, 0.35, 1) 0.2s;
  }
  .is-inview .uline path { stroke-dashoffset: 0; stroke-linecap: round; }
  #manifesto .uline path { stroke: #D9A72E; }
  #services .uline path { stroke: #4F5338; } /* intro: verde oliva */
  #servicesList .uline path { stroke: #8A1728; } /* fases: burgundy (mas especifico que #services) */
  #studio .uline path { stroke: #D9A72E; } /* statement: mostaza, legible sobre la antracita */
  .mani-mark .scribble path { stroke: #6E80AD; }
  /* One primary per circled phrase, assigned on purpose */
  #languages .u-mark .scribble path { stroke: #8A1728; }
  #works .u-mark .scribble path { stroke: #C9971F; }

  /* Subrayado a mano multi-linea (fondo repetible: aguanta saltos de linea) */
  .mani-uline {
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    /* onda periodica perfecta: misma altura Y misma pendiente en ambos bordes
       del tile (si no, cada empalme del repeat se ve como un corte) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 14' preserveAspectRatio='none'%3E%3Cfilter id='b' x='-20%25' y='-60%25' width='140%25' height='220%25'%3E%3CfeGaussianBlur stdDeviation='1.1'/%3E%3C/filter%3E%3Cpath d='M 0 7 Q 27.5 4.6 55 7 T 110 7 T 165 7 T 220 7' fill='none' stroke='%236E80AD' stroke-width='6' opacity='0.58' filter='url(%23b)'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: 0 100%;
    background-size: 220px 0;
    transition: background-size 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.35s;
    padding-bottom: 0.07em;
  }
  .mani-uline.is-inview { background-size: 220px 0.21em; }

  /* Manifesto highlight: burgundy marker on the indigo field, bone text */
  .mani-mark {
    position: relative;
    display: inline-block;
    color: #EAE6DD;
    opacity: 1 !important;
    padding: 0 0.09em;
    z-index: 0;
  }


  @media (min-width: 768px) { .work-card__meta { font-size: 0.67rem; } }

  /* Sentencias editoriales: frases cortas en serif cursiva */
  .stmt, [data-i18n="manifesto.p2"] {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-weight: 500;
  }

  /* Cursivas legibles en movil */
  .svc-lead { font-size: 1.18rem; }
  @media (min-width: 768px) { .svc-lead { font-size: 1.05rem; } }

  /* Paneles independientes: leasing burgundy, gestion mostaza */
  /* Independientes: el color aparece en el HOVER (anuncio de identidad);
     expandidos leen en antracita, sobrio y distinto del anil del programa */
  .service-row.svc-row--wine:hover:not(.is-open)::before { background: #8A1728; }
  .service-row.svc-row--must:hover:not(.is-open)::before { background: #D5A32C; }
  .service-row.svc-row--wine.is-open::before,
  .service-row.svc-row--must.is-open::before { background: #26262B; }
  /* sobre mostaza, el texto del hover pasa a oscuro un instante */
  .service-row.svc-row--must:hover:not(.is-open) .sr-title,
  .service-row.svc-row--must:hover:not(.is-open) .sr-num { color: #26262B; }
  .service-row.svc-row--must:hover:not(.is-open) .sr-sub,
  .service-row.svc-row--must:hover:not(.is-open) .sr-desc { color: rgba(38, 38, 43, 0.78); }
  .service-row.svc-row--must:hover:not(.is-open) .sr-plus { color: #26262B; border-color: rgba(38, 38, 43, 0.45); }

  /* Epigrafe lexicografico del manifiesto: nota al pie, lujo silencioso */
  .mani-epigraph {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-size: 1.04rem;
    line-height: 1.5;
    color: rgba(234, 230, 221, 0.5);
    max-width: 42ch;
  }
  @media (min-width: 768px) { .mani-epigraph { font-size: 0.92rem; } }
  .mani-epigraph b { font-style: normal; font-weight: 600; color: rgba(234, 230, 221, 0.75); }

  /* Capitulos del acordeon como banda de tinta: antracita el programa, oliva los independientes */
  .svc-group-bar { display: block; padding-top: 0.85rem; padding-bottom: 0.85rem; color: #EAE6DD; }
  .svc-group-bar--core { background: #26262B; }
  .svc-group-bar--alt { background: #4F5338; margin-top: 3.5rem; }
  .text-olive-ink { color: #4F5338; }
  .text-mustard-ink { color: #C9971F; } /* mostaza legible sobre plata */
  .text-wine-ink { color: #8A1728; }
  .sr-num--alt { color: #4F5338; }

  /* ================= Service accordion ================= */
  .service-row { position: relative; isolation: isolate; border-bottom: 1px solid rgba(22,21,19,0.15); }
  .service-row::before {
    content: "";
    position: absolute; inset: 0;
    background: #26262B;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: -1;
  }
  .service-row:hover::before,
  .service-row.is-open::before,
  .service-row:focus-within::before { transform: scaleY(1); }

  .service-head {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
  }
  .service-head > * { transition: color 0.35s ease 0.05s; }

  .service-row:hover .sr-title, .service-row:hover .sr-num,
  .service-row.is-open .sr-title, .service-row.is-open .sr-num,
  .service-row:focus-within .sr-title, .service-row:focus-within .sr-num { color: #EAE6DD; }
  .service-row:hover .sr-sub, .service-row:hover .sr-desc,
  .service-row.is-open .sr-sub, .service-row.is-open .sr-desc,
  .service-row:focus-within .sr-sub, .service-row:focus-within .sr-desc { color: #C9CFD8; }

  .sr-plus {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    border: 1px solid rgba(22,21,19,0.3);
    border-radius: 999px;
    color: #161513;
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), color 0.35s ease, border-color 0.35s ease;
    flex: none;
  }
  .service-row:hover .sr-plus, .service-row.is-open .sr-plus, .service-row:focus-within .sr-plus {
    color: #EAE6DD; border-color: rgba(234,230,221,0.5);
  }
  .service-row.is-open .sr-plus { transform: rotate(45deg); }

  .sr-price { opacity: 0; transition: opacity 0.35s ease; }
  .service-row:hover .sr-price, .service-row.is-open .sr-price, .service-row:focus-within .sr-price { opacity: 1; }
  .service-body { height: 0; overflow: hidden; }
  .service-body-inner { color: #D5D9EE; }
  .service-body-inner a { color: #EAE6DD; }

  /* Open row switches from navy (hover) to burgundy; text stays bone */
  .service-row.is-open::before { background: #2C3A64; }

  /* ================= Infinite canvas (Visual languages) ================= */
  .canvas-viewport {
    --cardw: clamp(150px, 16vw, 225px);
    position: relative;
    z-index: 95; /* photos above the grain film */
    height: min(88vh, 880px);
    /* dejar aire a cabecera + chips: que categorias y tablero compartan pantalla (iPad/Mac) */
    height: min(calc(100dvh - 220px), 880px);
    min-height: 500px;
    overflow: hidden;
    perspective: 1400px;
    cursor: grab;
    touch-action: none;
  }
  @media (hover: none) { .canvas-viewport { touch-action: pan-y; } }

  /* Mobile strip replaces the isometric plane on small touch screens */
  .strip-card { position: relative; }
  .strip-name {
    position: absolute; left: 9px; right: 9px; bottom: 12px;
    margin: 0; padding: 1.5rem 0.6rem 0.5rem;
    border-radius: 0 0 7px 7px;
    background: linear-gradient(to top, rgba(22, 21, 19, 0.7), rgba(22, 21, 19, 0));
    color: #EAE6DD;
    display: flex; flex-direction: column; gap: 0.1rem;
    pointer-events: none;
    text-align: left;
  }
  .strip-name b { font-family: "Fraunces", serif; font-weight: 600; font-size: 0.82rem; line-height: 1.15; }
  .strip-name i { font-family: "IBM Plex Mono", monospace; font-style: normal; font-size: 0.48rem; text-transform: uppercase; letter-spacing: 0.16em; opacity: 0.85; }

  .canvas-viewport.is-strip {
    height: auto; min-height: 0;
    perspective: none;
    overflow: visible;
    touch-action: auto;
    cursor: default;
  }
  .canvas-viewport.is-strip .canvas-pill { display: none; }
  .art-strip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1.1rem 1.25rem 1.7rem;
  }
  .art-strip::-webkit-scrollbar { display: none; }
  .strip-card {
    flex: 0 0 auto;
    width: auto;
    background: #EAE6DD;
    border: none;
    padding: 9px 9px 12px;
    border-radius: 13px;
    box-shadow: 0 10px 26px rgba(22, 21, 19, 0.16);
  }
  .strip-card img {
    height: clamp(190px, 52vw, 290px);
    width: auto; display: block;
    border-radius: 7px;
    background: #DDD6C8;
  }
  /* hasta que la imagen carga, la carta reserva un cuerpo 3:4 —
     sin esto las cartas perezosas colapsan y rompen el bucle */
  .strip-card:not(.is-ready) img {
    width: calc(clamp(190px, 52vw, 290px) * 0.75);
    object-fit: cover;
  }
  .canvas-viewport.is-dragging { cursor: grabbing; }

  .canvas-tilt {
    position: absolute; inset: 0;
    transform-style: preserve-3d;
    transform: rotateX(38deg) rotateZ(-22deg) scale(1.02);
    transition: transform 0.9s cubic-bezier(0.6, 0, 0.2, 1);
  }
  /* vista catalogo: al filtrar, la camara pasa a cenital
     (la perspectiva se apaga a la vez: magnificaba las cartas ~25%
     y rompia el calculo de encaje del catalogo) */
  .canvas-viewport { transition: perspective 0.9s cubic-bezier(0.6, 0, 0.2, 1); }
  .canvas-viewport.is-flat { perspective: none; }
  .canvas-viewport.is-flat .canvas-tilt { transform: none; }
  .canvas-viewport.is-flat .canvas-pill { display: none; }

  /* placa con nombre del artista: visible en catalogo y al pasar el raton */
  .iso-name {
    position: absolute; left: 0; right: 0; bottom: 0;
    margin: 0; padding: 1.7rem 0.75rem 0.6rem;
    background: linear-gradient(to top, rgba(22, 21, 19, 0.68), rgba(22, 21, 19, 0));
    color: #EAE6DD;
    display: flex; flex-direction: column; gap: 0.15rem;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }
  .iso-name b { font-family: "Fraunces", serif; font-weight: 600; font-size: 0.88rem; line-height: 1.15; }
  .iso-name i { font-family: "IBM Plex Mono", monospace; font-style: normal; font-size: 0.5rem; text-transform: uppercase; letter-spacing: 0.18em; opacity: 0.85; }
  .canvas-viewport.is-flat .iso-name { opacity: 1; }
  .canvas-viewport.is-flat .iso-card { width: var(--cardwCat, var(--cardw)); }
  @media (hover: hover) { .iso-card:hover .iso-name { opacity: 1; } }
  /* Tactil (iPad): sin hover las placas quedarian invisibles en el tablero inclinado */
  @media (hover: none) { .iso-name { opacity: 1; } }

  .canvas-plane {
    position: absolute; top: 0; left: 0;
    transform-style: preserve-3d;
    will-change: transform;
  }

  .iso-card {
    position: absolute;
    width: var(--cardw);
    aspect-ratio: 3 / 4;
    background: #EAE6DD;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(22, 21, 19, 0.08);
    box-shadow: 16px 22px 44px rgba(22, 21, 19, 0.28);
    transform: translateZ(0.1px);
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s ease;
    backface-visibility: hidden;
    cursor: pointer;
  }
  .iso-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  .iso-card img.is-loaded { opacity: 1; }
  @media (hover: hover) {
    .iso-card:hover {
      transform: translateZ(50px);
      box-shadow: 34px 46px 90px rgba(22, 21, 19, 0.42);
    }
  }
  .iso-card.is-focused { visibility: hidden; }

  /* ---------- Focus overlay ---------- */
  #focus { position: fixed; inset: 0; z-index: 120; display: none; }
  #focus.open { display: block; }

  .focus-backdrop {
    position: absolute; inset: 0;
    background: rgba(22, 21, 19, 0.58);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    opacity: 0;
  }

  .focus-card {
    position: absolute;
    background: #EAE6DD;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: 0;
    border-radius: 14px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  }
  @media (min-width: 768px) { .focus-card { flex-direction: row; } }

  .focus-media { flex: 1 1 55%; min-height: 0; overflow: hidden; background: #D8D2C6; }
  .focus-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
  /* obra con orientacion distinta a la caja: paspartu, jamas recorte */
  .focus-media img.is-contain { object-fit: contain; animation: none !important; }

  @keyframes kenburns {
    from { transform: scale(1) translate(0, 0); }
    to   { transform: scale(1.14) translate(-2%, 2%); }
  }
  #focus.open .focus-media img { animation: kenburns 16s ease-in-out infinite alternate; }

  .focus-info {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.4rem;
    min-height: 0;
    overflow-y: auto;
  }
  @media (min-width: 768px) { .focus-info { padding: 2.1rem; } }

  /* Landscape works: image on top at natural ratio, info below */
  .focus-card.is-landscape { flex-direction: column; }
  .focus-card.is-landscape .focus-media { flex: none; width: 100%; min-height: 0; }
  .focus-card.is-landscape .focus-info { flex: 1 1 auto; }

  .focus-close {
    position: absolute;
    top: 0.9rem; right: 0.9rem;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(22, 21, 19, 0.3);
    border-radius: 999px;
    background: rgba(234, 230, 221, 0.9);
    color: #161513;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }
  .focus-tag {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid rgba(22, 21, 19, 0.28);
    border-radius: 999px;
    padding: 0.28rem 0.65rem;
    color: #55524B;
    white-space: nowrap;
  }
  .focus-close:hover { background: #26262B; color: #EAE6DD; transform: rotate(90deg); }

  /* ================= Fluid halftone shader canvases ================= */
  /* Hero atmosphere: travelling light, blurred primary scribbles, paper specks */
  .hero-light {
    position: absolute;
    width: 72vmax; height: 72vmax;
    left: -18vmax; top: -22vmax;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(closest-side, rgba(248, 245, 238, 0.85), rgba(248, 245, 238, 0) 68%);
    filter: blur(48px);
    animation: heroLight 34s ease-in-out infinite alternate;
  }
  @keyframes heroLight {
    to { transform: translate(52vmax, 34vmax) scale(1.15); }
  }
  .hero-scribbles {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    filter: blur(4px);
    opacity: 0.3;
    animation: scribbleFloat 26s ease-in-out infinite alternate;
  }
  footer .hero-scribbles { opacity: 0.42; filter: blur(3px); }
  footer .hero-scribbles path { animation-name: scribbleDrawFoot; }
  @keyframes scribbleDrawFoot {
    0%   { stroke-dashoffset: 1; opacity: .35; }
    22%  { stroke-dashoffset: 0; opacity: 1; }
    78%  { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: .35; }
  }
  @keyframes scribbleFloat {
    to { transform: translate(-1.5%, 1%); }
  }
  /* Each line draws itself, rests, fades, and is sketched again */
  .hero-scribbles path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: scribbleDraw 24s ease-in-out infinite;
  }
  .hero-scribbles path:nth-child(2) { animation-delay: 4s; }
  .hero-scribbles path:nth-child(3) { animation-delay: 8s; }
  .hero-scribbles path:nth-child(4) { animation-delay: 12s; }
  .hero-scribbles path:nth-child(5) { animation-delay: 16s; }
  .hero-scribbles path:nth-child(6) { animation-delay: 20s; }
  @keyframes scribbleDraw {
    0%   { stroke-dashoffset: 1; opacity: 1; }
    18%  { stroke-dashoffset: 0; opacity: 1; }
    70%  { stroke-dashoffset: 0; opacity: 1; }
    82%  { stroke-dashoffset: 0; opacity: 0; }
    100% { stroke-dashoffset: 1; opacity: 0; }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-scribbles path { animation: none; stroke-dashoffset: 0; }
  }
  .paper-specks {
    position: absolute; inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 260'%3E%3Ccircle cx='51' cy='189' r='0.5' fill='%23161513' opacity='0.67'/%3E%3Ccircle cx='32' cy='110' r='0.6' fill='%23161513' opacity='0.48'/%3E%3Ccircle cx='251' cy='208' r='0.6' fill='%23161513' opacity='0.79'/%3E%3Ccircle cx='56' cy='103' r='1.1' fill='%23161513' opacity='0.67'/%3E%3Ccircle cx='28' cy='255' r='0.6' fill='%23161513' opacity='0.48'/%3E%3Ccircle cx='200' cy='86' r='0.6' fill='%23161513' opacity='0.39'/%3E%3Ccircle cx='25' cy='151' r='0.6' fill='%23161513' opacity='0.65'/%3E%3Ccircle cx='97' cy='118' r='1.2' fill='%23161513' opacity='0.59'/%3E%3Ccircle cx='149' cy='224' r='0.5' fill='%23161513' opacity='0.43'/%3E%3Ccircle cx='235' cy='211' r='0.6' fill='%23161513' opacity='0.44'/%3E%3Ccircle cx='191' cy='243' r='0.6' fill='%23161513' opacity='0.83'/%3E%3Ccircle cx='228' cy='157' r='0.7' fill='%23161513' opacity='0.40'/%3E%3Ccircle cx='12' cy='248' r='0.6' fill='%23161513' opacity='0.70'/%3E%3Ccircle cx='68' cy='213' r='0.9' fill='%23161513' opacity='0.50'/%3E%3Ccircle cx='47' cy='186' r='0.5' fill='%23161513' opacity='0.46'/%3E%3Ccircle cx='145' cy='220' r='0.9' fill='%23161513' opacity='0.49'/%3E%3Ccircle cx='237' cy='54' r='0.4' fill='%23161513' opacity='0.48'/%3E%3Ccircle cx='116' cy='17' r='0.5' fill='%23161513' opacity='0.53'/%3E%3Ccircle cx='148' cy='36' r='0.7' fill='%23161513' opacity='0.80'/%3E%3Ccircle cx='253' cy='170' r='1.0' fill='%23161513' opacity='0.64'/%3E%3Ccircle cx='38' cy='11' r='0.4' fill='%23161513' opacity='0.81'/%3E%3Ccircle cx='181' cy='248' r='0.4' fill='%23161513' opacity='0.67'/%3E%3Ccircle cx='125' cy='189' r='0.7' fill='%23161513' opacity='0.85'/%3E%3Ccircle cx='21' cy='142' r='1.0' fill='%23161513' opacity='0.80'/%3E%3Ccircle cx='191' cy='182' r='1.0' fill='%23161513' opacity='0.81'/%3E%3Ccircle cx='92' cy='177' r='1.1' fill='%23161513' opacity='0.79'/%3E%3Ccircle cx='109' cy='204' r='1.1' fill='%23161513' opacity='0.64'/%3E%3Ccircle cx='162' cy='100' r='0.9' fill='%23161513' opacity='0.65'/%3E%3Ccircle cx='23' cy='166' r='1.2' fill='%23161513' opacity='0.79'/%3E%3Ccircle cx='188' cy='101' r='1.0' fill='%23161513' opacity='0.64'/%3E%3C/svg%3E");
    background-size: 260px 260px;
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-light, .hero-scribbles { animation: none; }
  }

  /* Hero ghost variant: barely-there, blurred into a soft ink breath */
  .fluid-canvas--ghost {
    opacity: 0.45;
    filter: blur(7px);
    z-index: 0;
  }
  .fluid-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
  }

  /* ================= Imagery ================= */
  .parallax-img { will-change: transform; }

  .art-img { transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
  @media (hover: hover) { figure:hover .art-img { transform: scale(1.04); } }

  /* ================= Reduced motion ================= */
  @media (prefers-reduced-motion: reduce) {
    .grain, .marquee__track { animation: none !important; }
    .cursor { display: none; }
    .mask { overflow: visible; }
    .mask > span { transform: none; }
    .manifesto-word { opacity: 1; }
    .preloader { display: none; }
    .preloader__word .char { transform: none; }
    #focus.open .focus-media img { animation: none; }
    .art-img, .iso-card { transition: none; }
    .kicker-line::after, .u-sweep::after { transform: none !important; transition: none !important; }
    .scribble path { stroke-dashoffset: 0 !important; transition: none !important; }
    .uline path { stroke-dashoffset: 0 !important; transition: none !important; }
    .cursor svg { animation: none !important; }
    .o-frame, .pre-frame, .scroll-hint-touch::before { animation: none !important; transform: none !important; }
    .scroll-hint { display: none !important; }
  }

/* ================= Footer mail underline + reveal system ================= */
  /* Footer mail underline (kept after main styles for clarity) */
  .mail-line { position: relative; display: inline-flex;
    align-items: center; }
  .mail-line::after {
    content: "";
    position: absolute; left: 0; bottom: 0.02em;
    width: 100%; height: 0.045em;
    background: #2C3A64;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  }
  .mail-line:hover::after { transform: scaleX(1); transform-origin: left; }
  .mail-line svg { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
  .mail-line:hover svg { transform: rotate(-10deg) scale(1.1); }

  /* Tiny spinning asterisk closing the big statements */
  /* Punto final de tinta: el blob de la marca cierra los statements */
  .stat-aster {
    display: inline-block;
    width: 0.5em; height: 0.36em;
    margin-left: 0.14em;
    vertical-align: baseline;
  }
  .stat-aster svg { width: 100%; height: 100%; display: block; }

  /* Back to top */
  .back-top {
    position: fixed;
    right: 1.4rem; bottom: 1.4rem;
    z-index: 140;
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border: none; border-radius: 999px;
    background: #26262B;
    color: #EAE6DD;
    cursor: pointer;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
  }
  .back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
  /* con una ficha o un caso abiertos, la flecha se retira */
  body:has(#focus.open) .back-top,
  body:has(#workFocus.open) .back-top { opacity: 0 !important; pointer-events: none !important; }
  .back-top:hover { background: #8A1728; }
  @media (prefers-reduced-motion: reduce) { .back-top { transition: opacity 0.3s ease; transform: none; } }

  /* Reveal system */
  .reveal { opacity: 1; }

  /* Cuerpo de lectura de programa y casos: grande en movil (0.95rem sobre
     base 17 = ~16px), en pantallas md+ vuelve al 14px editorial de siempre */
  .sr-desc, .svc-body-copy { font-size: 0.95rem; }
  @media (min-width: 768px) { .sr-desc, .svc-body-copy { font-size: 0.875rem; } }

  /* Panel de servicio expandido: la descripcion corta se retira
     (el cuerpo largo ya la contiene — se veian dos textos casi iguales) */
  #servicesList .is-open .sr-desc { visibility: hidden; }

  /* Linea editorial "Para hoteles..." en Servicios: misma tinta suave que el hero */
  .svc-for-line {
    display: flex;
    text-shadow: 0 0 3px rgba(22, 21, 19, 0.28);
  }
  .svc-for-track {
    display: flex; flex-wrap: wrap; align-items: baseline;
    column-gap: 0.85em; row-gap: 0.5em;
  }
  /* La pista duplicada y la gota de cierre solo existen en movil
     (doble clase: la regla generica .svc-dot va despues y ganaria) */
  .svc-for-track--dup, .svc-dot.svc-dot--loop { display: none; }
  @media (max-width: 767px) {
    /* Marquesina lenta: la linea no cabe entera en pantalla, asi que
       desfila sola. Dos pistas identicas, cada una viaja su propio
       ancho: el bucle empalma sin costura. */
    .svc-for-line {
      overflow: hidden;
      padding-bottom: 0.3rem;
      -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
      mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
    }
    .svc-for-track {
      flex-wrap: nowrap; flex: none;
      padding-right: 0.85em;
      animation: svc-marquee 30s linear infinite;
    }
    .svc-for-track--dup { display: flex; }
    .svc-dot.svc-dot--loop { display: inline-block; }
    .svc-for-track > span { white-space: nowrap; flex: none; }
    @media (prefers-reduced-motion: reduce) {
      .svc-for-line { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
      .svc-for-line::-webkit-scrollbar { display: none; }
      .svc-for-track { animation: none; }
      .svc-for-track--dup { display: none; }
    }
  }
  @keyframes svc-marquee {
    to { transform: translateX(-100%); } /* el hueco entre copias ya va dentro (padding-right) */
  }

  .svc-dot {
    display: inline-block;
    width: 9px; height: 9px;
    border-radius: 58% 50% 62% 55%; /* gota, no circulo perfecto */
    vertical-align: middle;
    text-shadow: none;
  }
  .svc-dot--sea   { background: #2C3A64; }
  .svc-dot--wine  { background: #8A1728; }
  .svc-dot--must  { background: #D9A72E; }
  .svc-dot--olive { background: #4F5338; }
  .svc-dot--choco { background: #4A2E23; }

  /* ================= Filtro de artistas (chips) ================= */
  /* Banda plata a sangre: cabecera de la mesa de cartas, presencia sin
     peso (la antracita resultaba invasiva) */
  .filter-band {
    background: #D8D2C6;
    border-top: 1px solid rgba(22, 21, 19, 0.12);
    border-bottom: 1px solid rgba(22, 21, 19, 0.12);
    margin-bottom: 1rem;
  }
  .filter-bar {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 0.55rem 0.6rem;
    padding-top: 0.8rem; padding-bottom: 0.8rem;
  }
  @media (max-width: 767px) {
    /* rail de una sola linea: los chips se deslizan con el dedo */
    .filter-label { display: none; }
    .filter-bar {
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -webkit-mask-image: linear-gradient(to right, #000 92%, transparent);
      mask-image: linear-gradient(to right, #000 92%, transparent);
    }
    .filter-bar::-webkit-scrollbar { display: none; }
    .filter-bar .filter-chip { flex: none; }
  }
  @media (min-width: 768px) {
    .filter-label { margin-right: 1.1rem; }
  }
  .filter-chip {
    appearance: none; -webkit-appearance: none;
    display: inline-flex; align-items: center; gap: 0.55em;
    background: transparent;
    border: 1px solid #C9C3B6;
    color: #55524B;
    border-radius: 999px;
    padding: 0.62rem 1.1rem;
    min-height: 44px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em;
    cursor: pointer;
    touch-action: manipulation;
    transition: background-color 0.28s ease, color 0.28s ease,
                border-color 0.28s ease, transform 0.16s ease;
  }
  /* la senal de que son interruptores: un aro vacio que se llena de tinta */
  .filter-chip::before {
    content: "";
    width: 8px; height: 8px; flex: none;
    border: 1.5px solid #B9B2A4;
    border-radius: 58% 50% 62% 55%;
    background: transparent;
    transition: background-color 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
  }
  @media (hover: hover) {
    .filter-chip:hover { border-color: #8A1728; color: #8A1728; }
    .filter-chip:hover::before { border-color: #8A1728; }
  }
  .filter-chip:active { transform: scale(0.96); }
  .filter-chip.is-active {
    background: #2C3A64; border-color: #2C3A64; color: #EAE6DD;
  }
  .filter-chip.is-active::before {
    background: #EAE6DD; border-color: #EAE6DD; transform: rotate(14deg);
  }
  .filter-chip:focus-visible { outline: 2px solid #2C3A64; outline-offset: 3px; }
  /* Tintas por categoria (solo en estado activo; en reposo, todos neutros) */
  .filter-chip[data-filter="all"].is-active { background: #26262B; border-color: #26262B; }
  .filter-chip[data-filter="Painting"].is-active { background: #2C3A64; border-color: #2C3A64; }
  .filter-chip[data-filter="Sculpture & object"].is-active { background: #4F5338; border-color: #4F5338; }
  .filter-chip[data-filter="Prints & editions"].is-active { background: #4A2E23; border-color: #4A2E23; }
  .filter-chip[data-filter="Textile art"].is-active { background: #D9A72E; border-color: #D9A72E; color: #26262B; }
  .filter-chip[data-filter="Textile art"].is-active::before { background: #26262B; border-color: #26262B; }
  .filter-chip[data-filter="Large scale"].is-active { background: #8A1728; border-color: #8A1728; }

  /* Sobre la banda plata el borde de reposo sube un punto de contraste */
  .filter-bar .filter-chip { border-color: #B3AC9D; }

  /* Cartas de relleno del mosaico: papel con grano (tablero siempre lleno) */
  .iso-filler { pointer-events: none; position: absolute; }
  .iso-filler::after {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 420px 420px;
    opacity: 0.16;
  }
  .iso-echo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .iso-filler--ink  { background: #222226; }
  .iso-filler--bone { background: #D9D2C3; }
  .iso-filler--sea  { background: #2C3A64; }

  /* Montura del retrato del founder: papel antracita con grano y aire arriba */
  /* La montura es INVISIBLE: los laterales recortan la foto en columna
     esbelta pero muestran el mismo fondo de la seccion — marco sin opacidad */
  .founder-mount { background: transparent !important; }

  .founder-photo {
    /* margenes laterales: recortan la foto en columna esbelta;
       arriba sin banda — el degradado hace el trabajo */
    padding: 0 15%;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 13vh, #000 calc(13vh + 90px));
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 13vh, #000 calc(13vh + 90px));
  }

  /* Rotulo de la obra sobre la imagen de la ficha */
  .focus-media { position: relative; }
  .focus-work-caption {
    position: absolute; left: 0; right: 0; bottom: 0; margin: 0;
    padding: 2.4rem 1.3rem 1rem;
    background: linear-gradient(to top, rgba(22, 21, 19, 0.72), rgba(22, 21, 19, 0));
    color: #EAE6DD;
    text-shadow: 0 1px 6px rgba(22, 21, 19, 0.6);
    pointer-events: none;
    display: flex; flex-direction: column; gap: 0.25rem;
  }
  .fwc-t { font-family: "Fraunces", serif; font-weight: 600; font-style: italic; font-size: 1.05rem; line-height: 1.2; }
  .fwc-k { font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.2em; opacity: 0.85; }

  /* Acentos de tinta en los metadatos de la ficha */
  #focusPlace::before,
  [data-i18n="focus.available"]::before {
    content: "";
    display: inline-block;
    width: 8px; height: 8px;
    margin-right: 0.55em;
    border-radius: 58% 50% 62% 55%;
    vertical-align: baseline;
  }
  #focusPlace::before { background: #D9A72E; }
  [data-i18n="focus.available"]::before { background: #8A1728; }

  /* Ficha apaisada: la tarjeta entera hace scroll y la imagen se va con el */
  .focus-card.is-landscape { overflow-y: auto; }

  /* Retrato del artista en la ficha */
  .focus-photo {
    width: 54px; height: 54px; flex: none;
    border-radius: 50%; object-fit: cover;
    border: 1px solid rgba(85, 82, 75, 0.3);
  }

  /* Tira de creditos en los casos: cada artista con miniatura y nombre */
  .works-credits { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; }
  .work-credit {
    display: inline-flex; align-items: center; gap: 0.55em;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem; letter-spacing: 0.08em;
    color: #26262B;
  }
  .work-credit img {
    width: 34px; height: 34px; flex: none;
    border-radius: 50%; object-fit: cover;
    border: 1px solid rgba(85, 82, 75, 0.3);
  }
  .wc-dot { display: none; color: #8A1728; }
  @media (max-width: 767px) {
    .works-credits { gap: 0.2rem 0.5rem; align-items: baseline; }
    .work-credit img { display: none; }        /* fuera fotos: solo nombres */
    .wc-dot { display: inline; }                /* punto de tinta entre nombres */
  }

  /* Mini-galeria de la ficha de artista */
  .focus-gallery {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
  }
  .focus-thumb {
    appearance: none; -webkit-appearance: none;
    padding: 0; background: none; cursor: pointer;
    width: 56px; height: 56px; flex: none;
    border: 1.5px solid rgba(85, 82, 75, 0.25);
    border-radius: 7px; overflow: hidden;
    opacity: 0.72;
    transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.18s ease;
    touch-action: manipulation;
  }
  .focus-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  @media (hover: hover) { .focus-thumb:hover { opacity: 1; } }
  .focus-thumb:active { transform: scale(0.95); }
  .focus-thumb.is-active { opacity: 1; border-color: #2C3A64; }
  .focus-thumb:focus-visible { outline: 2px solid #2C3A64; outline-offset: 2px; }

  /* Estado vacio del lienzo filtrado */
  .canvas-empty {
    position: absolute; inset: 0; z-index: 6;
    display: flex; align-items: center; justify-content: center;
    padding: 0 1.5rem; text-align: center;
    pointer-events: none;
  }
  .canvas-empty[hidden] { display: none; }
  /* en la cinta movil el mensaje fluye en el hueco de la cinta (la altura
     exacta la fija el JS en el viewport). OJO: sin display aqui — pisaba
     al atributo hidden y la caja salia siempre */
  .canvas-viewport.is-strip .canvas-empty {
    position: static;
    padding: 3rem 1.25rem;
  }
  .canvas-empty__box {
    background: rgba(234, 230, 221, 0.95);
    border: 1px solid rgba(85, 82, 75, 0.2);
    border-radius: 16px;
    box-shadow: 16px 22px 44px rgba(22, 21, 19, 0.22);
    padding: 2.2rem 2.8rem;
    max-width: 34rem;
  }

  /* Canvas hint pill only on touch — desktop gets the cursor-follow hint */
  @media (hover: hover) { .canvas-pill { display: none; } }
  /* La pildora nace centrada y protagonista; al primer arrastre baja a su
     sitio discreto de siempre (borde inferior) y adelgaza */
  .canvas-pill {
    position: relative; align-self: flex-start;
    top: 50%; transform: translateY(-50%);
    background: rgba(38, 38, 43, 0.88); color: #EAE6DD;
    font-size: 0.8rem; padding: 0.7rem 1.3rem;
    transition: top 0.8s cubic-bezier(0.6, 0, 0.2, 1), transform 0.8s cubic-bezier(0.6, 0, 0.2, 1),
                background 0.5s ease, color 0.5s ease, font-size 0.5s ease, padding 0.5s ease;
  }
  .canvas-viewport.is-used .canvas-pill {
    top: calc(100% - 1.25rem); transform: translateY(-100%);
    background: rgba(234, 230, 221, 0.85); color: #55524B;
    font-size: 0.72rem; padding: 0.5rem 1rem;
  }

  /* Hero CTA: la flecha animada es todo el gesto (halo retirado a peticion de Nacho) */
  .cta-halo { position: relative; isolation: isolate; }
  .cta-halo svg { animation: arrowNudge 1.9s ease-in-out infinite; }
  @keyframes arrowNudge {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
  }
  @media (prefers-reduced-motion: reduce) { .cta-halo svg { animation: none; } }

  /* Iconos de contacto: un gesto breve cada pocos segundos, alternados */
  .mail-line svg { animation: iconNudge 7s ease-in-out infinite; transform-origin: 50% 60%; }
  .call-icon { animation: iconRing 7s ease-in-out 3.5s infinite; transform-origin: 50% 45%; }
  @keyframes iconNudge {
    0%, 90%, 100% { transform: none; }
    92% { transform: translateY(-2px) rotate(-5deg); }
    95% { transform: translateY(0) rotate(3deg); }
    98% { transform: rotate(-1deg); }
  }
  @keyframes iconRing {
    0%, 88%, 100% { transform: none; }
    90% { transform: rotate(-13deg); }
    93% { transform: rotate(10deg); }
    96% { transform: rotate(-5deg); }
    98% { transform: rotate(2deg); }
  }
  @media (prefers-reduced-motion: reduce) { .mail-line svg, .call-icon { animation: none; } }

  /* Nombre de la seccion activa centrado en la barra (solo movil) */
  .nav-section {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    font-size: 0.78rem; /* mismo cuerpo que el menu de escritorio */
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(234, 230, 221, 0.85);
    pointer-events: none;
    white-space: nowrap;
  }
  @media (min-width: 768px) { .nav-section { display: none; } }

  /* Subrayado a mano de la seccion activa en el nav */
  .nav-spy { position: relative; }
  .nav-ink {
    position: absolute;
    left: -2px; right: -2px; bottom: -6px;
    width: calc(100% + 4px); height: 7px;
    overflow: visible;
    pointer-events: none;
  }
  .nav-ink path {
    fill: none;
    stroke: #6E80AD;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    filter: blur(0.5px);
    opacity: 0.85;
    transition: stroke-dashoffset 0.45s cubic-bezier(0.6, 0, 0.3, 1);
  }
  .nav-spy.is-current .nav-ink path { stroke-dashoffset: 0; }
  @media (prefers-reduced-motion: reduce) { .nav-ink path { transition: none; } }

  /* ================= Nav CTA (animated fill) ================= */
  .nav-cta {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(234, 230, 221, 0.6);
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    color: #EAE6DD;
    isolation: isolate;
    transition: border-color 0.4s ease;
    animation: ctaPulse 3.2s ease-in-out infinite;
  }
  .nav-cta > span {
    position: relative;
    z-index: 2;
    display: block;
    color: #EAE6DD;
  }
  .nav-cta::before {
    content: "";
    position: absolute; inset: 0;
    background: #8A1728;
    transform: translateY(101%);
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 1;
  }
  .nav-cta::after {
    content: "";
    position: absolute; inset: -1px;
    border-radius: 999px;
    border: 1px solid rgba(138, 23, 40, 0.9);
    opacity: 0;
    z-index: 0;
    animation: ctaHalo 3.2s ease-in-out infinite;
  }
  .nav-cta:hover { border-color: #8A1728; animation-play-state: paused; }
  .nav-cta:hover::before { transform: translateY(0); }
  @keyframes ctaPulse {
    0%, 100% { border-color: rgba(234, 230, 221, 0.55); }
    50% { border-color: rgba(178, 58, 74, 0.95); }
  }
  @keyframes ctaHalo {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.14); }
  }
  @media (prefers-reduced-motion: reduce) {
    .nav-cta, .nav-cta::after { animation: none; }
  }

  /* Drag hint pill-follower over the artists canvas */
  #dragHint, #workHint {
    background: rgba(138, 23, 40, 0.92);
    color: #EAE6DD;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    text-shadow: none;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  /* ================= Editorial band video ================= */
  .band-video {
    opacity: 0;
    transition: opacity 1.1s ease;
    will-change: opacity;
    z-index: 1;
  }
  .band-video.is-playing { opacity: 1; }
  .band-fallback { z-index: 0; }
  @media (prefers-reduced-motion: reduce) {
    .band-video { display: none; }
  }

  /* ================= Fluid asters (blurred brand asterisks) ================= */
  .fluid-aster {
    position: absolute;
    pointer-events: none;
    will-change: translate, opacity;
  }
  /* Faded brand eye watching over the contact section */
  .contact-eye {
    opacity: 0.07;
    filter: blur(2px);
  }
  .contact-eye--panel { opacity: 0.22; filter: blur(1px); }

  /* Brush trail prototype (manifesto): canvas at aster depth, heavy blur */
  .brush-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    filter: blur(26px);
    opacity: 0.6;
    pointer-events: none;
  }
  #manifesto.brush-on .fluid-aster, #studio.brush-on .fluid-aster { display: none; }
  .fluid-aster svg { width: 100%; height: 100%; display: block; overflow: visible; }
  /* En tactil el pincel de raton no corre; los .fluid-aster (salpicaduras de
     tinta difuminadas) son el fondo previsto para iPad/movil. Blur ALTO:
     las gotas se funden en un halo suave (como el blob viejo) en vez de
     posarse sobre el texto como puntos; deriva amplia para que respire */
  .fluid-aster--a {
    width: 52vmin; height: 52vmin;
    left: 1%; bottom: 2%;
    filter: blur(40px);
    opacity: 0.42;
    animation: blobA 17s ease-in-out infinite alternate;
  }
  .fluid-aster--b {
    width: 36vmin; height: 36vmin;
    right: 6%; top: 10%;
    filter: blur(34px);
    opacity: 0.3;
    animation: blobB 22s ease-in-out infinite alternate;
  }
  @keyframes blobA {
    to { transform: translate(22vmin, -18vmin) scale(1.3); }
  }
  @keyframes blobB {
    to { transform: translate(-20vmin, 15vmin) scale(0.78); }
  }
  @media (prefers-reduced-motion: reduce) {
    .fluid-aster { animation: none; }
  }

  /* ================= Works navigation bar ================= */
  .works-nav {
    position: absolute;
    bottom: 1.5rem; left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex; align-items: center; gap: 1.2rem;
  }
  @media (max-width: 767px) { .works-nav { display: none; } }
  .works-arrow {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(234, 230, 221, 0.45);
    border-radius: 999px;
    background: rgba(8, 8, 14, 0.3);
    color: #EAE6DD;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
  .works-arrow:hover { background: #2C3A64; border-color: #2C3A64; }
  .works-names { display: flex; gap: 1.4rem; }
  .works-name {
    position: relative;
    background: none; border: none; cursor: pointer;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(234, 230, 221, 0.55);
    padding: 0.5rem 0;
    transition: color 0.3s ease;
  }
  .works-name::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 2px;
    background: #6E80AD;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  }
  .works-name:hover { color: #EAE6DD; }
  .works-name.is-active { color: #EAE6DD; }
  .works-name.is-active::after { transform: scaleX(1); }

  /* Photos live above the grain film — grain textures backgrounds only */
  .photo-layer { position: relative; z-index: 95; }
  #studio figure.reveal { position: relative; z-index: 95; }

  /* ================= Formulario de contacto ================= */
  .contact-form { width: 100%; transition: opacity 0.45s ease; }
  .contact-form.is-sent { opacity: 0; pointer-events: none; }
  .cf-field { margin-bottom: 1.55rem; position: relative; }
  .cf-field label {
    display: block;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.22em;
    color: #55524B; margin-bottom: 0.5rem;
    transition: color 0.25s ease;
  }
  /* la etiqueta se enciende (anil) cuando su campo esta activo */
  .cf-field:focus-within label { color: #2C3A64; }
  .cf-field input, .cf-field select, .cf-field textarea {
    width: 100%;
    background: transparent;
    border: 0; border-bottom: 1px solid rgba(22, 21, 19, 0.28);
    border-radius: 0;
    padding: 0.5rem 0 0.6rem;
    font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem; color: #26262B;
    transition: border-color 0.25s ease;
  }
  /* selects: flecha a medida en vez de la del sistema */
  .cf-field select {
    cursor: pointer;
    -webkit-appearance: none; -moz-appearance: none; appearance: none;
    padding-right: 1.6rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%2355524B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.1rem center;
  }
  .cf-field textarea { resize: vertical; min-height: 6.5rem; }
  .cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
    outline: none; border-bottom-color: #2C3A64; border-bottom-width: 2px;
    margin-bottom: -1px; /* que el borde grueso no desplace el layout */
  }
  .cf-row { display: grid; gap: 0 1.5rem; }
  @media (min-width: 640px) { .cf-row { grid-template-columns: 1fr 1fr; } }
  .cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
  .cf-send {
    display: inline-flex; align-items: center; gap: 0.8em;
    background: #26262B; color: #EAE6DD;
    border: 0; border-radius: 999px; cursor: pointer;
    padding: 1rem 1.9rem; margin-top: 0.6rem;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em;
    transition: background 0.3s ease, opacity 0.3s ease;
  }
  .cf-send svg { animation: arrowNudge 1.9s ease-in-out infinite; }
  @media (prefers-reduced-motion: reduce) { .cf-send svg { animation: none; } }
  .cf-send:hover { background: #8A1728; }
  .cf-send:disabled { opacity: 0.55; cursor: wait; }
  .cf-status { margin-top: 1.1rem; font-size: 0.92rem; line-height: 1.5; color: #55524B; min-height: 1.4em; }
  .cf-status.is-error { color: #8A1728; }
  .cf-privacy {
    margin-top: 0.85rem;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.18em;
    color: rgba(22, 21, 19, 0.45);
  }

  /* Panel de confirmacion: el formulario cede su sitio a este */
  .cf-done {
    margin-top: 2.5rem; max-width: 28rem;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) 0.1s;
  }
  .cf-done.is-visible { opacity: 1; transform: none; }
  .cf-check {
    width: 3rem; height: auto; display: block; margin-bottom: 1.1rem;
    overflow: visible; filter: blur(0.4px); /* tinta */
  }
  .cf-check path {
    stroke-dasharray: 1; stroke-dashoffset: 1;
    transition: stroke-dashoffset 0.7s cubic-bezier(0.65, 0, 0.35, 1) 0.35s;
  }
  .cf-done.is-visible .cf-check path { stroke-dashoffset: 0; }
  .cf-done-title {
    font-family: "Fraunces", Georgia, serif; font-weight: 600;
    font-size: clamp(1.6rem, 3.5vw, 2.1rem); letter-spacing: -0.015em;
    color: #26262B; line-height: 1.05; margin-bottom: 0.6rem;
  }
  .cf-done-sub { font-size: 1rem; line-height: 1.6; color: #55524B; }
  @media (prefers-reduced-motion: reduce) {
    .contact-form, .cf-done, .cf-check path { transition: none; }
  }
