.host-story,
.hall-showcase {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(520px, 1.22fr);
  gap: clamp(2.5rem, 6vw, 7.5rem);
  align-items: center;
}

.host-story {
  background: #eef1e9;
}

.host-story-copy,
.hall-showcase-copy {
  max-width: 620px;
}

.host-story h2,
.real-food h2,
.hall-showcase h2 {
  margin: .35rem 0 1.35rem;
  font-size: clamp(2.65rem, 5vw, 5.6rem);
  line-height: .96;
  color: #123f35;
}

.host-story-copy > p:not(.eyebrow),
.hall-showcase-copy > p:not(.eyebrow),
.real-food-heading > p:not(.eyebrow) {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
  color: #385249;
}

.host-story-actions,
.hall-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
}

.host-story-actions a:not(.button),
.hall-showcase-actions a:not(.button) {
  display: inline-flex;
  align-items: center;
  color: #08765d;
  font-weight: 750;
  text-decoration: none;
}

.photo-figure {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  margin: 0;
  background: #d8ddcf;
}

.photo-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.7,.2,1);
}

.photo-figure:hover img {
  transform: scale(1.025);
}

.photo-figure figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.5rem 1rem .9rem;
  color: #fff;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .04em;
  background: linear-gradient(transparent, rgba(6, 35, 29, .78));
}

.host-story-gallery {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  grid-template-rows: repeat(2, minmax(230px, 28vw));
  gap: .75rem;
  max-height: 720px;
}

.host-story-gallery .photo-figure:first-child {
  grid-row: 1 / 3;
}

.host-story-gallery .photo-figure:first-child img {
  object-position: 50% 32%;
}

.real-food {
  background: #fff;
}

.real-food-heading {
  max-width: 880px;
  margin: 0 auto clamp(2.2rem, 5vw, 4.5rem);
  text-align: center;
}

.real-food-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(220px, 23vw, 360px);
  gap: .85rem;
}

.real-food-grid .photo-figure:nth-child(1) { grid-column: span 8; }
.real-food-grid .photo-figure:nth-child(2) { grid-column: span 4; grid-row: span 2; }
.real-food-grid .photo-figure:nth-child(3),
.real-food-grid .photo-figure:nth-child(4) { grid-column: span 4; }
.real-food-grid .photo-figure:nth-child(5) { grid-column: span 7; }
.real-food-grid .photo-figure:nth-child(6) { grid-column: span 5; }
.real-food-grid .photo-figure:nth-child(2) img { object-position: 50% 32%; }

.real-food-action {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

.hall-showcase {
  background: #e9e1d2;
}

.hall-showcase-gallery {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(3, minmax(170px, 15vw));
  gap: .75rem;
}

.hall-showcase-gallery .photo-figure:first-child {
  grid-row: 1 / 3;
}

.hall-showcase-gallery .photo-figure:nth-child(4) {
  grid-column: 1 / 3;
}

.hall-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.hall-facts li {
  padding: .9rem 1rem;
  border: 1px solid rgba(13, 83, 68, .18);
  background: rgba(255, 255, 255, .56);
  color: #123f35;
  font-size: .88rem;
  font-weight: 750;
}

.hall-terms-card {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  border-left: 4px solid #0b7a61;
  background: rgba(255, 255, 255, .7);
  color: #294a40;
}

.hall-terms-card strong {
  display: block;
  margin-bottom: .4rem;
  color: #123f35;
  font-family: Georgia, serif;
  font-size: 1.05rem;
}

.hall-terms-card p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.6;
}

.hall-terms-links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.1rem;
  margin-top: .8rem;
}

.hall-terms-links a,
.form-terms a {
  color: #08765d;
  font-weight: 800;
}

.form-terms {
  margin: .35rem 0 1rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(13, 83, 68, .18);
  background: #f1f5f0;
  color: #385249;
  font-size: .82rem;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .host-story,
  .hall-showcase {
    grid-template-columns: 1fr;
  }
  .host-story-copy,
  .hall-showcase-copy {
    max-width: 780px;
  }
  .host-story-gallery {
    grid-template-rows: repeat(2, minmax(250px, 38vw));
  }
}

@media (max-width: 700px) {
  .page-heading {
    overflow-x: clip;
  }
  .host-story h2,
  .real-food h2,
  .hall-showcase h2 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }
  .host-story-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 190px;
  }
  .host-story-gallery .photo-figure:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }
  .real-food-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 245px;
  }
  .real-food-grid .photo-figure:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
  .real-food-grid .photo-figure:nth-child(2) {
    min-height: 360px;
  }
  .hall-showcase-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 180px 190px;
  }
  .hall-showcase-gallery .photo-figure:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }
  .hall-showcase-gallery .photo-figure:nth-child(4) {
    grid-column: 1 / 3;
  }
  .hall-facts {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-figure img { transition: none; }
}
