﻿/* ═══════════════════════════════════════════
   YOGORINO BEACH — Salient-inspired layout
   Colors: yogorino.com brand teal
   ═══════════════════════════════════════════ */

:root {
  --bg: #f2f4e9;
  --bg-soft: #f8f9f2;
  --surface: #ffffff;
  --surface-strong: #f2f4e9;
  --ink: #1d1d1b;
  --ink-soft: #2a5e54;
  --ink-muted: #5a7a75;
  --brand: #347369;
  --brand-strong: #1a5a52;
  --accent: #199089;
  --accent-soft: #7cc8c4;
  --accent-dark: #147872;
  --accent-darker: #0f6560;
  --ok: #2ba968;
  --line: rgba(25, 144, 137, 0.12);
  --line-strong: rgba(25, 144, 137, 0.20);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1120px;
  --section-py: clamp(64px, 8vw, 120px);
  --transition: cubic-bezier(0.25, 1, 0.33, 1);
}

/* ─── RESET ─── */

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

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Manrope", "Open Sans", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  background-color: #f2f4e9;
  overflow-x: hidden;
}

h1, h2, h3, .logo {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

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

a:hover {
  color: var(--accent-dark);
}

/* ─── CONTAINER ─── */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HEADER ─── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.45s var(--transition), box-shadow 0.45s var(--transition);
}

.site-header.is-scrolled {
  background-color: rgba(242, 244, 233, 0.96);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  transition: padding 0.35s var(--transition);
}

.site-header.is-scrolled .header-inner {
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  text-decoration: none;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0;
  transition: color 0.3s;
}

.logo span {
  font-weight: 600;
  color: var(--ink-muted);
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.35s var(--transition);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--accent);
}

.nav-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border: 0;
  box-shadow: 0 6px 20px rgba(25, 144, 137, 0.25);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover,
.nav-cta.is-active {
  background: var(--accent-dark);
  transform: translateY(-1px);
  color: #fff;
}

.nav-cta-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO (full-width, Salient-style) ─── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s cubic-bezier(0.1, 0.2, 0.7, 1);
}

.hero:hover .hero-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.40) 60%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 24px 80px;
  color: #fff;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.90);
  margin: 0 0 20px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-soft);
}

