:root{
    --ink:#242424;
    --muted:#6b6b6b;
    --line:#d4d4d4;
    --paper:#ffffff;
    --accent:#3a3a3a;
    --accent-hover:#e0e0e0;
    --heading-font:'Playfair Display', serif;
    --nav-font:'Homemade Apple', cursive;
    --body-font:'Work Sans', sans-serif;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;background:var(--paper);color:var(--ink);
    font-family:var(--body-font);font-size:17px;line-height:1.65;
  }
  body.no-scroll{
    position:relative;height:100vh;overflow:hidden;
  }
  body.no-scroll .site-header{
    position:absolute;top:0;left:0;right:0;z-index:10;background:transparent;
  }
  body.no-scroll .hero-stack{height:100vh;}

  /* portada de una sola página: cabecera a la izquierda de la imagen, resto con scroll normal */
  body.home-page{position:relative;}
  body.home-page .site-header{
    position:absolute;top:0;left:0;right:auto;bottom:auto;
    width:260px;height:100vh;z-index:10;
    background:#111;
    box-shadow:2px 0 14px rgba(0,0,0,.15);
    transition:width .4s ease,background .35s ease,box-shadow .35s ease;
  }
  body.home-page .header-bottom-inner{
    flex-direction:column;align-items:center;justify-content:space-between;
    height:100%;padding:3.5em 1.6em;text-align:center;
  }
  body.home-page .header-nav{margin-left:0;width:100%;}
  body.home-page .header-nav a{
    font-family:var(--nav-font);font-weight:400;
    -webkit-text-stroke:0;
    font-size:23px;color:#f4efe4;
  }
  body.home-page .header-nav a:hover{color:#d8cdb8;}
  body.home-page .header-nav ul{flex-direction:column;align-items:center;gap:2.4em;}
  body.home-page .header-social{margin-left:0;margin-top:0;justify-content:center;width:100%;}
  @media(min-width:761px){
    body.home-page .logo{cursor:pointer;flex:none;}
    body.home-page .logo img{filter:invert(1);}
    body.home-page .header-social a{color:#f4efe4;border-color:rgba(244,239,228,.55);}
    body.home-page .header-social a:hover{background:rgba(244,239,228,.18);}
    body.home-page .sidebar-copyright{
      display:block;font-size:9px;font-weight:600;color:#f4efe4;
      margin:.8em 0 0;
    }
    /* tarjeta de presentación, pequeña en el menú, con el mismo visualizador de antes */
    body.home-page .sidebar-avatar:not(.is-expanded){
      width:56px;height:56px;margin:1.4em 0 0;flex:none;
    }
    /* el menú entero (fondo, texto, redes, tarjeta y copyright) se retrae/extiende al pinchar el logo: solo queda el logo */
    body.home-page .header-nav,
    body.home-page .header-social,
    body.home-page .sidebar-avatar,
    body.home-page .sidebar-copyright{
      overflow:hidden;max-height:600px;opacity:1;
      transition:max-height .35s ease,opacity .3s ease,margin .35s ease;
    }
    /* menú recogido: solo el logo, sin el fondo negro ni la sombra */
    body.home-page.menu-collapsed .site-header{
      width:150px;height:auto;background:transparent;box-shadow:none;
    }
    body.home-page.menu-collapsed .header-bottom-inner{padding:1.4em 1.4em;height:auto;}
    body.home-page.menu-collapsed .logo img{filter:none;}
    body.home-page.menu-collapsed .header-nav,
    body.home-page.menu-collapsed .header-social,
    body.home-page.menu-collapsed .sidebar-avatar,
    body.home-page.menu-collapsed .sidebar-copyright{
      max-height:0;opacity:0;margin:0;pointer-events:none;
    }
  }
  /* la portada ocupa siempre todo el ancho; el menú va superpuesto, así la imagen
     no se reescala (ni cambia de definición) al recoger/desplegar el menú */
  body.home-page .hero-stack{margin-left:0;}
  @media(max-width:760px){
    body.home-page .site-header{
      position:absolute;top:0;left:0;right:0;width:auto;height:auto;
      background:transparent;box-shadow:none;
    }
    body.home-page .header-bottom-inner{
      flex-direction:row;justify-content:flex-start;height:auto;
      padding:.5em .6em;text-align:left;
    }
    body.home-page .header-nav ul{flex-direction:column;}
    body.home-page .header-social{margin-top:0;margin-left:auto;}
    body.home-page .hero-stack{margin-left:0;}
  }
  a{color:var(--ink);text-decoration:none;}
  img{display:block;max-width:100%;}
  h1,h2,h3,h4{font-family:var(--heading-font);font-weight:400;margin:0 0 .5em;}
  .wrap{max-width:1200px;margin:0 auto;padding:0 3em;}
  @media(max-width:760px){ .wrap{padding:0 1.2em;} }

  /* placeholder de imagen: sustituye por tu propia foto/ilustración */
  .img-placeholder{
    background:repeating-linear-gradient(135deg,#eceff3,#eceff3 12px,#e2e8f0 12px,#e2e8f0 24px);
    display:flex;align-items:center;justify-content:center;
    color:#64748b;font-size:13px;font-family:var(--body-font);
    text-align:center;padding:1em;
  }

  /* ---------- Cabecera ---------- */
  .header-bottom-inner{
    display:flex;align-items:center;gap:2em;
    padding:.5em 3.5em;
  }
  @media(max-width:760px){ .header-bottom-inner{padding:.5em .6em;} }

  .logo{display:block;}
  .logo .img-placeholder{width:100px;aspect-ratio:1880/790;font-size:9px;}
  .logo img{width:100px;height:auto;display:block;}

  .main-nav{flex:1;display:flex;justify-content:center;}
  .main-nav ul{display:flex;gap:5.5em;list-style:none;margin:0;padding:0;}
  .main-nav a{
    font-family:var(--nav-font);font-weight:400;font-size:26px;
    letter-spacing:.02em;
  }
  .main-nav a:hover{color:var(--muted);}

  .nav-cta{
    border:1px solid var(--ink);border-radius:999px;
    padding:.15em .9em;line-height:1.4;
    transition:background .2s ease,color .2s ease;
  }
  .nav-cta:hover{background:var(--ink);color:var(--paper);}

  /* nav junto al logo, en la esquina superior, sin figura de botón */
  .header-nav{flex:none;display:flex;justify-content:flex-start;margin-left:1.6em;}
  .header-nav ul{gap:3.4em;}
  .header-nav a{
    font-size:26px;display:inline-block;
    padding:0;border:none;background:none;backdrop-filter:none;
  }
  .header-nav a:hover{color:var(--muted);background:none;}
  .header-nav .nav-cta{border:none;background:none;padding:0;}
  .header-nav .nav-cta:hover{background:none;color:var(--muted);}

  /* desplegable de Colecciones */
  .has-dropdown{position:relative;}
  .has-dropdown .dropdown{
    position:absolute;top:100%;left:0;margin-top:.5em;
    display:none;grid-template-columns:repeat(2,auto);gap:0 1.2em;
    min-width:0;padding:.7em;list-style:none;
    background:#000;border:1px solid #000;border-radius:8px;
    box-shadow:0 10px 28px rgba(0,0,0,.35);z-index:20;
  }
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown,
  .has-dropdown.open .dropdown{display:grid;}
  .dropdown a{
    display:block;font-family:var(--body-font);font-size:14px;
    letter-spacing:0;padding:.3em .5em;border-radius:4px;color:#fff;
    white-space:nowrap;
  }
  .dropdown a:hover{background:rgba(255,255,255,.15);color:#fff;}

  .header-social{display:flex;gap:.6em;margin-left:auto;}
  .header-social a{
    width:30px;height:30px;border-radius:50%;border:1px solid var(--line);
    display:flex;align-items:center;justify-content:center;
  }
  .header-social a:hover{background:var(--accent-hover);}
  .header-social svg{width:14px;height:14px;}

  .mobile-menu-toggle{
    display:none;flex-direction:column;justify-content:center;gap:5px;
    width:32px;height:32px;background:none;border:none;cursor:pointer;padding:0;
  }
  .mobile-menu-toggle span{width:100%;height:2px;background:var(--ink);transition:transform .2s ease,opacity .2s ease;}
  .mobile-menu-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .mobile-menu-toggle.open span:nth-child(2){opacity:0;}
  .mobile-menu-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

  @media(max-width:760px){
    .header-bottom-inner{flex-wrap:wrap;}
    .mobile-menu-toggle{display:flex;order:1;}
    .logo{order:2;}
    .header-social{order:3;}
    .main-nav{
      order:4;width:100%;max-height:0;overflow:hidden;
      transition:max-height .25s ease;
    }
    .main-nav.open{max-height:300px;}
    .main-nav ul{flex-direction:column;gap:0;padding:1em 0 0;}
    .main-nav a{display:block;padding:.6em 0;}
  }

  /* ---------- ilustraciones apiladas (primera pantalla) ---------- */
  .hero-stack{
    position:relative;overflow:hidden;
    min-height:100vh;
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    gap:.5em;padding:2em 0;
  }
  /* portada única un poco más alta que la pantalla: da recorrido al degradado inferior */
  .hero-stack--single{min-height:114vh;}
  .hero-main{
    position:relative;z-index:1;
    width:100%;height:auto;
    object-fit:cover;border-radius:0;
    filter:grayscale(1) brightness(1.8) contrast(1.5);opacity:.3;
  }
  .hero-main--strong{
    filter:grayscale(1) brightness(1) contrast(1.8);opacity:.45;
  }
  /* ilustración única: base en blanco/negro + parches de color solo en algunas algas */
  .hero-photo{
    position:absolute;inset:0;z-index:1;
    overflow:hidden;
  }
  .hero-photo img{
    position:absolute;inset:0;width:100%;height:100%;
    object-fit:cover;display:block;
  }
  .hero-photo .hero-photo-main{
    /* sube los claros a blanco sin perder nitidez: más brillo + más contraste, menos calidez */
    filter:brightness(1.1) contrast(1.14) saturate(.82);opacity:1;
    object-fit:cover;object-position:center 38%;
    padding:0;background:#ffffff;
  }
  /* degradado al blanco en la parte baja de la portada para disimular el corte con "sobre mí" */
  .hero-stack--single .hero-photo::after{
    content:"";position:absolute;left:0;right:0;bottom:0;height:30vh;z-index:3;
    pointer-events:none;
    background:linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,.65) 55%, #ffffff 100%);
  }


  /* criaturas repartidas por el fondo, en 3 capas de profundidad */
  .hero-creatures{
    position:absolute;inset:0;z-index:2;pointer-events:none;
  }
  .hero-creature{
    position:absolute;transform:translate(-50%,-50%);
    height:auto;object-fit:contain;
  }
  .hero-creature[hidden]{display:none;}
  .hero-creature--near{
    width:clamp(160px,20vw,300px);opacity:1;
    filter:drop-shadow(0 10px 18px rgba(0,0,0,.2));
  }
  .hero-creature--mid{
    width:clamp(110px,14vw,220px);opacity:.78;
    filter:drop-shadow(0 6px 12px rgba(0,0,0,.14));
  }
  .hero-creature--far{
    width:clamp(70px,9vw,140px);opacity:.45;
    filter:blur(.4px) drop-shadow(0 3px 8px rgba(0,0,0,.08));
  }
  /* se desvanece poco a poco hacia abajo, para no tapar el círculo/copyright que hay debajo */
  .hero-creature--fade{
    -webkit-mask-image:linear-gradient(to bottom, #000 35%, transparent 85%);
    mask-image:linear-gradient(to bottom, #000 35%, transparent 85%);
  }
  @media(max-width:760px){
    .hero-creature--near{width:clamp(120px,34vw,220px);}
    .hero-creature--mid{width:clamp(90px,26vw,160px);}
    .hero-creature--far{width:clamp(60px,18vw,110px);}
  }

  /* fondo completo, detrás de las ilustraciones principales */
  .hero-bg{
    position:absolute;inset:0;
    z-index:0;width:100%;height:100%;
    object-fit:cover;border-radius:0;
    opacity:.35;filter:grayscale(1) brightness(1.8) contrast(1.5);
  }

  /* ---------- secciones de una sola página (index): cada una ocupa una pantalla ---------- */
  .index-section{
    padding:2.5em 0;
    min-height:78vh;
    display:flex;flex-direction:column;justify-content:center;
  }
  @media(max-width:760px){ .index-section{padding:2em 0;min-height:0;} }

  /* separador con línea a cada lado: ------ Mis trabajos ------ */
  .section-divider{display:flex;align-items:center;gap:1.4em;margin:0 0 2.6em;}
  .section-divider::before,.section-divider::after{content:"";flex:1;height:3px;background:#1c4d73;}
  .section-divider span{
    font-family:var(--nav-font);font-weight:700;font-size:2em;
    -webkit-text-stroke:.6px currentColor;
    white-space:nowrap;color:#1c4d73;
  }

  /* toda la sección "Mis trabajos" lleva a la página de colecciones */
  .index-works{cursor:pointer;}

  /* tarjetas grandes y cuadradas: cursos y eventos (estilo imagen + "ver más") */
  .index-actions .wrap{max-width:1560px;}
  .action-buttons{display:flex;gap:2.2em;justify-content:center;align-items:stretch;flex-wrap:nowrap;}
  .action-card{
    position:relative;flex:1 1 0;min-width:0;
    width:auto;max-width:720px;aspect-ratio:1/1;
    display:flex;align-items:center;justify-content:center;overflow:hidden;
    background:#0c2c49;
    transition:background .25s ease,transform .25s ease;
  }
  .action-card:hover{background:#0f3557;transform:translateY(-5px);}
  .action-card-inner{
    position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;
    gap:2.4em;padding:2em;text-align:center;
  }
  .action-card-title{
    font-family:var(--heading-font);font-weight:600;font-size:3.7em;line-height:1.15;color:#fff;
  }
  .action-card-more{
    font-family:var(--body-font);font-size:1em;font-weight:600;
    letter-spacing:.18em;text-transform:uppercase;color:#fff;
    border:1.5px solid #fff;padding:1em 3em;
    transition:background .2s ease,color .2s ease;
  }
  .action-card:hover .action-card-more{background:#fff;color:#0c2c49;}
  @media(max-width:760px){
    .action-buttons{gap:1em;}
    .action-card-inner{gap:1.3em;padding:1em;}
    .action-card-title{font-size:1.5em;}
    .action-card-more{font-size:.8em;padding:.7em 1.4em;letter-spacing:.12em;}
  }

  /* carrusel de obras, ventanas circulares */
  .works-carousel{display:flex;align-items:center;gap:1.2em;}
  .works-track{
    display:flex;gap:1.8em;overflow-x:auto;scroll-snap-type:x mandatory;
    padding:.5em .2em 1em;flex:1;scrollbar-width:none;
  }
  .works-track::-webkit-scrollbar{display:none;}
  .works-item{
    flex:none;width:220px;height:220px;border-radius:50%;overflow:hidden;
    scroll-snap-align:center;box-shadow:0 8px 22px rgba(0,0,0,.16);
  }
  .works-item img{width:100%;height:100%;object-fit:cover;display:block;}
  .works-arrow{
    flex:none;width:44px;height:44px;border-radius:50%;
    border:1px solid var(--line);background:var(--paper);color:var(--ink);
    cursor:pointer;font-size:1.5em;line-height:1;
    display:flex;align-items:center;justify-content:center;
    transition:background .2s ease;
  }
  .works-arrow:hover{background:var(--accent-hover);}
  @media(max-width:760px){
    .section-divider span{font-size:1.4em;}
    .works-item{width:150px;height:150px;}
    .works-arrow{display:none;}
  }

  /* ---------- "sobre mí" embebido en el index, con margen blanco alrededor ---------- */
  .index-sobremi-wrap{
    background:var(--paper);padding:2.5em 1em;
    min-height:78vh;display:flex;flex-direction:column;justify-content:center;
  }
  @media(max-width:760px){ .index-sobremi-wrap{padding:2.5em 1.2em;min-height:0;} }
  /* dentro del index la página no debe ocupar toda la ventana ni usar fondo */
  .about-split.about-split--embed{min-height:0;isolation:isolate;}
  .about-split.about-split--embed::before{display:none;}
  .about-split--embed .about-content{flex:1 1 100%;padding:0;align-items:center;gap:1.6em;}
  .about-split--embed .about-header-row{
    flex-direction:row;align-items:center;justify-content:center;
    gap:4.5em;flex-wrap:nowrap;
    width:100%;max-width:1060px;margin:0 auto;
  }
  .about-split--embed .about-intro{
    flex:1 1 50%;margin:0;display:flex;flex-direction:column;align-items:flex-start;
    text-align:left;gap:1.2em;
  }
  .about-split--embed .about-header-row h1{margin:0;}
  .about-lead{
    font-family:'Cormorant Garamond',serif;font-size:1.5em;line-height:1.5;
    color:var(--ink);margin:0;
  }
  .about-cta{
    display:inline-block;text-decoration:none;
    font-family:'Work Sans',sans-serif;font-size:1em;font-weight:600;
    text-transform:uppercase;letter-spacing:.14em;
    color:var(--paper);background:var(--ink);
    padding:1em 2.6em;border:2px solid var(--ink);
    transition:background .2s ease,color .2s ease;
  }
  .about-cta:hover{background:var(--paper);color:var(--ink);}
  @media(max-width:760px){ .about-lead{font-size:1.3em;} .about-cta{font-size:.9em;padding:.9em 2em;} }
  /* retrato circular a la izquierda del texto */
  .about-split--embed .about-portrait{
    order:-1;flex:0 0 auto;width:460px;height:460px;max-width:48%;aspect-ratio:1/1;
    border-radius:50%;margin:0;
  }
  .about-split--embed .about-portrait img{border-radius:50%;}
  @media(max-width:760px){
    .about-split--embed .about-header-row{flex-direction:column;gap:2em;text-align:center;}
    .about-split--embed .about-intro{align-items:center;text-align:center;}
    .about-split--embed .about-portrait{width:280px;height:280px;max-width:85%;}
  }

  /* ---------- sobre mí ---------- */
  body.about-page{position:relative;min-height:100vh;}
  body.about-page .site-header{position:absolute;top:0;left:0;right:0;z-index:10;background:transparent;}
  .about-split{position:relative;display:flex;min-height:100vh;}
  .about-split::before{
    content:"";position:fixed;inset:0;z-index:-1;
    background:url('ilustraciones/Página web/Paisaje/pitas.jpg') 85% center/105% no-repeat;
    opacity:.16;
  }
  .about-bgpanel{flex:1 1 37%;position:relative;z-index:1;overflow:hidden;}
  .about-bgpanel img{
    position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 25%;display:block;
  }
  .about-content{
    position:relative;z-index:1;font-size:90%;
    flex:1 1 63%;padding:9em 3.5em 3.5em;
    display:flex;flex-direction:column;justify-content:flex-start;gap:2em;
  }
  .about-header-row{
    display:flex;justify-content:center;align-items:center;
    gap:3.5em;flex-wrap:nowrap;
    width:100%;max-width:980px;margin:0 auto;
  }
  .about-intro{flex:1 1 50%;min-width:0;}
  .about-header-row h1{font-family:'Homemade Apple', cursive;font-size:3.2em;font-weight:400;margin:0 0 1em;}
  .about-portrait{
    order:-1;flex:1 1 50%;
    width:100%;max-width:440px;aspect-ratio:1/1;height:auto;
    border-radius:0;overflow:hidden;
    box-shadow:0 10px 28px rgba(0,0,0,.20);
  }
  .about-portrait img{
    width:100%;height:100%;border-radius:0;object-fit:cover;display:block;
  }
  .about-contact{width:100%;max-width:980px;margin-left:auto;margin-right:auto;}
  @media(max-width:900px){
    .about-header-row{flex-direction:column;gap:2em;}
    .about-intro,.about-portrait{flex:1 1 100%;}
    .about-portrait{max-width:380px;}
  }
  .about-text p{margin:0 0 1.1em;max-width:42ch;color:var(--ink);}
  .about-signature{
    font-family:'Homemade Apple', cursive;font-size:1.8em;font-weight:400;
    margin:.4em auto 0;color:var(--ink);
    width:100%;max-width:980px;text-align:right;
  }
  @media(max-width:760px){
    .about-split{flex-direction:column;min-height:0;}
    .about-bgpanel{height:220px;}
    .about-content{padding:7em 1.2em 2.5em;}
  }

  /* cuadro de contacto, dentro de la columna de texto, debajo de la foto redonda */
  .about-contact{padding-top:1.6em;border-top:1px solid var(--line);}
  .about-contact h2{font-size:1.5em;margin:0 0 .3em;}
  .about-contact > p{color:var(--muted);margin:0 0 1.2em;}
  .contact-form{display:flex;flex-wrap:wrap;gap:.7em;}
  .contact-form input{
    flex:1 1 200px;padding:.6em .9em;font-family:var(--body-font);font-size:14px;
    border:1px solid var(--line);border-radius:6px;background:var(--paper);color:var(--ink);
  }
  .contact-form input:focus-visible{outline:2px dotted var(--ink);outline-offset:2px;}
  .contact-form button{
    flex:1 1 200px;padding:.6em .9em;font-family:var(--body-font);font-size:14px;font-weight:600;
    border:1px solid var(--ink);border-radius:6px;background:var(--ink);color:var(--paper);
    cursor:pointer;transition:background .2s ease,color .2s ease;
  }
  .contact-form button:hover{background:var(--paper);color:var(--ink);}
  .contact-thanks{display:none;color:var(--ink);font-weight:600;margin:0;}
  .contact-thanks.is-visible{display:block;}

  /* ---------- colecciones (expositor) ---------- */
  .gallery-header .header-bottom-inner{justify-content:center;padding:1.4em 3.5em;}
  .gallery-header .logo img{width:120px;}

  .collections{padding:2.5em 0 5em;}
  .collections h1{
    font-family:'Homemade Apple', cursive;font-weight:400;
    font-size:3.4em;text-align:center;margin-bottom:1.2em;
  }

  .gallery-group{margin:0 0 4.5em;}
  .gallery-group h2{
    font-family:'Homemade Apple', cursive;font-size:2.2em;font-weight:400;
    text-align:center;margin:0 0 1.4em;
  }
  .gallery-grid{
    display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:1.8em;
  }
  .gallery-item{
    cursor:pointer;overflow:hidden;border-radius:10px;aspect-ratio:1/1;
    box-shadow:0 4px 14px rgba(0,0,0,.1);
    transition:box-shadow .3s ease;
  }
  .gallery-item:hover{box-shadow:0 10px 26px rgba(0,0,0,.18);}
  .gallery-item img{
    width:100%;height:100%;object-fit:cover;display:block;
    transition:transform .4s ease;
  }
  .gallery-item:hover img{transform:scale(1.06);}
  @media(max-width:760px){
    .collections h1{font-size:2.4em;}
    .gallery-grid{grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:.8em;}
  }

  /* visor a pantalla completa, con el fondo de la página difuminado */
  .lightbox{
    position:fixed;inset:0;z-index:1000;
    display:flex;align-items:center;justify-content:center;
    opacity:0;pointer-events:none;
    transition:opacity .25s ease;
  }
  .lightbox.is-open{opacity:1;pointer-events:auto;}
  .lightbox-backdrop{
    position:absolute;inset:0;background:rgba(20,18,15,.65);
    backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  }
  .lightbox-img{
    position:relative;z-index:1;max-width:90vw;max-height:88vh;
    width:auto;height:auto;border-radius:8px;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
  }
  .lightbox-close{
    position:absolute;top:1.4em;right:1.6em;z-index:2;
    width:44px;height:44px;border-radius:50%;border:none;
    background:rgba(255,255,255,.9);color:var(--ink);
    font-size:1.2em;line-height:1;cursor:pointer;
    display:flex;align-items:center;justify-content:center;
  }
  .lightbox-close:hover{background:#fff;}
  body.lightbox-open{overflow:hidden;}

  /* ---------- tienda (deshabilitada) ---------- */
  .shop-disabled{padding:2.5em 0 6em;}
  .shop-disabled .wrap{
    display:flex;align-items:flex-start;gap:4em;
  }
  .shop-text{flex:1 1 50%;min-width:0;}
  .shop-badge{
    display:inline-block;padding:.4em 1em;margin-bottom:1.2em;
    border:1px solid var(--line);border-radius:999px;
    font-size:.8em;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
    color:var(--muted);
  }
  .shop-text h1{font-size:2.6em;margin:0 0 .7em;}
  .shop-text p{max-width:48ch;color:var(--ink);margin:0 0 1.1em;}
  .shop-contact{display:flex;flex-direction:column;gap:.7em;margin-top:1.6em;}
  .shop-contact-link{
    display:inline-flex;align-items:center;gap:.6em;
    font-weight:600;transition:color .2s ease;
  }
  .shop-contact-link svg{width:20px;height:20px;flex:none;}
  .shop-contact-link:hover{color:var(--muted);}
  .shop-image{flex:1 1 50%;min-width:0;}
  .shop-image img{
    width:100%;max-width:480px;margin:0 auto;border-radius:8px;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
  }
  @media(max-width:760px){
    .shop-disabled{padding:1.5em 0 3em;}
    .shop-disabled .wrap{flex-direction:column-reverse;gap:2em;}
    .shop-image img{max-width:320px;}
  }

  /* ---------- footer: contacto + redes ---------- */
  footer{padding:3em 0;text-align:center;border-top:1px solid var(--line);}
  .footer-avatar{
    width:110px;height:110px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    overflow:hidden;background:var(--paper);border:1px solid var(--line);
    margin:0 auto 1em;cursor:pointer;position:relative;z-index:2;
    transition:width .35s ease,height .35s ease,border-radius .35s ease,top .35s ease,left .35s ease,transform .35s ease;
  }
  .footer-avatar img{
    width:65%;height:65%;border-radius:50%;object-fit:cover;
    transition:width .35s ease,height .35s ease,border-radius .35s ease,object-fit .35s ease;
  }
  .footer-avatar.is-expanded{
    position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);
    width:min(92vw,900px);height:auto;aspect-ratio:1600/914;
    border-radius:8px;z-index:1000;cursor:zoom-out;
  }
  .footer-avatar.is-expanded img{
    width:100%;height:100%;border-radius:8px;object-fit:cover;
  }

  .avatar-backdrop{
    position:fixed;inset:0;background:rgba(0,0,0,.6);
    opacity:0;pointer-events:none;z-index:999;
    transition:opacity .35s ease;
  }
  .avatar-backdrop.is-visible{opacity:1;pointer-events:auto;}

  @media(prefers-reduced-motion:reduce){
    .footer-avatar,.footer-avatar img,.avatar-backdrop{transition:none;}
  }
  .social-row{display:flex;justify-content:center;gap:14px;}
  .social-row a{
    width:38px;height:38px;border-radius:50%;border:1px solid var(--line);
    display:flex;align-items:center;justify-content:center;
  }
  .social-row a:hover{background:var(--accent-hover);}
  .social-row svg{width:17px;height:17px;}
  .footer-copyright{margin:1em 0 0;font-size:13px;color:var(--muted);}

  :focus-visible{outline:2px dotted var(--ink);outline-offset:2px;}