/* ─── LOCAL FONTS ─── */
@font-face {
  font-family: 'TAN Angleton';
  src: url('fonts/TAN-Angleton-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aileron';
  src: url('fonts/Aileron-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aileron';
  src: url('fonts/Aileron-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Aileron';
  src: url('fonts/Aileron-UltraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aileron';
  src: url('fonts/Aileron-UltraLightItalic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Aileron';
  src: url('fonts/Aileron-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aileron';
  src: url('fonts/Aileron-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Aileron';
  src: url('fonts/Aileron-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aileron';
  src: url('fonts/Aileron-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Aileron';
  src: url('fonts/Aileron-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aileron';
  src: url('fonts/Aileron-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --verde: #31452c;
  --beige: #fbf1d7;
  --verde-light: #4a6642;
  --beige-dark: #ede3c3;
  --serif: 'TAN Angleton', 'Georgia', serif;
  --serif-display: 'TAN Angleton', 'Georgia', serif;
  --sans: 'Aileron', sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    background: var(--beige);
    color: var(--verde);
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: default;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--beige); }
  ::-webkit-scrollbar-thumb { background: var(--verde); }

  /* ─── SELECTION ─── */
  ::selection { background: var(--verde); color: var(--beige); }

  /* ─── NAVIGATION ─── */
  nav#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 72px;
    padding: 0 6vw;
    display: flex;
    align-items: center;
    transition: background 400ms var(--ease), height 300ms var(--ease), box-shadow 300ms var(--ease);
  }

  nav#nav.scrolled {
    background: var(--beige);
    height: 60px;
    box-shadow: 0 1px 0 rgba(49,69,44,0.1);
  }

  /* ── 3 zonas: logo | links | cta ── */
  .nav-logo {
    flex: 1;
    font-family: var(--serif-display);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--beige);
    text-decoration: none;
    transition: color 400ms var(--ease);
    white-space: nowrap;
  }

  nav#nav.scrolled .nav-logo { color: var(--verde); }

  .nav-links {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-links li {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-links li a {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(251,241,215,0.75);
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    transition: color 260ms var(--ease);
  }

  nav#nav.scrolled .nav-links li a { color: rgba(49,69,44,0.6); }

  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 260ms var(--ease);
  }

  .nav-links li a:hover { color: var(--beige); }
  nav#nav.scrolled .nav-links li a:hover { color: var(--verde); }
  .nav-links li a:hover::after { width: 100%; }

  .nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .nav-cta {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 9px 22px;
    border: 1px solid rgba(251,241,215,0.5);
    color: var(--beige);
    background: transparent;
    white-space: nowrap;
    transition: background 260ms var(--ease), color 260ms var(--ease), border-color 260ms var(--ease);
  }

  nav#nav.scrolled .nav-cta {
    border-color: rgba(49,69,44,0.45);
    color: var(--verde);
  }

  .nav-cta:hover {
    background: var(--beige);
    border-color: var(--beige);
    color: var(--verde);
  }

  nav#nav.scrolled .nav-cta:hover {
    background: var(--verde);
    border-color: var(--verde);
    color: var(--beige);
  }

  /* ─── HERO ─── */
  /* ═══════════════════════════════════════
     HERO — two column layout
  ═══════════════════════════════════════ */
  #inicio {
    min-height: 100vh;
    background: var(--verde);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8vw;
    position: relative;
    overflow: hidden;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4vw;
    width: 100%;
    padding-top: 70px; /* nav height */
  }

  /* ── LEFT: text ── */
  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
  }

  .hero-eyebrow {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(251,241,215,0.45);
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 800ms 200ms var(--ease) forwards;
  }

  .hero-title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4.5vw, 4.6rem);
    font-weight: 400;
    line-height: 1.48;
    color: var(--beige);
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 900ms 350ms var(--ease) forwards;
  }

  .hero-title em {
    font-style: italic;
  }

  .hero-divider {
    width: 40px;
    height: 1px;
    background: rgba(251,241,215,0.25);
    margin: 40px 0;
    opacity: 0;
    animation: fadeIn 600ms 800ms var(--ease) forwards;
  }

  .hero-sub {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(251,241,215,0.55);
    max-width: 400px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 800ms 950ms var(--ease) forwards;
  }

  .hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 48px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 800ms 1150ms var(--ease) forwards;
  }

  /* ── RIGHT: paella image ── */
  .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .hero-paella {
    width: min(52vw, 680px);
    height: min(52vw, 680px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
    will-change: transform;
    opacity: 0;
    animation: fadeIn 1200ms 600ms var(--ease) forwards;
  }

  .hero-paella img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0.92) saturate(1.05);
    /* PNG with transparent bg — no border-radius needed */
  }



  .btn-primary {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--verde);
    background: var(--beige);
    padding: 14px 32px;
    text-decoration: none;
    transition: background 250ms, color 250ms;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--beige-dark);
  }

  .btn-ghost {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(251,241,215,0.65);
    text-decoration: none;
    border-bottom: 1px solid rgba(251,241,215,0.25);
    padding-bottom: 2px;
    transition: color 250ms, border-color 250ms;
  }

  .btn-ghost:hover {
    color: var(--beige);
    border-color: rgba(251,241,215,0.65);
  }

  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 800ms 1600ms var(--ease) forwards;
  }

  .scroll-indicator span {
    font-family: var(--sans);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(251,241,215,0.35);
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(251,241,215,0.2);
    position: relative;
    overflow: hidden;
  }

  .scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(251,241,215,0.6);
    animation: scrollDown 2s 2s ease-in-out infinite;
  }

  /* ─── REVEAL ANIMATION ─── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 100ms; }
  .reveal-delay-2 { transition-delay: 220ms; }
  .reveal-delay-3 { transition-delay: 340ms; }
  .reveal-delay-4 { transition-delay: 460ms; }

  /* ─── SECTION STRUCTURE ─── */
  section {
    padding: 130px 10vw;
  }

  .section-label {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(49,69,44,0.45);
    margin-bottom: 48px;
    display: block;
  }

  .section-title {
    font-family: var(--serif-display);
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
  }

  /* ─── INTRO FILOSÓFICA ─── */
  #filosofia {
    text-align: center;
    padding: 120px 6vw;
    background: var(--beige);
  }

  .filosofia-quote {
    font-family: var(--serif-display);
    font-size: clamp(1.5rem, 3.2vw, 2.6rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    max-width: 740px;
    margin: 0 auto 48px;
    color: var(--verde);
  }

  .filosofia-divider {
    width: 1px;
    height: 60px;
    background: var(--verde);
    margin: 0 auto;
    opacity: 0.3;
  }

  /* ─── RESTAURANTE ─── */
  #restaurante {
    background: var(--beige);
    padding: 100px 10vw;
  }

  .restaurante-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: start;
  }

  .restaurante-text p {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--verde);
    margin-bottom: 28px;
  }

  .restaurante-text p:last-child { margin-bottom: 0; }

  .restaurante-image {
    position: relative;
  }

  .restaurante-foto {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
  }

  .restaurante-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 600ms var(--ease);
  }

  .restaurante-foto:hover img {
    transform: scale(1.03);
  }

  .image-caption {
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(49,69,44,0.4);
    margin-top: 16px;
  }

  /* ─── SOCARRAT OVERFLOW ─── */
  .socarrat-overflow {
    overflow: hidden;
    padding: 20px 0;
    background: var(--beige);
    border-top: 1px solid rgba(49,69,44,0.1);
    border-bottom: 1px solid rgba(49,69,44,0.1);
    position: relative;
  }

  .socarrat-overflow-text {
    font-family: var(--serif-display);
    font-size: 20vw;
    font-weight: 300;
    color: rgba(49,69,44,0.06);
    letter-spacing: -0.02em;
    white-space: nowrap;
    display: block;
    line-height: 0.9;
    animation: marquee 20s linear infinite;
    will-change: transform;
  }

  /* ─── VALORES ─── */
  #valores {
    background: var(--beige);
    padding: 100px 10vw;
  }

  .valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4vw;
    margin-top: 60px;
  }

  .valor-item {
    padding-top: 32px;
    border-top: 1px solid rgba(49,69,44,0.2);
  }

  .valor-number {
    font-family: var(--sans);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: rgba(49,69,44,0.35);
    display: block;
    margin-bottom: 20px;
  }

  .valor-title {
    font-family: var(--serif-display);
    font-size: 1.9rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    color: var(--verde);
  }

  .valor-text {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(49,69,44,0.7);
  }

  /* ─── CARTA ─── */
  #carta {
    background: var(--beige);
    padding: 100px 10vw;
  }

  .carta-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 8vw;
    align-items: start;
  }

  .carta-intro {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 32px;
    color: rgba(49,69,44,0.8);
  }

  .carta-nota {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(49,69,44,0.5);
    font-style: italic;
    margin-bottom: 48px;
    padding-left: 20px;
    border-left: 1px solid rgba(49,69,44,0.2);
  }

  .btn-download {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--verde);
    text-decoration: none;
    border: 1px solid var(--verde);
    padding: 13px 28px;
    display: inline-block;
    transition: background 250ms, color 250ms;
    margin-right: 16px;
    margin-bottom: 12px;
  }

  .btn-download:hover {
    background: var(--verde);
    color: var(--beige);
  }

  /* ─── GRUPOS ─── */
  #grupos {
    background: var(--verde);
    padding: 120px 10vw;
    color: var(--beige);
  }

  #grupos .section-label { color: rgba(251,241,215,0.4); }
  #grupos .section-title { color: var(--beige); }

  .grupos-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 8vw;
    align-items: center;
  }

  .grupos-text p {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(251,241,215,0.75);
    margin-bottom: 24px;
  }

  .grupos-microcopy {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(251,241,215,0.4);
    font-style: italic;
    margin-bottom: 40px;
    line-height: 1.7;
  }

  .btn-beige {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--verde);
    background: var(--beige);
    padding: 14px 32px;
    text-decoration: none;
    display: inline-block;
    transition: background 250ms;
    margin-right: 16px;
    margin-bottom: 12px;
  }

  .btn-beige:hover { background: var(--beige-dark); }

  .btn-beige-ghost {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(251,241,215,0.55);
    text-decoration: none;
    border-bottom: 1px solid rgba(251,241,215,0.25);
    padding-bottom: 2px;
    transition: color 250ms, border-color 250ms;
    display: inline-block;
  }

  .btn-beige-ghost:hover {
    color: var(--beige);
    border-color: rgba(251,241,215,0.55);
  }

  .grupos-feature-list {
    list-style: none;
  }

  .grupos-feature-list li {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(251,241,215,0.6);
    padding: 16px 0;
    border-bottom: 1px solid rgba(251,241,215,0.1);
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .grupos-feature-list li::before {
    content: '—';
    color: rgba(251,241,215,0.25);
    font-size: 0.7rem;
  }

  /* ─── RESERVAS ─── */
  #reservas {
    background: var(--beige);
    padding: 120px 10vw;
    text-align: center;
  }

  .reservas-intro {
    max-width: 540px;
    margin: 0 auto 60px;
  }

  .reservas-intro p {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    color: rgba(49,69,44,0.7);
  }

  .reservas-widget {
    max-width: 580px;
    margin: 0 auto;
    border: 1px solid rgba(49,69,44,0.15);
    padding: 48px 48px;
  }

  .widget-title {
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(49,69,44,0.4);
    margin-bottom: 40px;
    display: block;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    text-align: left;
  }

  .form-group label {
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(49,69,44,0.5);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(49,69,44,0.2);
    padding: 10px 0;
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--verde);
    outline: none;
    transition: border-color 250ms;
    width: 100%;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-bottom-color: var(--verde);
  }

  .form-group textarea { resize: none; height: 80px; }

  .form-group select {
    appearance: none;
    cursor: pointer;
  }

  .btn-submit {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--beige);
    background: var(--verde);
    border: none;
    padding: 15px 40px;
    cursor: pointer;
    width: 100%;
    margin-top: 32px;
    transition: background 250ms;
  }

  .btn-submit:hover { background: var(--verde-light); }

  .reservas-microcopy {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(49,69,44,0.35);
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 24px;
  }

  /* ─── CONTACTO ─── */
  #contacto {
    background: var(--beige);
    padding: 100px 10vw;
    border-top: 1px solid rgba(49,69,44,0.1);
  }

  .contacto-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6vw;
    margin-top: 60px;
  }

  .contacto-texto p {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.85;
    color: rgba(49,69,44,0.7);
    max-width: 400px;
  }

  .contacto-block-title {
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(49,69,44,0.4);
    margin-bottom: 24px;
    display: block;
  }

  .horario-list {
    list-style: none;
  }

  .horario-list li {
    font-family: var(--serif);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(49,69,44,0.7);
    padding: 8px 0;
    border-bottom: 1px solid rgba(49,69,44,0.08);
  }

  .horario-list li strong {
    display: block;
    font-weight: 500;
    color: var(--verde);
    font-size: 0.8rem;
    font-family: var(--sans);
    letter-spacing: 0.05em;
  }

  .contacto-datos {
    list-style: none;
  }

  .contacto-datos li {
    font-family: var(--serif);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(49,69,44,0.65);
    padding: 10px 0;
    border-bottom: 1px solid rgba(49,69,44,0.08);
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .contacto-datos a {
    color: var(--verde);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 250ms;
  }

  .contacto-datos a:hover {
    border-bottom-color: var(--verde);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--verde);
    padding: 70px 10vw;
    color: var(--beige);
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4vw;
    align-items: start;
    margin-bottom: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(251,241,215,0.1);
  }

  .footer-brand {
    font-family: var(--serif-display);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--beige);
    margin-bottom: 12px;
    display: block;
  }

  .footer-tagline {
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(251,241,215,0.35);
  }

  .footer-nav#nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-nav a {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(251,241,215,0.55);
    text-decoration: none;
    transition: color 250ms;
  }

  .footer-nav a:hover { color: var(--beige); }

  .footer-social-title {
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(251,241,215,0.35);
    margin-bottom: 20px;
    display: block;
  }

  .footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-social-links a {
    font-family: var(--serif);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(251,241,215,0.55);
    text-decoration: none;
    transition: color 250ms;
  }

  .footer-social-links a:hover { color: var(--beige); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(251,241,215,0.25);
  }

  .footer-legal {
    display: flex;
    gap: 24px;
  }

  .footer-legal a {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(251,241,215,0.25);
    text-decoration: none;
    transition: color 250ms;
  }

  .footer-legal a:hover { color: rgba(251,241,215,0.55); }

  /* ─── KEYFRAMES ─── */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    to { opacity: 1; }
  }

  @keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
  }

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ─── LINE DRAW ─── */
  .line-draw {
    width: 0;
    height: 1px;
    background: rgba(49,69,44,0.2);
    margin: 60px 0;
    transition: width 1000ms var(--ease);
  }

  .line-draw.visible { width: 100%; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav#nav { height: 60px; }
    nav#nav.scrolled { height: 52px; }
    .nav-links { display: none; }
    .nav-logo { flex: unset; }
    .nav-right { flex: unset; margin-left: auto; }
    
    section { padding: 80px 6vw; }
    
    .restaurante-grid,
    .carta-grid,
    .grupos-layout,
    .contacto-grid,
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .valores-grid {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .form-row { grid-template-columns: 1fr; }
    .reservas-widget { padding: 32px 24px; }
    
    .footer-bottom {
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
    }
  }
/* ── HAMBURGER ── */
nav#nav .nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
nav#nav .nav-hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--beige);
  transform-origin: center;
  transition: transform 300ms var(--ease), opacity 300ms var(--ease), width 300ms var(--ease);
}
nav#nav.scrolled .nav-hamburger span { background: var(--verde); }
nav#nav .nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
nav#nav .nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
nav#nav .nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 380ms var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links li a {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.4rem);
  font-weight: 400;
  color: rgba(251,241,215,0.85);
  text-decoration: none;
  display: block;
  padding: 10px 0;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 480ms var(--ease), opacity 380ms var(--ease), color 200ms;
}
.mobile-menu.open .mobile-nav-links li:nth-child(1) a { transform:translateY(0); opacity:1; transition-delay:60ms; }
.mobile-menu.open .mobile-nav-links li:nth-child(2) a { transform:translateY(0); opacity:1; transition-delay:120ms; }
.mobile-menu.open .mobile-nav-links li:nth-child(3) a { transform:translateY(0); opacity:1; transition-delay:180ms; }
.mobile-menu.open .mobile-nav-links li:nth-child(4) a { transform:translateY(0); opacity:1; transition-delay:240ms; }
.mobile-menu.open .mobile-nav-links li:nth-child(5) a { transform:translateY(0); opacity:1; transition-delay:300ms; }
.mobile-nav-links li a:hover { color: var(--beige); }
.mobile-menu-footer {
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0;
  transition: opacity 400ms 360ms var(--ease);
}
.mobile-menu.open .mobile-menu-footer { opacity: 1; }
.mobile-menu-footer span {
  font-family: var(--sans);
  font-size: 0.6rem; font-weight: 300; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(251,241,215,0.3);
}

