.fresh-photo-story {
  overflow: hidden;
}

.fresh-photo-story__heading {
  max-width: 760px;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.fresh-photo-story__heading h2 {
  margin-bottom: 0;
}

.fresh-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.fresh-photo-grid--rooms {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fresh-photo-story--rooms .container {
  --container: min(1280px, calc(100vw - 2rem));
}

.fresh-photo-grid--rooms .fresh-photo-card picture {
  aspect-ratio: 4 / 3;
}

.fresh-photo-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(30, 38, 38, 0.12);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 16px 42px rgba(30, 38, 38, 0.08);
}

.fresh-photo-card picture {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #e9e5dd;
}

.fresh-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fresh-photo-card figcaption {
  padding: 0.9rem 1rem 1rem;
  color: var(--color-ink, #1e2626);
  font-size: 0.96rem;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .fresh-photo-grid--rooms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .fresh-photo-story--rooms .container {
    --container: min(100% - 1.25rem, 1280px);
  }

  .fresh-photo-grid,
  .fresh-photo-grid--rooms {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .fresh-photo-card img {
    transition: transform 300ms ease;
  }

  .fresh-photo-card:hover img {
    transform: scale(1.015);
  }
}

.location-discovery {
  background: #fff;
}

.location-discovery__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
}

.location-discovery__heading h2 {
  margin-bottom: 0;
}

.location-discovery__heading > p {
  margin: 0;
  color: var(--color-muted, #65645f);
  font-size: 1.05rem;
  line-height: 1.75;
}

.location-discovery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 4vw, 3.2rem);
}

.location-discovery__card {
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border: 1px solid rgba(30, 38, 38, 0.12);
  border-radius: 1rem;
  background: var(--color-paper, #f4f0e8);
}

.location-discovery__card span {
  color: var(--color-accent, #914b20);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-discovery__card h3 {
  margin: 0.65rem 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
}

.location-discovery__card p {
  margin: 0;
  color: var(--color-muted, #65645f);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .location-discovery__heading,
  .location-discovery__grid {
    grid-template-columns: 1fr;
  }

  .location-discovery__heading {
    gap: 1.25rem;
  }
}

.location-gallery {
  overflow: hidden;
  padding-top: 0;
  background: #fff;
}

.location-gallery__heading {
  max-width: 760px;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.location-gallery__heading h2 {
  margin-bottom: 0;
}

.location-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.location-gallery__item {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(30, 38, 38, 0.12);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 16px 42px rgba(30, 38, 38, 0.08);
}

.location-gallery__item picture {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #e9e5dd;
}

.location-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-gallery__item figcaption {
  padding: 1rem 1.1rem 1.1rem;
  color: var(--color-ink, #1e2626);
  line-height: 1.45;
}

.location-gallery__item strong,
.location-gallery__item small {
  display: block;
}

.location-gallery__item strong {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.location-gallery__item small {
  color: var(--color-muted, #65645f);
  font-size: 0.76rem;
  line-height: 1.5;
}

.location-gallery__item small a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

@media (max-width: 900px) {
  .location-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .location-gallery__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .location-gallery__item img {
    transition: transform 300ms ease;
  }

  .location-gallery__item:hover img {
    transform: scale(1.015);
  }
}

.image-credits {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(30, 38, 38, 0.16);
}

.image-credits__list {
  margin: 1.25rem 0 0;
  padding-left: 1.4rem;
}

.image-credits__list li {
  margin-bottom: 1rem;
  padding-left: 0.2rem;
  color: var(--color-muted, #65645f);
  line-height: 1.65;
}

.image-credits__list strong {
  color: var(--color-ink, #1e2626);
}

.image-credits__list a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}
