:root {
  --cream: #f4eddf;
  --cream-light: #fbf7ef;
  --ink: #23332f;
  --ink-soft: #56635d;
  --lake: #237c7c;
  --lake-deep: #155d61;
  --lake-light: #a9d6cd;
  --olive: #66745f;
  --terracotta: #c66f4b;
  --sun: #e9b95e;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgb(34 64 61 / 16%);
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
    serif;
  --font-sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

figure,
blockquote,
h1,
h2,
p {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 50%;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(24px, 4vw, 72px);
  color: var(--ink);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 11px;
  text-decoration: none;
}

.wordmark__main {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.wordmark__year {
  color: var(--terracotta);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.site-header__place {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  min-height: min(920px, 100vh);
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 150px clamp(32px, 7vw, 118px) 90px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--terracotta);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 34px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.89;
}

.hero h1 em,
.evening h2 em {
  display: block;
  color: var(--lake);
  font-weight: 400;
}

.hero__intro {
  max-width: 510px;
  margin-bottom: 42px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.8;
}

.journey-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentcolor;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.journey-link span {
  color: var(--terracotta);
  font-size: 1.1rem;
}

.hero__visual {
  position: relative;
  min-height: 700px;
  margin: 0;
  overflow: hidden;
  background: #c78c51;
}

.hero__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(26 41 36 / 4%), transparent 34%),
    linear-gradient(0deg, rgb(22 38 33 / 24%), transparent 30%);
  content: "";
  pointer-events: none;
}

.hero__visual figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero__stamp {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 28px;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  color: var(--ink);
  background: rgb(255 253 248 / 86%);
  border: 1px solid rgb(255 253 248 / 60%);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.05;
  text-align: center;
  transform: rotate(8deg);
  backdrop-filter: blur(8px);
}

.horizon {
  position: relative;
  z-index: 3;
  height: 74px;
  overflow: hidden;
}

.horizon::before {
  position: absolute;
  bottom: -28px;
  left: 50%;
  width: 115%;
  height: 92px;
  border-radius: 50% 50% 0 0 / 58% 58% 0 0;
  content: "";
  transform: translateX(-50%);
}

.horizon--cream {
  margin-top: -52px;
}

.horizon--cream::before {
  background: var(--cream);
}

.horizon--lake {
  height: 106px;
  margin-top: 58px;
}

.horizon--lake::before {
  bottom: -36px;
  background: var(--lake-deep);
}

.horizon--cream-from-lake {
  height: 96px;
  background: var(--lake-deep);
}

.horizon--cream-from-lake::before {
  bottom: -34px;
  background: var(--cream);
}

.arrival {
  padding-top: clamp(64px, 8vw, 128px);
  padding-bottom: 42px;
}

.chapter-heading {
  display: grid;
  max-width: 900px;
  grid-template-columns: 78px 1fr;
  align-items: start;
  margin-bottom: 48px;
}

.chapter-heading__index {
  margin: 2px 0 0;
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
}

.chapter-heading__index::after {
  display: block;
  width: 34px;
  margin-top: 10px;
  border-top: 1px solid currentcolor;
  content: "";
}

.chapter-heading .eyebrow {
  margin-bottom: 13px;
}

.chapter-heading h2,
.evening h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.arrival__intro {
  display: grid;
  max-width: 980px;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
  margin: 0 0 84px 78px;
}

.arrival__intro p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.arrival__intro .arrival__lead {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  line-height: 1.35;
}

.feature-photo {
  position: relative;
  margin: 0;
}

.feature-photo img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.feature-photo figcaption {
  position: absolute;
  right: clamp(18px, 4vw, 50px);
  bottom: clamp(18px, 4vw, 46px);
  max-width: 320px;
  padding: 19px 24px;
  color: var(--ink);
  background: rgb(255 253 248 / 90%);
  border: 1px solid rgb(255 255 255 / 60%);
  border-radius: 18px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.35;
  backdrop-filter: blur(10px);
}

.feature-photo figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--terracotta);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pool-days {
  position: relative;
  padding: 48px 0 150px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 18%, rgb(169 214 205 / 14%), transparent 26%),
    radial-gradient(circle at 13% 79%, rgb(169 214 205 / 10%), transparent 26%),
    var(--lake-deep);
}

