.header {
  z-index: 9999;
  background-color: white;
  width: 100%;
}
body.admin-bar .header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
}

.navbar {
  position: relative;
  width: 100%;
  transition: all 0.5s;
  background-color: white;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  position: relative;
}
.navbar__logo {
  font-family: "Crimson Pro", serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--deep-black);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  background-color: white;
  padding: 1rem;
  margin: -1rem 0;
  max-width: 200px;
  position: relative;
  z-index: 10;
  height: 5rem;
  box-sizing: border-box;
}
.navbar__logo:hover {
  color: var(--terracotta);
}
.navbar__logo img {
  max-width: 200px;
  width: 100%;
  height: auto;
}
.navbar__desktop-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.navbar__desktop-menu-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar__nav-link {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--deep-black);
  transition: color 0.3s;
}
.navbar__nav-link:hover, .navbar__nav-link.active {
  color: var(--terracotta);
}
.navbar__mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--deep-black);
}
.navbar__hamburger {
  width: 1.5rem;
  height: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.navbar__hamburger-line {
  display: block;
  height: 2px;
  background-color: currentColor;
  transition: all 0.3s;
}
.navbar__mobile-menu {
  display: none;
  background-color: var(--warm-white);
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  padding: 1.5rem 0;
}
.navbar__mobile-menu--open {
  display: block;
}
.navbar__mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar__hamburger--active .navbar__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__hamburger--active .navbar__hamburger-line:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger--active .navbar__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.navbar__mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--deep-black);
  transition: color 0.3s;
}
.navbar__mobile-link:hover, .navbar__mobile-link.active {
  color: var(--terracotta);
}
@media (max-width: 768px) {
  .navbar__desktop-menu {
    display: none;
  }
  .navbar__mobile-toggle {
    display: block;
  }
}

.footer {
  background-color: var(--deep-black);
  color: white;
  padding: 4rem 0 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}
.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.footer__menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__menu-list .menu-item {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
}
.footer__menu-list .menu-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.footer__menu-list .menu-item a:hover {
  color: var(--terracotta);
}
.footer__logo-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer__logo {
  font-family: "Crimson Pro", serif;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
}
.footer__logo-img {
  width: auto;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
.footer__tagline {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.footer__logo-extra-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.footer__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.footer__section-title {
  font-family: "Crimson Pro", serif;
  font-size: 1.25rem;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.footer__contact-info {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.footer__phone {
  margin-top: 0.5rem;
}
.footer__phone-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.footer__phone-link:hover {
  color: var(--terracotta);
}
.footer__reservation-note {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}
.footer__social-links {
  display: flex;
  gap: 1.5rem;
}
.footer__social-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}
.footer__social-link:hover {
  color: var(--terracotta);
}
.footer__social-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.footer__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer__copyright {
  font-family: "Inter", sans-serif;
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
}
.footer__legal-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer__bottom {
    flex-direction: row;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__slider .slick-list,
.hero__slider .slick-track {
  height: 100%;
}
.hero__slider .slick-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__slider .slick-slide > div {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero__slide {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}
.hero .slick-prev,
.hero .slick-next {
  z-index: 5;
  width: 3rem;
  height: 3rem;
}
.hero .slick-prev::before,
.hero .slick-next::before {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}
.hero .slick-prev:hover::before,
.hero .slick-next:hover::before {
  color: white;
}
.hero .slick-prev {
  left: 1.5rem;
}
.hero .slick-next {
  right: 1.5rem;
}
.hero .slick-dots {
  bottom: 5rem;
  z-index: 5;
}
.hero .slick-dots li button::before {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.5rem;
}
.hero .slick-dots li.slick-active button::before {
  color: var(--terracotta);
  opacity: 1;
}
.hero__title-wrapper {
  margin-bottom: 3rem;
}
.hero__title {
  font-family: "Crimson Pro", serif;
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.3s forwards;
}
.hero__divider {
  width: 6rem;
  height: 1px;
  background-color: var(--terracotta);
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.6s forwards;
}
.hero__subtitle {
  font-family: "Crimson Pro", serif;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  max-width: 64rem;
  line-height: 1.2;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.9s forwards;
}
.hero__description {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  max-width: 32rem;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.2s forwards;
}
.hero__button {
  opacity: 0;
  animation: fadeIn 1s ease-out 1.5s forwards;
}
.hero__reservation-text {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.8s forwards;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s ease-out 2s forwards;
  z-index: 10;
}
.hero__scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}
.hero__scroll-dot {
  width: 0.25rem;
  height: 0.5rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  animation: bounce 2s infinite;
}

.manifesto {
  background-color: var(--warm-white);
}
.manifesto__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.manifesto__quote {
  font-family: "Crimson Pro", serif;
  font-size: 1.875rem;
  color: var(--deep-black);
  line-height: 1.6;
}
.manifesto__divider {
  width: 4rem;
  height: 1px;
  background-color: var(--terracotta);
}
.manifesto__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.manifesto__text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
}
.manifesto__image-wrapper {
  position: relative;
  height: 500px;
}
.manifesto__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.manifesto__caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 1rem 1.5rem;
}
.manifesto__caption-title {
  font-family: "Crimson Pro", serif;
  font-size: 1.25rem;
  color: var(--deep-black);
}
.manifesto__caption-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.6);
  letter-spacing: 0.05em;
}

