:root {
  --bg: #f7f1e8;
  --surface: #fffaf3;
  --surface-2: #f1e6d5;
  --text: #1f1a17;
  --muted: #6d6258;
  --line: rgba(31, 26, 23, 0.12);
  --dark: #15110f;
  --accent: #8c5a2b;
  --accent-2: #b78a55;
  --white: #ffffff;
  --container: 1200px;
  --header-height: 82px;
  --radius: 24px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1300;
  background: rgba(21, 17, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.site-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 0;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-nav a:hover {
  color: #f3d2a8;
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(243, 210, 168, 0.35);
  border-radius: 999px;
}

.header-actions {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Language dropdown */
.lang-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.lang-current {
  width: auto;
  min-width: 64px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lang-current:hover {
  background: rgba(255, 255, 255, 0.16);
}

.lang-current[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
}

.arrow {
  font-size: 10px;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.lang-current[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: rgba(21, 17, 15, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 2000;
}

.lang-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-menu li {
  padding: 6px 14px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.lang-menu li:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Nav toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--header-height);
  background:
    linear-gradient(rgba(13, 10, 9, 0.45), rgba(13, 10, 9, 0.58)),
    url("../shares/images/background.jpg") center center / cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(183, 138, 85, 0.18), transparent 36%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 28%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 760px;
  padding: 56px 0;
}

.eyebrow,
.section-kicker,
.intro-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 18px;
  font-weight: 600;
}

.eyebrow {
  margin: 0 0 18px;
  color: #f1d7b4;
}

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: #74461d;
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* Intro strip */
.intro-strip {
  position: relative;
  z-index: 2;
  margin-top: -54px;
}

.intro-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.intro-strip-grid > div {
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(140, 90, 43, 0.10);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.intro-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
}

.intro-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 70vw;
  margin-bottom: 42px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
}

.section h2,
.section-heading h2 {
  margin-top: 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.12;
}

.section-heading p,
.section-copy p {
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 600;
}

/* About */
.two-col {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 620px;
}

.image-card {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-card.tall {
  width: 78%;
  height: 620px;
}

.image-card.small {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 46%;
  height: 280px;
  border: 8px solid var(--surface);
}

/* Specialties */
.specialties {
  background: linear-gradient(to bottom, #f9f3ea, #f4ebdf);
}

.food-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.food-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
}

.food-slider::-webkit-scrollbar {
  display: none;
}

.food-slider .food-card {
  min-width: 0;
  flex-shrink: 0;
}

.food-arrow {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(140, 90, 43, 0.18);
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.food-arrow:hover {
  transform: translateY(-1px);
  background: var(--accent);
  color: var(--white);
}

.food-card {
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(140, 90, 43, 0.10);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.food-image {
  height: 290px;
  background-size: cover;
  background-position: center;
  flex: 0 0 290px;
}

.food-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 240px;
}

.food-body h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1.3;
  min-height: 58px;
  display: flex;
  align-items: flex-start;
}

.food-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  flex: 1 1 auto;
}

.section-action {
  margin-top: 32px;
}

.center {
  text-align: center;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}

.gallery-item {
  min-height: 280px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.gallery-item.large {
  grid-row: span 2;
  min-height: 578px;
}

/* Reviews */
.reviews {
  background: var(--dark);
  color: var(--white);
}

.reviews .section-kicker {
  color: #f3d2a8;
}

.reviews .section-heading p {
  color: rgba(255, 255, 255, 0.70);
}

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

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 28px;
}

.quote {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
}

.review-card h3 {
  margin: 0;
  font-size: 18px;
}

.review-card span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

/* Reservation CTA */
.reservation-cta {
  background: linear-gradient(to bottom, #f4ebdf, #f7f1e8);
}

.reservation-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 38px;
  background: var(--surface);
  border: 1px solid rgba(140, 90, 43, 0.10);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.reservation-box h2 {
  margin-bottom: 14px;
}

.reservation-box p {
  margin: 0;
  color: var(--muted);
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.reservation-actions .btn-secondary {
  color: var(--text);
  border-color: rgba(31, 26, 23, 0.18);
  background: transparent;
}

.reservation-actions .btn-secondary:hover {
  background: rgba(31, 26, 23, 0.05);
}

/* Footer */
.site-footer {
  background: #120f0d;
  color: rgba(255, 255, 255, 0.82);
  padding: 72px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
  color: var(--white);
}

.site-footer h3 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li + li {
  margin-top: 10px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-list a:hover {
  color: #f3d2a8;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.56);
}

/* Floating contact */
.icon-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
}

.message-btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: none;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.message-btn:hover {
  transform: translateY(-0.5px);
  filter: drop-shadow(0 0 12px orangered);
}

.message-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  animation: floatJump 1.2s ease-in-out infinite;
}

.message-icon:hover {
  animation: none;
}

@keyframes floatJump {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.message-btn.active .message-icon,
.message-btn.active:hover .message-icon {
  animation: none;
}

.contact-list {
  position: absolute;
  right: 74px;
  bottom: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50%) translateX(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-list.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(50%) translateX(0);
}

.contact-list a {
  position: relative;
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: none;
  box-shadow: none;
}

.contact-list a:hover .icon-img {
  transform: scale(1.12);
  filter: drop-shadow(0 0 10px orangered);
}

/* Responsive */
@media (max-width: 1100px) {
  .contact-list {
    gap: 30px;
  }

  .review-grid,
  .intro-strip-grid,
  .footer-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

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

  .gallery-item.large {
    grid-row: auto;
    min-height: 360px;
  }

  .image-stack {
    min-height: auto;
  }

  .image-card.tall,
  .image-card.small {
    position: static;
    width: 100%;
    height: 320px;
  }

  .image-card.small {
    margin-top: 18px;
    border-width: 0;
  }

  .reservation-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 14px;
  }

  .food-slider {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .contact-list {
    gap: 24px;
  }

  .header-inner {
    justify-content: space-between;
    gap: 12px;
  }

  .brand {
    font-size: 24px;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 12px 16px 20px;
    background: rgba(21, 17, 15, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .header-actions {
    margin-left: auto;
    gap: 10px;
  }

  .lang-current {
    min-width: 58px;
    height: 34px;
    font-size: 12px;
    padding: 0 10px;
  }

  .lang-menu {
    min-width: 132px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero-content {
    align-items: flex-start;
  }

  .hero-text {
    font-size: 16px;
  }

  .section {
    padding: 84px 0;
  }
}

@media (max-width: 640px) {
  .contact-list {
    gap: 18px;
  }

  .header-actions {
    gap: 8px;
  }

  .lang-current {
    min-width: 56px;
  }

  .lang-menu {
    min-width: 128px;
  }

  .hero h1 {
    font-size: clamp(40px, 14vw, 64px);
  }

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

  .food-slider {
    grid-auto-columns: 100%;
  }

  .food-slider-wrap {
    gap: 10px;
  }

  .food-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .food-image {
    height: 220px;
    flex-basis: 220px;
  }

  .food-body {
    min-height: 0;
  }

  .food-body h3 {
    min-height: 0;
  }

  .contact-list {
    right: 0;
    bottom: 76px;
    flex-direction: column;
    align-items: flex-end;
    transform: translateY(10px);
  }

  .contact-list.active {
    transform: translateY(0);
  }

  .contact-list a::after,
  .contact-list a::before {
    display: none;
  }

  .floating-contact {
    right: 16px;
    bottom: 16px;
  }

  .message-btn {
    width: 56px;
    height: 56px;
  }

  .message-icon {
    width: 30px;
    height: 30px;
  }

  .icon-img {
    width: 28px;
    height: 28px;
  }

  .reservation-actions,
  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .reservation-actions .btn {
    width: 100%;
  }
}