@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Jost", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #1C1C1C;
  background-color: #F8F5EF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
}

::-moz-selection {
  background: #E8D4A0;
  color: #1E3320;
}

::selection {
  background: #E8D4A0;
  color: #1E3320;
}

[hidden] {
  display: none !important;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.3;
}

h4 {
  font-size: 1.2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

p {
  line-height: 1.75;
  color: #3D3D3D;
}

em {
  font-style: italic;
}

strong {
  font-weight: 500;
}

a {
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
a:hover {
  color: #A88330;
}
a:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
  border-radius: 4px;
}

.section__overline {
  font-family: "Jost", system-ui, -apple-system, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  display: block;
  margin-bottom: 0.5rem;
}
.section__overline--light {
  color: #E8D4A0;
}

.section__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #1E3320;
  margin-bottom: 1rem;
}
.section__title em {
  color: #C9A84C;
  font-style: italic;
}
.section__title--sm {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.section__subtitle {
  font-size: 1.05rem;
  color: #6B6355;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0 2rem;
}
.section__divider::before, .section__divider::after {
  content: "";
  width: 50px;
  height: 1px;
  background: #C9A84C;
  opacity: 0.5;
}
.section__divider {
  position: relative;
}
.section__divider::before {
  flex-shrink: 0;
}
.section__divider::after {
  flex-shrink: 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  opacity: 0.5;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumb a:hover {
  color: #E8D4A0;
}
.breadcrumb [aria-current=page] {
  color: #E8D4A0;
}

.legal-content h2 {
  margin-bottom: 2rem;
}
.legal-content h3 {
  font-size: 1.2rem;
  color: #1E3320;
  margin: 3rem 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.legal-content p {
  margin-bottom: 1rem;
}
.legal-content ul, .legal-content ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
  list-style: disc;
}
.legal-content ul li, .legal-content ol li {
  margin-bottom: 0.25rem;
  color: #3D3D3D;
}
.legal-content a {
  color: #A88330;
  text-decoration: underline;
}

.legal-updated {
  color: #9E9585;
  font-size: 0.875rem;
  margin-bottom: 3rem !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes shimmer {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
[data-animate] {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    animation: none !important;
    transition: none !important;
  }
}

[data-animate=fade-up].is-visible {
  animation: fadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

[data-animate=fade-in].is-visible {
  animation: fadeIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

[data-animate=fade-right].is-visible {
  animation: fadeRight 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

[data-animate=fade-left].is-visible {
  animation: fadeLeft 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

[data-animate=scale-in].is-visible {
  animation: scaleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

[data-delay="0"] {
  animation-delay: 0ms !important;
}

[data-delay="50"] {
  animation-delay: 50ms !important;
}

[data-delay="100"] {
  animation-delay: 100ms !important;
}

[data-delay="150"] {
  animation-delay: 150ms !important;
}

[data-delay="200"] {
  animation-delay: 200ms !important;
}

[data-delay="250"] {
  animation-delay: 250ms !important;
}

[data-delay="300"] {
  animation-delay: 300ms !important;
}

[data-delay="350"] {
  animation-delay: 350ms !important;
}

[data-delay="400"] {
  animation-delay: 400ms !important;
}

[data-delay="450"] {
  animation-delay: 450ms !important;
}

[data-delay="500"] {
  animation-delay: 500ms !important;
}

.page-enter {
  animation: fadeIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Jost", system-ui, -apple-system, sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border: 1.5px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:active {
  transform: scale(0.98);
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn:hover::after {
  left: 150%;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

.btn--md {
  padding: 0.75rem 1.75rem;
}

.btn--lg {
  padding: 0.875rem 2.25rem;
  font-size: 0.85rem;
}

.btn--xl {
  padding: 1rem 2.75rem;
  font-size: 0.9rem;
}

.btn--gold {
  background: #C9A84C;
  border-color: #C9A84C;
  color: #1E3320;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}
.btn--gold:hover {
  background: #A88330;
  border-color: #A88330;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.45);
  transform: translateY(-2px);
  color: white;
}

.btn--outline-gold {
  background: transparent;
  border-color: #C9A84C;
  color: #C9A84C;
}
.btn--outline-gold:hover {
  background: #C9A84C;
  color: #1E3320;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn--outline-green {
  background: transparent;
  border-color: #2D4A2D;
  color: #2D4A2D;
}
.btn--outline-green:hover {
  background: #2D4A2D;
  color: white;
  transform: translateY(-2px);
}

.btn--green {
  background: #2D4A2D;
  border-color: #2D4A2D;
  color: white;
}
.btn--green:hover {
  background: #1E3320;
  border-color: #1E3320;
  transform: translateY(-2px);
}

.btn--submit .btn__loading {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.btn--submit.is-loading .btn__text {
  display: none;
}
.btn--submit.is-loading .btn__loading {
  display: block;
}
.btn--submit.is-loading {
  pointer-events: none;
  opacity: 0.75;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #1E3320 !important;
  transition: background-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.site-header.is-scrolled {
  background: rgba(253, 250, 245, 0.97) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 24px rgba(30, 51, 32, 0.08);
}
.site-header.is-scrolled .nav__logo img {
  width: 52px;
  height: 52px;
}
.site-header.is-scrolled .nav__logo img.dark {
  display: block;
}
.site-header.is-scrolled .nav__logo img.white {
  display: none;
}
.site-header.is-scrolled .nav__link {
  color: #1E3320;
}
.site-header.is-scrolled .nav__link::after {
  background: #C9A84C;
}
.site-header.is-scrolled .nav__link--active {
  color: #A88330;
}
.site-header.is-scrolled .nav__burger-line {
  background: #1E3320;
}
.site-header.is-scrolled .btn--gold {
  background: #C9A84C;
  color: #1E3320;
}

.nav {
  width: 100%;
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  gap: 1.5rem;
}

.nav__logo {
  flex-shrink: 0;
}
.nav__logo:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
  border-radius: 4px;
}
.nav__logo img {
  width: 70px;
  height: 70px;
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
}
.nav__logo img.dark {
  display: none;
}
.nav__logo img.white {
  display: block;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: #1E3320;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 200;
    padding: 4rem 1.5rem;
  }
  .nav__menu.is-open {
    transform: translateX(0);
  }
  .nav__menu .nav__link {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
  }
  .nav__menu .nav__link:hover, .nav__menu .nav__link--active {
    color: #E8D4A0;
  }
  .nav__menu .nav__cta-item {
    margin-top: 1.5rem;
  }
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  position: relative;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav__link:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
  border-radius: 4px;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: #C9A84C;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav__link:hover {
  color: #E8D4A0;
}
.nav__link:hover::after {
  transform: scaleX(1);
}
.nav__link--active {
  color: #E8D4A0;
}
.nav__link--active::after {
  transform: scaleX(1);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 201;
}
.nav__burger:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
  border-radius: 4px;
}
@media (max-width: 1023px) {
  .nav__burger {
    display: flex;
  }
}

.nav__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 9999px;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s, background-color 0.3s;
}

.nav__burger[aria-expanded=true] .nav__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: white;
}
.nav__burger[aria-expanded=true] .nav__burger-line:nth-child(2) {
  opacity: 0;
}
.nav__burger[aria-expanded=true] .nav__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: white;
}

body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  margin-top: -86px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(30, 51, 32, 0.88) 0%, rgba(26, 46, 24, 0.82) 30%, rgba(45, 58, 28, 0.78) 60%, rgba(30, 51, 32, 0.92) 100%), repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 255, 255, 0.01) 40px, rgba(255, 255, 255, 0.01) 80px);
  background-color: #1E3320;
  z-index: 0;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.hero__deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__circle {
  position: absolute;
  top: 50%;
  left: 50%;
}
.hero__circle--outer {
  width: clamp(500px, 70vw, 800px);
  height: clamp(500px, 70vw, 800px);
  transform: translate(-50%, -50%);
  animation: float 8s ease-in-out infinite;
}
.hero__circle--inner {
  width: clamp(450px, 64vw, 730px);
  height: clamp(450px, 64vw, 730px);
  transform: translate(-50%, -50%);
  animation: float 8s ease-in-out infinite reverse;
}

.hero__branch {
  position: absolute;
  opacity: 0.45;
}
.hero__branch--tl {
  top: 2%;
  left: 2%;
  width: clamp(150px, 18vw, 260px);
  animation: float 10s ease-in-out infinite;
}
.hero__branch--br {
  bottom: 3%;
  right: 2%;
  width: clamp(130px, 16vw, 240px);
  animation: float 10s ease-in-out infinite reverse;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem 4rem;
  max-width: 780px;
}

.hero__overline {
  font-family: "Jost", system-ui, -apple-system, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  color: #E8D4A0;
  margin-bottom: 1rem;
  animation: heroReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  animation: heroReveal 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s both;
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem auto;
  animation: heroReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.hero__divider-line {
  display: block;
  width: 60px;
  height: 1px;
  background: #C9A84C;
  opacity: 0.6;
}

.hero__divider-diamond {
  display: block;
  width: 6px;
  height: 6px;
  background: #C9A84C;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero__tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  letter-spacing: 0.03em;
  animation: heroReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.65s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: heroReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s both;
}

.hero__scroll-text {
  font-family: "Jost", system-ui, -apple-system, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #C9A84C, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
@media (min-width: 1024px) {
  .menu-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(44, 36, 24, 0.08);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #EDE8DF;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(44, 36, 24, 0.16);
}
.menu-card:hover .menu-card__image {
  transform: scale(1.05);
}
.menu-card:hover .menu-card__name {
  color: #A88330;
}
.menu-card--list {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #EDE8DF;
}

.menu-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.menu-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EDE8DF, #F2EDE4);
  font-size: 3rem;
  color: #9E9585;
}

.menu-card__badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(30, 51, 32, 0.9);
  color: #E8D4A0;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}

.menu-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-card__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #1E3320;
  margin-bottom: 0.25rem;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.3;
}

.menu-card__desc {
  font-size: 0.875rem;
  color: #6B6355;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid #EDE8DF;
}

.menu-card__price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #A88330;
}

.menu-card__featured-badge {
  font-size: 0.7rem;
  color: #9E9585;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.values-card {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px solid #E0D9CE;
  border-radius: 16px;
  background: white;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.values-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(44, 36, 24, 0.12);
  border-color: #C9A84C;
}

.values-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.values-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  color: #1E3320;
  margin-bottom: 0.5rem;
}

.values-card__text {
  font-size: 0.9rem;
  color: #6B6355;
  line-height: 1.7;
}

.event-types-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .event-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.event-type-card {
  background: white;
  border: 1px solid #E0D9CE;
  border-radius: 16px;
  padding: 3rem;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.event-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(44, 36, 24, 0.12);
  border-color: #C9A84C;
}

.event-type-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.event-type-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  color: #1E3320;
  margin-bottom: 0.5rem;
}

.event-type-card__text {
  font-size: 0.9rem;
  color: #6B6355;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.event-type-card__features {
  list-style: none;
  padding: 0;
}
.event-type-card__features li {
  font-size: 0.875rem;
  color: #3D3D3D;
  padding: 0.25rem 0;
  border-bottom: 1px solid #EDE8DF;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.event-type-card__features li::before {
  content: "–";
  color: #C9A84C;
  font-weight: 500;
}

.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .cuisine-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cuisine-item {
  padding: 1.5rem;
  background: white;
  border: 1px solid #EDE8DF;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cuisine-item:hover {
  transform: translateY(-3px);
  border-color: #C9A84C;
}

.cuisine-item__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.cuisine-item__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  color: #1E3320;
  margin-bottom: 0.25rem;
}