.local-products {
  background-color: var(--warm-white);
}
.local-products__header {
  margin-bottom: 3rem;
  text-align: center;
}
.local-products__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.5rem;
  color: var(--deep-black);
  margin-bottom: 1.5rem;
}
.local-products__grid {
  gap: 2rem;
}
.local-products__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.local-products__image-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.local-products__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.local-products__item:hover .local-products__image {
  transform: scale(1.05);
}
.local-products__item-title {
  font-family: "Crimson Pro", serif;
  font-size: 1.25rem;
  color: var(--deep-black);
  text-align: center;
}

.highlights {
  background-color: var(--warm-white);
}
.highlights__text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.8;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto 3rem;
}
.highlights__carousel {
  margin: 0 -0.75rem;
}
.highlights__carousel .slick-slide {
  padding: 0 0.75rem;
}
.highlights__carousel .slick-prev,
.highlights__carousel .slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
}
.highlights__carousel .slick-prev::before,
.highlights__carousel .slick-next::before {
  font-size: 40px;
  color: var(--terracotta);
}
.highlights__carousel .slick-prev {
  left: -50px;
}
.highlights__carousel .slick-next {
  right: -50px;
}
@media (max-width: 1024px) {
  .highlights__carousel .slick-prev {
    left: -30px;
  }
  .highlights__carousel .slick-next {
    right: -30px;
  }
}
@media (max-width: 768px) {
  .highlights__carousel {
    margin: 0;
  }
  .highlights__carousel .slick-prev,
  .highlights__carousel .slick-next {
    display: none !important;
  }
}
.highlights__slide {
  outline: none;
}
.highlights__slide-image-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.highlights__slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.highlights__slide:hover .highlights__slide-image {
  transform: scale(1.05);
}

.sustainability {
  background-color: white;
}
.sustainability__grid {
  align-items: center;
}
.sustainability__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sustainability__header {
  margin-bottom: 1rem;
}
.sustainability__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.5rem;
  color: var(--deep-black);
  margin-bottom: 1.5rem;
}
.sustainability__text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.8;
}
.sustainability__image-wrapper {
  position: relative;
  height: 500px;
}
.sustainability__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exclusivity {
  background-color: var(--warm-white);
}
.exclusivity__grid {
  align-items: center;
}
.exclusivity__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.exclusivity__header {
  margin-bottom: 1rem;
}
.exclusivity__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.5rem;
  color: var(--deep-black);
  margin-bottom: 1.5rem;
}
.exclusivity__text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.8;
}
.exclusivity__image-wrapper {
  position: relative;
  height: 500px;
}
.exclusivity__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-proof {
  background-color: white;
}
.social-proof__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.social-proof__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.social-proof__star {
  width: 32px;
  height: 32px;
  color: var(--terracotta);
  fill: currentColor;
}
.social-proof__star--empty {
  color: rgba(193, 115, 87, 0.3);
}
.social-proof__rating {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: rgba(26, 26, 26, 0.8);
}
.social-proof__rating-value {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  color: var(--terracotta);
}
.social-proof__quote {
  font-family: "Crimson Pro", serif;
  font-size: 1.25rem;
  color: var(--deep-black);
  font-style: italic;
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.5rem);
  }
}
.page-wrapper {
  padding-top: 0;
}