.pool-days::before,
.pool-days::after {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.pool-days::before {
  top: 130px;
  right: -100px;
}

.pool-days::after {
  bottom: 200px;
  left: -130px;
  width: 310px;
  height: 310px;
}

.pool-days__heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 84px;
}

.chapter-heading--light {
  margin-bottom: 0;
}

.chapter-heading--light .chapter-heading__index {
  color: var(--sun);
}

.chapter-heading--light .eyebrow {
  color: var(--sun);
}

.pool-days__intro {
  max-width: 400px;
  margin-bottom: 10px;
  color: rgb(255 253 248 / 72%);
}

.pool-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  align-items: start;
}

.photo-card {
  margin: 0;
}

.photo-card__image {
  overflow: hidden;
  background: var(--lake);
  border-radius: 22px;
  box-shadow: 0 22px 60px rgb(6 39 42 / 36%);
}

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

.photo-card figcaption {
  margin-top: 12px;
  color: rgb(255 253 248 / 66%);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.photo-card--portrait-one {
  grid-column: 1 / span 4;
  grid-row: 1 / span 5;
}

.photo-card--portrait-one .photo-card__image {
  aspect-ratio: 3 / 4.8;
}

.photo-card--portrait-one img {
  object-position: center 46%;
}

.photo-card--group {
  grid-column: 5 / -1;
  grid-row: 1 / span 3;
  margin-top: 74px;
}

.photo-card--group .photo-card__image {
  aspect-ratio: 16 / 8.8;
}

.photo-card--group img {
  object-position: center 38%;
}

.photo-card--panorama {
  grid-column: 1 / span 8;
  grid-row: 6 / span 3;
  margin-top: 18px;
}

.photo-card--panorama .photo-card__image {
  aspect-ratio: 16 / 8.5;
}

.photo-card--panorama img {
  object-position: center 47%;
}

.photo-card--portrait-two {
  grid-column: 9 / -1;
  grid-row: 4 / span 5;
}

.photo-card--portrait-two .photo-card__image {
  aspect-ratio: 3 / 4.8;
}

.photo-card--portrait-two img {
  object-position: center 48%;
}

.pool-note {
  grid-column: 2 / span 5;
  grid-row: 9;
  max-width: 470px;
  margin: 34px 0 0;
  padding: 30px 34px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 8px 28px 8px 28px;
  box-shadow: 0 18px 50px rgb(6 39 42 / 28%);
  transform: rotate(-2deg);
}

.pool-note span {
  color: var(--terracotta);
}

.pool-note p {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.25;
}

.bardolino {
  padding-top: 90px;
  padding-bottom: clamp(120px, 13vw, 190px);
}

.bardolino__intro {
  max-width: 520px;
  margin: -8px 0 72px 78px;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.45;
}

.bardolino-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 34px;
  align-items: start;
}

.travel-photo {
  margin: 0;
  padding: 12px 12px 18px;
  background: var(--white);
  box-shadow: 0 18px 55px rgb(41 58 53 / 13%);
}

.travel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-photo figcaption {
  padding: 13px 4px 0;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
}

.travel-photo--cafe {
  grid-column: 1 / span 6;
  grid-row: 1 / span 3;
  transform: rotate(-1.2deg);
}

.travel-photo--cafe img {
  aspect-ratio: 3 / 4;
}

.travel-note {
  position: relative;
  grid-column: 8 / -1;
  margin: 54px 12px 56px;
  padding-left: 38px;
  border-left: 2px solid var(--terracotta);
  color: var(--ink);
}

.travel-note::before {
  position: absolute;
  top: -37px;
  left: 27px;
  color: var(--sun);
  content: "“";
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  opacity: 0.8;
}

.travel-note p {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-style: italic;
  line-height: 1.12;
}