.cuisine-item__desc {
  font-size: 0.8rem;
  color: #9E9585;
  line-height: 1.5;
}

.gallery-grid {
  display: grid;
  gap: 0.5rem;
}
.gallery-grid--preview {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .gallery-grid--preview {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery-grid--full {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 576px) {
  .gallery-grid--full {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery-grid--full {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery-grid--full {
  gap: 0.25rem;
}

.gallery-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  background: #EDE8DF;
  cursor: pointer;
}
.gallery-grid__item:nth-child(5n+1) {
  aspect-ratio: 4/3;
}
.gallery-grid__item:nth-child(5n+2) {
  aspect-ratio: 1/1;
}
.gallery-grid__item:hover .gallery-grid__overlay {
  opacity: 1;
}
.gallery-grid__item:hover .gallery-grid__img {
  transform: scale(1.06);
}

.gallery-grid__btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.gallery-grid__btn:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
  border-radius: 4px;
}

.gallery-grid__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-grid__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 51, 32, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: white;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 51, 32, 0.95);
  cursor: pointer;
}

.lightbox__container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  padding: 2rem;
  flex-direction: column;
  gap: 1rem;
}

.lightbox__image-wrap {
  position: relative;
  max-width: 100%;
  max-height: 75vh;
  text-align: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__caption {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.lightbox__counter {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lightbox__close:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
  border-radius: 4px;
}
.lightbox__close:hover {
  background: #C9A84C;
  color: #1E3320;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  transition: background 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}
.lightbox__nav:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
  border-radius: 4px;
}
.lightbox__nav--prev {
  left: 1rem;
}
.lightbox__nav--next {
  right: 1rem;
}
.lightbox__nav:hover {
  background: #C9A84C;
  color: #1E3320;
}
@media (max-width: 767px) {
  .lightbox__nav--prev {
    left: 0.25rem;
  }
  .lightbox__nav--next {
    right: 0.25rem;
  }
  .lightbox__nav {
    padding: 0.5rem;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .form-group--full {
    grid-column: 1/-1;
  }
}

.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #3D3D3D;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=date],
select,
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: white;
  border: 1.5px solid #E0D9CE;
  border-radius: 8px;
  font-family: "Jost", system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  color: #1C1C1C;
  transition: border-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=date]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #9E9585;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=date]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #9E9585;
}
input[type=text]:hover,
input[type=email]:hover,
input[type=tel]:hover,
input[type=number]:hover,
input[type=date]:hover,
select:hover,
textarea:hover {
  border-color: #7A9B6B;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=date]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #C9A84C;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
input[type=text]:invalid:not(:-moz-placeholder), input[type=email]:invalid:not(:-moz-placeholder), input[type=tel]:invalid:not(:-moz-placeholder), input[type=number]:invalid:not(:-moz-placeholder), input[type=date]:invalid:not(:-moz-placeholder), select:invalid:not(:-moz-placeholder), textarea:invalid:not(:-moz-placeholder) {
  border-color: #C0392B;
}
input[type=text]:invalid:not(:placeholder-shown),
input[type=email]:invalid:not(:placeholder-shown),
input[type=tel]:invalid:not(:placeholder-shown),
input[type=number]:invalid:not(:placeholder-shown),
input[type=date]:invalid:not(:placeholder-shown),
select:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: #C0392B;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6355' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-error {
  font-size: 0.8rem;
  color: #C0392B;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.form-privacy {
  font-size: 0.8rem;
  color: #9E9585;
  margin-top: 0.5rem;
}
.form-privacy a {
  color: #A88330;
  text-decoration: underline;
}

.form-submit {
  margin-top: 1.5rem;
}

.form-success {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 24px;
  border: 1px solid #E0D9CE;
}
.form-success h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  color: #1E3320;
  margin-bottom: 0.5rem;
}
.form-success p {
  color: #6B6355;
  margin-bottom: 2rem;
}