.concept-hero {
  position: relative;
  height: 60vh;
  width: 100%;
  overflow: hidden;
}
.concept-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.concept-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.concept-hero__title {
  font-family: "Crimson Pro", serif;
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: white;
  text-align: center;
  padding: 0 1.5rem;
}

.cycle-section {
  background-color: white;
}
.cycle-section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.cycle-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  color: var(--deep-black);
  margin-bottom: 1.5rem;
}
.cycle-section__text {
  max-width: 64rem;
  margin: 0 auto 5rem;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: rgba(26, 26, 26, 0.8);
  text-align: center;
  line-height: 1.6;
}
.cycle-section__products {
  gap: 2rem;
}
.cycle-section__product-image-wrapper {
  position: relative;
  height: 20rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.cycle-section__product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cycle-section__product-title {
  font-family: "Crimson Pro", serif;
  font-size: 1.5rem;
  color: var(--deep-black);
  text-align: center;
}

.local-section {
  background-color: var(--warm-white);
}
.local-section__image-wrapper {
  height: 500px;
}
.local-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.local-section__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.local-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  color: var(--deep-black);
}
.local-section__divider {
  width: 4rem;
  height: 1px;
  background-color: var(--terracotta);
}
.local-section__text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
}

.sustainability-section {
  background-color: var(--moss-green);
  color: white;
}
.sustainability-section__content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sustainability-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
}
.sustainability-section__divider {
  width: 6rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 auto;
}
.sustainability-section__text {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}
.sustainability-section__text-secondary {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 48rem;
  margin: 0 auto;
}

.dishes-section {
  background-color: white;
}
.dishes-section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.dishes-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  color: var(--deep-black);
  margin-bottom: 1.5rem;
}
.dishes-section__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  max-width: 48rem;
  margin: 0 auto;
}
.dishes-section__grid {
  gap: 3rem;
  max-width: 80rem;
  margin: 0 auto;
}
.dishes-section__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dishes-section__icon-wrapper {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dishes-section__icon-wrapper--terracotta {
  background-color: rgba(193, 115, 87, 0.1);
}
.dishes-section__icon-wrapper--moss {
  background-color: rgba(90, 107, 84, 0.1);
}
.dishes-section__icon {
  width: 40px;
  height: 40px;
}
.dishes-section__icon--terracotta {
  color: var(--terracotta);
}
.dishes-section__icon--moss {
  color: var(--moss-green);
}
.dishes-section__item-title {
  font-family: "Crimson Pro", serif;
  font-size: 1.5rem;
  color: var(--deep-black);
}
.dishes-section__item-text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
}

.menu-section {
  background-color: var(--warm-white);
}
.menu-section__content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.menu-section__badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--terracotta);
  margin-bottom: 1rem;
  width: fit-content;
  margin: 0 auto;
}
.menu-section__badge-text {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  width: fit-content;
  margin: 0;
}
.menu-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  color: var(--deep-black);
}
.menu-section__text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
}

.page-wrapper {
  padding-top: 0;
}

.about-hero {
  position: relative;
  height: 60vh;
  width: 100%;
  overflow: hidden;
}
.about-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.about-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero__title {
  font-family: "Crimson Pro", serif;
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: white;
  text-align: center;
  padding: 0 1.5rem;
}

.origin-section {
  background-color: white;
}
.origin-section__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.origin-section__badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--terracotta);
  width: fit-content;
}
.origin-section__badge-text {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0;
}
.origin-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  color: var(--deep-black);
}
.origin-section__divider {
  width: 4rem;
  height: 1px;
  background-color: var(--terracotta);
}
.origin-section__text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
}
.origin-section__image-wrapper {
  height: 400px;
}
.origin-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-section {
  background-color: var(--warm-white);
}
.space-section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.space-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  color: var(--deep-black);
  margin-bottom: 1.5rem;
}
.space-section__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: rgba(26, 26, 26, 0.7);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}
.space-section__image-wrapper {
  height: 400px;
  margin-bottom: 3rem;
}
.space-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.space-section__text-wrapper {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.space-section__text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
}

.chef-section {
  background-color: white;
}
.chef-section__image-wrapper {
  height: 400px;
}
.chef-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chef-section__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.chef-section__badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--moss-green);
  width: fit-content;
}
.chef-section__badge-text {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss-green);
  margin: 0;
  width: fit-content;
}
.chef-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  color: var(--deep-black);
}
.chef-section__divider {
  width: 4rem;
  height: 1px;
  background-color: var(--terracotta);
}
.chef-section__text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
}