.travel-note footer {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.travel-photo--street {
  grid-column: 7 / span 3;
  grid-row: 2 / span 3;
  transform: translateY(26px) rotate(1.6deg);
}

.travel-photo--street img,
.travel-photo--bench img {
  aspect-ratio: 3 / 4;
}

.travel-photo--street img {
  object-position: center 47%;
}

.travel-photo--bench {
  grid-column: 10 / span 3;
  grid-row: 2 / span 3;
  transform: translateY(84px) rotate(-1deg);
}

.travel-photo--bench img {
  object-position: center 48%;
}

.evening {
  padding-top: clamp(84px, 11vw, 150px);
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--cream-light) 0%, #f4c987 56%, #c4734e 100%);
}

.evening__copy {
  padding-bottom: clamp(62px, 8vw, 105px);
  text-align: center;
}

.evening__copy .eyebrow {
  color: var(--terracotta);
}

.evening h2 {
  margin-inline: auto;
  font-size: clamp(3rem, 6vw, 6.6rem);
}

.evening h2 em {
  color: #a9563a;
}

.evening__photo {
  position: relative;
  width: min(1380px, calc(100vw - 48px));
  margin: 0 auto;
  overflow: hidden;
  background: #e49459;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -24px 80px rgb(111 60 43 / 17%);
}

.evening__photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 48%;
}

