:root {
  color-scheme: light;
  --sea-deep: #b8861b;
  --sea: #f0c766;
  --sea-soft: #f5f5f7;
  --sun: #f0c766;
  --terracotta: #6e6e73;
  --olive: #b8861b;
  --sand: #f5f5f7;
  --ivory: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29, 29, 31, 0.1);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 20px 44px rgba(0, 0, 0, 0.14);
  font-size: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "SF Pro Text",
    "SF Pro Display",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: #f5f5f7;
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.logo img {
  height: 48px;
}

.nav-links {
  display: flex;
  gap: 1.35rem;
  font-weight: 600;
  align-items: center;
}

.nav-links a,
.nav-dropdown > a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.93rem;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}

.nav-links a::after,
.nav-dropdown > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--sea-deep);
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after {
  transform: scaleX(1);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 190px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 0.4rem;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 40;
}

.nav-submenu a {
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
}

.nav-submenu a::after {
  display: none;
}

.nav-submenu a:hover {
  background: rgba(184, 134, 27, 0.14);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  display: flex;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.lang-option {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-option:hover {
  color: var(--sea-deep);
  background: rgba(184, 134, 27, 0.14);
}

.lang-option.active {
  background: linear-gradient(120deg, var(--sea-deep) 0%, var(--sea) 100%);
  color: #fff;
  box-shadow: 0 8px 14px rgba(95, 58, 37, 0.22);
}

.lang-option:focus-visible {
  outline: 2px solid rgba(184, 134, 27, 0.45);
  outline-offset: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--sea-deep);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 6px 14px rgba(184, 134, 27, 0.18);
}

.button.secondary {
  background: #fff;
  color: var(--sea-deep);
  border-color: rgba(29, 29, 31, 0.14);
  box-shadow: none;
}

.button.small {
  padding: 0.48rem 1rem;
  font-size: 0.8rem;
}

.button:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 10px 20px rgba(184, 134, 27, 0.24);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 76vh;
  padding: 3.2rem 2.5rem;
  max-width: 1200px;
  margin: 2rem auto 1.5rem;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(28, 17, 12, 0.74) 0%, rgba(28, 17, 12, 0.45) 44%, rgba(28, 17, 12, 0.28) 100%),
    linear-gradient(180deg, rgba(20, 12, 8, 0.1) 0%, rgba(20, 12, 8, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: #a1a1a6;
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  font-family:
    "SF Pro Display",
    "SF Pro Text",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.8rem, 4.2vw, 4.2rem);
}

h2 {
  font-size: clamp(2.1rem, 3.2vw, 3rem);
}

h3 {
  font-size: clamp(1.7rem, 2vw, 2.1rem);
}

h4 {
  font-size: 1.2rem;
}

.hero h1 {
  color: #fff8ea;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.lead {
  font-size: 1.02rem;
  color: rgba(255, 246, 227, 0.92);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.section {
  padding: 4.8rem 2.5rem;
}

.section-title {
  max-width: 780px;
  margin: 0 auto 2.7rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.about {
  background: #ffffff;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted);
  font-size: 1rem;
}

.about-story-card {
  background: #fbfbfd;
  border-radius: 26px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(122, 95, 45, 0.16);
  justify-content: flex-start;
}

.about-story-card h3 {
  color: var(--sea-deep);
}

.about-quote {
  margin-top: 0.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(122, 95, 45, 0.24);
  position: relative;
}

.about-quote p {
  font-family: "Snell Roundhand", "Bradley Hand", "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  color: var(--sea-deep);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.about-quote p::before {
  content: "“";
  margin-right: 0.15em;
  opacity: 0.65;
}

.about-quote p::after {
  content: "”";
  margin-left: 0.12em;
  opacity: 0.65;
}

.about-quote cite {
  display: block;
  margin-top: 0.45rem;
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.about-card {
  background: #fbfbfd;
  border-radius: 26px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(122, 95, 45, 0.16);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.about-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 600;
}

.about-card ul li::before {
  content: "✦";
  margin-right: 0.6rem;
  color: var(--terracotta);
}

.about-card img {
  border-radius: 16px;
}

.menu {
  background: #f5f5f7;
}

.menu-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.groups-menu {
  background: #f7f4ee;
}

.groups-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.menu-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(3px);
  border-radius: 18px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(107, 92, 52, 0.2);
  box-shadow: 0 12px 30px rgba(67, 58, 31, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(67, 58, 31, 0.2);
}

#menu-individual .menu-item {
  border-bottom: 0;
  padding-bottom: 0.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "name price"
    "desc desc";
  column-gap: 0.65rem;
  align-items: baseline;
}

#menu-individual .menu-item:last-child {
  border-bottom: 0;
}

#menu-individual .menu-item-name {
  color: var(--ink);
  font-weight: 700;
  grid-area: name;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

#menu-individual .menu-item-name::after {
  content: "";
  flex: 1;
  border-bottom: 1px dotted rgba(115, 99, 58, 0.42);
  transform: translateY(-0.12rem);
}