.hero-copy {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 32px;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { opacity: 0; transform: translateX(-50%) translateY(0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ─── MENU HERO BANNER ─── */

.menu-hero-banner {
  padding: 140px 0 60px;
  background: linear-gradient(160deg, #e8ebe0 0%, var(--bg) 100%);
}

.menu-hero-banner .hero-title {
  color: var(--ink);
}

.menu-hero-banner .hero-title em {
  color: var(--accent);
}

.menu-hero-banner .hero-copy {
  color: var(--ink-soft);
}

.menu-hero-banner .btn-ghost {
  background: rgba(25, 144, 137, 0.08);
  border: 2px solid var(--accent);
  color: var(--accent);
}

.menu-hero-banner .btn-ghost:hover {
  background: rgba(25, 144, 137, 0.14);
  color: var(--accent-dark);
}

.menu-hero-content {
  max-width: 640px;
}

/* ─── BUTTONS ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition), background 0.35s, color 0.35s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 38px;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 24px rgba(25, 144, 137, 0.28);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -150%;
  width: 50%;
  height: 160%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.6s var(--transition);
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 12px 32px rgba(25, 144, 137, 0.35);
  color: #fff;
}

.btn-primary:hover::after {
  left: 130%;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-secondary:hover {
  background: rgba(25, 144, 137, 0.08);
  box-shadow: 0 6px 18px rgba(25, 144, 137, 0.12);
  color: var(--accent);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.btn-whatsapp {
  background: linear-gradient(140deg, #2ba968, #1f9157);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 20px rgba(43, 169, 104, 0.28);
}

.btn-whatsapp:hover {
  background: linear-gradient(140deg, #238e5c, #1a7a4b);
  color: #fff;
}

/* ─── SECTIONS ─── */

.section {
  padding: var(--section-py) 0;
}

.section--soft {
  background: #eaede2;
}

.section--teal {
  background: linear-gradient(160deg, #e4e8da 0%, #dae0d0 100%);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 16px;
  color: var(--ink);
}

.section-header p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ─── HOURS BAR ─── */

.hours-bar {
  padding: 32px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.hour-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hour-item strong {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.hour-item span {
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 700;
}

/* ─── CATEGORY GRID ─── */

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--line);
  transition: transform 0.45s var(--transition), box-shadow 0.45s var(--transition);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: var(--accent);
}

.category-title {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.category-text {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.92rem;
}

.category-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.3s;
}

.category-link:hover {
  gap: 10px;
  color: var(--accent-dark);
}

/* ─── SPLIT LAYOUT ─── */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-layout--reverse {
  direction: rtl;
}

.split-layout--reverse > * {
  direction: ltr;
}

.split-text .section-eyebrow {
  text-align: left;
}

.split-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 18px;
}

.split-text p {
  color: var(--ink-soft);
  margin: 0 0 18px;
  line-height: 1.7;
}

.feature-list {
  padding-left: 0;
  list-style: none;
  margin: 0 0 28px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.visual-placeholder {
  background: linear-gradient(145deg, #d6ecea, #e8f4f3);
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* ─── GALLERY ─── */

.gallery-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.ig-item {
  overflow: hidden;
  display: block;
  border-radius: var(--radius-md);
  transition: transform 0.45s var(--transition), box-shadow 0.45s var(--transition);
}

.ig-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ig-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.feed-status,
.feed-note {
  text-align: center;
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.feed-status.error {
  color: #c0392b;
}

/* ─── SOCIAL ─── */

.contact-actions {
  text-align: center;
  margin-bottom: 32px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.social-card {
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition), border-color 0.4s;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.social-card span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.social-card strong {
  font-size: 1rem;
  font-weight: 700;
}

.contact-inline {
  color: var(--ink-soft);
}

.contact-inline a {
  color: var(--accent);
  font-weight: 800;
}

/* ─── PRICE TABLE ─── */

.menu-helper {
  margin-bottom: 14px !important;
  font-weight: 700;
}

.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  table-layout: fixed;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 16px 14px;
  border: 0;
  white-space: nowrap;
}

.price-table th:not(:first-child),
.price-value {
  text-align: right;
}

.price-table th.price-label,
.price-table td.price-label {
  text-align: left;
}

.price-table th.price-value,
.price-table td.price-value {
  text-align: right;
}

.price-table th {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  background: #eaede2;
}

.price-table tbody tr {
  border-bottom: 1px solid var(--line);
}

.price-table tbody tr:last-child {
  border-bottom: 0;
}

.price-table tbody tr:hover {
  background: rgba(25, 144, 137, 0.04);
}

.price-label {
  color: var(--ink);
  font-weight: 700;
}

.price-value {
  color: var(--accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.price-unavailable {
  color: var(--ink-muted);
}

/* ─── MENU CARDS ─── */

.menu-grid-2,
.menu-grid-3 {
  display: grid;
  gap: 16px;
}

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

.menu-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.menu-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.menu-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 8px;
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--accent);
  border: 0;
  transition: transform 0.3s;
}

.menu-card:hover .badge {
  transform: translateY(-1px);
}

.menu-card p,
.menu-card ul {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.menu-card ul {
  padding-left: 18px;
  margin-top: 8px;
}

.menu-card-rich h4 {
  margin: 16px 0 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 800;
}

/* ─── CHIP LIST ─── */

.chip-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-list li span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
}

.chip-list li {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  background: rgba(25, 144, 137, 0.04);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  font-size: 0.83rem;
  color: var(--brand);
  cursor: default;
  transition: background 0.3s;
}

.chip-list li:hover {
  background: rgba(25, 144, 137, 0.08);
}

.chip-list li small {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 0.71rem;
  line-height: 1.3;
}

.allergen-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.83rem;
  color: var(--ink-muted);
}

/* ─── TASTE ICONS ─── */

.taste-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 auto;
}

.taste-icon-all { background: linear-gradient(145deg, #199089, #347369); }
.taste-icon-cioccolato { background: #5a3a2a; }
.taste-icon-frutta { background: #d96b3f; }
.taste-icon-croccante { background: #a0785a; }
.taste-icon-fresco { background: #73b2ad; }

/* ─── ORDER BUILDER ─── */

.order-builder {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.order-type-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.order-type-toggle label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  border: 1px solid var(--line-strong);
  background: rgba(25, 144, 137, 0.04);
  color: var(--brand);
  font-weight: 700;
  padding: 10px 16px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.order-type-toggle label:has(input:checked) {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.order-panel {
  margin-top: 8px;
}

.order-panel.is-hidden {
  display: none;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.order-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-field span {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.order-field select {
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.3s;
}

.order-field select:focus {
  outline: 0;
  border-color: var(--accent);
}

.order-fieldset {
  margin: 16px 0 0;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  padding: 16px;
}

.order-fieldset legend {
  color: var(--brand);
  font-weight: 800;
  padding: 0 8px;
  font-size: 0.88rem;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.check-grid label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  cursor: pointer;
}

.order-summary {
  margin-top: 20px;
  border: 1px solid var(--line);
  background: #f0f8f7;
  border-radius: var(--radius-md);
  padding: 20px;
}

.order-summary h3 {
  margin: 0 0 8px;
}

.order-summary p {
  margin: 0;
}

.order-breakdown {
  margin-top: 8px !important;
  color: var(--ink-soft);
  font-weight: 700;
}

.order-price {
  margin-top: 8px !important;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
}

.combo-actions {
  margin-top: 16px;
}

/* ─── MAP ─── */

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* ─── MENU NOTE ─── */

.menu-note {
  border: 1px dashed var(--line-strong);
  background: rgba(25, 144, 137, 0.03);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.menu-note p {
  margin: 0;
  color: var(--ink-soft);
}

.menu-note p + p {
  margin-top: 14px;
}

/* ─── FOOTER ─── */

.site-footer {
  background: #0c332e;
  color: #d4e8e6;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-brand {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent-soft);
}

.footer-brand span {
  font-weight: 600;
  color: #73b2ad;
  margin-left: 4px;
}

.footer-subtitle {
  margin: 6px 0 0;
  color: #6a9c98;
  font-size: 0.88rem;
}

.footer-heading {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #73b2ad;
}

.footer-col p {
  margin: 0;
  color: #b8d4d2;
  line-height: 1.6;
  font-size: 0.92rem;
}

.footer-col p + p {
  margin-top: 4px;
}

.footer-col a,
.footer-link {
  color: var(--accent-soft);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover,
.footer-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-copy {
  margin: 32px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #4a7a75;
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
}

/* ─── LIDO PRICING CARDS ─── */

.category-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.lido-card {
  text-align: center;
}

.lido-price {
  margin: 16px 0 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.lido-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lido-card--premium .category-icon {
  background: linear-gradient(140deg, var(--accent), var(--accent-dark));
}

/* ─── WHATSAPP FAB ─── */

.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 0;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
}

.whatsapp-fab::before {
  content: "\260E";
  font-size: 1.4rem;
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  color: #fff;
}

/* ─── REVEAL ANIMATION ─── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

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

/* ─── RESPONSIVE ─── */

@media (max-width: 1023px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-layout--reverse {
    direction: ltr;
  }

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

  .category-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-grid-2 {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 640px) {
  :root {
    --section-py: 48px;
  }

  .header-inner {
    position: relative;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    gap: 0;
    padding: 0;
    background: rgba(242, 244, 233, 0.75);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  }

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

  .nav-links .nav-link {
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
  }

  .nav-cta-group {
    display: none;
  }

  .nav-cta-group.is-open {
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    gap: 12px;
    border-top: 1px solid var(--line);
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .hero-content {
    padding: 100px 16px 60px;
  }

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

  .category-grid--3 {
    grid-template-columns: 1fr;
  }

  .menu-grid-3 {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

  .price-table {
    font-size: 0.85rem;
  }

  .price-table th,
  .price-table td {
    padding: 10px 8px;
  }

  .menu-hero-banner {
    padding: 110px 0 40px;
  }

  .order-builder {
    padding: 20px 16px;
  }
}
