/* ============================================
   El Encanto — Cobá, Q.R.
   Editorial jungle aesthetic
   ============================================ */

/* --- Variables --- */
:root {
  --bg: #0C1A10;
  --bg-alt: #111F15;
  --bg-card: #1C2E22;
  --cream: #EDE0CC;
  --cream-soft: #D5C8B0;
  --cream-muted: #B8AD9A;
  --terracotta: #C4723A;
  --terracotta-light: #D8915B;
  --gold: #C19A3E;
  --sage: #5E7A52;
  --sage-muted: #3D5235;
  --border: rgba(237, 224, 204, 0.12);
  --border-strong: rgba(237, 224, 204, 0.3);
  --shadow: rgba(0, 0, 0, 0.4);
  --font-display: 'Fraunces', serif;
  --font-body: 'Literata', serif;
  --max-w: 1200px;
  --max-w-narrow: 860px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--cream);
  background-color: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: var(--terracotta-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold);
}

ul, ol {
  list-style: none;
}

/* --- Grain overlay --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.03;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 10000;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--cream);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--cream);
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  font-family: var(--font-body);
}

.text-muted {
  color: var(--cream-muted);
}

.text-accent {
  color: var(--terracotta);
}

.text-gold {
  color: var(--gold);
}

/* --- Ornamental divider --- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem auto;
  max-width: 200px;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.4;
}

.ornament span {
  color: var(--terracotta);
  font-size: 0.7rem;
  line-height: 1;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(12, 26, 16, 0.85) 0%, rgba(12, 26, 16, 0.5) 50%, transparent 100%);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(12, 26, 16, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream-soft);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--terracotta-light);
}

.nav-links .lang-switch {
  font-size: 0.75rem;
  color: var(--cream-muted);
  border: 1px solid var(--border-strong);
  padding: 0.3em 0.7em;
  border-radius: 3px;
}

.nav-links .lang-switch:hover {
  border-color: var(--terracotta);
  color: var(--terracotta-light);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--terracotta);
  color: var(--bg) !important;
  padding: 0.55em 1.2em;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--terracotta-light);
  color: var(--bg) !important;
  transform: translateY(-1px);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(4rem, 10vh, 8rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 26, 16, 0.95) 0%,
    rgba(12, 26, 16, 0.6) 35%,
    rgba(12, 26, 16, 0.3) 60%,
    rgba(12, 26, 16, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
}

.hero h1 {
  margin-bottom: 0.2em;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-soft);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero-location {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cream-soft);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-google-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cream-soft);
  border-bottom: 1px solid transparent;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 1.1s forwards;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.hero-google-link:hover {
  color: var(--terracotta-light);
  border-color: var(--terracotta);
}

.hero-cta {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: clamp(1.5rem, 5vw, 4rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream-muted);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: var(--cream-muted);
  animation: scrollPulse 2s ease infinite;
}

/* --- Sections --- */
.section {
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
}

.section-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

.section-wide {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header h4 {
  margin-bottom: 0.8rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--cream-muted);
  font-size: 1.05rem;
}

/* --- Intro / Story --- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--cream-soft);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

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

.intro-highlight {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--terracotta-light);
  line-height: 1.5;
  border-left: 2px solid var(--terracotta);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.intro-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.intro-image:hover img {
  transform: scale(1.05);
}

.intro-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  pointer-events: none;
}

/* --- Specialties --- */
.platos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.plato-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.plato-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.plato-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.plato-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 4s ease;
}

.plato-card:hover .plato-card-img img {
  transform: scale(1.08);
}

.plato-card-body {
  padding: 1.5rem;
  flex: 1;
}

.plato-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.plato-card-body p {
  color: var(--cream-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.plato-card-hint {
  margin-top: 0.8rem;
  color: var(--cream-muted);
  font-size: 0.9rem;
}

/* Featured dish — large card */
.plato-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.plato-featured .plato-card-img {
  aspect-ratio: auto;
  min-height: 350px;
}

.plato-featured .plato-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.plato-featured .plato-card-body h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.plato-featured .plato-card-body p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Specialty list (text-only, elegant) */
.specialties-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.specialty-item {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.3s ease;
}

.specialty-item:hover {
  background: var(--bg-card);
}

.specialty-item .name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}

.specialty-item .dots {
  flex: 1;
  border-bottom: 1px dotted var(--border-strong);
  min-width: 30px;
  margin-bottom: 0.3em;
}

.specialty-item .tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  white-space: nowrap;
}

/* Kitchen also section */
.kitchen-also {
  margin-top: 3rem;
}

.kitchen-also-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.review-card {
  text-align: left;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-card);
}

.review-quote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--cream-soft);
  position: relative;
  padding: 0 0 0 1.5rem;
}

