/* ─────────────────────────────────────────────────────────────────────────
   Wok On Waves · Design System
   Palette: Ivory / Sand / Sea-Green / Brass / Ink
───────────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --ivory:       #FAF8F2;
  --sand:        #F0EAD6;
  --sand-dark:   #E2D9C0;
  --sea:         #3B6D64;
  --sea-dark:    #274F48;
  --sea-light:   #6BA898;
  --sea-pale:    #EBF3F1;
  --ink:         #1C2B38;
  --ink-mid:     #354D5E;
  --muted:       #7A8C96;
  --muted-light: #ADC0C8;
  --brass:       #B8892A;
  --brass-light: #D4A84A;
  --brass-pale:  #FBF4E4;
  --white:       #FFFFFF;
  --red:         #C0392B;

  --glass:       rgba(255,255,255,0.78);
  --glass-sand:  rgba(250,248,242,0.85);
  --glass-border:rgba(255,255,255,0.60);
  --glass-ink:   rgba(28,43,56,0.06);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-pill: 9999px;

  --sh-sm:  0 2px 12px rgba(28,43,56,0.07);
  --sh-md:  0 4px 28px rgba(28,43,56,0.10);
  --sh-lg:  0 12px 48px rgba(28,43,56,0.14);
  --sh-xl:  0 24px 80px rgba(28,43,56,0.18);

  --nav-h:   72px;
  --w:       1160px;
  --ease:    0.32s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ── Utility ────────────────────────────────────────────────────────────── */
.container { max-width: var(--w); margin: 0 auto; padding: 0 24px; }
.section   { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--dark { background: var(--ink); color: var(--white); }
.section--sand { background: var(--sand); }
.section--sea  { background: var(--sea); color: var(--white); }
.section--sea-pale { background: var(--sea-pale); }

.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
  display: block;
}
.label--light { color: rgba(184,137,42,0.80); }
.label--sea   { color: var(--sea-light); }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; }
h1 { font-size: clamp(2.8rem,5.5vw,5.2rem); }
h2 { font-size: clamp(2.0rem,3.8vw,3.4rem); }
h3 { font-size: clamp(1.4rem,2.4vw,2.0rem); }
h4 { font-size: 1.25rem; }

.text-brass  { color: var(--brass); }
.text-sea    { color: var(--sea); }
.text-muted  { color: var(--muted); }
.text-center { text-align: center; }
.text-white  { color: var(--white); }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.03em;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brass);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184,137,42,0.35);
}
.btn-primary:hover {
  background: var(--brass-light);
  box-shadow: 0 8px 32px rgba(184,137,42,0.50);
  transform: translateY(-2px);
}
.btn-secondary {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.70);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--brass);
  border: 1.5px solid var(--brass);
}
.btn-outline:hover {
  background: var(--brass);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sea {
  background: var(--sea);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(59,109,100,0.30);
}
.btn-sea:hover {
  background: var(--sea-dark);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.8125rem; }
.btn-lg { padding: 17px 40px; font-size: 0.9375rem; }

/* ── Glass Card ─────────────────────────────────────────────────────────── */
.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--sh-md);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.card--sand { background: var(--glass-sand); }

