
    /* ============================================
       DESIGN SYSTEM — Hotel Al-Ándalus Peal 2026
       Aesthetic: Organic Luxury · Editorial Nature
       ============================================ */
    :root {
      /* Palette */
      --olive-900: #1B4332;
      --olive-800: #2D6A4F;
      --olive-700: #40916C;
      --olive-600: #52B788;
      --olive-100: #D8F3DC;
      --olive-50:  #F0FFF4;

      --amber-500: #D4A843;
      --amber-400: #E8C468;
      --amber-300: #F2D98B;
      --amber-100: #FDF6E3;

      --cream:     #FAF6F0;
      --cream-dark:#F0EBE3;
      --stone-900: #1C1917;
      --stone-700: #44403C;
      --stone-500: #78716C;
      --stone-300: #D6D3D1;
      --stone-100: #F5F5F4;

      --white:     #FFFFFF;

      /* Typography */
      --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
      --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

      /* Spacing */
      --space-xs: 0.25rem;
      --space-sm: 0.5rem;
      --space-md: 1rem;
      --space-lg: 1.5rem;
      --space-xl: 2rem;
      --space-2xl: 3rem;
      --space-3xl: 4rem;
      --space-4xl: 6rem;

      /* Radii */
      --radius-sm: 0.5rem;
      --radius-md: 0.75rem;
      --radius-lg: 1rem;
      --radius-xl: 1.5rem;
      --radius-full: 9999px;

      /* Shadows */
      --shadow-sm:  0 1px 3px rgba(27,67,50,.06), 0 1px 2px rgba(27,67,50,.04);
      --shadow-md:  0 4px 16px rgba(27,67,50,.08);
      --shadow-lg:  0 12px 40px rgba(27,67,50,.12);
      --shadow-xl:  0 20px 60px rgba(27,67,50,.16);

      /* Transitions */
      --ease-out: cubic-bezier(.22, 1, .36, 1);
      --duration: 0.4s;
    }

    /* Reset & Base */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: var(--font-body);
      color: var(--stone-700);
      background: var(--cream);
      line-height: 1.7;
      font-weight: 400;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--olive-800); text-decoration: none; transition: color var(--duration) var(--ease-out); }
    a:hover { color: var(--olive-900); }
    [id] { scroll-margin-top: 80px; }

    /* Skip link */
    .skip-link {
      position: absolute; left: -9999px; top: auto;
      background: var(--white); color: var(--stone-900);
      padding: var(--space-sm) var(--space-md);
      border-radius: var(--radius-sm);
      z-index: 10000;
    }
    .skip-link:focus { left: 8px; top: 8px; box-shadow: var(--shadow-lg); }

    /* Focus */
    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
      outline: 2px solid var(--olive-700);
      outline-offset: 3px;
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* ============ NAVIGATION ============ */
    .nav-wrap {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000;
      transition: all 0.5s var(--ease-out);
    }
    .nav-wrap.scrolled {
      background: rgba(250,246,240,.92);
      backdrop-filter: blur(20px) saturate(1.4);
      -webkit-backdrop-filter: blur(20px) saturate(1.4);
      box-shadow: 0 1px 0 rgba(27,67,50,.08);
    }
    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: var(--space-md) var(--space-xl);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-lg);
    }
    .nav-brand {
      display: flex; align-items: center; gap: var(--space-sm);
      text-decoration: none; color: var(--stone-900);
      flex-shrink: 0;
    }
    .nav-brand img {
      height: 44px; width: auto;
      filter: drop-shadow(0 1px 2px rgba(0,0,0,.1));
    }
    .nav-brand-text {
      font-family: var(--font-display);
      font-size: 1.15rem;
      letter-spacing: -0.01em;
      color: var(--olive-900);
    }
    .nav-badge {
      display: inline-flex; align-items: center; justify-content: center;
      width: 28px; height: 28px;
      background: var(--amber-500);
      color: var(--white);
      font-size: 0.7rem; font-weight: 700;
      border-radius: var(--radius-full);
      line-height: 1;
    }
    .nav-links {
      display: none;
      list-style: none;
      gap: var(--space-xs);
      align-items: center;
    }
    .nav-links a {
      display: block;
      padding: var(--space-sm) var(--space-md);
      color: var(--stone-700);
      font-size: 0.9rem;
      font-weight: 500;
      border-radius: var(--radius-sm);
      transition: all 0.3s var(--ease-out);
      white-space: nowrap;
    }
    .nav-links a:hover {
      color: var(--olive-900);
      background: var(--olive-50);
    }
    .nav-actions {
      display: flex; align-items: center; gap: var(--space-sm);
    }
    .btn-cta {
      display: inline-flex; align-items: center; gap: var(--space-xs);
      padding: 0.6rem 1.25rem;
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 600;
      border: none;
      border-radius: var(--radius-full);
      cursor: pointer;
      transition: all 0.3s var(--ease-out);
      text-decoration: none;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--olive-900);
      color: var(--white);
    }
    .btn-primary:hover {
      background: var(--olive-800);
      color: var(--white);
      transform: translateY(-1px);
      box-shadow: var(--shadow-md);
    }
    .btn-outline {
      background: transparent;
      color: var(--stone-700);
      border: 1.5px solid var(--stone-300);
    }
    .btn-outline:hover {
      border-color: var(--olive-700);
      color: var(--olive-900);
    }
    .btn-whatsapp {
      background: #25D366;
      color: var(--white);
    }
    .btn-whatsapp:hover {
      background: #20BD5A;
      color: var(--white);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(37,211,102,.3);
    }
    .btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
    .btn-sm { padding: 0.45rem 0.9rem; font-size: 0.82rem; }
    .nav-phone {
      display: none;
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--stone-700);
    }

    /* Hamburger */
    .nav-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: var(--space-sm);
    }
    .nav-toggle span {
      display: block; width: 22px; height: 2px;
      background: var(--stone-900);
      border-radius: 2px;
      transition: all 0.3s var(--ease-out);
    }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Mobile menu */
    .mobile-menu {
      position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(250,246,240,.98);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: var(--space-md);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s var(--ease-out);
    }
    .mobile-menu.open { opacity: 1; pointer-events: auto; }
    .mobile-menu a {
      font-family: var(--font-display);
      font-size: 1.6rem;
      color: var(--stone-900);
      padding: var(--space-sm) var(--space-lg);
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.4s var(--ease-out);
    }
    .mobile-menu.open a {
      transform: translateY(0);
      opacity: 1;
    }
    .mobile-menu.open a:nth-child(1) { transition-delay: .05s; }
    .mobile-menu.open a:nth-child(2) { transition-delay: .1s; }
    .mobile-menu.open a:nth-child(3) { transition-delay: .15s; }
    .mobile-menu.open a:nth-child(4) { transition-delay: .2s; }
    .mobile-menu.open a:nth-child(5) { transition-delay: .25s; }
    .mobile-menu.open a:nth-child(6) { transition-delay: .3s; }

    @media (min-width: 960px) {
      .nav-links { display: flex; }
      .nav-toggle { display: none; }
      .nav-phone { display: flex; align-items: center; gap: 6px; }
      .nav-mobile-only { display: none !important; }
    }
    @media (max-width: 959px) {
      .nav-desktop-only { display: none !important; }
      .nav-mobile-only { display: inline-flex !important; }
    }

    /* ============ MÓVIL: SOLO 1 ENLACE FIJO DE WHATSAPP ============
       En teléfono dejamos WhatsApp únicamente en la barra inferior fija (.mobile-cta).
       - Ocultamos el botón WA del header en móvil/tablet.
       - Ocultamos el FAB en teléfono para evitar duplicidad con la barra inferior.
    */
    @media (max-width: 959px) {
      .nav-mobile-only.btn-whatsapp { display: none !important; }
    }
    @media (max-width: 768px) {
      .wa-fab { display: none !important; }
    }

    /* Dropdown */
    .nav-dropdown { position: relative; }
    .nav-dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 200px;
      background: var(--white);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(27,67,50,.08);
      padding: var(--space-sm) 0;
      list-style: none;
      z-index: 1001;
      margin: 0;
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
    .nav-dropdown-menu a {
      display: block;
      padding: var(--space-sm) var(--space-lg);
      font-size: 0.88rem;
      font-weight: 400;
      color: var(--stone-700);
      border-radius: 0;
    }
    .nav-dropdown-menu a:hover {
      background: var(--olive-50);
      color: var(--olive-900);
    }

    /* Pet band offset — sits above the fixed nav */
    .pet-band {
      position: relative;
      z-index: 1001;
    }

    /* ============ HERO ============ */
    .hero {
      position: relative;
      min-height: 100vh;
      min-height: 100svh;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      background: var(--olive-900);
    }
    .hero-bg {
      position: absolute; inset: 0;
      /* Rutas relativas desde /assets/css -> /assets/img */
      background: url('../img/rooms-w1280.webp') center/cover no-repeat;
      filter: brightness(.55) saturate(1.1);
      transform: scale(1.05);
      transition: transform 8s linear;
    }

    /* HERO Home (index) */
    .hero.hero--home .hero-bg {
      background-image: url('../img/hero-matrimonio-304-w768.webp');
    }
    @media (min-width: 768px) {
      .hero.hero--home .hero-bg { background-image: url('../img/hero-matrimonio-304-w1200.webp'); }
    }
    @media (min-width: 1200px) {
      .hero.hero--home .hero-bg { background-image: url('../img/hero-matrimonio-304-w1536.webp'); }
    }
    .hero:hover .hero-bg { transform: scale(1); }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        to top,
        rgba(27,67,50,.85) 0%,
        rgba(27,67,50,.4) 40%,
        rgba(27,67,50,.1) 70%,
        transparent 100%
      );
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: var(--space-4xl) var(--space-xl) var(--space-3xl);
      width: 100%;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: var(--space-sm);
      padding: 0.4rem 1rem;
      background: rgba(255,255,255,.12);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: var(--radius-full);
      color: rgba(255,255,255,.9);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      margin-bottom: var(--space-lg);
    }
    .hero-eyebrow .dot {
      width: 5px; height: 5px;
      background: var(--amber-400);
      border-radius: var(--radius-full);
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5vw, 4rem);
      line-height: 1.12;
      color: var(--white);
      max-width: 720px;
      margin-bottom: var(--space-lg);
      letter-spacing: -0.02em;
    }
    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: rgba(255,255,255,.85);
      max-width: 560px;
      margin-bottom: var(--space-2xl);
      line-height: 1.7;
    }
    .hero-actions {
      display: flex;
      gap: var(--space-md);
      flex-wrap: wrap;
      margin-bottom: var(--space-2xl);
    }
    .hero .btn-primary {
      background: var(--amber-500);
      color: var(--stone-900);
      font-weight: 700;
    }
    .hero .btn-primary:hover {
      background: var(--amber-400);
      color: var(--stone-900);
      box-shadow: 0 8px 30px rgba(212,168,67,.35);
    }
    .hero .btn-outline {
      border-color: rgba(255,255,255,.35);
      color: var(--white);
    }
    .hero .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255,255,255,.08);
      color: var(--white);
    }

    /* Availability Card */
    .avail-card {
      max-width: 780px;
      background: rgba(255,255,255,.1);
      backdrop-filter: blur(20px) saturate(1.3);
      -webkit-backdrop-filter: blur(20px) saturate(1.3);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: var(--radius-xl);
      padding: var(--space-lg);
    }
    .avail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr auto;
      gap: var(--space-md);
      align-items: end;
    }
    .avail-field { display: flex; flex-direction: column; gap: 6px; }
    .avail-label {
      font-size: 0.78rem;
      font-weight: 600;
      color: rgba(255,255,255,.7);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .avail-card input,
    .avail-card select {
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: var(--radius-md);
      padding: 0.7rem 0.9rem;
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.9rem;
      transition: all 0.3s var(--ease-out);
    }
    .avail-card input:focus,
    .avail-card select:focus {
      outline: none;
      border-color: var(--amber-400);
      background: rgba(255,255,255,.18);
      box-shadow: 0 0 0 3px rgba(212,168,67,.2);
    }
    .avail-card input::-webkit-calendar-picker-indicator { filter: invert(1); }
    .avail-card select option { color: var(--stone-900); background: var(--white); }
    .avail-note {
      margin-top: var(--space-md);
      font-size: 0.85rem;
      color: rgba(255,255,255,.7);
    }
    .avail-note a { color: var(--amber-300); }
    @media (max-width: 768px) {
      .avail-grid { grid-template-columns: 1fr 1fr; }
      .avail-submit { grid-column: 1 / -1; }
    }

    /* ============ SECTIONS ============ */
    .section {
      padding: var(--space-4xl) var(--space-xl);
    }
    .section-inner {
      max-width: 1280px;
      margin: 0 auto;
    }
    .section-header {
      text-align: center;
      margin-bottom: var(--space-3xl);
    }
    .section-label {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--olive-700);
      margin-bottom: var(--space-sm);
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: var(--stone-900);
      letter-spacing: -0.02em;
      line-height: 1.2;
    }
    .section-subtitle {
      font-size: 1.05rem;
      color: var(--stone-500);
      max-width: 560px;
      margin: var(--space-md) auto 0;
      line-height: 1.7;
    }

    /* ============ FEATURES (Bento Grid) ============ */
    .bento-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-lg);
    }
    .bento-card {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: var(--space-2xl);
      border: 1px solid rgba(27,67,50,.06);
      transition: all 0.5s var(--ease-out);
      position: relative;
      overflow: hidden;
    }
    .bento-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 3px;
      background: linear-gradient(90deg, var(--olive-700), var(--amber-500));
      opacity: 0;
      transition: opacity 0.4s var(--ease-out);
    }
    .bento-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }
    .bento-card:hover::before { opacity: 1; }
    .bento-icon {
      width: 52px; height: 52px;
      display: flex; align-items: center; justify-content: center;
      background: var(--olive-50);
      border-radius: var(--radius-md);
      font-size: 1.5rem;
      margin-bottom: var(--space-lg);
      transition: all 0.4s var(--ease-out);
    }
    .bento-card:hover .bento-icon {
      background: var(--olive-900);
      color: var(--white);
      transform: scale(1.05);
    }
    .bento-card h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      color: var(--stone-900);
      margin-bottom: var(--space-sm);
    }
    .bento-card p {
      font-size: 0.92rem;
      color: var(--stone-500);
      line-height: 1.65;
    }
    @media (max-width: 768px) {
      .bento-grid { grid-template-columns: 1fr; }
    }
    @media (min-width: 769px) and (max-width: 1024px) {
      .bento-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ============ ROOMS ============ */
    .rooms-showcase {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: var(--space-2xl);
      align-items: center;
    }
    .rooms-image {
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4/3;
      position: relative;
    }
    .rooms-image img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.8s var(--ease-out);
    }
    .rooms-image:hover img { transform: scale(1.04); }
    .rooms-text h2 {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      color: var(--stone-900);
      margin-bottom: var(--space-md);
      letter-spacing: -0.02em;
    }
    .rooms-text p {
      font-size: 1rem;
      color: var(--stone-500);
      margin-bottom: var(--space-lg);
      line-height: 1.75;
    }
    .rooms-features {
      display: flex; flex-wrap: wrap; gap: var(--space-sm);
      margin-bottom: var(--space-xl);
    }
    .room-chip {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 0.4rem 0.85rem;
      background: var(--olive-50);
      border: 1px solid var(--olive-100);
      border-radius: var(--radius-full);
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--olive-800);
    }
    @media (max-width: 768px) {
      .rooms-showcase { grid-template-columns: 1fr; }
    }

    /* ============ EXPERIENCES ============ */
    .exp-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-lg);
    }
    .exp-card {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 3/4;
      cursor: pointer;
      text-decoration: none;
    }
    .exp-card img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease-out);
    }
    .exp-card:hover img { transform: scale(1.08); }
    .exp-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
      transition: all 0.4s var(--ease-out);
    }
    .exp-card:hover .exp-card-overlay {
      background: linear-gradient(to top, rgba(27,67,50,.85) 0%, rgba(27,67,50,.2) 60%);
    }
    .exp-card-content {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: var(--space-xl);
      color: var(--white);
    }
    .exp-card h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      margin-bottom: var(--space-xs);
    }
    .exp-card p {
      font-size: 0.85rem;
      opacity: .8;
      line-height: 1.5;
    }
    @media (max-width: 768px) {
      .exp-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .exp-grid { grid-template-columns: 1fr; }
      .exp-card { aspect-ratio: 16/9; }
    }

    /* ============ REVIEWS ============ */
    .reviews-bg { background: var(--olive-900); color: var(--white); }
    .reviews-bg .section-label { color: var(--amber-400); }
    .reviews-bg .section-title { color: var(--white); }
    .reviews-bg .section-subtitle { color: rgba(255,255,255,.7); }
    .review-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-lg);
    }
    .review-card {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius-xl);
      padding: var(--space-xl);
      transition: all 0.4s var(--ease-out);
    }
    .review-card:hover {
      background: rgba(255,255,255,.12);
      transform: translateY(-2px);
    }
    .review-stars {
      display: flex; gap: 2px;
      margin-bottom: var(--space-md);
      color: var(--amber-400);
      font-size: 1rem;
    }
    .review-text {
      font-size: 0.95rem;
      line-height: 1.7;
      color: rgba(255,255,255,.85);
      margin-bottom: var(--space-lg);
      font-style: italic;
    }
    .review-author {
      display: flex; align-items: center; gap: var(--space-sm);
    }
    .review-avatar {
      width: 36px; height: 36px;
      border-radius: var(--radius-full);
      background: var(--olive-700);
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 0.85rem; color: var(--white);
    }
    .review-name { font-weight: 600; font-size: 0.88rem; }
    .review-source { font-size: 0.78rem; color: rgba(255,255,255,.5); }
    .review-big-score {
      text-align: center;
      margin-bottom: var(--space-2xl);
    }
    .review-big-number {
      font-family: var(--font-display);
      font-size: 4.5rem;
      color: var(--amber-400);
      line-height: 1;
    }
    .review-big-label {
      font-size: 0.9rem;
      color: rgba(255,255,255,.6);
      margin-top: var(--space-sm);
    }
    @media (max-width: 768px) {
      .review-cards { grid-template-columns: 1fr; }
    }

    /* ============ FAQ ============ */
    .faq-list {
      max-width: 800px;
      margin: 0 auto;
    }
    .faq-item {
      border-bottom: 1px solid var(--stone-300);
    }
    .faq-btn {
      width: 100%;
      display: flex; align-items: center; justify-content: space-between;
      padding: var(--space-lg) 0;
      background: none; border: none;
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--stone-900);
      cursor: pointer;
      text-align: left;
      gap: var(--space-md);
    }
    .faq-btn::after {
      content: '+';
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--olive-700);
      transition: transform 0.3s var(--ease-out);
      flex-shrink: 0;
    }
    .faq-btn[aria-expanded="true"]::after {
      content: '−';
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
    }
    .faq-answer.open {
      max-height: 300px;
      padding-bottom: var(--space-lg);
    }
    .faq-answer p {
      font-size: 0.95rem;
      color: var(--stone-500);
      line-height: 1.75;
    }

    /* ============ SELLOS ============ */
    .sellos-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: var(--space-xl);
      align-items: center;
    }
    .sello-item {
      flex: 0 0 auto;
      padding: var(--space-md);
      background: var(--white);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(27,67,50,.06);
      transition: all 0.3s var(--ease-out);
      width: 240px;
      text-align: center;
    }
    .sello-item:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    .sello-item img {
      display: block;
      height: 70px;           /* reserva espacio y reduce CLS */
      width: 210px;           /* ancho estable */
      max-width: 210px;
      margin: 0 auto;
      object-fit: contain;
    }
    @media (max-width: 480px) {
      .sello-item img {
        height: 60px;
        width: 180px;
        max-width: 180px;
      }
    }

    /* Sello Oleoturismo Jaén: el recurso aportado es blanco/transparente y en fondo claro se pierde.
       Le damos una placa oscura SOLO a ese sello para que sea legible sin alterar el resto. */
    .sello-item--oleo-jaen img {
      display: block;
      background: #0b0b0b;
      padding: 10px 12px;
      border-radius: 14px;
      max-width: 220px;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
    }
    .sello-item figcaption {
      font-size: 0.72rem;
      color: var(--stone-500);
      margin-top: var(--space-sm);
      max-width: 140px;
    }

    /* ============ CTA Ribbon ============ */
    .cta-ribbon {
      background: linear-gradient(135deg, var(--amber-500), var(--amber-300));
      padding: var(--space-3xl) var(--space-xl);
      text-align: center;
    }
    .cta-ribbon h2 {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      color: var(--stone-900);
      margin-bottom: var(--space-md);
    }
    .cta-ribbon p {
      font-size: 1.05rem;
      color: var(--stone-700);
      margin-bottom: var(--space-xl);
      max-width: 500px;
      margin-left: auto; margin-right: auto;
    }
    .cta-ribbon .btn-primary {
      background: var(--olive-900);
      font-size: 1rem;
      padding: 0.85rem 2rem;
    }

    /* ============ FOOTER ============ */
    .site-footer {
      background: var(--stone-900);
      color: rgba(255,255,255,.75);
      padding: var(--space-4xl) var(--space-xl) var(--space-xl);
    }
    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: var(--space-3xl);
      margin-bottom: var(--space-3xl);
    }
    .footer-brand-title {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: var(--white);
      margin-bottom: var(--space-sm);
    }
    .footer-desc {
      font-size: 0.9rem;
      line-height: 1.7;
      margin-bottom: var(--space-lg);
    }
    .footer-socials {
      display: flex; gap: var(--space-sm);
    }
    .social-link {
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      border-radius: var(--radius-full);
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.7);
      font-size: 1rem;
      transition: all 0.3s var(--ease-out);
      text-decoration: none;
    }
    .social-link:hover {
      background: var(--olive-700);
      color: var(--white);
      transform: translateY(-2px);
    }
    .footer-heading {
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--white);
      margin-bottom: var(--space-lg);
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: var(--space-sm); }
    .footer-links a {
      font-size: 0.88rem;
      color: rgba(255,255,255,.6);
      transition: color 0.3s var(--ease-out);
    }
    .footer-links a:hover { color: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: var(--space-xl);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: var(--space-md);
      font-size: 0.82rem;
      color: rgba(255,255,255,.4);
    }
    .footer-bottom a { color: rgba(255,255,255,.5); }
    .footer-bottom a:hover { color: var(--white); }
    .footer-seo-links {
      display: flex; flex-wrap: wrap; gap: var(--space-sm);
      margin-top: var(--space-md);
      font-size: 0.78rem;
    }
    .footer-seo-links a {
      color: rgba(255,255,255,.35);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .footer-seo-links a:hover { color: rgba(255,255,255,.6); }
    @media (max-width: 768px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
    }
    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; }
    }

    /* ============ MOBILE CTA BAR ============ */
    .mobile-cta {
      position: fixed; left: 0; right: 0; bottom: 0;
      z-index: 1050;
      display: flex; gap: var(--space-sm);
      padding: var(--space-sm) var(--space-md);
      background: rgba(28,25,23,.95);
      backdrop-filter: blur(12px);
      box-shadow: 0 -8px 24px rgba(0,0,0,.2);
    }
    .mobile-cta a {
      flex: 1;
      text-align: center;
      padding: 0.7rem;
      border-radius: var(--radius-md);
      font-weight: 600;
      font-size: 0.9rem;
    }
    @media (min-width: 769px) { .mobile-cta { display: none; } }
    @media (max-width: 768px) { body { padding-bottom: 68px; } }

    /* ============ WHATSAPP FAB ============ */
    .wa-fab {
      position: fixed;
      left: 16px; bottom: 84px;
      z-index: 1060;
      width: 56px; height: 56px;
      display: flex; align-items: center; justify-content: center;
      background: #25D366;
      border-radius: var(--radius-full);
      box-shadow: 0 4px 16px rgba(37,211,102,.35);
      transition: all 0.3s var(--ease-out);
    }
    .wa-fab:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 24px rgba(37,211,102,.45);
    }
    .wa-fab svg { width: 28px; height: 28px; fill: var(--white); }
    @media (min-width: 769px) { .wa-fab { bottom: 24px; } }

    /* ============ COOKIE BANNER ============ */
    .cookie-banner {
      position: fixed;
      left: 50%; bottom: var(--space-md);
      transform: translateX(-50%);
      width: min(calc(100% - 2rem), 640px);
      z-index: 1080;
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: var(--space-xl);
      box-shadow: var(--shadow-xl);
      border: 1px solid rgba(27,67,50,.06);
      display: none;
    }
    .cookie-banner.show { display: block; }
    .cookie-banner h6 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: var(--stone-900);
      margin-bottom: var(--space-sm);
    }
    .cookie-banner p {
      font-size: 0.88rem;
      color: var(--stone-500);
      margin-bottom: var(--space-md);
      line-height: 1.6;
    }
    .cookie-actions {
      display: flex; gap: var(--space-sm);
      flex-wrap: wrap;
    }

    /* ============ SCROLL REVEALS ============ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ============ PET BAND ============ */
    .pet-band {
      background: var(--amber-100);
      border-bottom: 1px solid rgba(212,168,67,.15);
      padding: 0.35rem 0;
      text-align: center;
      font-size: 0.82rem;
      color: var(--stone-700);
    }
    .pet-band a {
      font-weight: 600;
      color: var(--olive-800);
    }
  

/* ===== 2026 Bridge: fixed nav spacing for inner pages ===== */
body.has-fixed-nav { padding-top: 92px; }
@media (max-width: 960px){ body.has-fixed-nav { padding-top: 84px; } }

/* Neutralize legacy injected WhatsApp sticky button rules */
.btn.btn-whatsapp { position: static !important; left: auto !important; bottom: auto !important; z-index: auto !important; }

/* CLS: sellos (reserva espacio y evita saltos) */
.sello-item img{
  display:block;
  height:70px;
  width:210px;
  max-width:210px;
  object-fit:contain;
  margin:0 auto;
}
@media (max-width:480px){
  .sello-item img{height:60px;width:180px;max-width:180px}
}
