@charset "UTF-8";
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

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

.justify-between {
  justify-content: space-between;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.grid {
  display: grid;
}

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

@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-8 {
  margin-left: 2rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-20 {
  padding-top: 5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.w-full {
  width: 100%;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.h-full {
  height: 100%;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-20 {
  height: 5rem;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-6 {
  bottom: 1.5rem;
}

.right-6 {
  right: 1.5rem;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:flex-row {
    flex-direction: row;
  }
}
.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.opacity-0 {
  opacity: 0;
}

.pointer-events-none {
  pointer-events: none;
}

.text-white {
  color: #ffffff;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

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

.leading-relaxed {
  line-height: 1.625;
}

.font-\[\'Playfair_Display\'\] {
  font-family: "Playfair Display", serif;
}

.font-\[\'Lato\'\] {
  font-family: "Lato", sans-serif;
}

.bg-\[\#3A2F1D\] {
  background-color: #3A2F1D;
}

.bg-\[\#8C7A3E\] {
  background-color: #8C7A3E;
}

.text-\[\#8C7A3E\] {
  color: #8C7A3E;
}

.text-\[\#D6D2C4\] {
  color: #D6D2C4;
}

.hover\:text-\[\#8C7A3E\]:hover {
  color: #8C7A3E;
}

.hover\:bg-\[\#6F5F2F\]:hover {
  background-color: #6F5F2F;
}

.border-white\/15 {
  border-color: rgba(255, 255, 255, 0.15);
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.space-x-8 > * + * {
  margin-left: 2rem;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.map-container {
  height: 450px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .map-container {
    height: 500px;
  }
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #F6F4EF;
  color: #2E2E2E;
  font-family: "Lato", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

svg {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
}

.bg-white {
  background-color: #ffffff;
}

.bg-cream {
  background-color: #F6F4EF;
}

.text-primary {
  color: #8C7A3E;
}

.text-secondary {
  color: #3A2F1D;
}

.font-playfair {
  font-family: "Playfair Display", serif;
}

.font-lato {
  font-family: "Lato", sans-serif;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header {
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
}
.site-header.scrolled {
  background-color: rgba(58, 47, 29, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.site-header.scrolled .logo img {
  max-width: 70px;
}
.site-header.scrolled .logo h1 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .site-header.scrolled .logo h1 {
    font-size: 1.5rem;
  }
}

.logo a {
  display: flex;
  align-items: center;
}
.logo img {
  max-width: 150px;
  width: 100%;
  height: auto;
  transition: max-width 0.3s ease-in-out;
}
.logo h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #8C7A3E;
  font-weight: 700;
  transition: font-size 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .logo h1 {
    font-size: 1.875rem;
  }
}

.primary-menu ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.primary-menu ul svg {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.primary-menu ul li a {
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}
.primary-menu ul li a:hover {
  color: #8C7A3E;
}
.primary-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #8C7A3E;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.primary-menu ul li a.active::after {
  transform: scaleX(1);
}

.mobile-menu-overlay {
  background-color: contrast-color(#3A2F1D, #3A2F1D, #3A2F1D);
  background-color: #3A2F1D;
}
.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-toggle {
  transition: transform 0.2s;
}
.menu-toggle:active {
  transform: scale(0.9);
}
.menu-toggle.open .open-icon {
  display: none;
}
.menu-toggle.open .close-icon {
  display: block;
}
.menu-toggle svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #ffffff;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
footer h2, footer h3 {
  font-family: "Playfair Display", serif;
}
footer p, footer a {
  font-family: "Lato", sans-serif;
}
footer svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #8C7A3E;
  flex-shrink: 0;
}

.footer-col-identity .footer-title {
  font-size: 1.5rem;
  color: #8C7A3E;
  margin-bottom: 0.75rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.footer-col-identity .footer-description {
  font-size: 0.875rem;
  color: #D6D2C4;
  line-height: 1.6;
  font-family: "Lato", sans-serif;
}

.footer-logo img {
  max-width: 120px;
  height: auto;
}

.footer-secondary-logo img {
  height: auto;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (min-width: 768px) {
  .footer-legal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-legal .footer-copyright {
  color: #D6D2C4;
  font-size: 0.875rem;
  font-family: "Lato", sans-serif;
}
.footer-legal .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-legal .footer-links a {
  color: #D6D2C4;
  font-size: 0.875rem;
  font-family: "Lato", sans-serif;
  transition: color 0.3s;
}
.footer-legal .footer-links a:hover {
  color: #8C7A3E;
}

.floating-call-button {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero.hero-small {
  height: 70vh;
}
.hero.hero-contact {
  height: 70vh;
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
}
.hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(58, 47, 29, 0.8) 0%, rgba(58, 47, 29, 0.7) 50%, rgba(58, 47, 29, 0.85) 100%);
}
.hero .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  padding: 0 1rem;
  max-width: 56rem;
  margin: 0 auto;
}
.hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #8C7A3E;
  font-family: "Playfair Display", serif;
}
@media (min-width: 768px) {
  .hero .hero-content h1 {
    font-size: 4.5rem;
  }
}
.hero .hero-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}
@media (min-width: 768px) {
  .hero .hero-content h2 {
    font-size: 2.25rem;
  }
}
.hero .hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
  font-family: "Lato", sans-serif;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 2.25rem;
  color: #3A2F1D;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
@media (min-width: 768px) {
  .section-title h2 {
    font-size: 3rem;
  }
}
.section-title p {
  color: #2E2E2E;
  font-size: 1.125rem;
  font-family: "Lato", sans-serif;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.625rem;
  font-size: 1.125rem;
  font-family: "Lato", sans-serif;
  transition: all 0.3s;
  font-weight: 400;
}
.btn:active {
  transform: scale(0.95);
}
.btn-primary {
  background-color: #8C7A3E;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #6F5F2F;
  transform: translateY(-2px);
}
.btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.btn-white {
  background-color: #ffffff;
  color: #3A2F1D;
}
.btn-white:hover {
  background-color: #F6F4EF;
  transform: translateY(-2px);
}
.btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.card {
  background-color: transparent;
  border-radius: 0.625rem;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.card .card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.625rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}
.card .card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #3A2F1D, transparent);
  opacity: 0.6;
}
.card:hover {
  transform: translateY(-10px);
}
.card:hover .card-image img {
  transform: scale(1.1);
}
.card .card-content {
  padding: 1.5rem 0.5rem;
}
.card .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #3A2F1D;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.card .card-content p {
  color: #2E2E2E;
  line-height: 1.625;
  font-family: "Lato", sans-serif;
}

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

.tradition-item {
  text-align: center;
  padding: 2rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.tradition-item .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(140, 122, 62, 0.1);
  border-radius: 9999px;
  margin-bottom: 1rem;
  transition: all 0.5s ease-in-out;
}
.tradition-item .icon-wrapper svg {
  width: 2rem;
  height: 2rem;
  color: #8C7A3E;
}
.tradition-item:hover .icon-wrapper {
  transform: scale(1.1) rotate(360deg);
}
.tradition-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #3A2F1D;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.tradition-item p {
  color: #2E2E2E;
  line-height: 1.625;
  font-family: "Lato", sans-serif;
}

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

.hours-section {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
}
.hours-section .hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(140, 122, 62, 0.2);
  margin-bottom: 1rem;
  font-family: "Lato", sans-serif;
}
.hours-section .hours-row span:first-child {
  color: #3A2F1D;
  text-align: left;
}
.hours-section .hours-row span:last-child {
  color: #8C7A3E;
  text-align: right;
  font-weight: 400;
}
.hours-section .hours-row .closed {
  color: #dc2626;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.location-grid {
  gap: 2rem;
  align-items: center;
}

.final-cta {
  background-color: #3A2F1D;
  color: #ffffff;
  text-align: center;
  padding: 5rem 1rem;
}
.final-cta svg {
  color: #8C7A3E;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
}
.final-cta h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
@media (min-width: 768px) {
  .final-cta h2 {
    font-size: 3rem;
  }
}
.final-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
  font-weight: 400;
}
@media (min-width: 768px) {
  .final-cta p {
    font-size: 1.5rem;
  }
}

.about-history-content {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.about-history-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #3A2F1D;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
@media (min-width: 768px) {
  .about-history-content h2 {
    font-size: 3rem;
  }
}
.about-history-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #2E2E2E;
  margin-bottom: 1.5rem;
  font-family: "Lato", sans-serif;
}

.about-split-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .about-split-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-split-grid {
  gap: 3rem;
  align-items: center;
}
.about-split-grid .content-side h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #3A2F1D;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
@media (min-width: 768px) {
  .about-split-grid .content-side h2 {
    font-size: 3rem;
  }
}
.about-split-grid .content-side p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #2E2E2E;
  margin-bottom: 1rem;
  font-family: "Lato", sans-serif;
}
.about-split-grid .image-side {
  height: 24rem;
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.about-split-grid .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}
.about-split-grid .image-side:hover img {
  transform: scale(1.1);
}

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

.define-item {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 0.625rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.define-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.define-item .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(140, 122, 62, 0.1);
  border-radius: 9999px;
  margin-bottom: 1rem;
  transition: transform 0.5s ease-in-out;
}
.define-item .icon-wrapper svg {
  width: 2rem;
  height: 2rem;
  color: #8C7A3E;
}
.define-item:hover .icon-wrapper {
  transform: rotate(360deg);
}
.define-item h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #3A2F1D;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.define-item p {
  font-family: "Lato", sans-serif;
  color: #2E2E2E;
  line-height: 1.6;
}

.services-checklist {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .services-checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}
.services-checklist {
  gap: 1rem;
}
.services-checklist .service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background-color: #F6F4EF;
  border-radius: 0.625rem;
  transition: transform 0.2s;
}
.services-checklist .service-item:hover {
  transform: translateX(5px);
}
.services-checklist .service-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #8C7A3E;
  flex-shrink: 0;
}
.services-checklist .service-item span {
  color: #2E2E2E;
  font-family: "Lato", sans-serif;
}

.menu-intro {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.menu-intro p {
  font-size: 1.125rem;
  color: #2E2E2E;
  line-height: 1.8;
  font-family: "Lato", sans-serif;
}
.menu-intro .note {
  font-size: 0.875rem;
  color: #7A7A7A;
  margin-top: 1.5rem;
  font-family: "Lato", sans-serif;
}

.menu-filter-container {
  position: sticky;
  top: 5rem;
  z-index: 40;
  background-color: #F6F4EF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.menu-filter-container .filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.menu-filter-container .filter-btn {
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  background-color: #ffffff;
  color: #3A2F1D;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Lato", sans-serif;
  font-weight: 400;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.menu-filter-container .filter-btn:hover {
  background-color: rgba(140, 122, 62, 0.1);
  transform: scale(1.05);
}
.menu-filter-container .filter-btn:active {
  transform: scale(0.95);
}
.menu-filter-container .filter-btn.active {
  background-color: #8C7A3E;
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.menu-category-title {
  font-size: 2.25rem;
  color: #3A2F1D;
  margin-bottom: 2rem;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .menu-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.menu-items-grid {
  gap: 1.5rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.menu-item-card {
  background-color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: 0.625rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(140, 122, 62, 0.05);
}
.menu-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.menu-item-card .item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.menu-item-card .item-header h3 {
  font-size: 1.25rem;
  color: #3A2F1D;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  flex: 1;
}
.menu-item-card .item-header .price {
  font-size: 1.25rem;
  color: #8C7A3E;
  font-weight: 700;
  margin-left: 1rem;
  font-family: "Lato", sans-serif;
}
.menu-item-card p {
  color: #7A7A7A;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.menu-notes {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #F6F4EF;
  padding: 2.5rem;
  border-radius: 0.625rem;
}
.menu-notes h3 {
  font-size: 1.5rem;
  color: #3A2F1D;
  margin-bottom: 1.25rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.menu-notes ul li {
  color: #2E2E2E;
  margin-bottom: 0.75rem;
  font-family: "Lato", sans-serif;
  display: flex;
  align-items: flex-start;
}
.menu-notes ul li::before {
  content: "• ";
  margin-right: 0.5rem;
  color: #8C7A3E;
  font-weight: 700;
}

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

.contact-info-card {
  background-color: #F6F4EF;
  padding: 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.contact-info-card .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(140, 122, 62, 0.1);
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.contact-info-card .icon-wrapper svg {
  width: 2rem;
  height: 2rem;
  color: #8C7A3E;
}
.contact-info-card h3 {
  font-size: 1.5rem;
  color: #3A2F1D;
  margin-bottom: 0.75rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.contact-info-card p, .contact-info-card a {
  color: #2E2E2E;
  font-family: "Lato", sans-serif;
}
.contact-info-card .link {
  color: #8C7A3E;
  font-size: 1.25rem;
  transition: color 0.3s;
  font-weight: 400;
}
.contact-info-card .link:hover {
  color: #6F5F2F;
}
.contact-info-card .subtext {
  color: #7A7A7A;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.contact-hours-container {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.contact-hours-container .header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background-color: rgba(140, 122, 62, 0.1);
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.contact-hours-container .header-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #8C7A3E;
}
.contact-hours-container h2 {
  font-size: 2.25rem;
  color: #3A2F1D;
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.contact-hours-container .hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #F6F4EF;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-family: "Lato", sans-serif;
}
.contact-hours-container .hours-row span:first-child {
  color: #3A2F1D;
}
.contact-hours-container .hours-row span:last-child {
  color: #8C7A3E;
  font-weight: 400;
}
.contact-hours-container .hours-row .closed {
  color: #dc2626;
}

.reservations-box {
  background-color: #8C7A3E;
  color: #ffffff;
  padding: 3rem;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.reservations-box svg {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.reservations-box h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
@media (min-width: 768px) {
  .reservations-box h2 {
    font-size: 2.25rem;
  }
}
.reservations-box p {
  font-size: 1.25rem;
  line-height: 1.625;
  margin-bottom: 1.5rem;
  font-family: "Lato", sans-serif;
}

.facebook-section {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.facebook-section h2 {
  font-size: 1.875rem;
  color: #3A2F1D;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.facebook-section .btn-facebook {
  background-color: #1877F2;
  color: #ffffff;
  padding: 1rem 2rem;
}
.facebook-section .btn-facebook:hover {
  background-color: #166FE5;
  transform: translateY(-2px);
}

.page-header {
  background-color: #3A2F1D;
  padding: 6rem 0 3rem;
  text-align: center;
}
.page-header .page-header-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #8C7A3E;
  margin: 0;
}
@media (min-width: 768px) {
  .page-header .page-header-title {
    font-size: 3.5rem;
  }
}

.page-content {
  background-color: #ffffff;
}
.page-content .page-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.entry-content {
  font-family: "Lato", sans-serif;
  color: #2E2E2E;
  line-height: 1.8;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .entry-content {
    font-size: 1.125rem;
  }
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
  font-family: "Playfair Display", serif;
  color: #3A2F1D;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.entry-content h1 {
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  .entry-content h1 {
    font-size: 2.75rem;
  }
}
.entry-content h2 {
  font-size: 1.875rem;
  color: #8C7A3E;
}
@media (min-width: 768px) {
  .entry-content h2 {
    font-size: 2.25rem;
  }
}
.entry-content h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .entry-content h3 {
    font-size: 1.75rem;
  }
}
.entry-content h4 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .entry-content h4 {
    font-size: 1.5rem;
  }
}
.entry-content p {
  margin-bottom: 1.5rem;
}
.entry-content a {
  color: #8C7A3E;
  text-decoration: underline;
  transition: color 0.3s;
}
.entry-content a:hover {
  color: rgb(86.9801980198, 75.797029703, 38.5198019802);
}
.entry-content ul, .entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.entry-content ul li, .entry-content ol li {
  margin-bottom: 0.5rem;
}
.entry-content ul {
  list-style-type: disc;
}
.entry-content ul ul {
  list-style-type: circle;
}
.entry-content ol {
  list-style-type: decimal;
}
.entry-content blockquote {
  border-left: 4px solid #8C7A3E;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #3A2F1D;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .entry-content blockquote {
    font-size: 1.25rem;
  }
}
.entry-content blockquote p {
  margin-bottom: 0;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}
.entry-content figure {
  margin: 2rem 0;
}
.entry-content figure figcaption {
  font-size: 0.875rem;
  color: #7A7A7A;
  text-align: center;
  margin-top: 0.5rem;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.entry-content table th, .entry-content table td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(58, 47, 29, 0.2);
  text-align: left;
}
.entry-content table th {
  background-color: #3A2F1D;
  color: #ffffff;
  font-weight: 600;
}
.entry-content table tr:nth-child(even) {
  background-color: rgba(140, 122, 62, 0.05);
}
.entry-content hr {
  border: none;
  border-top: 1px solid rgba(58, 47, 29, 0.2);
  margin: 2.5rem 0;
}
.entry-content code {
  background-color: rgba(58, 47, 29, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  font-family: monospace;
  font-size: 0.9em;
}
.entry-content pre {
  background-color: #3A2F1D;
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 2rem 0;
}
.entry-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.entry-content strong, .entry-content b {
  font-weight: 700;
  color: #3A2F1D;
}
.entry-content em, .entry-content i {
  font-style: italic;
}
.entry-content > p:first-child {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .entry-content > p:first-child {
    font-size: 1.25rem;
  }
}

/*# sourceMappingURL=main.css.map */