/* ── Navigation ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--ease), box-shadow var(--ease);
}
.nav__inner {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.nav__logo img { height: 38px; width: auto; }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--ease);
  line-height: 1;
}
.nav__logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 6px 14px;
  border-radius: var(--r-sm);
  transition: all var(--ease);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--brass-light);
  transform: scaleX(0);
  transition: transform var(--ease);
  border-radius: 2px;
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta {
  margin-left: 12px;
  padding: 10px 22px;
  background: var(--brass);
  color: var(--white) !important;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(184,137,42,0.40);
  transition: all var(--ease);
}
.nav__cta:hover {
  background: var(--brass-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(184,137,42,0.50);
}
.nav__cta::after { display: none !important; }

.nav--scrolled {
  background: rgba(250,248,242,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 24px rgba(28,43,56,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.70);
}
.nav--scrolled .nav__logo-text { color: var(--ink); }
.nav--scrolled .nav__logo-sub  { color: var(--muted); }
.nav--scrolled .nav__link { color: var(--ink-mid); }
.nav--scrolled .nav__link:hover { color: var(--ink); }

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  padding: 6px;
  border-radius: var(--r-sm);
  margin-left: auto;
  transition: background var(--ease);
}
.nav__hamburger span {
  display: block;
  height: 1.5px;
  border-radius: 2px;
  background: var(--white);
  transition: all var(--ease);
}
.nav--scrolled .nav__hamburger span { background: var(--ink); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(250,248,242,0.98);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--sand-dark);
  box-shadow: var(--sh-lg);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  color: var(--ink-mid);
  font-size: 1rem;
  padding: 12px 16px;
}
.nav__mobile .nav__link:hover { color: var(--ink); background: var(--sand); }
.nav__mobile .nav__link::after { left: 16px; right: 16px; bottom: 6px; }
.nav__mobile .nav__cta {
  color: var(--white) !important;
  margin-left: 0;
  margin-top: 8px;
  text-align: center;
  justify-content: center;
  padding: 14px 22px;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1920&q=80');
  /* REPLACE: Upload a real Wok On Waves restaurant/marina photo here */
  background-size: cover;
  background-position: center 40%;
  transition: transform 0.6s ease;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(28,43,56,0.82) 0%,
    rgba(28,43,56,0.60) 40%,
    rgba(59,109,100,0.35) 70%,
    rgba(28,43,56,0.55) 100%
  );
}
.hero__overlay2 {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(28,43,56,0.70), transparent);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  width: 100%;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 24px;
}
.hero__tag::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--brass-light);
}
.hero__h1 {
  color: var(--white);
  max-width: 18ch;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.50);
  line-height: 1.05;
}
.hero__h1 em { font-style: italic; color: var(--brass-light); }
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 50ch;
  line-height: 1.70;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: bounce 2.2s ease infinite;
}
.hero__scroll svg { width: 16px; height: 16px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── Trust Bar ──────────────────────────────────────────────────────────── */
.trust {
  background: var(--sand);
  padding: 32px 0;
  border-bottom: 1px solid var(--sand-dark);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 24px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust__icon {
  width: 42px; height: 42px;
  background: var(--brass-pale);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--brass);
}
.trust__icon svg { width: 18px; height: 18px; }
.trust__title { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.trust__sub   { font-size: 0.75rem; color: var(--muted); margin-top: 1px; }

/* ── Section Header ─────────────────────────────────────────────────────── */
.sec-header { margin-bottom: 56px; }
.sec-header--center { text-align: center; }
.sec-header h2 { margin-top: 8px; }
.sec-header p  { color: var(--muted); max-width: 56ch; margin-top: 16px; font-size: 1.05rem; line-height: 1.70; }
.sec-header--center p { margin-left: auto; margin-right: auto; }

/* ── About ──────────────────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about__img-wrap:hover img { transform: scale(1.04); }
.about__badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  box-shadow: var(--sh-md);
}
.about__badge span { display: block; font-size: 0.7rem; font-family: var(--font-body); color: var(--muted); margin-top: 2px; letter-spacing: 0.08em; }
.about__text h2  { margin-bottom: 20px; }
.about__text p   { color: var(--muted); line-height: 1.80; margin-bottom: 16px; }
.about__stats    { display: flex; gap: 32px; margin: 32px 0; }
.about__stat-n   { font-family: var(--font-display); font-size: 2.8rem; color: var(--brass); line-height: 1; }
.about__stat-l   { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* ── Dish Grid ──────────────────────────────────────────────────────────── */
.dishes__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.dish-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.dish-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dish-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dish-card:hover .dish-card__img img { transform: scale(1.06); }
.dish-card__body { padding: 20px; }
.dish-card__cat  { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sea); margin-bottom: 6px; }
.dish-card__name { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); margin-bottom: 6px; }
.dish-card__desc { font-size: 0.8125rem; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.dish-card__price { font-family: var(--font-display); font-size: 1.1rem; color: var(--brass); font-weight: 500; }

/* ── Cocktails ──────────────────────────────────────────────────────────── */
.cocktails {
  position: relative;
  overflow: hidden;
}
.cocktails__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1470337458703-46ad1756a187?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cocktails__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,43,56,0.92) 0%, rgba(59,109,100,0.75) 100%);
}
.cocktails__content {
  position: relative; z-index: 2;
  padding: 100px 0;
}
.cocktails__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cocktails__list { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.cocktail-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  transition: background var(--ease);
}
.cocktail-item:hover { background: rgba(255,255,255,0.12); }
.cocktail-item__name { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); }
.cocktail-item__desc { font-size: 0.75rem; color: rgba(255,255,255,0.50); margin-top: 2px; }
.cocktail-item__price { font-size: 0.875rem; font-weight: 600; color: var(--brass-light); flex-shrink: 0; }
.cocktails__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-xl);
}
.cocktails__img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Events ─────────────────────────────────────────────────────────────── */
.events__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.event-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.event-card__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.event-card:hover .event-card__img { transform: scale(1.05); }
.event-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,43,56,0.88) 0%, rgba(28,43,56,0.20) 60%);
}
.event-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
}
.event-card__tag  { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 8px; }
.event-card__name { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); margin-bottom: 8px; }
.event-card__desc { font-size: 0.8125rem; color: rgba(255,255,255,0.65); line-height: 1.55; margin-bottom: 16px; }
.event-card__link { font-size: 0.8125rem; font-weight: 600; color: var(--brass-light); display: flex; align-items: center; gap: 6px; }

