/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.4) brightness(0.65);
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 3s ease-in-out;
}
.hero__bg-img.is-active {
  opacity: 1;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-wide);
  padding-inline: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 1.625rem;
  }
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.85;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ── Introduction ── */
.intro {
  background: var(--bg-secondary);
  text-align: center;
}
.intro__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
}
.intro__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll {
    animation: none;
  }
}

/* ── Featured Parallax Grid ── */
.featured {
  background: var(--bg-primary);
  overflow: hidden;
}
.featured__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 180px);
  gap: 16px;
  margin-bottom: 48px;
}
.featured__image {
  border-radius: 4px;
  overflow: hidden;
}
.featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured__image:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.featured__image:nth-child(2) { grid-column: 5 / 8; grid-row: 1 / 2; }
.featured__image:nth-child(3) { grid-column: 8 / 13; grid-row: 1 / 4; }
.featured__image:nth-child(4) { grid-column: 5 / 8; grid-row: 2 / 3; }
.featured__image:nth-child(5) { grid-column: 1 / 8; grid-row: 3 / 4; }

.featured__text {
  text-align: center;
  max-width: var(--max-medium);
  margin-inline: auto;
}
.featured__text p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
  margin-bottom: 32px;
}
.featured__text a:not(.btn) {
  color: var(--accent-terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .featured__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .featured__image {
    min-height: 200px;
  }
  .featured__image:nth-child(1) { grid-column: 1 / 2; grid-row: auto; }
  .featured__image:nth-child(2) { grid-column: 2 / 3; grid-row: auto; }
  .featured__image:nth-child(3) { grid-column: 1 / 3; grid-row: auto; }
  .featured__image:nth-child(4) { grid-column: 1 / 2; grid-row: auto; }
  .featured__image:nth-child(5) { grid-column: 2 / 3; grid-row: auto; }
}

/* ── Values ── */
.values {
  background: var(--bg-secondary);
}
.values__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.value-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.value-card.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.value-card__icon {
  width: 48px;
  height: 48px;
  margin-inline: auto;
  margin-bottom: 16px;
  color: var(--accent-terracotta);
}
.value-card__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .values__inner { grid-template-columns: 1fr 1fr; }
}

/* ── Taproom CTA ── */
.taproom-cta {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
}
.taproom-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.taproom-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.3) brightness(0.5);
}
.taproom-cta__content {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.taproom-cta__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.taproom-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 16px;
}
.taproom-cta__address,
.taproom-cta__phone {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .value-card,
  .taproom-cta__content,
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