.form-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #7A9B6B;
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.flash-messages {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 380px;
}

.flash {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(44, 36, 24, 0.16);
  font-size: 0.875rem;
  animation: fadeLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.flash--success {
  background: #27AE60;
  color: white;
}
.flash--error {
  background: #C0392B;
  color: white;
}
.flash--warning {
  background: #C9A84C;
  color: #1E3320;
}
.flash--info {
  background: #2D4A2D;
  color: white;
}

.flash__close {
  color: inherit;
  opacity: 0.7;
  font-size: 1.2rem;
  line-height: 1;
}
.flash__close:hover {
  opacity: 1;
}

.section {
  padding: 6rem 0;
}
.section--beige {
  background-color: #EDE8DF;
}
.section--cream {
  background-color: #F2EDE4;
}
.section--dark {
  background-color: #1E3320;
  color: white;
}
@media (max-width: 767px) {
  .section {
    padding: 4rem 0;
  }
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__cta {
  text-align: center;
  margin-top: 4rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow {
  max-width: 800px;
}

.page-hero {
  position: relative;
  margin-top: -86px;
  padding: calc(8rem + 86px) 0 5rem;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  text-align: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(30, 51, 32, 0.85), rgba(30, 51, 32, 0.7)), #1E3320;
  z-index: 0;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.page-hero--menu .page-hero__bg {
  background: linear-gradient(to bottom, rgba(26, 46, 24, 0.9), rgba(45, 74, 45, 0.8)), #1E3320;
}

.page-hero--events .page-hero__bg {
  background: linear-gradient(to bottom, rgba(45, 56, 32, 0.9), rgba(26, 46, 24, 0.85)), #1E3320;
}

.page-hero--gallery .page-hero__bg {
  background: linear-gradient(to bottom, rgba(30, 51, 32, 0.88), rgba(26, 46, 24, 0.75)), #1E3320;
}

.page-hero--contact .page-hero__bg {
  background: linear-gradient(to bottom, rgba(30, 51, 32, 0.92), rgba(30, 51, 32, 0.8)), #1E3320;
}

.page-hero--simple .page-hero__bg {
  background: linear-gradient(to bottom, rgba(30, 51, 32, 0.95), rgba(30, 51, 32, 0.85)), #1E3320;
}

.site-footer {
  background: #1E3320;
  color: rgba(255, 255, 255, 0.8);
}

.footer__top {
  background: #1E3320;
  padding: 5rem 0 4rem;
}

.footer__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 4rem;
  }
}

.footer__brand img {
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 0.5rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.7);
  transition: border-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer__social a:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
  border-radius: 4px;
}
.footer__social a:hover {
  border-color: #C9A84C;
  color: #C9A84C;
}