/* ── Reviews Carousel ───────────────────────────────────────────────────── */
.reviews {
  position: relative;
  overflow: hidden;
}
.reviews__bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--sand) 0%, var(--ivory) 100%);
}
.reviews__content { position: relative; z-index: 2; }
.reviews__track-wrap { overflow: hidden; }
.reviews__track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--sh-md);
  transition: box-shadow var(--ease);
  border: 1px solid rgba(184,137,42,0.10);
}
.review-card:hover { box-shadow: var(--sh-lg); }
.review-card__stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-card__stars svg { width: 16px; height: 16px; fill: var(--brass); color: var(--brass); }
.review-card__stars svg.empty { fill: var(--sand-dark); color: var(--sand-dark); }
.review-card__text { font-size: 0.9375rem; color: var(--ink-mid); line-height: 1.72; margin-bottom: 24px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sea-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--sea);
  flex-shrink: 0;
}
.review-card__name { font-weight: 600; font-size: 0.875rem; color: var(--ink); }
.review-card__meta { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.reviews__arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--sand-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mid);
  transition: all var(--ease);
  box-shadow: var(--sh-sm);
}
.reviews__arrow:hover {
  background: var(--brass);
  color: var(--white);
  border-color: var(--brass);
  transform: scale(1.08);
}
.reviews__arrow svg { width: 16px; height: 16px; }
.reviews__dots { display: flex; gap: 6px; }
.reviews__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sand-dark);
  transition: all var(--ease);
}
.reviews__dot.active { width: 20px; border-radius: 3px; background: var(--brass); }
.reviews__rating-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brass-pale);
  border: 1px solid rgba(184,137,42,0.25);
  border-radius: var(--r-pill);
  padding: 8px 20px;
  font-size: 0.875rem;
  color: var(--ink);
  margin-bottom: 20px;
  font-weight: 500;
}
.reviews__rating-badge strong { color: var(--brass); font-family: var(--font-display); font-size: 1.1rem; }

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq__list { max-width: 720px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--sand-dark); }
.faq__item:first-child { border-top: 1px solid var(--sand-dark); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  text-align: left;
  transition: color var(--ease);
}
.faq__q:hover { color: var(--brass); }
.faq__icon {
  width: 24px; height: 24px;
  border: 1.5px solid var(--sand-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--brass);
  transition: all var(--ease);
}
.faq__icon svg { width: 12px; height: 12px; transition: transform var(--ease); }
.faq__item.open .faq__icon { background: var(--brass); border-color: var(--brass); color: var(--white); }
.faq__item.open .faq__icon svg { transform: rotate(45deg); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq__a-inner { padding-bottom: 22px; color: var(--muted); line-height: 1.80; font-size: 0.9375rem; }

/* ── Reservation Form ───────────────────────────────────────────────────── */
.reservation { background: var(--sea); color: var(--white); }
.reservation .sec-header h2 { color: var(--white); }
.reservation .sec-header p  { color: rgba(255,255,255,0.65); }
.reservation .label { color: rgba(184,137,42,0.85); }
.res-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}
.res-form__full { grid-column: 1 / -1; }
.field-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  margin-bottom: 6px;
}
.field-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.9375rem;
  transition: border-color var(--ease), background var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.field-input::placeholder { color: rgba(255,255,255,0.30); }
.field-input:focus {
  outline: none;
  border-color: var(--brass-light);
  background: rgba(255,255,255,0.12);
}
.field-input option { background: var(--ink); color: var(--white); }
.field-input--select { cursor: pointer; }
textarea.field-input { resize: vertical; min-height: 100px; }
.res-form__submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 8px;
}
.res-form__privacy {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: -4px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
}
.form-success.show { display: block; }
.form-success svg { width: 48px; height: 48px; color: var(--brass-light); margin: 0 auto 16px; }
.form-success h3  { color: var(--white); font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 10px; }
.form-success p   { color: rgba(255,255,255,0.60); }

