﻿@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #0d1417;
  --ink-soft: #35525d;
  --snow: #f8faf8;
  --night: #08161f;
  --night-soft: #13303f;
  --mint: #69d8ca;
  --mint-soft: #a8ebe3;
  --sand: #f2cb8b;
  --line: rgba(16, 43, 56, 0.17);
}

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

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

body {
  font-family: 'Sora', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 15%, rgba(105, 216, 202, 0.28), transparent 34%),
    radial-gradient(circle at 15% 80%, rgba(242, 203, 139, 0.2), transparent 30%),
    #f8faf8;
  line-height: 1.65;
}

.wrap {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

.topline {
  padding: 1.2rem 0 0.9rem;
}

.topline a {
  text-decoration: none;
  color: #1b4f5b;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-right: 1rem;
  font-weight: 700;
}

.hero {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: clamp(1.4rem, 4vw, 2.3rem);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 36px rgba(12, 57, 69, 0.11);
}

.kicker {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: #2d6771;
  font-weight: 600;
}

h1 {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(2rem, 6.5vw, 4rem);
  line-height: 0.95;
}

.hero p {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  max-width: 67ch;
}

.info-bar {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.8rem 0.95rem;
  background: #f6fcfb;
  color: #1f505b;
  font-weight: 600;
}

.actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn--solid {
  color: #032028;
  background: linear-gradient(120deg, var(--mint), var(--mint-soft));
  box-shadow: 0 12px 24px rgba(58, 173, 161, 0.25);
}

.btn--line {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
}

.btn--fx::after {
  content: '';
  position: absolute;
  top: -140%;
  left: -60%;
  width: 42%;
  height: 320%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 45%,
    transparent 100%
  );
  transform: rotate(18deg);
  pointer-events: none;
}

.btn--fx:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 28px rgba(13, 59, 71, 0.2);
}

.btn--fx:hover::after {
  animation: btnShine 0.9s ease;
}

.actions--extra {
  margin-top: 0.95rem;
}

.section {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  background: #ffffff;
}

.section h2 {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.5rem, 5vw, 2.3rem);
  font-weight: 400;
  line-height: 1.05;
}

.section p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
}

.grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.95rem;
  background: #fbfdfc;
}

.card h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #214d58;
}

.card p {
  margin: 0.7rem 0 0;
}

.card strong {
  color: #0f4150;
}

.menu-photo-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.menu-photo-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  overflow: hidden;
  background: #fbfdfc;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-photo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(13, 56, 68, 0.16);
}

.menu-photo-card img {
  width: 100%;
  display: block;
  min-height: 0;
  height: auto;
  object-fit: contain;
  background: #0c1922;
}

.js-lightbox-trigger {
  cursor: zoom-in;
}

.menu-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 2;
  border-radius: 999px;
  padding: 0.36rem 0.58rem;
  background: linear-gradient(125deg, #ffe38f, #ffb347);
  color: #5c2d00;
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 6px 14px rgba(71, 35, 0, 0.28);
}

.menu-photo-card figcaption {
  padding: 0.55rem 0.7rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: #1d4f5b;
}

.faq {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.faq li {
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.8rem;
  background: #fbfdfc;
}

.faq h3 {
  margin: 0;
  font-size: 0.9rem;
  font-family: 'Sora', sans-serif;
  color: #173f4c;
}

.faq p {
  margin: 0.45rem 0 0;
}

.footer {
  margin-top: 1rem;
  margin-bottom: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.95rem;
  background: #08161f;
  color: #d2e7eb;
}

.footer p {
  margin: 0;
}

.footer p + p {
  margin-top: 0.35rem;
  color: #95b8c0;
}

.menu-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(4, 12, 19, 0.94);
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.menu-lightbox[aria-hidden='false'] {
  opacity: 1;
  visibility: visible;
}

.menu-lightbox__img {
  width: auto;
  height: auto;
  max-width: min(94vw, 1500px);
  max-height: 90vh;
  object-fit: contain;
  background: #0b1620;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.5);
}

.menu-lightbox__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

@keyframes btnShine {
  from {
    left: -65%;
  }

  to {
    left: 132%;
  }
}

@media (max-width: 920px) {
  .grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .wrap {
    width: min(1100px, calc(100% - 1.2rem));
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

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