.footer__heading {
  font-family: "Jost", system-ui, -apple-system, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding-left 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer__links a:hover {
  color: #E8D4A0;
  padding-left: 0.5rem;
}
.footer__links a:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
  border-radius: 4px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.footer__contact p svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #C9A84C;
}
.footer__contact a {
  color: rgba(255, 255, 255, 0.8);
}
.footer__contact a:hover {
  color: #E8D4A0;
}

.footer__hours {
  font-size: 0.875rem;
}
.footer__hours dt {
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.footer__hours dt:first-child {
  margin-top: 0;
}
.footer__hours dd {
  color: rgba(255, 255, 255, 0.85);
}

.footer__bottom {
  background: rgba(0, 0, 0, 0.35);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer__legal a:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
  border-radius: 4px;
}
.footer__legal a:hover {
  color: #E8D4A0;
}

.features {
  background: #1E3320;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.features__item {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 16px;
  color: white;
  transition: border-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.features__item:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.05);
}

.features__icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features__heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.5rem;
}

.features__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.about-preview__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-preview__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-preview__image-wrap {
  position: relative;
}

.about-preview__image-frame {
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: 1rem;
  bottom: 1rem;
  border: 1.5px solid #C9A84C;
  border-radius: 16px;
  opacity: 0.4;
  z-index: 0;
}

