.section {
  padding: 72px 0;
}

.section--soft {
  background: var(--surface-soft);
}

.section--cta {
  background: var(--text);
  color: var(--accent-contrast);
}

.section--cta .section-title,
.section--cta .section-label,
.section--cta p {
  color: var(--accent-contrast);
}

.section--cta .section-title::after {
  background: var(--gold);
}

.section--cta .section-label {
  color: var(--gold);
}

.section--cta .section-lead,
.section--cta p {
  color: color-mix(in srgb, var(--accent-contrast) 80%, var(--gold));
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  height: min(80vh, 768px);
  min-height: 480px;
  background: var(--text);
}

.hero__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--wave-h);
  z-index: 6;
  background: url("../img/menu-draw.png") center top repeat-x;
  pointer-events: none;
}

.hero__slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: translateY(-100%);
  z-index: 1;
}

.hero__slide.is-active {
  transform: translateY(0);
  z-index: 2;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__slide.is-leaving {
  z-index: 1;
  transform: translateY(0);
}

.hero__media,
.hero__slide .ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
}

.hero__slide.is-active .hero__media,
.hero__slide.is-active .ph {
  animation: hero-kenburns 10s linear forwards;
}

@keyframes hero-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 18%;
  width: min(100% - 32px, var(--content));
  margin-inline: auto;
  color: var(--accent-contrast);
  opacity: 0;
  transform: translateY(-50px);
}

.hero__slide.is-active .hero__content {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1) 400ms, transform 1200ms cubic-bezier(0.16, 1, 0.3, 1) 400ms;
}

.hero__content h2 {
  color: var(--accent-contrast);
  font-size: clamp(32px, 5vw, 56px);
  max-width: 12em;
  margin-bottom: 12px;
}

.hero__content p {
  max-width: 36em;
  font-size: 17px;
  margin-bottom: 24px;
  color: color-mix(in srgb, var(--accent-contrast) 88%, var(--gold));
}

.hero__dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid var(--accent-contrast);
  background: transparent;
}

.hero__dots button.is-active {
  background: var(--accent);
  border-color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide.is-active .hero__media,
  .hero__slide.is-active .ph {
    animation: none;
  }

  .hero__slide,
  .hero__content {
    transition: none !important;
  }
}

/* Featured */
.featured {
  text-align: center;
}

.featured__media {
  width: min(100%, 440px);
  aspect-ratio: 1;
  margin: 0 auto 28px;
}

.featured__media.blob {
  border: 0;
  background: transparent;
}

.story__media {
  aspect-ratio: 4 / 5;
}

.story__media.blob {
  border: 0;
  background: transparent;
}

.story__media.blob img {
  aspect-ratio: 4 / 5;
}

.featured .pill {
  margin-bottom: 20px;
}

/* Reviews */
.reviews {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  min-height: 220px;
  padding: 32px 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.review {
  display: none;
  text-align: center;
}

.review.is-active {
  display: block;
}

.review__stars {
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 12px;
  font-size: 18px;
}

.review blockquote {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.45;
}

.review cite {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.review-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: transparent;
}

.review-dots button.is-active {
  background: var(--accent);
  border-color: var(--accent);
}

/* Weekly */
.week-list {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 28px;
}

.week-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding: 18px 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.week-item h3 {
  font-size: 20px;
  margin: 0 0 4px;
}

.week-item p {
  color: var(--text-muted);
  margin: 0;
  font-size: 15px;
}

.split-lists {
  display: grid;
  gap: 20px;
}

.split-lists > div {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

@media (min-width: 768px) {
  .split-lists {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.split-lists h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.split-lists li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 2px solid var(--surface-soft);
}

.split-lists ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.story {
  display: grid;
  gap: 28px;
  align-items: center;
}

@media (min-width: 900px) {
  .story {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.3fr 1fr;
    align-items: start;
  }
}

.form-row {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

@media (min-width: 640px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.info-row a {
  color: var(--text);
  text-decoration: underline dashed;
  text-underline-offset: 3px;
}

.map-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px dashed var(--line);
  margin: 8px 0 16px;
  min-height: 180px;
  background: var(--surface-soft);
}

.map-wrap iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.center-actions {
  text-align: center;
  margin-top: 32px;
}

.catalog-toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.catalog-toolbar .field {
  flex: 1;
}

.empty-search {
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
}

.prose {
  max-width: 42em;
}

.prose h2 {
  font-size: 26px;
  margin-top: 1.6em;
}

.cta-end {
  margin: 40px 0 0;
  text-align: center;
}
