
    /* ═══════════════════════════════ VARIABLES ═══════════════════════════════ */
    :root {
      --bg:      #080b0e;
      --panel:   #0d1217;
      --panel2:  #111820;
      --text:    #eaeef2;
      --muted:   #8a9aa6;
      --accent:  #c9a15b;
      --accent2: #e8c47a;
      --line:    rgba(255,255,255,.07);
      --max:     1100px;
      --r:       16px;
      --r-lg:    24px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    html.is-loading { overflow: hidden; }
    body { font-family: 'DM Sans', system-ui, sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

    /* ═══════════════════════════════ LOADER ═══════════════════════════════ */
    #loader {
      position: fixed; inset: 0; z-index: 10000;
      background: var(--bg);
      display: flex; align-items: center; justify-content: center;
      transition: transform .85s cubic-bezier(.76,0,.24,1);
      will-change: transform;
    }
    #loader.loader--exit  { transform: translateY(-100%); }
    #loader.loader--gone  { display: none; }

    .loader__stage {
      display: flex; flex-direction: column; align-items: center;
      gap: 0; text-align: center;
    }

    .loader__rule {
      width: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      margin: 22px 0;
      animation: lRuleGrow .6s .08s ease forwards;
    }
    @keyframes lRuleGrow { to { width: 140px; } }

    .loader__mark {
      opacity: 0; transform: translateY(8px);
      animation: lMarkIn .5s .3s cubic-bezier(.34,1.56,.64,1) forwards;
    }
    @keyframes lMarkIn { to { opacity: 1; transform: translateY(0); } }

    #loader-stripes { animation: lPoleSpin 1.8s linear infinite; }
    @keyframes lPoleSpin {
      from { transform: translateY(0); }
      to   { transform: translateY(-30px); }
    }

    .loader__brand { margin-top: 22px; }

    .loader__clip { overflow: hidden; }
    .loader__name {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.7rem, 4vw, 2.4rem);
      font-weight: 700; color: var(--text);
      letter-spacing: -.02em; line-height: 1;
      transform: translateY(110%);
      animation: lNameRise .6s .55s cubic-bezier(.4,0,.2,1) forwards;
    }
    @keyframes lNameRise { to { transform: translateY(0); } }

    .loader__sub {
      display: block; margin-top: 10px;
      font-size: 10.5px; font-weight: 500; letter-spacing: .22em;
      text-transform: uppercase; color: var(--accent);
      opacity: 0;
      animation: lSubIn .45s 1s ease forwards;
    }
    @keyframes lSubIn { to { opacity: 1; } }

    .loader__progress {
      width: 54px; height: 1px; margin-top: 30px;
      background: rgba(201,161,91,.15); border-radius: 1px; overflow: hidden;
    }
    .loader__bar {
      height: 100%; width: 0; background: var(--accent); border-radius: 1px;
      animation: lBarFill 1.5s .4s ease forwards;
    }
    @keyframes lBarFill { to { width: 100%; } }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    address { font-style: normal; }
    .container { width: min(var(--max), 92%); margin: 0 auto; }

    /* Grain overlay */
    body::before {
      content: '';
      position: fixed; 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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 9999; opacity: .45;
    }

    /* ═══════════════════════════════ HEADER ═══════════════════════════════ */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      border-bottom: 1px solid transparent;
      transition: background .35s, border-color .35s, backdrop-filter .35s;
    }
    header.scrolled {
      background: rgba(8,11,14,.85);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border-bottom-color: var(--line);
    }
    .nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 16px; }
    .brand { display: flex; align-items: center; gap: 11px; white-space: nowrap; z-index: 102; }
    .brand-pole { flex-shrink: 0; }
    .brand-texts { display: flex; flex-direction: column; gap: 2px; }
    .brand-name { font-weight: 600; font-size: 15px; color: var(--text); line-height: 1; }
    .brand-sub { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); line-height: 1; }
    .brand-badge {
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(201,161,91,.12); border: 1px solid rgba(201,161,91,.38);
      display: grid; place-items: center;
      color: var(--accent); font-family: 'Playfair Display', serif; font-weight: 900; font-size: 14px; flex-shrink: 0;
    }
    .nav-links { display: flex; list-style: none; gap: 28px; }
    .nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); position: relative; transition: color .2s; }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
      height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .22s;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { transform: scaleX(1); }

    /* Hamburger */
    .hamburger { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 6px; z-index: 102; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile menu */
    .mobile-menu {
      position: fixed; inset: 0;
      background: rgba(8,11,14,.97); backdrop-filter: blur(20px);
      z-index: 99; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
      opacity: 0; pointer-events: none; transition: opacity .3s;
    }
    .mobile-menu.open { opacity: 1; pointer-events: all; }
    .mobile-menu a { font-family: 'Playfair Display', serif; font-size: clamp(28px, 8vw, 44px); font-weight: 700; color: var(--text); transition: color .2s; }
    .mobile-menu a:hover { color: var(--accent); }

    /* ═══════════════════════════════ BUTTONS ═══════════════════════════════ */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 12px 22px; border-radius: 999px;
      border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.05);
      color: var(--text); font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: .02em;
      cursor: pointer; transition: all .22s; white-space: nowrap;
    }
    .btn:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18); }
    .btn--accent { background: rgba(201,161,91,.18); border-color: rgba(201,161,91,.50); color: var(--accent2); }
    .btn--accent:hover { background: rgba(201,161,91,.28); border-color: rgba(201,161,91,.75); box-shadow: 0 8px 28px rgba(201,161,91,.18); transform: translateY(-1px); }
    .btn--wa { background: rgba(37,211,102,.14); border-color: rgba(37,211,102,.38); color: #4de87a; }
    .btn--wa:hover { background: rgba(37,211,102,.24); border-color: rgba(37,211,102,.65); box-shadow: 0 8px 28px rgba(37,211,102,.18); transform: translateY(-1px); }

    /* ═══════════════════════════════ HERO CENTRADO ═══════════════════════════════ */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; justify-content: center; overflow: hidden;
    }

    /* Fondo */
    .hero__bg { position: absolute; inset: 0; z-index: 0; }
    .hero__bg-img {
      position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?w=1800&q=85') center 25% / cover no-repeat;
    }
    .hero__bg::after {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 90% 90% at 50% 45%, rgba(8,11,14,.55) 0%, rgba(8,11,14,.82) 65%, rgba(8,11,14,1) 100%),
        linear-gradient(180deg, rgba(8,11,14,.55) 0%, rgba(8,11,14,.10) 45%, rgba(8,11,14,.95) 90%, rgba(8,11,14,1) 100%);
    }

    /* Líneas verticales decorativas */
    .hero__lines { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
    .hero__lines::before,
    .hero__lines::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 1px;
      background: linear-gradient(180deg, transparent 0%, rgba(201,161,91,.16) 25%, rgba(201,161,91,.16) 75%, transparent 100%);
    }
    .hero__lines::before { left: clamp(24px, 6vw, 90px); }
    .hero__lines::after  { right: clamp(24px, 6vw, 90px); }

    /* Contenido */
    .hero__content {
      position: relative; z-index: 2;
      display: flex; flex-direction: column; align-items: center; text-align: center;
      padding: 130px 0 90px; gap: 0;
    }

    /* Eyebrow */
    .hero__eyebrow {
      display: flex; align-items: center; gap: 14px;
      font-size: 11px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--accent);
      margin-bottom: 26px;
      opacity: 0; animation: fadeUp .7s ease .2s forwards;
    }
    .hero__eyebrow-line { width: 36px; height: 1px; background: var(--accent); opacity: .7; }

    /* Título */
    .hero__title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3.4rem, 10vw, 8rem);
      font-weight: 900; line-height: .92; letter-spacing: 0.03em;
      opacity: 0; animation: fadeUp .85s ease .35s forwards;
    }
    .hero__title-normal { display: block; color: var(--text); }
    .hero__title-italic  { display: block; font-style: italic; color: var(--accent); }

    /* Divisor dorado */
    .hero__divider {
      width: 72px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      margin: 30px auto;
      opacity: 0; animation: fadeIn .6s ease .55s forwards;
    }

    /* Subtítulo */
    .hero__sub {
      font-size: clamp(.95rem, 1.4vw, 1.15rem); color: var(--muted); line-height: 1.75; max-width: 46ch;
      margin-bottom: 36px;
      opacity: 0; animation: fadeUp .8s ease .65s forwards;
    }

    /* Botones */
    .hero__actions {
      display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
      margin-bottom: 52px;
      opacity: 0; animation: fadeUp .8s ease .80s forwards;
    }
    .hero__actions .btn { padding: 14px 30px; font-size: 15px; }

    /* Social proof */
    .hero__proof {
      display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center;
      padding-top: 28px; border-top: 1px solid var(--line);
      opacity: 0; animation: fadeUp .8s ease .95s forwards;
    }
    .hero__proof-item { display: flex; align-items: center; gap: 9px; }
    .stars { display: flex; gap: 3px; }
    .star  { color: var(--accent); font-size: 13px; }
    .hero__proof-text { font-size: 13px; color: var(--muted); line-height: 1.4; }
    .hero__proof-text strong { color: var(--text); }
    .hero__proof-sep { width: 1px; height: 30px; background: var(--line); }

    /* Scroll indicator */
    .hero__scroll {
      position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      font-size: 10px; letter-spacing: .20em; text-transform: uppercase; color: var(--muted);
      opacity: 0; animation: fadeIn 1s ease 1.3s forwards;
    }
    .hero__scroll-line {
      width: 1px; height: 52px;
      background: linear-gradient(180deg, transparent, rgba(201,161,91,.6));
      animation: scrollDrop 2.2s ease-in-out 1.5s infinite;
    }

    @keyframes scrollDrop {
      0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
      40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
      60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
      100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
    }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes glow {
      0%,100% { box-shadow: 0 0 6px var(--accent); }
      50%      { box-shadow: 0 0 18px var(--accent), 0 0 32px rgba(201,161,91,.4); }
    }

    /* ═══════════════════════════════ SECCIONES BASE ═══════════════════════════════ */
    .section { padding: clamp(80px, 10vw, 130px) 0; }
    .section--border { border-top: 1px solid var(--line); }
    .section--panel  { background: var(--panel); }

    .section__intro { margin-bottom: 40px; }

    .section__label {
      display: flex; align-items: center; gap: 12px;
      font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--accent);
      margin-bottom: 12px;
    }
    .section__label-line { width: 36px; height: 1px; background: var(--accent); opacity: .7; }

    .section__title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; margin-bottom: 10px;
    }
    .section__desc { color: var(--muted); font-size: 1rem; line-height: 1.75; max-width: 56ch; margin-bottom: 0; }

    /* Fade-up observer */
    .fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* Stacking fix: evita que secciones se solapen sobre el hero */
    .hero { isolation: isolate; }
    main > section { position: relative; z-index: 1; isolation: isolate; }
    .hero { z-index: 0; }

    /* ═══════════════════════════════ SOBRE MÍ ═══════════════════════════════ */
    .about__grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }

    .about__photo { position: relative; min-height: clamp(380px, 55vh, 600px); }
    .about__photo img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      filter: grayscale(.22) contrast(1.08) brightness(.88) saturate(.78);
      image-rendering: high-quality;
    }
    .about__photo-overlay {
      position: absolute; inset: 0; z-index: 1;
      background:
        radial-gradient(circle at 30% 20%, rgba(201,161,91,.10), transparent 55%),
        linear-gradient(to right, rgba(8,11,14,.30), transparent),
        linear-gradient(to top, rgba(8,11,14,.72) 0%, transparent 45%);
    }
    .about__photo::after {
      content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
      opacity: .30; mix-blend-mode: overlay;
    }
    .about__photo-badge {
      position: absolute; bottom: 20px; left: 20px; z-index: 3;
      display: flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px;
      background: rgba(8,11,14,.65); border: 1px solid rgba(201,161,91,.28); backdrop-filter: blur(8px);
      font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.78);
    }
    .about__photo-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: glow 2.5s ease-in-out infinite; }

    .about__text {
      padding: clamp(36px, 5.5vw, 60px); display: flex; flex-direction: column; gap: 26px;
      background: var(--panel); position: relative; overflow: hidden; justify-content: center;
    }
    .about__text::before {
      content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(201,161,91,.07), transparent 65%); pointer-events: none;
    }
    .about__name {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 700; letter-spacing: -.02em; line-height: 1.0;
      margin-top: 6px;
    }
    .about__name-first { display: block; color: var(--text); }
    .about__name-last  { display: block; font-style: italic; color: var(--accent); }
    .about__divider {
      width: 52px; height: 1px;
      background: linear-gradient(90deg, var(--accent), transparent);
    }
    .about__quote {
      position: relative;
      font-family: 'Playfair Display', serif; font-style: italic;
      font-size: clamp(1.1rem, 1.9vw, 1.38rem);
      font-weight: 700; color: rgba(255,255,255,.82); line-height: 1.6;
      padding: 0 0 0 22px; margin: 0; border: none;
    }
    .about__quote::before {
      content: '\201C';
      position: absolute; left: 0; top: -6px;
      font-family: 'Playfair Display', serif; font-size: 3rem; line-height: 1;
      color: var(--accent); opacity: .65;
    }
    .about__body { color: var(--muted); line-height: 1.85; font-size: .96rem; }
    .about__sep { width: 100%; height: 1px; background: var(--line); }

    /* ═══════════════════════════════ PRECIOS ═══════════════════════════════ */
    .prices__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 20px; align-items: stretch; }

    .price-card {
      border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 36px;
      background: rgba(255,255,255,.03); position: relative; overflow: hidden;
      display: flex; flex-direction: column;
      transition: transform .38s cubic-bezier(.4,0,.2,1), box-shadow .38s ease, border-color .38s ease;
    }
    .price-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: .4; transition: opacity .38s ease;
    }
    .price-card::after {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: linear-gradient(110deg, transparent 35%, rgba(201,161,91,.055) 50%, transparent 65%);
      transform: translateX(-120%);
      transition: transform .75s cubic-bezier(.4,0,.2,1);
    }
    .price-card:hover { transform: translateY(-5px); border-color: rgba(201,161,91,.3); box-shadow: 0 22px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(201,161,91,.12); }
    .price-card:hover::before { opacity: .85; }
    .price-card:hover::after { transform: translateX(120%); }

    .price-card .price-list { flex: 1; }
    .price-card__title { font-family: 'Playfair Display', serif; font-size: 1.35rem; margin-bottom: 6px; }
    .price-card__sub { font-size: 13px; color: var(--muted); margin-bottom: 26px; }

    .price-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .price-item {
      position: relative; overflow: hidden;
      display: flex; justify-content: space-between; align-items: center; gap: 12px;
      padding: 12px 18px 12px 20px; border-radius: 10px;
      border: 1px solid var(--line); background: rgba(0,0,0,.18);
      transition: background .26s ease, border-color .26s ease, transform .26s cubic-bezier(.4,0,.2,1);
    }
    .price-item::before {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
      background: linear-gradient(180deg, var(--accent), rgba(201,161,91,.35));
      transform: scaleY(0); transform-origin: center;
      transition: transform .26s cubic-bezier(.4,0,.2,1);
    }
    .price-item:hover { background: rgba(201,161,91,.08); border-color: rgba(201,161,91,.3); transform: translateX(6px); }
    .price-item:hover::before { transform: scaleY(1); }
    .price-item strong { font-weight: 600; font-size: 14px; }

    .price-tag {
      font-family: 'Playfair Display', serif; color: var(--accent);
      font-weight: 700; font-size: 1.05rem; white-space: nowrap;
      transition: text-shadow .26s ease;
    }
    .price-item:hover .price-tag { text-shadow: 0 0 18px rgba(201,161,91,.55); }
    .price-note { margin-top: 18px; font-size: 12px; color: var(--muted); opacity: .65; }

    /* Columna secundaria */
    .prices__side { display: flex; flex-direction: column; gap: 20px; }
    .prices__side .price-card--domicilio,
    .prices__side .price-card--wa { flex: 1; }

    /* Domicilio card */
    .price-card--domicilio {
      background: linear-gradient(145deg, rgba(201,161,91,.07), rgba(201,161,91,.02));
      border-color: rgba(201,161,91,.22);
    }
    .price-card--domicilio::before { opacity: .7; }
    .price-card--domicilio:hover {
      border-color: rgba(201,161,91,.52);
      box-shadow: 0 22px 60px rgba(201,161,91,.15), 0 0 0 1px rgba(201,161,91,.2);
    }
    .domicilio-icon {
      width: 48px; height: 48px; border-radius: 14px;
      background: rgba(201,161,91,.12); border: 1px solid rgba(201,161,91,.3);
      display: grid; place-items: center; color: var(--accent);
      margin-bottom: 18px;
      transition: background .38s ease, box-shadow .38s ease;
    }
    .price-card--domicilio:hover .domicilio-icon {
      background: rgba(201,161,91,.2);
      box-shadow: 0 0 24px rgba(201,161,91,.25);
    }
    .domicilio-price-row { margin-top: auto; margin-bottom: 8px; }
    .domicilio-price__tag { font-size: 1.15rem; font-style: italic; }

    /* WhatsApp card */
    .price-card--wa {
      background: linear-gradient(145deg, rgba(37,211,102,.07), rgba(37,211,102,.02));
      border-color: rgba(37,211,102,.2);
    }
    .price-card--wa::before { background: linear-gradient(90deg, transparent, #25d366, transparent); opacity: .55; }
    .price-card--wa:hover {
      border-color: rgba(37,211,102,.48);
      box-shadow: 0 22px 60px rgba(37,211,102,.13), 0 0 0 1px rgba(37,211,102,.16);
    }
    .price-card--wa .btn--wa-full { margin-top: auto; }
    .wa-icon {
      width: 52px; height: 52px; border-radius: 16px;
      background: rgba(37,211,102,.10); border: 1px solid rgba(37,211,102,.22);
      display: grid; place-items: center; margin-bottom: 20px;
      transition: background .38s ease, box-shadow .38s ease;
    }
    .price-card--wa:hover .wa-icon { background: rgba(37,211,102,.2); box-shadow: 0 0 24px rgba(37,211,102,.25); }
    .wa-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 10px; }
    .wa-text { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
    .btn--wa-full { width: 100%; justify-content: center; padding: 14px 28px; font-size: 15px; }

    /* ═══════════════════════════════ GALERÍA ═══════════════════════════════ */
    .gallery__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
    .gallery__ig-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); border: 1px solid var(--line); padding: 10px 18px; border-radius: 999px; transition: all .2s; }
    .gallery__ig-link:hover { color: var(--text); border-color: rgba(255,255,255,.2); }

    /* ═══════════════════════════════ GALLERY ACCORDION ═══════════════════════════════ */
    .gallery-accordion {
      display: flex;
      height: clamp(360px, 48vw, 540px);
      gap: 8px;
      overflow: hidden;
      border-radius: var(--r-lg);
    }

    .gallery-item {
      flex: 1;
      position: relative; border-radius: 12px; overflow: hidden;
      cursor: zoom-in; background: var(--panel2);
      border: 1px solid var(--line);
      transition: flex .55s cubic-bezier(.4,0,.2,1);
    }
    .gallery-item:hover,
    .gallery-item:focus-visible { flex: 6; outline: none; }

    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
      filter: saturate(.45) brightness(.62);
      transition: filter .5s ease, transform .55s cubic-bezier(.4,0,.2,1);
      display: block;
    }
    .gallery-item:hover img,
    .gallery-item:focus-visible img {
      filter: saturate(1) contrast(1.05) brightness(.9);
      transform: scale(1.04);
    }

    /* Overlay expandido */
    .gallery-item__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(8,11,14,.85) 0%, rgba(8,11,14,.18) 45%, transparent 68%);
      display: flex; align-items: flex-end; justify-content: space-between;
      padding: 20px 22px;
      opacity: 0; transition: opacity .3s ease .1s;
    }
    .gallery-item:hover .gallery-item__overlay,
    .gallery-item:focus-visible .gallery-item__overlay { opacity: 1; }
    .gallery-item__overlay span {
      font-size: 14px; font-weight: 600; letter-spacing: .04em;
      color: rgba(255,255,255,.92); white-space: nowrap;
    }
    .gallery-item__zoom {
      color: var(--accent); opacity: .9; flex-shrink: 0;
    }
    .gallery-item:focus-visible {
      outline: 2px solid var(--accent); outline-offset: 3px;
    }

    /* ═══════════════════════════════ CONTACTO ═══════════════════════════════ */
    .contact-layout {
      display: flex;
      flex-direction: column;
      gap: 36px;
      max-width: 720px;
    }
    .contact-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      font-weight: 700;
      letter-spacing: -.02em;
      line-height: 1.05;
      margin: 8px 0 24px;
    }
    .contact-heading span { display: block; color: var(--text); }
    .contact-heading em   { display: block; font-style: italic; color: var(--accent); }

    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .04em;
      margin-bottom: 28px;
      transition: background .4s, border-color .4s, color .4s;
    }
    .status-badge--open {
      background: rgba(37,211,102,.1);
      border: 1px solid rgba(37,211,102,.28);
      color: #4cda7e;
    }
    .status-badge--closed {
      background: rgba(255,255,255,.04);
      border: 1px solid var(--line);
      color: var(--muted);
    }
    .status-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: currentColor; flex-shrink: 0;
    }
    .status-badge--open .status-dot { animation: pulse-dot 2s ease-in-out infinite; }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: .4; transform: scale(.72); }
    }

    .schedule-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .schedule-card {
      position: relative; overflow: hidden;
      background: var(--panel2);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      padding: 26px 28px;
      transition: border-color .25s;
    }
    .schedule-card::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
      background: linear-gradient(180deg, var(--accent), rgba(201,161,91,.18));
      opacity: 0; transition: opacity .28s;
    }
    .schedule-card:hover { border-color: rgba(201,161,91,.28); }
    .schedule-card:hover::before { opacity: 1; }
    .schedule-label {
      display: block;
      font-size: 10px; font-weight: 700; letter-spacing: .16em;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 14px;
    }
    .schedule-time {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.4rem, 2.5vw, 1.75rem);
      font-weight: 700; color: var(--text);
      letter-spacing: -.02em; line-height: 1;
      margin-bottom: 10px;
    }
    .schedule-days {
      display: block;
      font-size: 12px; color: var(--muted); letter-spacing: .03em;
    }

    .contact-channels { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }

    /* ═══════════════════════════════ LIGHTBOX ═══════════════════════════════ */
    .lightbox {
      position: fixed; inset: 0; z-index: 500;
      display: flex; align-items: center; justify-content: center;
    }
    .lightbox[hidden] { display: none; }

    .lightbox__backdrop {
      position: absolute; inset: 0;
      background: rgba(8,11,14,.93);
      backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
      cursor: pointer;
    }

    .lightbox__stage {
      position: relative; z-index: 1;
      display: flex; flex-direction: column; align-items: center;
      max-width: min(560px, 88vw); width: 100%;
      animation: lbIn .28s cubic-bezier(.4,0,.2,1);
    }
    @keyframes lbIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }

    .lightbox__img {
      width: 100%; max-height: 78vh; object-fit: contain;
      border-radius: var(--r-lg); border: 1px solid rgba(255,255,255,.09);
      box-shadow: 0 32px 80px rgba(0,0,0,.6);
    }
    .lightbox__caption {
      margin-top: 14px; font-size: 13px; color: var(--muted);
      letter-spacing: .04em; text-align: center;
    }

    .lightbox__close {
      position: fixed; top: 20px; right: 20px; z-index: 2;
      width: 44px; height: 44px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07);
      color: var(--text); display: grid; place-items: center;
      cursor: pointer; transition: all .2s;
    }
    .lightbox__close:hover { background: rgba(201,161,91,.15); border-color: rgba(201,161,91,.45); color: var(--accent); }

    .lightbox__nav {
      position: fixed; top: 50%; transform: translateY(-50%); z-index: 2;
      width: 48px; height: 48px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07);
      color: var(--text); display: grid; place-items: center;
      cursor: pointer; transition: all .22s;
    }
    .lightbox__nav:hover { background: rgba(201,161,91,.15); border-color: rgba(201,161,91,.45); color: var(--accent); transform: translateY(-50%) scale(1.06); }
    .lightbox__nav--prev { left: 20px; }
    .lightbox__nav--next { right: 20px; }

    .btn--full { width: 100%; justify-content: center; margin-top: auto; }


    /* Canal de contacto */
    .channel-card {
      display: flex; align-items: center; gap: 12px; padding: 12px 16px;
      border-radius: var(--r); border: 1px solid var(--line);
      background: rgba(255,255,255,.02); color: var(--text);
      position: relative; overflow: hidden; transition: all .22s;
    }
    .channel-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--ch-color, var(--accent)), transparent);
      opacity: .2; transition: opacity .22s;
    }
    .channel-card:hover { transform: translateY(-2px); border-color: var(--ch-border, var(--line)); background: var(--ch-bg, rgba(255,255,255,.03)); }
    .channel-card:hover::before { opacity: .7; }
    .channel-card__icon {
      width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
      display: grid; place-items: center;
      background: var(--ch-icon-bg, rgba(201,161,91,.08));
      border: 1px solid var(--ch-icon-border, rgba(201,161,91,.16));
    }
    .channel-card__body { flex: 1; min-width: 0; }
    .channel-card__name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 1px; }
    .channel-card__handle { font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .channel-card__arrow { font-size: 14px; color: rgba(255,255,255,.2); transition: color .2s, transform .2s; flex-shrink: 0; }
    .channel-card:hover .channel-card__arrow { color: var(--accent); transform: translateX(3px); }

    .channel-card--wa  {
      --ch-color: #25d366; --ch-border: rgba(37,211,102,.25);
      --ch-bg: rgba(37,211,102,.04);
      --ch-icon-bg: rgba(37,211,102,.10); --ch-icon-border: rgba(37,211,102,.22);
    }
    .channel-card--ig  {
      --ch-color: #e1306c; --ch-border: rgba(225,48,108,.25);
      --ch-bg: rgba(225,48,108,.04);
      --ch-icon-bg: rgba(225,48,108,.10); --ch-icon-border: rgba(225,48,108,.22);
    }
    .channel-card--mail {
      --ch-color: #6495ed; --ch-border: rgba(100,149,237,.25);
      --ch-bg: rgba(100,149,237,.04);
      --ch-icon-bg: rgba(100,149,237,.10); --ch-icon-border: rgba(100,149,237,.22);
    }

    /* ═══════════════════════════════ FAB ═══════════════════════════════ */
    .fab {
      position: fixed; bottom: 24px; right: 24px; z-index: 200;
      display: flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px;
      background: #1a9e3f; color: #fff; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
      box-shadow: 0 8px 32px rgba(37,211,102,.35); border: none; cursor: pointer; transition: all .25s;
    }
    .fab:hover { background: #22b84a; transform: translateY(-2px); box-shadow: 0 14px 40px rgba(37,211,102,.45); }
    .fab__label { max-width: 160px; overflow: hidden; white-space: nowrap; }
    @media (max-width: 480px) {
      .fab__label { display: none; }
      .fab { width: 56px; height: 56px; padding: 0; border-radius: 50%; justify-content: center; }
    }

    /* ═══════════════════════════════ FOOTER ═══════════════════════════════ */
    footer { border-top: 1px solid var(--line); padding: 36px 0; }
    .footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
    .footer__brand { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
    .footer__copy { font-size: 13px; color: var(--muted); }
    .footer__links { display: flex; gap: 20px; }
    .footer__links a { font-size: 13px; color: var(--muted); transition: color .2s; }
    .footer__links a:hover { color: var(--text); }

    /* ═══════════════════════════════ RESPONSIVE ═══════════════════════════════ */
    @media (max-width: 900px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .about__grid    { grid-template-columns: 1fr; }
      .about__photo   { min-height: 300px; }
      .about__text    { border-top: 1px solid var(--line); }
      .prices__grid   { grid-template-columns: 1fr; }
      .schedule-grid { grid-template-columns: 1fr 1fr; }
      .contact-channels { grid-template-columns: 1fr; }
      .hero__scroll, .hero__lines { display: none; }
      .footer__inner  { flex-direction: column; align-items: flex-start; gap: 12px; }
    }
    @media (max-width: 700px) {
      .gallery-accordion {
        display: flex;
        flex-direction: row;
        height: 300px;
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        border-radius: var(--r);
        gap: 10px;
      }
      .gallery-accordion::-webkit-scrollbar { display: none; }
      .gallery-item,
      .gallery-item:hover,
      .gallery-item:focus,
      .gallery-item:focus-visible,
      .gallery-item:active {
        flex: none;
        width: 78vw;
        height: 100%;
        scroll-snap-align: center;
        border-radius: 14px;
        transition: none;
        transform: none;
        outline: none;
      }
      .gallery-item img,
      .gallery-item:hover img,
      .gallery-item:focus-visible img { filter: saturate(.9) brightness(.8); transition: none; transform: none; }
      .gallery-item__overlay {
        opacity: 1; transition: none;
        background: linear-gradient(0deg, rgba(8,11,14,.78) 0%, transparent 55%);
      }
      .lightbox__nav--prev { left: 10px; }
      .lightbox__nav--next { right: 10px; }
    }
    @media (max-width: 600px) {
      .hero__proof-sep { display: none; }
      .gallery__header { flex-direction: column; align-items: flex-start; }
      .schedule-grid { grid-template-columns: 1fr; }
      .contact-channels { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .gallery-accordion { width: 100vw; margin-left: calc(-4%); height: 270px; }
      .gallery-item,
      .gallery-item:hover,
      .gallery-item:focus,
      .gallery-item:focus-visible,
      .gallery-item:active { width: 82vw; }
    }