:root {
    --bg: #f6f1ea;
    --bg-alt: #efe7db;
    --ink: #1a1a1a;
    --ink-soft: #4a4642;
    --ink-mute: #847d74;
    --line: #d9cfc0;
    --accent: #5a5550;
    --accent-soft: #8a857e;
    --cream: #faf6f0;
    --serif: 'Fraunces', 'Times New Roman', serif;
    --sans: 'Inter', system-ui, sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

  /* ─── NAV ─────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 32px;
    background: rgba(246, 241, 234, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s;
  }
  nav.scrolled { border-bottom-color: var(--line); }
  .nav-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
  }
  .brand {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.01em;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .brand-logo {
    height: 42px;
    width: auto;
    display: block;
  }
  .brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .brand small {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 500;
  }
  .nav-links {
    display: flex; gap: 36px; align-items: center;
    font-size: 14px;
  }
  .nav-links a { color: var(--ink-soft); transition: color .2s; }
  .nav-links a:hover { color: var(--accent); }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px;
    background: var(--ink);
    color: var(--cream);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    transition: all .25s;
    border: none; cursor: pointer;
    font-family: var(--sans);
  }
  .btn:hover { background: var(--accent); transform: translateY(-1px); }
  .btn.accent {
    background: var(--accent);
    color: var(--cream);
  }
  .btn.accent:hover { background: var(--ink); }
  .btn.outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
  }
  .btn.outline:hover {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
  }
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
    position: relative;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: transform .3s, opacity .2s;
    transform-origin: center;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ─── HERO ─────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    padding: 140px 32px 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: ''; width: 32px; height: 1px; background: var(--accent);
  }
  .hero h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.95;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--accent);
    font-weight: 300;
  }
  .hero p.lead {
    font-size: 19px;
    color: var(--ink-soft);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.55;
  }
  .hero-cta {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-bottom: 56px;
  }
  .hero-meta {
    display: flex; gap: 48px; flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    font-size: 13px;
  }
  .hero-meta div { display: flex; flex-direction: column; gap: 4px; }
  .hero-meta strong {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .hero-meta span {
    color: var(--ink-mute);
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .hero-meta .stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; }

  .hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 4px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2620 0%, #4a4136 100%);
  }
  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-visual::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 30% 20%, rgba(255, 220, 180, 0.15), transparent 50%),
      radial-gradient(circle at 70% 80%, rgba(140, 130, 120, 0.3), transparent 50%);
  }
  .hero-visual-placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: rgba(250, 246, 240, 0.3);
    font-family: var(--serif);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .hero-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--cream);
    color: var(--ink);
    padding: 14px 18px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.4;
    max-width: 200px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }
  .hero-badge strong {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
  }

  .hero-mark {
    position: absolute;
    top: 50%; left: 0;
    transform: translate(calc(-50% + 14px), -50%) rotate(-90deg);
    transform-origin: center;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--ink-mute);
    white-space: nowrap;
    pointer-events: none;
  }
  @media (max-width: 1180px) {
    .hero-mark { display: none; }
  }

  /* ─── MARQUEE ─────────────────────────────────── */
  .marquee {
    background: var(--ink);
    color: var(--cream);
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
  }
  .marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    font-family: var(--serif);
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
  }
  .marquee-track span { display: flex; align-items: center; gap: 60px; }
  .marquee-track span::after {
    content: '✦';
    color: var(--accent-soft);
    font-style: normal;
    font-size: 16px;
  }
  @keyframes scroll {
    to { transform: translateX(-50%); }
  }

  /* ─── SERVICES ─────────────────────────────────── */
  .section { padding: 120px 32px; }
  .section-head {
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: end;
  }
  .section-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-eyebrow::before {
    content: ''; width: 24px; height: 1px; background: var(--accent);
  }
  .section-head h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .section-head h2 em { font-style: italic; color: var(--accent); }
  .section-head p {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 520px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .service {
    background: var(--bg);
    padding: 40px 36px;
    transition: all .3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .service:hover {
    background: var(--cream);
  }
  .service-num {
    font-family: var(--serif);
    font-size: 13px;
    color: var(--ink-mute);
    letter-spacing: 0.05em;
    margin-bottom: 28px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .service-num .arrow {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid; place-items: center;
    transition: all .3s;
    font-size: 14px;
  }
  .service:hover .arrow {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--cream);
    transform: rotate(-45deg);
  }
  .service h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
  }
  .service p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 32px;
  }
  .service-meta {
    display: flex; justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-mute);
  }
  .service-meta strong {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    text-transform: none;
    letter-spacing: -0.01em;
  }

  /* ─── ABOUT ──────────────────────────────────── */
  .about {
    background: var(--bg-alt);
    padding: 140px 32px;
    position: relative;
  }
  .about-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
  .about-visual {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #3a3530 0%, #5a5045 100%);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
  }
  .about-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .about-visual::after {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 70% 30%, rgba(255, 200, 150, 0.15), transparent 60%);
  }
  .about-visual-label {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: rgba(250, 246, 240, 0.25);
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.1em;
  }
  .about h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
  }
  .about h2 em { font-style: italic; color: var(--accent); }
  .about p {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .about-sign {
    margin-top: 40px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--accent);
  }
  .about-sign small {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-top: 4px;
  }

  /* ─── TEAM ──────────────────────────────── */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
  .team-card {
    text-align: center;
  }
  .team-photo {
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, #b8a890, #8a7d68);
    border-radius: 4px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
  }
  .team-card:nth-child(2) .team-photo { background: linear-gradient(160deg, #a89878, #7a6f5a); }
  .team-card:nth-child(3) .team-photo { background: linear-gradient(160deg, #c8b8a0, #98876f); }
  .team-card:nth-child(4) .team-photo { background: linear-gradient(160deg, #98886a, #6a5e48); }
  .team-card:nth-child(5) .team-photo { background: linear-gradient(160deg, #b09878, #80714d); }
  .team-photo::after {
    content: attr(data-initial);
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 300;
    color: rgba(250, 246, 240, 0.4);
    letter-spacing: -0.02em;
  }
  .team-card h4 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 19px;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .team-card p {
    font-size: 12px;
    color: var(--ink-mute);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* ─── REVIEWS ─────────────────────────────────── */
  .reviews {
    background: var(--ink);
    color: var(--cream);
    padding: 140px 32px;
    overflow: hidden;
  }
  .reviews .section-head {
    color: var(--cream);
  }
  .reviews .section-eyebrow { color: var(--accent-soft); }
  .reviews .section-eyebrow::before { background: var(--accent-soft); }
  .reviews h2 em { color: var(--accent-soft); }
  .reviews .section-head p { color: rgba(250, 246, 240, 0.7); }
  .reviews-stat {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(250, 246, 240, 0.1);
    margin-bottom: 80px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
  .stat {
    background: var(--ink);
    padding: 36px 32px;
  }
  .stat-num {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
  }
  .stat-num em { font-style: italic; color: var(--accent-soft); }
  .stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(250, 246, 240, 0.5);
  }
  .reviews-list {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .review {
    border-top: 1px solid rgba(250, 246, 240, 0.15);
    padding-top: 28px;
  }
  .review-stars {
    color: var(--accent-soft);
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 20px;
  }
  .review-text {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 300;
    line-height: 1.45;
    margin-bottom: 28px;
    letter-spacing: -0.005em;
  }
  .review-meta {
    display: flex; justify-content: space-between;
    font-size: 12px;
    color: rgba(250, 246, 240, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .review-meta strong {
    color: var(--cream);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    font-size: 13px;
  }

  /* ─── BOOKING ─────────────────────────────────── */
  .booking {
    padding: 140px 32px;
    text-align: center;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
  }
  .booking-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2;}
  .booking h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(44px, 7vw, 88px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
  }
  .booking h2 em { font-style: italic; color: var(--accent); }
  .booking p {
    font-size: 18px;
    color: var(--ink-soft);
    margin-bottom: 48px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .booking-cta {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .booking-cta .btn { padding: 18px 36px; font-size: 15px; }
  .booking-note {
    font-size: 13px;
    color: var(--ink-mute);
    display: inline-flex; align-items: center; gap: 12px;
  }
  .booking-note svg { color: var(--accent); }
  .booking-deco {
    position: absolute;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    color: var(--line);
    pointer-events: none;
    user-select: none;
    opacity: 0.5;
  }
  .booking-deco.left { top: 60px; left: -20px; font-size: 200px; }
  .booking-deco.right { bottom: 40px; right: -40px; font-size: 240px; }

  /* ─── VISIT ─────────────────────────────────── */
  .visit {
    padding: 140px 32px;
  }
  .visit-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .visit-info { padding-right: 40px; }
  .visit-info h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
  }
  .visit-info h2 em { font-style: italic; color: var(--accent); }
  .visit-block {
    padding: 28px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    align-items: start;
  }
  .visit-block:last-child { border-bottom: 1px solid var(--line); }
  .visit-block dt {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-mute);
    padding-top: 4px;
  }
  .visit-block dd {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.4;
    letter-spacing: -0.005em;
  }
  .visit-block dd small {
    display: block;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink-mute);
    margin-top: 6px;
    line-height: 1.5;
  }
  .visit-block a { color: var(--accent); }
  .visit-block a:hover { text-decoration: underline; }
  .visit-map {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #d9cfc0 0%, #b8a890 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  .visit-map iframe {
    width: 100%; height: 100%; border: 0;
    filter: grayscale(0.4) sepia(0.1);
  }

  /* ─── FOOTER ─────────────────────────────────── */
  footer {
    background: var(--ink);
    color: var(--cream);
    padding: 80px 32px 40px;
  }
  .footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .footer-brand em { font-style: italic; color: var(--accent-soft); }
  .footer-tag {
    font-size: 13px;
    color: rgba(250, 246, 240, 0.6);
    max-width: 300px;
    line-height: 1.6;
  }
  footer h5 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(250, 246, 240, 0.5);
    margin-bottom: 20px;
    font-weight: 500;
  }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 10px; }
  footer ul a {
    font-size: 14px;
    color: rgba(250, 246, 240, 0.85);
    transition: color .2s;
  }
  footer ul a:hover { color: var(--accent-soft); }
  .footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(250, 246, 240, 0.1);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    font-size: 12px;
    color: rgba(250, 246, 240, 0.4);
  }
  .footer-bottom a { color: rgba(250, 246, 240, 0.6); }
  .footer-bottom a:hover { color: var(--accent-soft); }

  /* ─── RESPONSIVE ─────────────────────────────── */
  @media (max-width: 900px) {
    .container, nav, .section, .reviews, .booking, .visit, .about, footer { padding-left: 22px; padding-right: 22px; }
    .nav-toggle { display: block; }
    .brand { font-size: 18px; gap: 10px; }
    .brand-logo { height: 36px; }
    .brand small { font-size: 9px; }

    /* Menú móvil: panel desplegable a pantalla completa */
    .nav-links {
      position: fixed !important;
      top: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      left: auto !important;
      width: 100% !important;
      max-width: 380px !important;
      height: 100vh !important;
      height: 100dvh !important;
      background: var(--bg) !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: stretch !important;
      justify-content: flex-start !important;
      gap: 0 !important;
      padding: 100px 32px 40px !important;
      transform: translateX(100%);
      transition: transform .4s cubic-bezier(.2, .8, .2, 1);
      box-shadow: -20px 0 40px rgba(0,0,0,0.15);
      z-index: 105;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      margin: 0;
    }
    .nav-links.open { transform: translateX(0) !important; }
    .nav-links a {
      font-family: var(--serif);
      font-size: 26px;
      font-weight: 400;
      letter-spacing: -0.01em;
      color: var(--ink);
      width: 100%;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
      display: block;
    }
    .nav-links a.btn,
    .nav-links a.btn.accent {
      font-family: var(--sans);
      font-size: 14px;
      width: auto;
      align-self: flex-start;
      border-bottom: none;
      padding: 14px 26px;
      margin-top: 24px;
      display: inline-flex;
      color: var(--cream);
    }
    /* Backdrop oscuro detrás del menú */
    .nav-backdrop {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.5);
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
      z-index: 100;
    }
    .nav-backdrop.open {
      opacity: 1;
      pointer-events: auto;
    }
    body.menu-open { overflow: hidden; }
    /* Toggle por encima del panel para poder cerrarlo */
    .nav-toggle { z-index: 110; }

    .hero { padding: 120px 22px 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-mark { display: none; }
    .hero-meta { gap: 28px; }
    .section-head { grid-template-columns: 1fr; gap: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-stat { grid-template-columns: 1fr; }
    .reviews-list { grid-template-columns: 1fr; }
    .visit-grid { grid-template-columns: 1fr; gap: 50px; }
    .visit-info { padding-right: 0; }
    .visit-block { grid-template-columns: 1fr; gap: 8px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .booking-deco { display: none; }
  }
  @media (max-width: 500px) {
    .team-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
  }

  /* Reveal */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s, transform .8s;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── WHATSAPP FLOTANTE ─────────────────────── */
  .wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 0;
    background: #25D366;
    color: #fff;
    padding: 0;
    border-radius: 999px;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0,0,0,0.12);
    transition: all .3s cubic-bezier(.2,.8,.2,1);
    overflow: hidden;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px) scale(0.92);
    animation: wa-in .6s .8s cubic-bezier(.2,.8,.2,1) forwards;
  }
  @keyframes wa-in {
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .wa-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0,0,0,0.15);
  }
  .wa-float-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .wa-float-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
  }
  .wa-float-label {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.005em;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width .35s cubic-bezier(.2,.8,.2,1), padding .35s;
    padding: 0;
  }
  .wa-float-label small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 1px;
  }
  .wa-float:hover .wa-float-label {
    max-width: 220px;
    padding: 0 22px 0 4px;
  }
  /* Pulso sutil que llama la atención sin agobiar */
  .wa-float::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: wa-pulse 2.4s ease-out infinite;
  }
  @keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
  }
  @media (max-width: 500px) {
    .wa-float { bottom: 16px; right: 16px; }
    .wa-float:hover .wa-float-label { max-width: 0; padding: 0; }
  }
  /* ─── PÁGINAS LEGALES ─────────────────────────── */
  .legal-page {
    padding: 140px 32px 100px;
    min-height: 70vh;
  }
  .legal-wrap {
    max-width: 760px;
    margin: 0 auto;
  }
  .legal-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .legal-eyebrow::before {
    content: ''; width: 24px; height: 1px; background: var(--accent);
  }
  .legal-page h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .legal-page h1 em { font-style: italic; color: var(--accent); }
  .legal-updated {
    font-size: 13px;
    color: var(--ink-mute);
    margin-bottom: 60px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }
  .legal-page h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.01em;
    margin-top: 48px;
    margin-bottom: 16px;
  }
  .legal-page h3 {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-top: 32px;
    margin-bottom: 12px;
  }
  .legal-page p {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .legal-page ul,
  .legal-page ol {
    padding-left: 22px;
    margin-bottom: 20px;
  }
  .legal-page li {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 8px;
  }
  .legal-page a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .legal-page a:hover { opacity: 0.7; }
  .legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
  }
  .legal-page th,
  .legal-page td {
    text-align: left;
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
  }
  .legal-page th {
    font-family: var(--sans);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--ink-mute);
    background: var(--bg-alt);
  }
  .legal-page strong {
    color: var(--ink);
    font-weight: 500;
  }
  .legal-data-block {
    background: var(--bg-alt);
    padding: 28px 32px;
    border-radius: 4px;
    margin: 24px 0;
    font-size: 15px;
    line-height: 1.8;
  }
  .legal-data-block strong {
    display: inline-block;
    min-width: 140px;
    color: var(--ink-mute);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ─── BANNER COOKIES ─────────────────────────── */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink);
    color: var(--cream);
    padding: 28px 32px;
    z-index: 200;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.2, .8, .2, 1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
  }
  .cookie-banner.show { transform: translateY(0); }
  .cookie-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
  }
  .cookie-text {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(250, 246, 240, 0.85);
  }
  .cookie-text strong {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 17px;
    color: var(--cream);
    display: block;
    margin-bottom: 4px;
  }
  .cookie-text a {
    color: var(--accent-soft);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .cookie-actions button {
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(250, 246, 240, 0.3);
    background: transparent;
    color: var(--cream);
    cursor: pointer;
    font-family: var(--sans);
    transition: all .2s;
    white-space: nowrap;
  }
  .cookie-actions button:hover {
    border-color: var(--cream);
  }
  .cookie-actions button.accept {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
  }
  .cookie-actions button.accept:hover {
    background: var(--accent-soft);
    color: var(--cream);
    border-color: var(--accent-soft);
  }
  @media (max-width: 700px) {
    .cookie-banner { padding: 22px 22px; }
    .cookie-inner {
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .cookie-actions button { flex: 1; }
  }
