/* ============================================================
   El Poli · Restaurante en el Puerto de Águilas
   CSS vanilla — sustituye a Tailwind y al index.css original.
   Tokens de diseño originales: sea #0A141A, salt #F2F0ED,
   ocre #C48F56, sedimento #4A555C.
   ============================================================ */

:root {
  --sea: #0A141A;
  --sea-95: rgba(10, 20, 26, 0.95);
  --sea-90: rgba(10, 20, 26, 0.9);
  --sea-85: rgba(10, 20, 26, 0.85);
  --sea-80: rgba(10, 20, 26, 0.8);
  --sea-60: rgba(10, 20, 26, 0.6);
  --salt: #F2F0ED;
  --ocre: #C48F56;
  --sedimento: #4A555C;
  --font-display: "Cormorant Garamond", ui-serif, Georgia, serif;
  --font-body: "Archivo", ui-sans-serif, system-ui, sans-serif;
}

/* ---------- Base ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--sea);
  color: var(--salt);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

::selection {
  background-color: var(--ocre);
  color: var(--sea);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--sea);
}
::-webkit-scrollbar-thumb {
  background: #2a3540;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ocre);
}

/* ---------- Utilidades ---------- */

.font-display {
  font-family: var(--font-display);
}
.font-body {
  font-family: var(--font-body);
}
.text-balance {
  text-wrap: balance;
}
.tracking-architecture {
  letter-spacing: 0.32em;
}
.tracking-wide-sm {
  letter-spacing: 0.18em;
}
.text-salt {
  color: var(--salt);
}
.text-ocre {
  color: var(--ocre);
}
.text-sea {
  color: var(--sea);
}
.bg-sea {
  background-color: var(--sea);
}
.bg-ocre {
  background-color: var(--ocre);
}
.net-rule {
  background-image: linear-gradient(to right, transparent, var(--ocre), transparent);
}

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 2.5rem;
  }
}

.section {
  position: relative;
  padding-block: 7rem;
}

@media (min-width: 1024px) {
  .section {
    padding-block: 10rem;
  }
}

.section-border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ---------- Reveal on scroll (sustituye a framer-motion) ---------- */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-up {
  transform: translateY(24px);
}