#menu-individual .menu-item-desc {
  color: var(--muted);
  font-size: 0.9rem;
  grid-area: desc;
  margin-top: 0.1rem;
}

#menu-individual .menu-item-price {
  color: var(--sea-deep);
  font-weight: 700;
  grid-area: price;
  white-space: nowrap;
  text-align: right;
  align-self: baseline;
}

#menu-groups .menu-item {
  border-bottom: 0;
  padding-bottom: 0.55rem;
}

#menu-groups .menu-item:last-child {
  border-bottom: 0;
}

#menu-groups .menu-item-name {
  color: var(--ink);
  font-weight: 700;
}

#menu-groups .menu-item-desc {
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-section-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.menu-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.menu-note p {
  color: var(--muted);
}

.menu-quote {
  font-family:
    "SF Pro Display",
    "SF Pro Text",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--sea-deep);
  font-size: 1.35rem;
  font-weight: 600;
}

.gallery-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery {
  background: #ffffff;
}

.gallery-grid a {
  display: block;
  border-radius: 18px;
  overflow: hidden;
}

.gallery-grid img {
  border-radius: 18px;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-strong);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(21, 12, 8, 0.8);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 120;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(92vw, 1200px);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 233, 190, 0.35);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: scale(1.05);
}

.private {
  background:
    linear-gradient(145deg, #1d1d1f 0%, #2b2b2e 100%);
  color: #f7ede1;
}

.private .eyebrow {
  color: #8e8e93;
}

.private h2,
.private h4,
.private h3 {
  color: #fff;
}

.private-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  justify-items: center;
}

.private-grid p {
  color: rgba(252, 241, 228, 0.92);
}

.private-grid > div {
  max-width: 820px;
  text-align: center;
}

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

.private-details div {
  background: rgba(255, 249, 234, 0.08);
  border: 1px solid rgba(255, 235, 187, 0.24);
  border-radius: 14px;
  padding: 0.95rem;
}

.reservation {
  background: #f5f5f7;
}

.contact-map {
  background: #ffffff;
}

.reservation-card {
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  padding: 2.2rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(109, 95, 55, 0.2);
  box-shadow: var(--shadow-soft);
}

.site-footer {
  background: #1d1d1f;
  color: #d2d2d7;
  padding: 3.5rem 2.5rem 2.5rem;
}

.site-footer h4 {
  color: #fff;
}

.footer-grid {
  max-width: 1120px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer-logo {
  width: 90px;
  margin-bottom: 1rem;
}

.footer-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.site-footer .button.secondary {
  color: #f5f5f7;
  border-color: rgba(210, 210, 215, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.footer-map {
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.footer-map iframe {
  display: block;
  width: 100%;
  min-height: 360px;
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(210, 210, 215, 0.2);
  display: flex;
  justify-content: space-between;
  color: rgba(210, 210, 215, 0.78);
  font-size: 0.84rem;
}

.hero-content,
.about-card,
.menu-card,
.gallery-grid img,
.reservation-card,
.footer-map {
  animation: rise-in 0.7s ease both;
}

.menu-card:nth-child(2),
.gallery-grid img:nth-child(2) {
  animation-delay: 0.08s;
}

.menu-card:nth-child(3),
.gallery-grid img:nth-child(3) {
  animation-delay: 0.15s;
}

.menu-card:nth-child(4),
.gallery-grid img:nth-child(4) {
  animation-delay: 0.2s;
}

.menu-card:nth-child(5),
.gallery-grid img:nth-child(5) {
  animation-delay: 0.26s;
}

.menu-card:nth-child(6),
.gallery-grid img:nth-child(6) {
  animation-delay: 0.32s;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .about-grid,
  .private-grid,
  .reservation-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 62vh;
    padding-top: 2rem;
    gap: 1.35rem;
  }

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

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

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

  .private-details {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    flex-direction: column;
    gap: 0.7rem;
  }
}

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

  .menu-links .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .nav-container,
  .section,
  .hero,
  .site-footer {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .hero {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .nav-actions {
    gap: 0.6rem;
  }

  .lang-switch {
    display: inline-flex;
    padding: 0.18rem;
    gap: 0.12rem;
  }

  .lang-option {
    font-size: 0.68rem;
    padding: 0.28rem 0.5rem;
    letter-spacing: 0.07em;
  }

  .nav-actions .button {
    padding: 0.62rem 1rem;
    font-size: 0.82rem;
  }

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

  .hero-content,
  .reservation-card {
    padding: 1.4rem;
  }

  .hero-content {
    padding: 0.2rem 0;
  }

  .footer-map iframe {
    min-height: 280px;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-actions {
    justify-content: center;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .logo img {
    height: 42px;
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .nav-actions .button {
    padding: 0.55rem 0.82rem;
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