.hospitality-section {
  background-color: var(--warm-white);
}
.hospitality-section__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hospitality-section__badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--terracotta);
  width: fit-content;
}
.hospitality-section__badge-text {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0;
  width: fit-content;
}
.hospitality-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  color: var(--deep-black);
}
.hospitality-section__divider {
  width: 4rem;
  height: 1px;
  background-color: var(--terracotta);
}
.hospitality-section__text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
}
.hospitality-section__image-wrapper {
  height: 400px;
}
.hospitality-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-section {
  background-color: var(--moss-green);
  color: white;
}
.philosophy-section__content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.philosophy-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
}
.philosophy-section__divider {
  width: 6rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 auto;
}
.philosophy-section__text {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}
.philosophy-section__text-secondary {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 48rem;
  margin: 0 auto;
}

.award-section {
  background-color: white;
}
.award-section__content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  background-color: var(--terracotta);
  color: white;
  padding: 5rem 2rem;
}
.award-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.award-section__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
  width: 100%;
  max-width: 100%;
}
.award-section__separator {
  width: 80%;
  max-width: 24rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 auto 2rem;
  flex-shrink: 0;
}
.award-section__badge {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}
.award-section__badge-text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}
.award-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  line-height: 1.2;
}
.award-section__divider {
  width: 6rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 auto;
}
.award-section__event {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  opacity: 0.95;
}
.award-section__dish-wrapper {
  margin: 2rem 0;
}
.award-section__dish-name {
  font-family: "Crimson Pro", serif;
  font-size: 1.875rem;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}
.award-section__dish-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  opacity: 0.8;
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.6;
}
.award-section__quotes {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.award-section__quote {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: italic;
  opacity: 0.75;
}
.award-section__quote--highlight {
  font-family: "Crimson Pro", serif;
  font-size: 1.125rem;
  opacity: 0.85;
}

.page-wrapper {
  padding-top: 0;
}

.experience-hero {
  position: relative;
  height: 60vh;
  width: 100%;
  overflow: hidden;
}
.experience-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.experience-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.experience-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.experience-hero__title {
  font-family: "Crimson Pro", serif;
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: white;
  text-align: center;
  padding: 0 1.5rem;
}

.ambiente-section {
  background-color: white;
}
.ambiente-section__image-wrapper {
  height: 400px;
}
.ambiente-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ambiente-section__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.ambiente-section__badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--terracotta);
  width: fit-content;
}
.ambiente-section__badge-text {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0;
}
.ambiente-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  color: var(--deep-black);
}
.ambiente-section__divider {
  width: 4rem;
  height: 1px;
  background-color: var(--terracotta);
}
.ambiente-section__text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
}

.features-section {
  background-color: var(--warm-white);
}
.features-section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.features-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  color: var(--deep-black);
  margin-bottom: 1.5rem;
}
.features-section__grid {
  gap: 2rem;
}
.features-section__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background-color: white;
}
.features-section__icon-wrapper {
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-section__icon-wrapper--moss {
  background-color: var(--moss-green);
}
.features-section__icon-wrapper--terracotta {
  background-color: var(--terracotta);
}
.features-section__icon {
  width: 40px;
  height: 40px;
  color: white;
}
.features-section__item-title {
  font-family: "Crimson Pro", serif;
  font-size: 1.5rem;
  color: var(--deep-black);
}
.features-section__divider {
  width: 3rem;
  height: 1px;
  background-color: var(--terracotta);
  margin: 0 auto;
}
.features-section__item-text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
}