.about-preview__image {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-preview__image-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1E3320 0%, #2D4A2D 50%, #7A9B6B 100%);
  position: relative;
  height: 100%;
}

.about-preview__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  z-index: 2;
  background: #C9A84C;
  color: #1E3320;
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}
.about-preview__badge span {
  display: block;
}
.about-preview__badge span:first-child {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}
.about-preview__badge span:last-child {
  font-size: 1.2rem;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .about-preview__badge {
    right: 0;
    bottom: -1rem;
  }
}

@media (max-width: 1023px) {
  .about-preview__content {
    text-align: center;
  }
}

.about-preview__text {
  color: #6B6355;
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.025rem;
}

.events-banner {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
  color: white;
}

.events-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1E3320 0%, #1a3020 50%, #243d24 100%);
  z-index: 0;
}
.events-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
}

.events-banner__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.events-banner__deco {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.events-banner__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: white;
  margin-bottom: 1.5rem;
}

.events-banner__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 3rem;
}

.location-strip {
  background: #EDE8DF;
  padding: 5rem 0;
}

.location-strip__grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .location-strip__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.location-strip__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 36, 24, 0.12);
}
.location-strip__map iframe {
  display: block;
}

.location-strip__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-strip__row dt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9E9585;
  margin-bottom: 0.25rem;
}
.location-strip__row dd {
  font-size: 0.95rem;
  color: #3D3D3D;
  line-height: 1.7;
}
.location-strip__row dd a {
  color: #2D4A2D;
}
.location-strip__row dd a:hover {
  color: #A88330;
}