.review-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.3em;
  left: -0.1em;
  font-size: 3rem;
  color: var(--terracotta);
  opacity: 0.3;
  font-family: var(--font-display);
  line-height: 1;
}

.review-author {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cream-muted);
}

.review-author .source {
  color: var(--terracotta);
}

/* Divider between reviews */
.review-divider {
  width: 60px;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.5;
  margin: 0 auto;
}

/* Reviews Google link */
.reviews-google-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.reviews-google-link:hover {
  color: var(--terracotta-light);
  border-color: var(--terracotta);
}

.reviews-footer {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* --- Hours & Location --- */
.info-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.info-block h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.hours-row .day {
  color: var(--cream-soft);
  font-weight: 500;
}

.hours-row .time {
  color: var(--cream-muted);
}

.hours-note {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(196, 114, 58, 0.08);
  border-left: 2px solid var(--terracotta);
  border-radius: 0 4px 4px 0;
  color: var(--terracotta-light);
  font-size: 0.9rem;
  font-style: italic;
}

.address-block {
  margin-top: 2rem;
}

.address-block p {
  color: var(--cream-soft);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.address-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.address-link:hover {
  border-color: var(--terracotta);
  color: var(--terracotta-light);
}

.address-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Chef story (small block) */
.chef-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.chef-block p {
  color: var(--cream-muted);
  font-size: 0.95rem;
  font-style: italic;
}

.chef-block .name {
  color: var(--cream-soft);
  font-style: normal;
  font-weight: 500;
}

/* --- Extracted inline styles --- */
.info-sub {
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

.contact-block {
  margin-top: 2.5rem;
}

.contact-block h4 {
  margin-bottom: 0.8rem;
}

.phone-link {
  color: var(--cream-soft);
}

.contact-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 0.8rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.contact-inline svg {
  width: 20px;
  height: 20px;
  fill: #25D366;
  flex-shrink: 0;
}

.contact-inline .phone-link {
  font-size: 1rem;
  font-weight: 500;
}

.contact-inline .text-muted {
  font-size: 0.85rem;
}

/* --- Map embed --- */
.map-embed {
  margin-top: 2rem;
}

.map-embed iframe {
  border: 0;
  border-radius: 4px;
  filter: saturate(0.7);
  width: 100%;
  height: 300px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85em 1.8em;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--terracotta-light);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--terracotta);
  color: var(--terracotta-light);
}

.btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-group--center {
  justify-content: center;
}

/* --- Menu page --- */
.menu-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 3rem;
  text-align: center;
}

.menu-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  opacity: 1;
  transform: none;
  animation: none;
}

.menu-hero p {
  margin-top: 1rem;
  color: var(--cream-muted);
  font-size: 1.1rem;
  font-style: italic;
  font-family: var(--font-display);
}

.menu-section {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.menu-section h3 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.menu-items {
  max-width: 600px;
  margin: 0 auto;
}

.menu-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--border-strong);
  min-width: 20px;
  margin-bottom: 0.3em;
}

.menu-item-desc {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: var(--cream-muted);
  font-style: italic;
}

.menufic-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-card);
}

.menufic-cta p {
  color: var(--cream-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  background-color: var(--bg-alt);
  background-image:
    linear-gradient(rgba(12, 26, 16, 0.82), rgba(12, 26, 16, 0.88)),
    url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.cta-banner p {
  color: var(--cream-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* --- Footer --- */
.footer {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.footer-brand p {
  color: var(--cream-muted);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--cream-muted);
  font-size: 0.88rem;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--terracotta-light);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--cream-muted);
}

.footer-bottom a {
  color: var(--cream-muted);
  font-size: 0.78rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* --- WhatsApp floating --- */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* --- Scroll animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.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; }

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .intro-image {
    aspect-ratio: 16/10;
    order: -1;
  }

  .plato-featured {
    grid-template-columns: 1fr;
  }

  .plato-featured .plato-card-img {
    min-height: 250px;
  }

  .platos-grid {
    grid-template-columns: 1fr;
  }

  .specialties-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  body {
    font-size: 16px;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12, 26, 16, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
  }

  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: 90vh;
    padding-bottom: 4rem;
  }

  .hero-scroll {
    display: none;
  }

  .platos-grid {
    grid-template-columns: 1fr;
  }

  .specialties-list {
    grid-template-columns: 1fr;
  }

  .kitchen-also {
    display: none;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    background-attachment: scroll;
  }

  .review-quote {
    padding: 0 0.5rem;
  }

  .review-quote::before {
    position: static;
    display: block;
    margin-bottom: -0.5em;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.3rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3.5rem 1.2rem;
  }

  .hero {
    padding: 0 1.2rem 3rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .hours-row {
    flex-direction: column;
    gap: 0.2rem;
  }
}

/* Print */
@media print {
  .nav, .wa-float, .hero-scroll, .nav-toggle {
    display: none;
  }

  body {
    color: #222;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}