.evening__photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  padding: 9px 14px;
  color: var(--white);
  background: rgb(36 38 31 / 48%);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.site-footer {
  position: relative;
  display: grid;
  min-height: 360px;
  place-content: center;
  overflow: hidden;
  padding: 90px 24px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.site-footer::before,
.site-footer::after {
  position: absolute;
  left: 50%;
  width: 120%;
  height: 190px;
  border: 1px solid rgb(255 255 255 / 7%);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.site-footer::before {
  bottom: -114px;
}

.site-footer::after {
  bottom: -72px;
}

.site-footer__title {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-style: italic;
  line-height: 1;
}

.site-footer__year {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  color: var(--sun);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3em;
}

.site-footer__note {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgb(255 253 248 / 56%);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (hover: hover) {
  .journey-link {
    transition:
      color 160ms ease,
      gap 160ms ease;
  }

  .journey-link:hover {
    gap: 20px;
    color: var(--terracotta);
  }

  .wordmark {
    transition: opacity 160ms ease;
  }

  .wordmark:hover {
    opacity: 0.68;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .site-header {
    width: 100%;
    color: var(--white);
  }

  .site-header__place {
    color: rgb(255 253 248 / 75%);
  }

  .wordmark__year {
    color: var(--sun);
  }

  .hero {
    display: block;
    position: relative;
    min-height: 920px;
    color: var(--white);
    background: var(--ink);
  }

  .hero__visual {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .hero__visual > img {
    object-position: center 64%;
  }

  .hero__visual::after {
    background:
      linear-gradient(180deg, rgb(15 28 26 / 50%) 0%, transparent 30%),
      linear-gradient(0deg, rgb(15 28 26 / 82%) 0%, rgb(15 28 26 / 5%) 68%);
  }

  .hero__copy {
    position: relative;
    z-index: 3;
    min-height: 920px;
    justify-content: flex-end;
    padding: 170px max(28px, 7vw) 110px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(4rem, 11vw, 7rem);
  }

  .hero h1 em {
    color: var(--sun);
  }

  .hero__intro {
    max-width: 560px;
    color: rgb(255 253 248 / 78%);
  }

  .hero__stamp {
    display: none;
  }

  .arrival__intro {
    margin-left: 78px;
  }

  .pool-days__heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pool-collage {
    gap: 22px;
  }

  .photo-card--portrait-one {
    grid-column: 1 / span 5;
  }

  .photo-card--group {
    grid-column: 6 / -1;
  }

  .photo-card--panorama {
    grid-column: 1 / span 7;
  }

  .photo-card--portrait-two {
    grid-column: 8 / -1;
  }

  .pool-note {
    grid-column: 2 / span 7;
  }

  .travel-photo--cafe {
    grid-column: 1 / span 7;
  }

  .travel-note {
    grid-column: 8 / -1;
    margin-right: 0;
  }

  .travel-photo--street {
    grid-column: 7 / span 3;
  }

  .travel-photo--bench {
    grid-column: 10 / span 3;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .site-header {
    min-height: 84px;
    padding: 18px 20px;
  }

  .site-header__place {
    display: none;
  }

  .hero,
  .hero__copy {
    min-height: 820px;
  }

  .hero__copy {
    padding: 130px 22px 90px;
  }

  .hero h1 {
    margin-bottom: 26px;
    font-size: clamp(3.7rem, 18vw, 5.3rem);
  }

  .hero__intro {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero__visual figcaption {
    display: none;
  }

  .horizon {
    height: 56px;
  }

  .horizon--cream {
    margin-top: -38px;
  }

  .horizon--lake {
    height: 80px;
    margin-top: 40px;
  }

  .chapter-heading {
    grid-template-columns: 48px 1fr;
    margin-bottom: 38px;
  }

  .chapter-heading__index::after {
    width: 24px;
  }

  .chapter-heading h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .arrival {
    padding-top: 70px;
  }

  .arrival__intro {
    display: block;
    margin: 0 0 54px 48px;
  }

  .arrival__intro .arrival__lead {
    margin-bottom: 28px;
  }

  .feature-photo {
    width: calc(100% + 16px);
    margin-left: -8px;
  }

  .feature-photo img {
    aspect-ratio: 16 / 9;
    object-position: center center;
    border-radius: 24px;
  }

  .feature-photo figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    padding: 15px 18px;
  }

  .pool-days {
    padding-top: 28px;
    padding-bottom: 100px;
  }

  .pool-days__heading {
    margin-bottom: 54px;
  }

  .pool-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 16px;
  }

  .photo-card--portrait-one,
  .photo-card--portrait-two,
  .photo-card--group,
  .photo-card--panorama,
  .pool-note {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .photo-card--portrait-one {
    grid-column: 1;
  }

  .photo-card--portrait-two {
    grid-column: 2;
    margin-top: 60px;
  }

  .photo-card--group,
  .photo-card--panorama,
  .pool-note {
    grid-column: 1 / -1;
  }

  .photo-card--group .photo-card__image,
  .photo-card--panorama .photo-card__image {
    aspect-ratio: 4 / 3;
  }

  .photo-card--group img {
    object-position: center 43%;
  }

  .photo-card--panorama img {
    object-position: center center;
  }

  .photo-card__image {
    border-radius: 16px;
  }

  .pool-note {
    max-width: calc(100% - 22px);
    justify-self: center;
    padding: 26px 28px;
  }

  .bardolino {
    padding-top: 74px;
    padding-bottom: 120px;
  }

  .bardolino__intro {
    margin: 0 0 52px 48px;
  }

  .bardolino-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 16px;
  }

  .travel-photo--cafe,
  .travel-note,
  .travel-photo--street,
  .travel-photo--bench {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .travel-photo--cafe {
    grid-column: 1 / -1;
    width: 92%;
    transform: rotate(-1deg);
  }

  .travel-note {
    grid-column: 1 / -1;
    margin: 52px 18px 38px;
  }

  .travel-photo--street {
    grid-column: 1;
    transform: rotate(1.4deg);
  }

  .travel-photo--bench {
    grid-column: 2;
    margin-top: 48px;
    transform: rotate(-1deg);
  }

  .travel-photo {
    padding: 8px 8px 13px;
  }

  .travel-photo figcaption {
    font-size: 0.82rem;
  }

  .evening {
    padding-top: 86px;
  }

  .evening__copy {
    padding-bottom: 62px;
  }

  .evening h2 {
    font-size: clamp(3rem, 13vw, 4.7rem);
  }

  .evening__photo {
    width: calc(100% - 24px);
    border-radius: 24px 24px 0 0;
  }

  .evening__photo img {
    aspect-ratio: 16 / 9;
  }

  .evening__photo figcaption {
    display: none;
  }

  .site-footer {
    min-height: 320px;
  }
}

@media (max-width: 430px) {
  .hero,
  .hero__copy {
    min-height: 740px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 4.3rem);
  }

  .chapter-heading h2 {
    font-size: 2.75rem;
  }

  .arrival__intro,
  .bardolino__intro {
    margin-left: 0;
  }

  .pool-collage {
    gap: 30px 12px;
  }

  .photo-card figcaption {
    font-size: 0.58rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