.cta-banner {
  background: linear-gradient(135deg, #1E3320 0%, #1a2e18 100%);
  padding: 6rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  margin-bottom: 1rem;
}

.cta-banner__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.cta-banner__phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.cta-banner__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #E8D4A0;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cta-banner__phone:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
  border-radius: 4px;
}
.cta-banner__phone:hover {
  color: #C9A84C;
}

.cta-banner__sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.philosophy {
  background: #1E3320;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: '"';
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(14rem, 30vw, 22rem);
  color: rgba(201, 168, 76, 0.06);
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.philosophy__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.philosophy__deco {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.philosophy__quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-bottom: 2rem;
}

.philosophy__attr {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
}

.testimonials__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 2px 8px rgba(44, 36, 24, 0.08);
  border: 1px solid #EDE8DF;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(44, 36, 24, 0.12);
  transform: translateY(-3px);
}

.testimonial-card__stars {
  color: #C9A84C;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #3D3D3D;
  line-height: 1.75;
  flex: 1;
}

.testimonial-card__author {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9E9585;
}

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page__content {
  text-align: center;
}

.error-page__code {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 300;
  color: #C9A84C;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0;
}

.error-page__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1E3320;
  margin-bottom: 1rem;
}

.error-page__text {
  color: #6B6355;
  margin-bottom: 3rem;
}

.error-page__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.menu-filter {
  margin-bottom: 4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}
.menu-filter::-webkit-scrollbar {
  height: 3px;
}
.menu-filter::-webkit-scrollbar-track {
  background: #EDE8DF;
}
.menu-filter::-webkit-scrollbar-thumb {
  background: #C9A84C;
  border-radius: 9999px;
}

.menu-filter__list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
}
@media (min-width: 768px) {
  .menu-filter__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.menu-filter__btn {
  flex-shrink: 0;
  padding: 0.5rem 1.5rem;
  border: 1.5px solid #E0D9CE;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #3D3D3D;
  background: white;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.menu-filter__btn:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
  border-radius: 4px;
}
.menu-filter__btn:hover {
  border-color: #C9A84C;
  color: #A88330;
}
.menu-filter__btn--active {
  background: #1E3320;
  border-color: #1E3320;
  color: #E8D4A0;
  box-shadow: 0 4px 20px rgba(44, 36, 24, 0.12);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 5rem;
  color: #6B6355;
}
.menu-empty p {
  margin-bottom: 1.5rem;
}

.allergens-note {
  background: #EDE8DF;
  padding: 1.5rem 0;
}

.allergens-note__text {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #6B6355;
  line-height: 1.6;
}
.allergens-note__text svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #C9A84C;
}

.about-story__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-story__grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.about-story__text p {
  margin-bottom: 1.5rem;
  font-size: 1.025rem;
  color: #3D3D3D;
  line-height: 1.85;
}

.about-story__images {
  position: relative;
}