.kitchen-section {
  background-color: white;
}
.kitchen-section__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kitchen-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  color: var(--deep-black);
}
.kitchen-section__divider {
  width: 4rem;
  height: 1px;
  background-color: var(--terracotta);
}
.kitchen-section__text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
}
.kitchen-section__features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 1rem;
}
.kitchen-section__feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.kitchen-section__feature-icon-wrapper {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kitchen-section__feature-icon-wrapper--terracotta {
  background-color: rgba(193, 115, 87, 0.1);
}
.kitchen-section__feature-icon-wrapper--moss {
  background-color: rgba(90, 107, 84, 0.1);
}
.kitchen-section__feature-icon {
  width: 24px;
  height: 24px;
}
.kitchen-section__feature-icon--terracotta {
  color: var(--terracotta);
}
.kitchen-section__feature-icon--moss {
  color: var(--moss-green);
}
.kitchen-section__feature-text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.7);
}
.kitchen-section__image-wrapper {
  height: 400px;
}
.kitchen-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-section {
  background-color: var(--warm-white);
}
.info-section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.info-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  color: var(--deep-black);
  margin-bottom: 1.5rem;
}
.info-section__grid {
  gap: 3rem;
  max-width: 80rem;
  margin: 0 auto;
}
.info-section__item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}
.info-section__icon-wrapper {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-section__icon-wrapper--terracotta {
  background-color: var(--terracotta);
}
.info-section__icon-wrapper--moss {
  background-color: var(--moss-green);
}
.info-section__icon {
  width: 32px;
  height: 32px;
  color: white;
}
.info-section__item-title {
  font-family: "Crimson Pro", serif;
  font-size: 1.5rem;
  color: var(--deep-black);
}
.info-section__item-text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
}

.rating-section {
  background-color: var(--terracotta);
  color: white;
}
.rating-section__content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.rating-section__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.rating-section__star {
  width: 48px;
  height: 48px;
  color: white;
  fill: currentColor;
}
.rating-section__rating {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  opacity: 0.95;
}
.rating-section__rating-value {
  font-family: "Crimson Pro", serif;
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}
.rating-section__divider {
  width: 6rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 auto;
}
.rating-section__quote {
  font-family: "Crimson Pro", serif;
  font-size: 1.5rem;
  font-style: italic;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.95;
}
.rating-section__source {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  opacity: 0.75;
  padding-top: 1.5rem;
}

.page-wrapper {
  padding-top: 0;
}

.gallery-hero {
  position: relative;
  height: 60vh;
  width: 100%;
  overflow: hidden;
}
.gallery-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.gallery-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-hero__inner {
  text-align: center;
  padding: 0 1.5rem;
}
.gallery-hero__title {
  font-family: "Crimson Pro", serif;
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: 1.5rem;
}
.gallery-hero__divider {
  width: 6rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 1.5rem;
}
.gallery-hero__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  margin: 0 auto;
}

.gallery-grid-section {
  background-color: var(--warm-white);
}
.gallery-grid-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .gallery-grid-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery-grid-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery-grid-section__item {
  position: relative;
  overflow: hidden;
  height: 20rem;
}
.gallery-grid-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-grid-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2.5rem;
}
.gallery-grid-section__keyword {
  font-family: "Crimson Pro", serif;
  font-size: 1.875rem;
  color: white;
  letter-spacing: 0.05em;
}
.gallery-grid-section__item:hover .gallery-grid-section__overlay {
  opacity: 1;
}
.gallery-grid-section__item:hover .gallery-grid-section__image {
  transform: scale(1.05);
}

.keywords-section {
  background-color: white;
}
.keywords-section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.keywords-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  color: var(--deep-black);
  margin-bottom: 2rem;
}
.keywords-section__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
.keywords-section__item {
  padding: 1rem 2rem;
  border: 2px solid rgba(26, 26, 26, 0.2);
  transition: all 0.3s ease;
}
.keywords-section__item:hover {
  border-color: var(--terracotta);
}
.keywords-section__text {
  font-family: "Crimson Pro", serif;
  font-size: 1.25rem;
  color: var(--deep-black);
  transition: color 0.3s;
  margin: 0;
}
.keywords-section__item:hover .keywords-section__text {
  color: var(--terracotta);
}

.additional-images-section {
  background-color: var(--warm-white);
}
.additional-images-section__grid {
  gap: 2rem;
}
.additional-images-section__item {
  position: relative;
  overflow: hidden;
  height: 400px;
}
.additional-images-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.additional-images-section__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem;
}
.additional-images-section__caption-title {
  font-family: "Crimson Pro", serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}
.additional-images-section__caption-text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}
.additional-images-section__item:hover .additional-images-section__image {
  transform: scale(1.05);
}

.quote-section {
  background-color: var(--moss-green);
  color: white;
}
.quote-section__content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.quote-section__quote {
  font-family: "Crimson Pro", serif;
  font-size: 1.875rem;
  line-height: 1.6;
  font-style: italic;
}
.quote-section__divider {
  width: 6rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 auto;
}
.quote-section__description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  opacity: 0.8;
}

