/* =========================================================
   VARIABLES
   ========================================================= */
    :root {
      --bg:            #0a0a0a;
      --bg-soft:       #141414;
      --bg-elevated:   #1c1c1c;
      --line:          #2a2a2a;
      --text:          #f5f1ea;       /* blanco roto principal */
      --text-muted:    #b8b3aa;
      --text-dim:      #7a766f;
      --accent:        #e8dfd0;       /* beige claro */
      --accent-warm:   #c9b48d;       /* beige tostado para detalles */
      --white:         #ffffff;

      --serif:  'Playfair Display', Georgia, serif;
      --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

      --radius-sm: 6px;
      --radius:    14px;
      --radius-lg: 24px;

      --container: 1240px;
      --section-padding: clamp(72px, 10vw, 140px);

      --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);

      --ease: cubic-bezier(0.22, 1, 0.36, 1);

      --bar-h: 42px;
    }

    /* =========================================================
       RESET / BASE
       ========================================================= */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      margin: 0;
      font-family: var(--sans);
      font-size: 17px;
      line-height: 1.65;
      color: var(--text);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

    h1, h2, h3, h4 {
      font-family: var(--serif);
      font-weight: 500;
      line-height: 1.1;
      margin: 0 0 0.5em;
      letter-spacing: -0.01em;
    }
    h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
    h2 { font-size: clamp(2rem, 4.2vw, 3.5rem); }
    h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
    p  { margin: 0 0 1em; color: var(--text-muted); }

    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 48px);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: var(--sans);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent-warm);
      margin-bottom: 18px;
    }
    .eyebrow::before {
      content: '';
      width: 28px; height: 1px;
      background: var(--accent-warm);
    }

    /* =========================================================
       BOTONES
       ========================================================= */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 18px 32px;
      border-radius: 999px;
      font-weight: 500;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      transition: transform 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--text);
      color: var(--bg);
    }
    .btn-primary:hover {
      background: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 16px 40px -12px rgba(245, 241, 234, 0.35);
    }
    .btn-outline {
      background: transparent;
      color: var(--text);
      border: 1px solid rgba(245, 241, 234, 0.35);
    }
    .btn-outline:hover {
      background: var(--text);
      color: var(--bg);
      border-color: var(--text);
      transform: translateY(-2px);
    }
    .btn-ghost {
      padding: 14px 0;
      color: var(--text);
      border-bottom: 1px solid var(--accent-warm);
      border-radius: 0;
    }
    .btn-ghost:hover { color: var(--accent-warm); }

    .btn svg { width: 18px; height: 18px; }

    /* =========================================================
       BARRA DE ESTADO (ABIERTO / CERRADO)
       ========================================================= */
    .announce {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 101;
      height: var(--bar-h);
      background: linear-gradient(90deg, rgba(232, 223, 208, 0.05), rgba(232, 223, 208, 0.10), rgba(232, 223, 208, 0.05));
      border-bottom: 1px solid rgba(232, 223, 208, 0.18);
      backdrop-filter: saturate(180%) blur(14px);
      -webkit-backdrop-filter: saturate(180%) blur(14px);
      transition: transform 0.45s var(--ease), opacity 0.35s var(--ease);
    }
    .announce.hide {
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
    }
    .announce-link {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      height: 100%;
      padding: 0 20px;
      font-size: 0.86rem;
      color: var(--text);
      letter-spacing: 0.01em;
      transition: color 0.25s var(--ease);
    }
    .announce-link:hover { color: var(--accent-warm); }
    .announce-link:hover .announce-cta { color: var(--accent-warm); }
    .announce-dot {
      width: 9px; height: 9px;
      border-radius: 50%;
      background: #a8e0b5;
      box-shadow: 0 0 12px rgba(168, 224, 181, 0.65);
      animation: pulse 2s infinite;
      flex-shrink: 0;
    }
    .announce.closed .announce-dot {
      background: #d99b9b;
      box-shadow: 0 0 12px rgba(217, 155, 155, 0.55);
    }
    .announce-text { font-weight: 500; }
    .announce-text strong { font-weight: 600; color: var(--text); }
    .announce-divider {
      width: 1px; height: 14px;
      background: rgba(232, 223, 208, 0.22);
    }
    .announce-cta {
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent-warm);
      transition: color 0.25s var(--ease);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .announce-cta::after {
      content: '→';
      transition: transform 0.3s var(--ease);
    }
    .announce-link:hover .announce-cta::after { transform: translateX(3px); }

    /* =========================================================
       NAV
       ========================================================= */
    .nav {
      position: fixed;
      top: var(--bar-h); left: 0; right: 0;
      z-index: 100;
      padding: 22px 0;
      transition: background 0.4s var(--ease), padding 0.3s var(--ease), border-color 0.3s var(--ease), top 0.45s var(--ease);
      border-bottom: 1px solid transparent;
    }
    .nav.scrolled {
      top: 0;
      background: rgba(10, 10, 10, 0.85);
      backdrop-filter: saturate(180%) blur(18px);
      -webkit-backdrop-filter: saturate(180%) blur(18px);
      padding: 14px 0;
      border-bottom-color: var(--line);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      min-width: 0;
    }
    .logo {
      font-family: var(--serif);
      font-size: 1.6rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--text);
      display: flex;
      align-items: baseline;
      gap: 6px;
    }
    .logo span { color: var(--accent-warm); font-style: italic; font-weight: 400; }

    /* Logo del nav con tipografía brush, inspirada en el rótulo real del salón */
    .nav .logo {
      font-family: 'Rock Salt', 'Caveat Brush', cursive;
      font-size: 1.4rem;
      font-weight: 400;
      letter-spacing: 0.01em;
      line-height: 1.05;
      gap: 12px;
      flex: 0 1 auto;
      min-width: 0;
      max-width: 100%;
    }
    .nav .logo-main,
    .nav .logo-sub {
      font-family: 'Rock Salt', 'Caveat Brush', cursive;
      font-style: normal;
      font-weight: 400;
      display: inline;
      color: var(--text);
    }
    .nav .logo-sub {
      font-size: 0.7em;
      opacity: 0.85;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
      padding: 0; margin: 0;
    }
    .nav-links a {
      font-size: 0.92rem;
      color: var(--text-muted);
      transition: color 0.25s var(--ease);
      position: relative;
      padding: 4px 0;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0; bottom: -2px;
      width: 0; height: 1px;
      background: var(--accent-warm);
      transition: width 0.35s var(--ease);
    }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
      margin-left: auto;
    }
    .nav-phone {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 12px 22px;
      border: 1px solid var(--accent-warm);
      border-radius: 999px;
      color: var(--text);
      font-size: 0.9rem;
      font-weight: 500;
      transition: background 0.3s var(--ease), color 0.3s var(--ease);
    }
    .nav-phone:hover { background: var(--accent-warm); color: var(--bg); }
    .nav-phone svg { width: 14px; height: 14px; }

    .nav-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid var(--accent-warm);
      color: var(--text);
      transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
      flex-shrink: 0;
    }
    .nav-icon:hover {
      background: var(--accent-warm);
      color: var(--bg);
    }
    .nav-icon svg { width: 16px; height: 16px; }

    .nav-burger {
      display: none;
      width: 42px; height: 42px;
      align-items: center; justify-content: center;
      border: 1px solid var(--line);
      border-radius: 50%;
    }
    .nav-burger span {
      width: 18px; height: 1.5px;
      background: var(--text);
      position: relative;
      transition: 0.3s var(--ease);
    }
    .nav-burger span::before,
    .nav-burger span::after {
      content: '';
      position: absolute; left: 0;
      width: 18px; height: 1.5px;
      background: var(--text);
      transition: 0.3s var(--ease);
    }
    .nav-burger span::before { top: -6px; }
    .nav-burger span::after  { top:  6px; }
    .nav.is-open .nav-burger span { background: transparent; }
    .nav.is-open .nav-burger span::before { top: 0; transform: rotate(45deg); }
    .nav.is-open .nav-burger span::after  { top: 0; transform: rotate(-45deg); }

    /* =========================================================
       HERO
       ========================================================= */
    .hero {
      position: relative;
      min-height: 100vh;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: calc(160px + var(--bar-h)) 0 60px;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-bg img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      filter: grayscale(1) contrast(1.1) brightness(0.85);
    }
    .hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.95) 100%),
        linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.35) 55%, rgba(10,10,10,0.15) 100%);
    }
    .hero .container {
      position: relative;
      z-index: 2;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .hero-content {
      max-width: 760px;
      margin-bottom: auto;
    }
    .hero h1 {
      margin-bottom: 28px;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--accent-warm);
      font-weight: 400;
    }
    .hero-lead {
      font-size: clamp(1.05rem, 1.4vw, 1.2rem);
      max-width: 560px;
      color: var(--text);
      opacity: 0.92;
      margin-bottom: 40px;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }
    .hero-meta {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 24px 40px;
      flex-wrap: wrap;
      padding-top: 60px;
    }
    .hero-meta-item {
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .hero-meta-item strong {
      display: block;
      font-family: var(--serif);
      font-style: italic;
      font-weight: 400;
      font-size: 1.4rem;
      letter-spacing: 0;
      text-transform: none;
      color: var(--text);
      margin-top: 6px;
    }
    .scroll-hint {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      font-size: 0.7rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .scroll-hint::after {
      content: '';
      width: 1px; height: 40px;
      background: linear-gradient(180deg, var(--accent-warm), transparent);
      animation: scrollLine 2.2s var(--ease) infinite;
    }
    @keyframes scrollLine {
      0%   { transform: scaleY(0); transform-origin: top; }
      40%  { transform: scaleY(1); transform-origin: top; }
      60%  { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* =========================================================
       FEATURES STRIP
       ========================================================= */
    .strip {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 32px 0;
    }
    .strip-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      align-items: center;
    }
    .strip-item {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 0.92rem;
      color: var(--text-muted);
    }
    .strip-item svg {
      width: 28px; height: 28px;
      color: var(--accent-warm);
      flex-shrink: 0;
    }
    .strip-item strong {
      display: block;
      color: var(--text);
      font-weight: 500;
      margin-bottom: 2px;
    }

    /* =========================================================
       SECCIÓN GENÉRICA
       ========================================================= */
    section { padding: var(--section-padding) 0; }
    .section-head {
      max-width: 720px;
      margin-bottom: 64px;
    }
    .section-head h2 em {
      font-style: italic;
      color: var(--accent-warm);
      font-weight: 400;
    }
    .section-head p {
      font-size: 1.1rem;
      max-width: 580px;
      color: var(--text-muted);
    }

    /* =========================================================
       ABOUT
       ========================================================= */
    .about {
      background: var(--bg);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: clamp(40px, 7vw, 100px);
      align-items: center;
    }
    .about-img {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 4 / 5;
      box-shadow: var(--shadow);
    }
    .about-img img { width: 100%; height: 100%; object-fit: cover; }
    .about-img::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.5));
    }
    .about-badge {
      position: absolute;
      right: -24px; bottom: 40px;
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px 28px;
      box-shadow: var(--shadow);
      max-width: 260px;
    }
    .about-badge .num {
      font-family: var(--serif);
      font-size: 2.6rem;
      color: var(--accent-warm);
      line-height: 1;
      display: block;
      margin-bottom: 8px;
    }
    .about-badge .lbl {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.5;
    }
    .about-text h2 { margin-bottom: 28px; }
    .about-text p  { font-size: 1.05rem; }
    .about-signature {
      margin-top: 36px;
      padding-left: 20px;
      border-left: 2px solid var(--accent-warm);
      font-family: var(--serif);
      font-style: italic;
      color: var(--accent-warm);
      font-size: 1.2rem;
      line-height: 1.5;
    }

    /* =========================================================
       SERVICIOS
       ========================================================= */
    .services {
      background: var(--bg-soft);
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .service {
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
    }
    .service:hover {
      transform: translateY(-4px);
      border-color: var(--accent-warm);
    }
    .service-media {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }
    .service-media img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 1.2s var(--ease);
    }
    .service:hover .service-media img { transform: scale(1.06); }
    .service-media::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.85));
    }
    .service-num {
      position: absolute;
      top: 20px; left: 24px;
      font-family: var(--serif);
      font-style: italic;
      color: var(--accent-warm);
      font-size: 0.95rem;
      z-index: 2;
    }
    .service-title {
      position: absolute;
      bottom: 24px; left: 28px; right: 28px;
      z-index: 2;
      font-family: var(--serif);
      font-size: 1.8rem;
      color: var(--text);
      margin: 0;
    }
    .service-body {
      padding: 28px 32px 32px;
    }
    .service-body > p {
      margin: 0 0 20px;
      font-size: 0.98rem;
    }
    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0 0 24px;
      padding: 0;
      list-style: none;
    }
    .service-tags li {
      font-size: 0.78rem;
      padding: 6px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--text-muted);
      letter-spacing: 0.04em;
    }

    .details {
      border-top: 1px solid var(--line);
      padding-top: 18px;
    }
    .details summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.88rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent-warm);
      padding: 4px 0;
      transition: color 0.25s var(--ease);
    }
    .details summary::-webkit-details-marker { display: none; }
    .details summary::after {
      content: '+';
      font-family: var(--serif);
      font-size: 1.6rem;
      line-height: 1;
      transition: transform 0.4s var(--ease);
    }
    .details[open] summary::after { transform: rotate(45deg); }
    .details summary:hover { color: var(--text); }

    .details-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 6px 28px;
      margin-top: 20px;
      padding-bottom: 6px;
    }
    .details-grid h4 {
      grid-column: 1 / -1;
      font-family: var(--sans);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin: 14px 0 6px;
    }
    .details-grid h4:first-child { margin-top: 0; }
    .details-grid ul {
      grid-column: 1 / -1;
      list-style: none;
      padding: 0; margin: 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 4px 28px;
    }
    .details-grid li {
      font-size: 0.93rem;
      color: var(--text-muted);
      padding: 4px 0 4px 18px;
      position: relative;
    }
    .details-grid li::before {
      content: '';
      position: absolute;
      left: 0; top: 14px;
      width: 8px; height: 1px;
      background: var(--accent-warm);
    }

    /* =========================================================
       INSTAGRAM
       ========================================================= */
    .instagram-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: 56px;
    }
    .instagram-head .section-head { margin-bottom: 0; }

    .ig-wrap {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--bg-soft);
      border: 1px solid var(--line);
      min-height: 460px;
    }
    .ig-wrap iframe {
      width: 100% !important;
      border: 0 !important;
      display: block;
    }

    .ig-wrap .lightwidget-widget {
      min-height: 460px;
    }

    /* =========================================================
       RESEÑAS
       ========================================================= */
    .testimonials {
      background: var(--bg);
    }
    .testimonials-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 32px 48px;
      flex-wrap: wrap;
      margin-bottom: 56px;
    }
    .testimonials-head .section-head { margin-bottom: 0; }

    .rating-summary {
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: flex-start;
      padding: 24px 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--bg-soft);
      min-width: 240px;
    }
    .rating-score {
      display: flex;
      align-items: baseline;
      gap: 12px;
    }
    .rating-score strong {
      font-family: var(--serif);
      font-size: 2.4rem;
      line-height: 1;
      color: var(--text);
      font-weight: 500;
    }
    .rating-stars {
      display: inline-flex;
      gap: 3px;
      color: var(--accent-warm);
    }
    .rating-stars svg { width: 16px; height: 16px; }
    .rating-source {
      font-size: 0.82rem;
      color: var(--text-muted);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .rating-source::before {
      content: '';
      display: inline-block;
      width: 14px; height: 14px;
      background: conic-gradient(from -45deg, #4285f4 0deg 90deg, #ea4335 90deg 180deg, #fbbc04 180deg 270deg, #34a853 270deg 360deg);
      border-radius: 50%;
      mask: radial-gradient(circle at center, transparent 25%, black 26%);
      -webkit-mask: radial-gradient(circle at center, transparent 25%, black 26%);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .testimonial {
      position: relative;
      background: var(--bg-soft);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 32px 30px 28px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
      overflow: hidden;
    }
    .testimonial:hover {
      transform: translateY(-3px);
      border-color: rgba(232, 223, 208, 0.35);
    }
    .testimonial::before {
      content: '“';
      position: absolute;
      top: -10px; right: 20px;
      font-family: var(--serif);
      font-size: 7rem;
      line-height: 1;
      color: var(--accent-warm);
      opacity: 0.12;
      pointer-events: none;
    }
    .testimonial-stars {
      display: flex;
      gap: 3px;
      color: var(--accent-warm);
    }
    .testimonial-stars svg { width: 16px; height: 16px; }
    .testimonial-text {
      flex: 1;
      font-family: var(--serif);
      font-size: 1.02rem;
      line-height: 1.55;
      color: var(--text);
      margin: 0;
      font-style: italic;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
      margin-top: auto;
    }
    .testimonial-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--accent-warm);
      color: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--serif);
      font-weight: 600;
      font-size: 0.92rem;
      letter-spacing: 0.04em;
      flex-shrink: 0;
    }
    .testimonial-meta {
      display: flex;
      flex-direction: column;
      gap: 2px;
      line-height: 1.3;
      min-width: 0;
    }
    .testimonial-name {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text);
    }
    .testimonial-source {
      font-size: 0.78rem;
      color: var(--text-dim);
    }

    .testimonials-cta {
      margin-top: 48px;
      display: flex;
      justify-content: center;
    }

    /* =========================================================
       HORARIOS
       ========================================================= */
    .schedule {
      background: var(--bg-soft);
    }
    .schedule-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: center;
    }
    .schedule-card {
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: clamp(32px, 4vw, 48px);
      box-shadow: var(--shadow);
    }
    .schedule-card h3 {
      font-size: 1.4rem;
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--line);
    }
    .schedule-list {
      list-style: none;
      padding: 0; margin: 0;
    }
    .schedule-list li {
      display: grid;
      grid-template-columns: 120px 1fr auto;
      align-items: center;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px dashed var(--line);
      font-size: 0.98rem;
    }
    .schedule-list li:last-child { border-bottom: none; }
    .schedule-day {
      font-family: var(--serif);
      font-size: 1.05rem;
      color: var(--text);
    }
    .schedule-hours {
      color: var(--text-muted);
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.02em;
    }
    .schedule-pill {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(232, 223, 208, 0.08);
      color: var(--accent-warm);
      border: 1px solid rgba(232, 223, 208, 0.18);
    }
    .schedule-pill.closed {
      background: rgba(255, 100, 100, 0.06);
      color: #d99b9b;
      border-color: rgba(255, 100, 100, 0.18);
    }
    .schedule-pill.open-now {
      background: rgba(155, 220, 165, 0.08);
      color: #a8e0b5;
      border-color: rgba(155, 220, 165, 0.25);
    }

    .schedule-text h2 em {
      font-style: italic;
      color: var(--accent-warm);
      font-weight: 400;
    }
    .schedule-status {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 12px 20px;
      border-radius: 999px;
      background: var(--bg);
      border: 1px solid var(--line);
      font-size: 0.9rem;
      margin-top: 20px;
    }
    .schedule-status .dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: #a8e0b5;
      box-shadow: 0 0 12px rgba(168, 224, 181, 0.6);
      animation: pulse 2s infinite;
    }
    .schedule-status.closed .dot { background: #d99b9b; box-shadow: 0 0 12px rgba(217,155,155,0.5); }
    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50%      { transform: scale(1.25); opacity: 0.7; }
    }

    /* =========================================================
       LOCATION / MAPA
       ========================================================= */
    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 40px;
    }
    .location-info {
      background: var(--bg-soft);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: clamp(32px, 4vw, 48px);
    }
    .location-info h3 {
      font-size: 1.6rem;
      margin-bottom: 8px;
    }
    .location-address {
      font-size: 1.05rem;
      color: var(--text);
      margin: 0 0 8px;
      font-family: var(--serif);
      font-style: italic;
    }
    .location-postal {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin: 0 0 28px;
    }
    .transport {
      list-style: none;
      padding: 0; margin: 0 0 28px;
      display: grid;
      gap: 14px;
    }
    .transport li {
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 14px;
      align-items: start;
      padding: 14px 0;
      border-top: 1px solid var(--line);
      font-size: 0.92rem;
      color: var(--text-muted);
    }
    .transport li:last-child { border-bottom: 1px solid var(--line); }
    .transport-icon {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(232, 223, 208, 0.06);
      display: flex; align-items: center; justify-content: center;
      color: var(--accent-warm);
    }
    .transport-icon svg { width: 16px; height: 16px; }
    .transport strong {
      display: block;
      color: var(--text);
      font-weight: 500;
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      margin-bottom: 2px;
    }
    .map-wrap {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      min-height: 480px;
      border: 1px solid var(--line);
    }
    .map-wrap iframe {
      width: 100%; height: 100%;
      min-height: 480px;
      border: 0;
      filter: grayscale(0.4) contrast(1.05);
    }

    /* =========================================================
       CTA FINAL
       ========================================================= */
    .cta-final {
      text-align: center;
      padding: clamp(80px, 12vw, 160px) 0;
      background: var(--bg-soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      position: relative;
      overflow: hidden;
    }
    .cta-final::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(201, 180, 141, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-final .container { position: relative; }
    .cta-final h2 {
      font-size: clamp(2.2rem, 5vw, 4rem);
      margin-bottom: 24px;
    }
    .cta-final h2 em {
      font-style: italic;
      color: var(--accent-warm);
      font-weight: 400;
    }
    .cta-final p {
      max-width: 540px;
      margin: 0 auto 40px;
      font-size: 1.05rem;
    }
    .cta-phone {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      padding: 22px 40px;
      background: var(--text);
      color: var(--bg);
      border-radius: 999px;
      font-family: var(--serif);
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 500;
      letter-spacing: 0.02em;
      transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
      box-shadow: 0 30px 60px -20px rgba(245, 241, 234, 0.25);
    }
    .cta-phone:hover {
      transform: translateY(-4px);
      box-shadow: 0 40px 80px -20px rgba(245, 241, 234, 0.4);
    }
    .cta-phone svg {
      width: 26px; height: 26px;
      color: var(--accent-warm);
    }

    /* =========================================================
       FOOTER
       ========================================================= */
    footer {
      padding: 80px 0 32px;
      background: var(--bg);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 60px;
      border-bottom: 1px solid var(--line);
    }
    .footer-brand .logo {
      margin-bottom: 20px;
    }
    .footer-brand p {
      font-size: 0.92rem;
      color: var(--text-dim);
      max-width: 280px;
    }
    footer h4 {
      font-family: var(--sans);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent-warm);
      margin: 0 0 18px;
    }
    footer ul {
      list-style: none;
      padding: 0; margin: 0;
      display: grid;
      gap: 10px;
    }
    footer ul li {
      font-size: 0.92rem;
      color: var(--text-muted);
    }
    footer ul a {
      font-size: 0.92rem;
      color: var(--text-muted);
      transition: color 0.25s var(--ease);
    }
    footer ul a:hover { color: var(--text); }
    .footer-bottom {
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 0.82rem;
      color: var(--text-dim);
    }
    .socials {
      display: flex;
      gap: 12px;
    }
    .socials a {
      width: 42px; height: 42px;
      border: 1px solid var(--line);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
      color: var(--text-muted);
    }
    .socials a:hover { background: var(--accent-warm); color: var(--bg); border-color: var(--accent-warm); }
    .socials svg { width: 16px; height: 16px; }

    /* =========================================================
       BOTÓN FLOTANTE
       ========================================================= */
    .float-call {
      position: fixed;
      right: 20px; bottom: 20px;
      z-index: 90;
      background: var(--text);
      color: var(--bg);
      width: 64px; height: 64px;
      border-radius: 50%;
      display: none;
      align-items: center;
      justify-content: center;
      box-shadow: 0 20px 40px -8px rgba(0,0,0,0.6), 0 0 0 6px rgba(245, 241, 234, 0.08);
      transition: transform 0.3s var(--ease);
    }
    .float-call:hover { transform: scale(1.08); }
    .float-call svg { width: 24px; height: 24px; }

    /* =========================================================
       ANIMACIONES DE ENTRADA
       ========================================================= */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    }
    .reveal.in {
      opacity: 1;
      transform: none;
    }

    /* =========================================================
       RESPONSIVE
       ========================================================= */
    @media (max-width: 1100px) {
      .nav-links { display: none; }
      .nav-inner > nav { display: none; }
      .nav-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
      }
      .nav .logo {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        align-content: center;
        justify-self: start;
        font-size: 0.92rem;
        line-height: 1;
        gap: 0;
        letter-spacing: -0.02em;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
      }
      .nav .logo-main,
      .nav .logo-sub {
        display: block;
        line-height: 1.05;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .nav .logo-sub {
        font-size: 0.56em;
        margin-top: 2px;
        opacity: 0.82;
        transform: none;
      }
      .nav-cta {
        gap: 8px;
        margin-left: 0;
        justify-self: end;
      }
      .nav-cta .nav-phone span { display: none; }
      .nav-cta .nav-phone { padding: 12px; }
      .nav-icon,
      .nav-phone {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
      }
    }

    @media (max-width: 1024px) {
      .strip-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
      .about-grid,
      .schedule-grid,
      .location-grid { grid-template-columns: 1fr; }
      .about-img { max-width: 520px; }
      .about-badge { right: auto; left: 20px; bottom: -32px; }
      .map-wrap { min-height: 380px; }
      .map-wrap iframe { min-height: 380px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .instagram-head { align-items: start; }
      .testimonials-head { align-items: start; }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-meta { gap: 24px; padding-top: 40px; }
    }

    @media (max-width: 720px) {
      :root { --section-padding: 70px; }
      .nav .logo { font-size: 0.84rem; }
      .nav-icon,
      .nav-phone {
        width: 38px;
        height: 38px;
      }
      .hero {
        min-height: auto;
        padding-top: calc(50vw + 80px + var(--bar-h));
        padding-bottom: 50px;
      }
      /* En móvil la foto deja de ser fondo completo y pasa a banner superior
         con proporción 4:3 (recorte vertical) para que el cartel CARTIEL
         se vea más grande y centrado. El contenido del hero arranca solapando
         el tercio inferior del banner, donde un degradado fuerte a negro lo
         integra visualmente con el cuerpo oscuro del hero. */
      .hero-bg {
        top: calc(80px + var(--bar-h));
        bottom: auto;
        height: auto;
        aspect-ratio: 4 / 3;
      }
      .hero-bg img {
        filter: grayscale(1) contrast(1.05) brightness(1);
      }
      .hero-bg::after {
        background: linear-gradient(180deg,
          rgba(10,10,10,0) 0%,
          rgba(10,10,10,0.05) 40%,
          rgba(10,10,10,0.55) 60%,
          rgba(10,10,10,0.92) 80%,
          rgba(10,10,10,1) 100%);
      }
      .announce-link { font-size: 0.78rem; gap: 10px; padding: 0 14px; }
      .announce-divider { display: none; }
      .announce-cta { display: none; }
      .hero-meta {
        padding-top: 32px;
        gap: 16px 24px;
      }
      .hero-meta-item { font-size: 0.7rem; }
      .hero-meta-item strong { font-size: 1.05rem; }
      .scroll-hint { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .schedule-list li {
        grid-template-columns: 90px 1fr;
        grid-template-rows: auto auto;
      }
      .schedule-list li .schedule-pill {
        grid-column: 2;
        justify-self: start;
      }
      .schedule-list li .schedule-hours { grid-column: 2; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .rating-summary { min-width: 0; width: 100%; }
      .float-call { display: flex; }
      .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .details-grid ul { grid-template-columns: 1fr; }
      .cta-phone { padding: 18px 28px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
      .reveal { opacity: 1; transform: none; }
    }