.fade-up {
  animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Botones ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  line-height: 1;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn-primary {
  background-color: var(--ocre);
  color: var(--sea);
}
.btn-primary:hover {
  background-color: var(--salt);
}

.btn-ghost {
  border: 1px solid rgba(242, 240, 237, 0.4);
  color: var(--salt);
}
.btn-ghost:hover {
  border-color: var(--ocre);
  color: var(--ocre);
}

/* ============================================================
   Navbar
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding-block: 1.5rem;
  transition: background-color 0.5s, padding 0.5s, border-color 0.5s, backdrop-filter 0.5s;
}

.nav.scrolled {
  padding-block: 1rem;
  background-color: var(--sea-85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--salt);
  letter-spacing: 0.18em;
}

@media (min-width: 1024px) {
  .brand-name {
    font-size: 1.875rem;
  }
}

.brand-divider {
  display: none;
  height: 1rem;
  width: 1px;
  background-color: rgba(196, 143, 86, 0.6);
}

.brand-city {
  display: none;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ocre);
}

@media (min-width: 640px) {
  .brand-divider {
    display: block;
  }
  .brand-city {
    display: block;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  position: relative;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(242, 240, 237, 0.8);
  transition: color 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 0;
  background-color: var(--ocre);
  transition: width 0.3s;
}

.nav-link:hover {
  color: var(--ocre);
}
.nav-link:hover::after {
  width: 100%;
}

.nav-call {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 143, 86, 0.7);
  color: var(--ocre);
  padding: 0.625rem 1.5rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  line-height: 1;
  transition: background-color 0.3s, color 0.3s;
}

@media (min-width: 768px) {
  .nav-call {
    display: inline-flex;
  }
}

.nav-call:hover {
  background-color: var(--ocre);
  color: var(--sea);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--salt);
  padding: 0.25rem;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-mobile {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

.nav-mobile.open {
  max-height: 26rem;
  opacity: 1;
}

.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  background-color: var(--sea-95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-mobile-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--salt);
  transition: color 0.3s;
}

.nav-mobile-link:hover {
  color: var(--ocre);
}

.nav-mobile-call {
  margin-top: 0.5rem;
  border: 1px solid var(--ocre);
  color: var(--ocre);
  padding: 0.75rem 1.5rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  line-height: 1;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.nav-mobile-call:hover {
  background-color: var(--ocre);
  color: var(--sea);
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  animation: hero-zoom 2.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--sea), rgba(10, 20, 26, 0.4) 60%, rgba(10, 20, 26, 0.3));
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 20, 26, 0.6), transparent 60%);
}

.hero-mast {
  display: none;
}

@media (min-width: 1024px) {
  .hero-mast {
    display: flex;
    position: absolute;
    left: 2.5rem;
    top: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
}

.hero-mast-line {
  width: 1px;
  height: 6rem;
  background-color: rgba(242, 240, 237, 0.3);
}

.hero-mast-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(242, 240, 237, 0.7);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding: 0 1.5rem 6rem;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 0 2.5rem 8rem;
  }
}

.hero-kicker {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ocre);
  margin-bottom: 1.5rem;
  animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-title {
  font-family: var(--font-display);
  color: var(--salt);
  line-height: 1.05;
  font-size: clamp(2.75rem, 8vw, 7rem);
  max-width: 14ch;
  text-wrap: balance;
  animation: fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.hero-sub {
  margin-top: 2rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(242, 240, 237, 0.75);
  animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

@media (min-width: 1024px) {
  .hero-sub {
    font-size: 1.125rem;
  }
}

.hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(242, 240, 237, 0.5);
}

.hero-scroll svg {
  color: rgba(242, 240, 237, 0.5);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25%);
  }
}

/* ============================================================
   About (Nosotros)
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
    align-items: center;
  }
}

.about-media {
  position: relative;
}

@media (min-width: 1024px) {
  .about-media {
    grid-column: span 6;
  }
}

.about-img-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  border: 1px solid rgba(196, 143, 86, 0.4);
  padding: 1rem 1.5rem;
  background-color: var(--sea-80);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

@media (min-width: 1024px) {
  .about-badge {
    display: block;
  }
}

.about-badge-year {
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 1;
  color: var(--ocre);
}

.about-badge-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(242, 240, 237, 0.6);
  margin-top: 0.25rem;
}

@media (min-width: 1024px) {
  .about-copy {
    grid-column: span 6;
    padding-left: 2rem;
  }
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ocre);
}

.about-title,
.mp-title,
.res-title {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  color: var(--salt);
  line-height: 1.1;
  font-size: clamp(2.25rem, 5vw, 4rem);
  text-wrap: balance;
}

.about-rule {
  margin-top: 2rem;
  height: 1px;
  width: 6rem;
  background-image: linear-gradient(to right, transparent, var(--ocre), transparent);
}

.about-text {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(242, 240, 237, 0.7);
}

@media (min-width: 1024px) {
  .about-text {
    font-size: 1.125rem;
  }
}

.about-text + .about-text {
  margin-top: 1.5rem;
}

.about-stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.about-stat-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ocre);
}

.about-stat-label {
  margin-top: 0.25rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(242, 240, 237, 0.5);
  line-height: 1.375;
}

/* ============================================================
   Menu preview (La carta)
   ============================================================ */

.mp-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .mp-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.mp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--salt);
  transition: color 0.3s;
}

.mp-link:hover {
  color: var(--ocre);
}

.mp-link svg {
  transition: transform 0.3s;
}

.mp-link:hover svg {
  transform: translateX(4px);
}

.mp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .mp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.mp-card {
  display: block;
}

.mp-card.offset {
  margin-top: 0;
}

@media (min-width: 768px) {
  .mp-card.offset {
    margin-top: 5rem;
  }
}

.mp-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.mp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.mp-card:hover .mp-card-img img {
  transform: scale(1.05);
}