.behind-section {
  background-color: white;
}
.behind-section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.behind-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  color: var(--deep-black);
  margin-bottom: 1.5rem;
}
.behind-section__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  max-width: 32rem;
  margin: 0 auto;
}
.behind-section__grid {
  gap: 2rem;
}
.behind-section__item {
  position: relative;
  overflow: hidden;
  height: 350px;
}
.behind-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.behind-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.behind-section__item-title {
  font-family: "Crimson Pro", serif;
  font-size: 1.25rem;
  color: white;
}
.behind-section__item:hover .behind-section__overlay {
  opacity: 1;
}
.behind-section__item:hover .behind-section__image {
  transform: scale(1.05);
}

.page-wrapper {
  padding-top: 0;
}

.contact-hero {
  position: relative;
  height: 50vh;
  width: 100%;
  overflow: hidden;
}
.contact-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.contact-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hero__inner {
  text-align: center;
  padding: 0 1.5rem;
}
.contact-hero__title {
  font-family: "Crimson Pro", serif;
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: 1.5rem;
}
.contact-hero__divider {
  width: 6rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 1.5rem;
}
.contact-hero__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-main {
  background-color: white;
}
.contact-main__grid {
  gap: 4rem;
}
.contact-main__info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.reservation-notice {
  background-color: var(--terracotta);
  color: white;
  padding: 2.5rem;
}
.reservation-notice__title {
  font-family: "Crimson Pro", serif;
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}
.reservation-notice__divider {
  width: 4rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2rem;
}
.reservation-notice__text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}
.reservation-notice__phone {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}
.reservation-notice__phone:hover {
  opacity: 0.8;
}
.reservation-notice__note {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  margin-top: 1.5rem;
  opacity: 0.75;
}

.schedule-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.schedule-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 1.875rem;
  color: var(--deep-black);
}
.schedule-section__divider {
  width: 4rem;
  height: 1px;
  background-color: var(--terracotta);
}
.schedule-section__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
}
.schedule-section__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}
.schedule-section__time--open {
  color: var(--moss-green);
}
.schedule-section__time--closed {
  color: var(--terracotta);
}

.location-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.location-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 1.875rem;
  color: var(--deep-black);
}
.location-section__divider {
  width: 4rem;
  height: 1px;
  background-color: var(--terracotta);
}
.location-section__address {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.location-section__parking {
  font-size: 0.875rem;
  padding-top: 1rem;
  opacity: 0.7;
}
.location-section__map {
  margin-top: 1.5rem;
  height: 16rem;
  background-color: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26, 26, 26, 0.1);
  overflow: hidden;
}
.location-section__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.location-section__map-content {
  text-align: center;
  padding: 2rem;
}
.location-section__map-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  color: var(--moss-green);
}
.location-section__map-title {
  font-family: "Crimson Pro", serif;
  font-size: 1.25rem;
  color: var(--deep-black);
  margin-bottom: 0.5rem;
}
.location-section__map-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.6);
}

.social-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.social-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 1.875rem;
  color: var(--deep-black);
}
.social-section__divider {
  width: 4rem;
  height: 1px;
  background-color: var(--terracotta);
}
.social-section__links {
  display: flex;
  gap: 1.5rem;
}
.social-section__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--moss-green);
  text-decoration: none;
  transition: color 0.3s;
}
.social-section__link:hover {
  color: var(--terracotta);
}
.social-section__icon {
  width: 40px;
  height: 40px;
  fill: currentColor;
}
.social-section__text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
}

.reservation-form {
  background-color: var(--warm-white);
  padding: 2rem;
}
.reservation-form__title {
  font-family: "Crimson Pro", serif;
  font-size: 1.875rem;
  color: var(--deep-black);
  margin-bottom: 2rem;
}
.reservation-form__divider {
  width: 4rem;
  height: 1px;
  background-color: var(--terracotta);
  margin-bottom: 2.5rem;
}
.reservation-form__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.reservation-form__note {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.6);
  text-align: center;
  line-height: 1.6;
}

.how-to-get-section {
  background-color: var(--warm-white);
}
.how-to-get-section__content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}
.how-to-get-section__title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  color: var(--deep-black);
  margin-bottom: 2rem;
}
.how-to-get-section__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
}
.how-to-get-section__parking {
  padding-top: 1rem;
  color: var(--moss-green);
}

p {
  margin-bottom: 16px;
}

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