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

:root {
  --bg: #f6efe6;
  --bg-soft: #efe4d3;
  --surface: rgba(255, 251, 246, 0.94);
  --surface-strong: #fffdfa;
  --surface-muted: #f8f0e4;
  --text: #221d18;
  --text-soft: #665a4f;
  --line: rgba(120, 92, 57, 0.18);
  --accent: #c6923d;
  --accent-strong: #9b6721;
  --accent-deep: #6f4310;
  --dark: #171412;
  --dark-soft: #241d18;
  --success: #1c7f4b;
  --danger: #b43f32;
  --shadow-soft: 0 18px 40px rgba(51, 36, 19, 0.08);
  --shadow-strong: 0 28px 80px rgba(17, 12, 7, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 248, 240, 0.7), transparent 32%),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.demo-banner {
  background: linear-gradient(90deg, #2d1c10 0%, #6f4310 48%, #2d1c10 100%);
  color: #fff5e6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-banner-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.demo-banner p {
  font-size: 0.95rem;
  color: rgba(255, 245, 230, 0.92);
}

.demo-banner strong {
  color: #ffe4b2;
}

.demo-banner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.demo-banner a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(23, 20, 18, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar,
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.navbar {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #fff6e9;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 248, 240, 0.88);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover {
  color: #f2c777;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-btn {
  min-width: 44px;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 248, 240, 0.82);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-btn:hover {
  color: white;
}

.lang-btn.is-active {
  background: rgba(242, 202, 132, 0.18);
  color: #ffe5b6;
  box-shadow: inset 0 0 0 1px rgba(242, 202, 132, 0.34);
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 10% 20%, rgba(238, 194, 114, 0.26), transparent 22%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.12), transparent 20%),
    linear-gradient(130deg, #18130f 0%, #2f241c 46%, #87561f 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(16, 12, 9, 0.38));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 40px;
  align-items: center;
  padding-block: 64px 72px;
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.hero-kicker,
.location-badge {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-kicker {
  margin-bottom: 12px;
  color: rgba(255, 235, 205, 0.82);
}

.hero h1,
.section h2,
.hero-card h2,
.location-panel h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.6rem, 8vw, 5.9rem);
  margin-bottom: 22px;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.12rem;
  color: rgba(255, 244, 231, 0.88);
}

.hero-buttons,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.btn.primary {
  background: linear-gradient(135deg, #f2ca84 0%, #c98e37 100%);
  color: #20160c;
  box-shadow: 0 14px 30px rgba(198, 146, 61, 0.28);
}

.btn.secondary {
  background: transparent;
  border-color: rgba(201, 142, 55, 0.48);
  color: var(--accent-deep);
}

.hero .btn.secondary {
  color: white;
  border-color: rgba(255, 214, 142, 0.44);
}

.btn.full {
  width: 100%;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-highlights article,
.experience-card,
.trust-item,
.location-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
}

.hero-highlights article {
  min-height: 132px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero-highlights strong,
.trust-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-highlights span {
  color: rgba(255, 241, 223, 0.78);
  font-size: 0.94rem;
}

.hero-card {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 252, 247, 0.12);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-strong);
}

.hero-card-label,
.light {
  color: #ffd89b;
}

.hero-card h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-block: 10px 18px;
}

.hero-card-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-card-list li,
.location-points li {
  position: relative;
  padding-left: 18px;
}

.hero-card-list li::before,
.location-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f0c373;
}

.hero-card-note {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 244, 231, 0.82);
  font-size: 0.92rem;
}

.section {
  padding: 96px 0;
}

.section h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: 18px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-strong);
}

.section-description {
  color: var(--text-soft);
  font-size: 1.02rem;
}

.experience {
  position: relative;
}

.experience-grid,
.menu-layout,
.trust-list {
  display: grid;
  gap: 20px;
}

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

.experience-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.95), rgba(245, 234, 220, 0.85));
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.experience-card h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.experience-card p,
.about-copy p,
.reservation-info p,
.location-panel p {
  color: var(--text-soft);
}