.mp-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 20, 26, 0.8), transparent 60%);
  opacity: 0.7;
  transition: opacity 0.5s;
}

.mp-card:hover .mp-card-img::after {
  opacity: 0.5;
}

.mp-card-row {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
}

.mp-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--salt);
  transition: color 0.3s;
}

@media (min-width: 1024px) {
  .mp-card-name {
    font-size: 1.875rem;
  }
}

.mp-card:hover .mp-card-name {
  color: var(--ocre);
}

.mp-card-price {
  font-size: 0.875rem;
  color: var(--ocre);
  white-space: nowrap;
}

.mp-card-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(242, 240, 237, 0.6);
  max-width: 28rem;
}

@media (min-width: 1024px) {
  .mp-card-desc {
    font-size: 1rem;
  }
}

/* ============================================================
   Reservations (Reservas y contacto)
   ============================================================ */

.res {
  position: relative;
  overflow: hidden;
}

.res-bg {
  position: absolute;
  inset: 0;
}

.res-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.res-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--sea-80);
}

.res-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--sea), rgba(10, 20, 26, 0.7) 60%, var(--sea-90));
}

.res-inner {
  position: relative;
  z-index: 10;
  padding-block: 7rem;
}

@media (min-width: 1024px) {
  .res-inner {
    padding-block: 11rem;
  }
}

.res-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
}

.res-text {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(242, 240, 237, 0.75);
  max-width: 36rem;
}

@media (min-width: 1024px) {
  .res-text {
    font-size: 1.125rem;
  }
}

.res-ctas {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .res-ctas {
    flex-direction: row;
  }
}

.res-info {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
}

@media (min-width: 768px) {
  .res-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

.res-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.res-info-item svg {
  width: 22px;
  height: 22px;
  color: var(--ocre);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.res-info-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(242, 240, 237, 0.5);
}

.res-info-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(242, 240, 237, 0.85);
  line-height: 1.5;
}

.res-info-link {
  margin-top: 0.5rem;
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ocre);
  transition: color 0.3s;
}

.res-info-link:hover {
  color: var(--salt);
}

.res-hours {
  list-style: none;
  margin-top: 0.5rem;
  display: grid;
  gap: 0.25rem;
}

.res-hours li {
  font-size: 0.875rem;
  color: rgba(242, 240, 237, 0.85);
}

.res-hours .day {
  color: rgba(242, 240, 237, 0.6);
}

.res-phone {
  margin-top: 0.5rem;
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--salt);
  transition: color 0.3s;
}

.res-phone:hover {
  color: var(--ocre);
}

.res-phone-note {
  margin-top: 0.25rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(242, 240, 237, 0.5);
}

/* ============================================================
   Closing CTA
   ============================================================ */

.cta {
  position: relative;
  display: flex;
  min-height: 70vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--sea);
  padding: 7rem 1.5rem;
  text-align: center;
}

.cta-rule {
  position: absolute;
  inset-inline: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cta-rule div {
  height: 1px;
  width: 6rem;
  background-image: linear-gradient(to right, transparent, var(--ocre), transparent);
  opacity: 0.6;
}

.cta-inner {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  width: 100%;
}

.cta-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ocre);
}

.cta-title {
  margin-top: 2rem;
  font-family: var(--font-display);
  color: var(--salt);
  line-height: 0.95;
  font-size: clamp(2.75rem, 11vw, 11rem);
  text-wrap: balance;
}

.cta-links {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
}

@media (min-width: 640px) {
  .cta-links {
    flex-direction: row;
  }
}

.cta-links a {
  color: rgba(242, 240, 237, 0.6);
  transition: color 0.3s;
}

.cta-links a:hover {
  color: var(--ocre);
}

.cta-links .dot {
  display: none;
  height: 0.25rem;
  width: 0.25rem;
  border-radius: 9999px;
  background-color: rgba(196, 143, 86, 0.6);
}

@media (min-width: 640px) {
  .cta-links .dot {
    display: inline-block;
  }
}

.cta-year {
  color: rgba(242, 240, 237, 0.4);
}

/* ============================================================
   Floating reserve (botón flotante)
   ============================================================ */

