.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.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;
}
.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;
}
.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;
}
.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;
}

.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);
  }
}