.about-story__img-main {
  border-radius: 16px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1E3320, #2D4A2D);
  box-shadow: 0 12px 40px rgba(44, 36, 24, 0.16);
}

.about-story__img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(135deg, #2D4A2D, #7A9B6B);
  border: 4px solid #F8F5EF;
  box-shadow: 0 4px 20px rgba(44, 36, 24, 0.12);
}
@media (max-width: 1023px) {
  .about-story__img-accent {
    right: 0;
    bottom: -1rem;
  }
}

.about-story__badge {
  position: absolute;
  top: 1.5rem;
  left: -2rem;
  background: #C9A84C;
  color: #1E3320;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
  text-align: center;
}
@media (max-width: 1023px) {
  .about-story__badge {
    left: 0.5rem;
  }
}

.about-story__badge-text {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.about-story__badge-sub {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.events-why__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .events-why__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.events-why__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.events-why__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #3D3D3D;
}

.events-why__image {
  border-radius: 16px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1E3320, #2D4A2D, #7A9B6B);
  box-shadow: 0 12px 40px rgba(44, 36, 24, 0.16);
}

.contact-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
  }
}

.contact-info__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-details__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-details__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9E9585;
}

.contact-details__value {
  font-size: 0.95rem;
  color: #3D3D3D;
  line-height: 1.7;
}

.contact-details__link {
  color: #2D4A2D;
}
.contact-details__link:hover {
  color: #A88330;
}

.hours-list {
  font-size: 0.875rem;
}
.hours-list dt {
  color: #9E9585;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 0.5rem;
}
.hours-list dt:first-child {
  margin-top: 0;
}
.hours-list dd {
  color: #3D3D3D;
}

.contact-form-wrap {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(44, 36, 24, 0.12);
  border: 1px solid #EDE8DF;
}

.contact-form__header {
  margin-bottom: 2rem;
}
.contact-form__header .contact-form__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  color: #1E3320;
  margin-top: 0.25rem;
}

.contact-map iframe {
  display: block;
}

.events-form__wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.events-form__form {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid #EDE8DF;
  box-shadow: 0 2px 8px rgba(44, 36, 24, 0.08);
}

.about-location {
  background: #1E3320;
  color: white;
}
.about-location p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}
.about-location a {
  color: rgba(255, 255, 255, 0.85);
}
.about-location a:hover {
  color: #E8D4A0;
}

.about-location__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-location__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-location__content .section__title {
  color: white;
}

.about-location__details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-location__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about-location__item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.about-location__item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

.about-location__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.about-location__map iframe {
  display: block;
}

.about-atmosphere {
  background: #F2EDE4;
}

.about-atmosphere__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .about-atmosphere__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.atmosphere-card {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 16px;
  border: 1px solid #EDE8DF;
  box-shadow: 0 2px 8px rgba(44, 36, 24, 0.08);
  transition: box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.atmosphere-card:hover {
  box-shadow: 0 4px 20px rgba(44, 36, 24, 0.12);
  transform: translateY(-4px);
}

.atmosphere-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.atmosphere-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #1E3320;
  margin-bottom: 0.5rem;
}

.atmosphere-card__text {
  font-size: 0.9rem;
  color: #6B6355;
  line-height: 1.7;
}

.legal-page {
  background: white;
}

.gallery-empty,
.menu-empty {
  text-align: center;
  padding: 5rem 1.5rem;
  color: #6B6355;
  font-size: 1rem;
  line-height: 1.8;
}

body {
  padding-top: 86px;
}

img[src=""] {
  background: #EDE8DF;
  min-height: 40px;
}

img[loading=lazy] {
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
img[loading=lazy].is-loading {
  opacity: 0;
}
img[loading=lazy].is-loaded {
  opacity: 1;
}

.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  z-index: 401;
  padding: 0.5rem 1rem;
  background: #C9A84C;
  color: #1E3320;
  font-weight: 500;
}
.skip-link:focus {
  top: 0;
}

[id] {
  scroll-margin-top: 100px;
}/*# sourceMappingURL=main.css.map */