/* ── Contact Page ───────────────────────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info__icon {
  width: 44px; height: 44px;
  background: var(--sea-pale);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--sea);
}
.contact-info__icon svg { width: 18px; height: 18px; }
.contact-info__label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em; color: var(--muted); margin-bottom: 4px; }
.contact-info__val { color: var(--ink-mid); line-height: 1.60; }
.contact-info__val a:hover { color: var(--brass); }
.contact__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--sand-dark);
}
.contact__map iframe { width: 100%; height: 340px; border: none; display: block; }
.contact-form { background: var(--sand); border-radius: var(--r-lg); padding: 40px; }
.contact-form .field-input {
  border-color: var(--sand-dark);
  background: var(--white);
  color: var(--ink);
}
.contact-form .field-input::placeholder { color: var(--muted-light); }
.contact-form .field-input:focus { border-color: var(--sea); }
.contact-form .field-label { color: var(--muted); }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form-grid .full { grid-column: 1/-1; }

/* ── Menu Page ──────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,109,100,0.25) 0%, rgba(184,137,42,0.10) 100%);
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.55); font-size: 1.05rem; }

.menu-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 32px 24px 0;
  max-width: var(--w);
  margin: 0 auto;
}
.menu-tab {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: var(--white);
  border: 1.5px solid var(--sand-dark);
  transition: all var(--ease);
}
.menu-tab:hover { color: var(--sea); border-color: var(--sea-light); }
.menu-tab.active {
  background: var(--sea);
  color: var(--white);
  border-color: var(--sea);
  box-shadow: 0 4px 16px rgba(59,109,100,0.30);
}
.menu-panels { padding: 48px 0 80px; }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-panel__grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 24px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--r-md);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.menu-item:hover { border-color: var(--brass-light); box-shadow: var(--sh-sm); }
.menu-item__info {}
.menu-item__name  { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); margin-bottom: 4px; }
.menu-item__desc  { font-size: 0.8125rem; color: var(--muted); line-height: 1.50; }
.menu-item__flags { display: flex; gap: 4px; margin-top: 6px; }
.menu-item__flag  { font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 7px; border-radius: 4px; }
.menu-item__flag--v { background: #E8F5E9; color: #388E3C; }
.menu-item__flag--vg { background: #E8F5E9; color: #2E7D32; }
.menu-item__flag--gf { background: #FFF8E1; color: #F9A825; }
.menu-item__flag--spicy { background: #FFEBEE; color: #C62828; }
.menu-item__price { font-family: var(--font-display); font-size: 1.2rem; color: var(--brass); white-space: nowrap; flex-shrink: 0; }
.menu-note {
  max-width: var(--w);
  margin: 28px auto 0;
  padding: 16px 24px;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--sand-dark);
}

/* ── Admin (basic) ──────────────────────────────────────────────────────── */
.adm-body { background: #F4F6F9; font-family: var(--font-body); }
.adm-sidebar {
  position: fixed; top: 0; left: 0;
  width: 240px; height: 100vh;
  background: var(--ink);
  color: rgba(255,255,255,0.80);
  display: flex; flex-direction: column;
  z-index: 50;
}
.adm-sidebar__brand {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
}
.adm-sidebar__sub { font-size: 11px; font-family: var(--font-body); color: rgba(255,255,255,0.40); margin-top: 2px; }
.adm-nav { display: flex; flex-direction: column; gap: 2px; padding: 16px 12px; flex: 1; }
.adm-nav__link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
}
.adm-nav__link svg { width: 16px; height: 16px; }
.adm-nav__link:hover, .adm-nav__link.active { background: rgba(255,255,255,0.10); color: var(--white); }
.adm-nav__link.active { background: var(--sea-dark); color: var(--white); }
.adm-main { margin-left: 240px; padding: 32px; min-height: 100vh; }
.adm-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.adm-header h1 { font-size: 1.4rem; color: var(--ink); font-family: var(--font-display); }
.adm-stats { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-bottom: 28px; }
.adm-stat {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: var(--sh-sm);
}
.adm-stat__n { font-family: var(--font-display); font-size: 2rem; color: var(--ink); }
.adm-stat__l { font-size: 0.75rem; color: var(--muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.08em; }
.adm-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-sm); }
.adm-table th { background: var(--sand); padding: 12px 16px; text-align: left; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.adm-table td { padding: 14px 16px; border-top: 1px solid var(--sand); font-size: 0.875rem; color: var(--ink-mid); vertical-align: middle; }
.adm-table tr:hover td { background: rgba(0,0,0,0.015); }
.badge { display: inline-block; padding: 3px 10px; border-radius: var(--r-pill); font-size: 11px; font-weight: 600; }
.badge-pending   { background: #FEF9C3; color: #854D0E; }
.badge-confirmed { background: #DCFCE7; color: #166534; }
.badge-cancelled { background: #FEE2E2; color: #991B1B; }
.badge-completed { background: #DBEAFE; color: #1E40AF; }
.badge-noshow    { background: #F3F4F6; color: #374151; }
.adm-action { padding: 5px 11px; border-radius: var(--r-sm); font-size: 12px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.adm-action-confirm  { background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; }
.adm-action-cancel   { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }
.adm-action-note     { background: var(--sand); color: var(--ink-mid); border: 1px solid var(--sand-dark); }
.adm-action:hover    { opacity: 0.80; }
.adm-filter { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.adm-filter input, .adm-filter select {
  padding: 8px 14px; border-radius: var(--r-sm); border: 1.5px solid var(--sand-dark);
  font-size: 0.875rem; background: var(--white); color: var(--ink);
}
.adm-filter input:focus, .adm-filter select:focus { outline: none; border-color: var(--sea); }

/* ── Sticky Reserve ──────────────────────────────────────────────────────── */
.sticky-reserve {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brass);
  color: var(--white);
  padding: 13px 32px;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(184,137,42,0.50), 0 2px 8px rgba(0,0,0,0.20);
  z-index: 80;
  transition: all var(--ease);
  white-space: nowrap;
  display: none;
}
.sticky-reserve:hover {
  background: var(--brass-light);
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,137,42,0.55);
}
.sticky-reserve.visible { display: block; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer { background: var(--ink); color: rgba(255,255,255,0.65); }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 0 48px;
  max-width: var(--w);
  margin: 0 auto;
  padding-left: 24px; padding-right: 24px;
}
.footer__brand-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 4px; }
.footer__brand-sub  { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(184,137,42,0.70); margin-bottom: 16px; }
.footer__brand-p    { font-size: 0.875rem; line-height: 1.70; max-width: 30ch; }
.footer__socials    { display: flex; gap: 10px; margin-top: 20px; }
.footer__social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--ease);
}
.footer__social:hover { background: var(--brass); border-color: var(--brass); color: var(--white); }
.footer__social svg { width: 15px; height: 15px; }
.footer__col-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer__col-links { display: flex; flex-direction: column; gap: 8px; }
.footer__col-links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--ease); }
.footer__col-links a:hover { color: var(--white); }
.footer__address { font-size: 0.875rem; line-height: 1.80; }
.footer__address a { color: var(--brass-light); transition: color var(--ease); }
.footer__address a:hover { color: var(--brass); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  max-width: var(--w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.30);
}

/* ── Scroll Reveal ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .trust__grid    { grid-template-columns: repeat(2,1fr); }
  .dishes__grid   { grid-template-columns: repeat(2,1fr); }
  .cocktails__grid { grid-template-columns: 1fr; }
  .cocktails__img  { aspect-ratio: 16/9; order: -1; }
  .footer__top    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .adm-stats      { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 64px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .about__grid    { grid-template-columns: 1fr; gap: 40px; }
  .dishes__grid   { grid-template-columns: 1fr 1fr; gap: 12px; }
  .events__grid   { grid-template-columns: 1fr; }
  .event-card     { aspect-ratio: 4/3; }
  .review-card    { flex: 0 0 calc(100% - 0px); }
  .res-form       { grid-template-columns: 1fr; }
  .contact__grid  { grid-template-columns: 1fr; gap: 40px; }
  .menu-panel__grid { grid-template-columns: 1fr; }
  .footer__top    { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .adm-sidebar    { display: none; }
  .adm-main       { margin-left: 0; padding: 20px; }
  .adm-stats      { grid-template-columns: repeat(2,1fr); }
  .contact-form-grid { grid-template-columns: 1fr; }
  .trust__grid    { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero__actions  { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .dishes__grid { grid-template-columns: 1fr; }
  .trust__grid  { grid-template-columns: 1fr; }
  .menu-tabs    { gap: 4px; padding: 20px 16px 0; }
  .menu-tab     { padding: 8px 14px; font-size: 12px; }
  .adm-stats    { grid-template-columns: 1fr 1fr; }
}