/* ── RESERVAS CTA ── */
.reservas-cta {
  display: flex; flex-direction: column; align-items: center; gap: 24px; margin-top: 8px;
}
.btn-reservar-modal {
  font-family: var(--sans);
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--beige); background: var(--verde);
  border: none; padding: 18px 52px; cursor: pointer;
  transition: background 260ms var(--ease);
}
.btn-reservar-modal:hover { background: var(--verde-light); }

/* ── MODAL COVERMANAGER ── */
.reservas-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 350ms var(--ease);
}
.reservas-modal.open { opacity: 1; pointer-events: all; }
.reservas-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(25,38,22,0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.reservas-modal-container {
  position: relative; z-index: 1;
  background: var(--beige);
  width: 100%; max-width: 700px; max-height: 90vh;
  display: flex; flex-direction: column;
  transform: translateY(24px);
  transition: transform 380ms var(--ease);
}
.reservas-modal.open .reservas-modal-container { transform: translateY(0); }
.reservas-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(49,69,44,0.1);
  flex-shrink: 0;
}
.reservas-modal-title {
  font-family: var(--sans);
  font-size: 0.6rem; font-weight: 400; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(49,69,44,0.45);
}
.reservas-modal-close {
  width: 32px; height: 32px;
  background: transparent; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.reservas-modal-close span {
  position: absolute; width: 18px; height: 1px; background: var(--verde);
  transition: background 250ms;
}
.reservas-modal-close span:nth-child(1) { transform: rotate(45deg); }
.reservas-modal-close span:nth-child(2) { transform: rotate(-45deg); }
.reservas-modal-close:hover span { background: var(--verde-light); }
.reservas-modal-body { overflow-y: auto; flex: 1; }
.reservas-modal-body iframe { display: block; border: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav#nav .nav-links { display: none; }
  nav#nav .nav-cta { display: none; }
  nav#nav .nav-hamburger { display: flex; }
  nav#nav .nav-logo { flex: unset; }
  nav#nav .nav-right { flex: unset; margin-left: auto; display: flex; align-items: center; }

  section { padding: 80px 6vw; }
  #filosofia { padding: 80px 6vw; }

  .restaurante-grid,
  .carta-grid,
  .grupos-layout,
  .contacto-grid,
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }

  .valores-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .reservas-widget { padding: 32px 24px; }
  /* Hero mobile: stack vertically */
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 90px;
    padding-bottom: 40px;
    gap: 40px;
  }
  .hero-left { align-items: flex-start; }
  .hero-right { justify-content: center; }
  .hero-paella {
    width: min(80vw, 360px);
    height: min(80vw, 360px);
  }
  .hero-actions { flex-direction: column; gap: 16px; }
  .socarrat-overflow-text { font-size: 28vw; }

  .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }

  .reservas-modal { padding: 0; align-items: flex-end; }
  .reservas-modal-container { max-width: 100%; max-height: 92vh; }
}