.about {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 249, 240, 0.94));
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.menu {
  background:
    radial-gradient(circle at top left, rgba(201, 142, 55, 0.08), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.menu-layout {
  gap: 28px;
}

.menu-block {
  padding: 34px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid rgba(176, 122, 34, 0.14);
  box-shadow: var(--shadow-soft);
}

.menu-block-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 18px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.menu-block-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  color: var(--accent-deep);
}

.menu-block-header p {
  max-width: 480px;
  text-align: right;
  color: var(--text-soft);
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
}

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

.menu-subsection h4 {
  margin-bottom: 14px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

.menu-list {
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(125, 98, 62, 0.16);
}

.menu-list li:last-child {
  border-bottom: none;
}

.menu-list strong {
  color: var(--accent-deep);
  font-size: 0.94rem;
  white-space: nowrap;
}

.menu-subnote {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.allergens-block {
  padding-bottom: 30px;
}

.allergen-reference {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.allergen-reference li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 16px;
  background: var(--surface-muted);
  border: 1px solid rgba(125, 98, 62, 0.12);
}

.allergen-reference span {
  min-width: 34px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--accent-deep);
  font-weight: 800;
}

.reservations {
  color: white;
  background:
    radial-gradient(circle at top right, rgba(244, 191, 107, 0.18), transparent 22%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-soft) 100%);
}

.reservation-container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.reservation-info h2 {
  margin-bottom: 18px;
}

.trust-list {
  margin-block: 28px;
}

.trust-item {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
}

.trust-item span {
  color: rgba(255, 245, 233, 0.76);
  font-size: 0.95rem;
}

.info-box {
  padding: 22px;
  border-radius: 20px;
  border-left: 4px solid #e2b65c;
}

.group-box {
  background: rgba(255, 255, 255, 0.06);
}

.group-box h3 {
  margin-bottom: 12px;
  color: white;
}

.reservation-form {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.98);
  color: var(--text);
  box-shadow: var(--shadow-strong);
}

.reservation-alert {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f8eed9;
  color: #6b4c15;
  font-weight: 700;
}

.form-group {
  margin-bottom: 18px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.95rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(114, 92, 65, 0.22);
  border-radius: 14px;
  padding: 13px 14px;
  background: white;
  color: var(--text);
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(198, 146, 61, 0.26);
  border-color: rgba(198, 146, 61, 0.6);
}

textarea {
  min-height: 122px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-block: 4px 22px;
}

.checkbox-group input {
  width: auto;
  margin-top: 5px;
}

.checkbox-group label {
  margin-bottom: 0;
  color: var(--text-soft);
  font-weight: 600;
}

.form-message {
  margin-top: 16px;
  font-weight: 700;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--danger);
}

.privacy-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.location {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.72), rgba(255, 247, 238, 0.98));
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-box {
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.contact-box p {
  margin-bottom: 12px;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

.contact-box a {
  color: var(--accent-deep);
  text-decoration: none;
  font-weight: 700;
}

.contact-box a:hover {
  text-decoration: underline;
}

.contact-btn {
  color: var(--text);
}

.location-panel {
  padding: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, #a8712d 0%, #704313 100%);
  color: white;
  box-shadow: var(--shadow-soft);
}

.location-badge {
  margin-bottom: 14px;
  color: rgba(255, 236, 207, 0.84);
}

.location-panel h3 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.location-panel p {
  color: rgba(255, 245, 234, 0.88);
}

.location-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.footer {
  background: #161311;
  color: rgba(255, 245, 234, 0.82);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .reservation-container,
  .location-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 560px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .experience-grid,
  .menu-columns,
  .compact-columns,
  .allergen-reference {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-block-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-block-header p {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .demo-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar {
    padding-block: 16px;
    min-height: auto;
    flex-direction: column;
  }

  .nav-meta {
    flex-direction: column;
  }

  .nav-links {
    justify-content: center;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 48px 56px;
  }

  .section {
    padding: 76px 0;
  }

  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container,
  .navbar {
    width: min(100% - 28px, 1180px);
  }

  .hero h1 {
    max-width: none;
  }

  .experience-grid,
  .menu-columns,
  .compact-columns,
  .allergen-reference,
  .form-row {
    grid-template-columns: 1fr;
  }

  .menu-block,
  .hero-card,
  .reservation-form,
  .location-panel {
    padding: 24px 20px;
  }

  .menu-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-actions,
  .hero-buttons {
    flex-direction: column;
  }

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