.floating-reserve {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  transform: translateY(6rem);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s, opacity 0.5s;
}

.floating-reserve.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.fr-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  transition: transform 0.3s;
}

.fr-btn:hover {
  transform: scale(1.1);
}

.fr-btn svg {
  stroke-width: 1.8;
}

.fr-whatsapp {
  height: 3rem;
  width: 3rem;
  background-color: #25d366;
  color: var(--sea);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.fr-whatsapp svg {
  width: 20px;
  height: 20px;
}

.fr-call {
  height: 3.5rem;
  width: 3.5rem;
  background-color: var(--ocre);
  color: var(--sea);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

.fr-call svg {
  width: 22px;
  height: 22px;
}

.fr-call .ripple {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border: 1px solid var(--ocre);
  animation: ripple 1.8s ease-out infinite;
}

@keyframes ripple {
  0% {
    transform: scale(0.85);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ============================================================
   Carta (página de la carta)
   ============================================================ */

.carta-wrap {
  transition: background-color 0.2s;
}

.carta-head {
  padding: 8rem 0 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .carta-head {
    padding: 10rem 0 6rem;
  }
}

.carta-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(242, 240, 237, 0.6);
  transition: color 0.3s;
}

.carta-back:hover {
  color: var(--ocre);
}

.carta-back svg {
  transition: transform 0.3s;
}

.carta-back:hover svg {
  transform: translateX(-4px);
}

.carta-kicker {
  display: inline-block;
  margin-top: 2.5rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ocre);
}

.carta-title {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  color: var(--salt);
  line-height: 1.05;
  font-size: clamp(2.75rem, 7vw, 6rem);
  text-wrap: balance;
}

.carta-sub {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(242, 240, 237, 0.7);
}

@media (min-width: 1024px) {
  .carta-sub {
    font-size: 1.125rem;
  }
}

.carta-body {
  padding-block: 5rem 7rem;
  display: grid;
  gap: 6rem;
}

@media (min-width: 1024px) {
  .carta-body {
    padding-block: 7rem;
    gap: 8rem;
  }
}

.menu-section-head {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.menu-section-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--ocre);
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .menu-section-title {
    font-size: 2.25rem;
  }
}

.menu-section-line {
  height: 1px;
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
}

.menu-section-sub {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(242, 240, 237, 0.5);
  margin-bottom: 2.5rem;
}

.menu-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--salt);
  transition: color 0.3s;
}

@media (min-width: 1024px) {
  .menu-item-name {
    font-size: 1.5rem;
  }
}

.menu-item:hover .menu-item-name {
  color: var(--ocre);
}

.menu-item-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(242, 240, 237, 0.6);
  max-width: 42rem;
}

@media (min-width: 1024px) {
  .menu-item-desc {
    font-size: 1rem;
  }
}

.menu-item-price {
  font-size: 0.875rem;
  color: var(--ocre);
  white-space: nowrap;
  padding-top: 0.25rem;
}

.carta-note {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(242, 240, 237, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.carta-reserve {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--sea-60);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.carta-reserve-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 3rem;
}

@media (min-width: 640px) {
  .carta-reserve-inner {
    flex-direction: row;
  }
}

.carta-reserve-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--salt);
  text-align: center;
}

@media (min-width: 1024px) {
  .carta-reserve-title {
    font-size: 1.875rem;
  }
}

.carta-reserve-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .carta-reserve-actions {
    flex-direction: row;
  }
}

/* ============================================================
   Página 404
   ============================================================ */

.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.notfound-inner {
  max-width: 28rem;
  width: 100%;
  text-align: center;
}

.notfound-code {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 300;
  color: rgba(242, 240, 237, 0.12);
  line-height: 1;
}

.notfound-rule {
  height: 2px;
  width: 4rem;
  background-color: rgba(242, 240, 237, 0.2);
  margin: 1.5rem auto;
}

.notfound-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--salt);
}

.notfound-text {
  margin-top: 1rem;
  color: rgba(242, 240, 237, 0.6);
  line-height: 1.625;
}

.notfound-home {
  margin-top: 2rem;
}
