/* =========================================================
   Park Details — page-specific sections
   Inherits tokens, fonts, and global components from site.css.
   Also reuses .s3, .signature, .amenities__grid, .golf, .amrail,
   .coursestory, .bigrig (all loaded on this page).
   New, scoped section types only. All classes prefixed .pd-* so
   nothing can leak into other pages.
   ========================================================= */

/* ---------------------------------------------------------
   THE SITES — spec feature (light): copy + spec ledger beside
   a tall framed photo. Mirrors the calm authority of .signature
   but on a warm light band so we keep light/dark rhythm.
   --------------------------------------------------------- */
.pd-sites {
  background: var(--cream-warm);
  padding: var(--space-8) 0;
  position: relative;
  overflow: hidden;
}
.pd-sites__inner {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: var(--space-7);
  align-items: center;
}
.pd-sites__copy { max-width: 560px; }
.pd-sites__heading {
  font-size: var(--type-display-l);
  margin-bottom: var(--space-3);
}
.pd-sites__heading .script {
  font-family: 'Mrs Saint Delafield', cursive;
  font-style: normal;
  font-weight: 400;
  color: var(--gold-deep);
  font-size: 1.4em;
  line-height: 0.5;
  vertical-align: -0.08em;
}
.pd-sites__lead {
  font-size: var(--type-subhead);
  color: var(--body);
  margin-bottom: var(--space-4);
}
/* Spec ledger — hairline rows, serif values, on-brand */
.pd-specs {
  list-style: none;
  margin: 0 0 var(--space-4);
  padding: 0;
  border-top: 1px solid var(--line);
}
.pd-specs li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: baseline;
  padding: 1rem 0.25rem;
  border-bottom: 1px solid var(--line);
}
.pd-specs__val {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--forest-deep);
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.pd-specs__val sup {
  font-size: 0.5em;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  margin-left: 2px;
  top: -0.1em;
}
.pd-specs__lbl {
  font-size: 0.95rem;
  color: var(--body);
  line-height: 1.5;
}
.pd-specs__lbl strong {
  display: block;
  font-family: var(--ff-sans);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 1px;
}
/* Tall framed photo with offset gold border + floating tag */
.pd-sites__media {
  position: relative;
  padding: 22px 22px 0 0;
}
.pd-sites__media::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80%; height: 86%;
  border: 1px solid var(--gold);
  border-radius: var(--r-lg);
  pointer-events: none;
}
.pd-sites__frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 5 / 6;
}
.pd-sites__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.pd-sites__media:hover .pd-sites__frame img { transform: scale(1.05); }
.pd-sites__tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,253,248,0.96);
  color: var(--ink);
  padding: 0.7em 1.2em;
  border-radius: var(--r-pill);
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
@media (max-width: 900px) {
  .pd-sites { padding: var(--space-7) 0; }
  .pd-sites__inner { grid-template-columns: 1fr; gap: var(--space-5); }
  .pd-sites__media { padding: 0; order: -1; }
  .pd-sites__media::before { display: none; }
  .pd-sites__frame { aspect-ratio: 4 / 3; }
}

/* ---------------------------------------------------------
   AMENITIES — header for the global .amenities__grid on this page.
   The grid itself is the shared component; this just gives it a
   light band, a footnote, and a centered CTA.
   --------------------------------------------------------- */
.pd-amenities {
  background: var(--cream-soft);
  padding: var(--space-8) 0;
}
.pd-amenities .amenities__grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pd-amenities__foot {
  margin-top: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  text-align: center;
}
.pd-amenities__note {
  margin: 0;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--pine-rich);
}

/* ---------------------------------------------------------
   WHO COMES TO THE CREEKS — three audience cards (light).
   Premium replacement for the old inline-styled grid: calm editorial
   panels with a serif numeral, kicker, and a hairline footer fact.
   --------------------------------------------------------- */
.pd-audience {
  background: var(--cream);
  padding: var(--space-8) 0;
}
.pd-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.pd-aud-card {
  background: var(--white-warm);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px) clamp(26px, 2.6vw, 36px) clamp(26px, 2.6vw, 34px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out);
}
.pd-aud-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184,147,85,0.4);
}
.pd-aud-card__no {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--sand-deep);
  margin-bottom: var(--space-3);
}
.pd-aud-card:hover .pd-aud-card__no { color: var(--gold-soft); }
.pd-aud-card__kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.6rem;
}
.pd-aud-card__title {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 0.7rem;
}
.pd-aud-card__desc {
  margin: 0;
  font-size: 0.97rem;
  color: var(--body);
  line-height: 1.65;
}
.pd-aud-card__fact {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--pine-rich);
}
@media (max-width: 880px) {
  .pd-audience__grid { grid-template-columns: 1fr; gap: var(--space-3); }
}

/* ---------------------------------------------------------
   LOCATION — header for the global distance grid (.amenities__grid)
   on a light soft band. Same shared card component; this frames it.
   --------------------------------------------------------- */
.pd-location {
  background: var(--cream-soft);
  padding: var(--space-8) 0;
}
.pd-location .amenities__grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

/* ---- .s3 mosaic intro + .sw wrappers: ported verbatim from home-sections.css
        so the photo-mosaic intro renders on this page (these structural styles are
        otherwise home-only). Loaded only on Park Details. ---- */
.sw { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.sw--wide { max-width: 1320px; }
.s3 { background: var(--cream-soft); padding: var(--space-8) 0; overflow: hidden; }
.s3__grid { display: grid; grid-template-columns: 5fr 7fr; gap: var(--space-7); align-items: center; }
.s3__list { list-style: none; margin: 0 0 1.9rem; padding: 0; display: grid; gap: 0.7rem; }
.s3__list li { display: flex; align-items: baseline; gap: 0.7rem; color: var(--body); font-size: var(--type-small); }
.s3__list li::before { content: ""; width: 18px; height: 1px; background: var(--gold); flex: 0 0 auto; transform: translateY(-0.28em); }
.s3__mosaic { position: relative; display: grid; grid-template-columns: 7fr 5fr; grid-template-rows: auto auto; gap: 1rem; padding-bottom: 3.2rem; }
.s3__mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-md); display: block; }
.s3__photo--a { grid-row: 1 / 3; aspect-ratio: 4 / 5; }
.s3__photo--b { aspect-ratio: 5 / 4; }
.s3__photo--c { aspect-ratio: 5 / 4; }
.s3__card { position: absolute; background: var(--white-warm); border-radius: var(--r-sm); box-shadow: var(--shadow-lg); padding: 1rem 1.2rem 1.05rem; max-width: 240px; border-top: 2px solid var(--gold); }
.s3__card h3 { font-family: var(--ff-serif); font-weight: 400; font-size: 1.05rem; color: var(--ink); margin: 0 0 0.3rem; }
.s3__card p { margin: 0; font-size: 0.84rem; line-height: 1.5; color: var(--muted); }
.s3__card--1 { left: -1.6rem; top: 12%; }
.s3__card--2 { right: 6%; top: 38%; }
.s3__card--3 { left: 30%; bottom: 0; }
@media (max-width: 960px) {
  .s3__grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .s3__card--1 { left: 0; }
}
@media (max-width: 640px) {
  .s3__card { position: static; max-width: none; margin-top: 0.4rem; }
  .s3__mosaic { padding-bottom: 0; }
  .s3__cards { display: grid; gap: 0.8rem; grid-column: 1 / -1; }
}
@media (min-width: 641px) { .s3__cards { display: contents; } }

/* ---- The Lake (real fall panorama + recreation points) ---- */
.pd-lake { background: var(--cream-soft); padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.pd-lake__head { text-align: center; max-width: 760px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.pd-lake__title { font-family: var(--ff-serif); font-weight: 400; color: var(--ink); font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.08; letter-spacing: -0.012em; margin: 0 0 1rem; }
.pd-lake__lead { color: var(--body); font-size: 1.06rem; line-height: 1.7; margin: 0; }
.pd-lake__figure { margin: 0; position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 30px 70px rgba(23,58,42,0.18); }
.pd-lake__figure img { width: 100%; aspect-ratio: 1788 / 640; object-fit: cover; display: block; transition: transform 1200ms var(--ease-out); }
.pd-lake__figure:hover img { transform: scale(1.04); }
.pd-lake__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 2.6rem 1.6rem 1.1rem; font-family: var(--ff-sans); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white-warm); background: linear-gradient(180deg, rgba(11,28,20,0) 0%, rgba(11,28,20,0.62) 100%); }
.pd-lake__points { list-style: none; margin: clamp(1.8rem, 3.4vw, 2.6rem) 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2.4rem); }
.pd-lake__points li { display: flex; gap: 0.9rem; align-items: flex-start; }
.pd-lake__points svg { width: 26px; height: 26px; flex: 0 0 auto; color: var(--gold-deep); margin-top: 3px; }
.pd-lake__points strong { display: block; font-family: var(--ff-serif); font-weight: 400; font-size: 1.12rem; color: var(--ink); margin-bottom: 0.25rem; }
.pd-lake__points div { font-size: 0.95rem; line-height: 1.55; color: var(--body); }
@media (max-width: 760px) {
  .pd-lake__points { grid-template-columns: 1fr; gap: 1.1rem; }
  .pd-lake__figure img { aspect-ratio: 16 / 10; }
  .pd-lake__cap { padding: 1.8rem 1.1rem 0.9rem; }
}

/* ---------------------------------------------------------
   FEATURED AMENITIES — .amfeat
   Premium image-led showcase of the standout draws (clubhouse,
   bar & grill, lakeside pavilion). Alternating large-image / copy
   splits for editorial rhythm: image left, then right, then left.
   Each row alternates cream / cream-soft. Big rounded media with a
   soft shadow + gentle hover zoom and a floating caption chip; copy
   block uses the standard eyebrow -> serif heading (cursive .script
   accent) -> lead -> bullets -> optional gold CTA. The everyday
   amenities remain in the .pd-amenities grid below. Light mode only.
   --------------------------------------------------------- */
.amfeat {
  background: var(--cream-soft);
  padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(1rem, 2vw, 2rem);
  position: relative;
  overflow: hidden;
}
.amfeat__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2.4rem, 5vw, 4rem);
}
.amfeat__title {
  font-family: var(--ff-serif);
  font-weight: 400;
  color: var(--ink);
  font-size: var(--type-display-m);
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0.5rem 0 1rem;
}
.amfeat__title .script {
  font-family: 'Mrs Saint Delafield', cursive;
  font-style: normal;
  font-weight: 400;
  color: var(--gold-deep);
  font-size: 1.45em;
  line-height: 0.5;
  vertical-align: -0.1em;
}
.amfeat__intro {
  color: var(--body);
  font-size: 1.06rem;
  line-height: 1.7;
  margin: 0;
}

/* The alternating rows */
.amfeat__list {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
.amfeat__item {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
/* image right on even rows -> push copy to column 1, media to column 2 */
.amfeat__item--reverse .amfeat__media { order: 2; }
.amfeat__item--reverse .amfeat__copy  { order: 1; }

/* Media — big rounded photo, soft shadow, subtle hover zoom, floating chip */
.amfeat__media {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 7 / 5;
}
.amfeat__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1200ms var(--ease-out);
}
.amfeat__item:hover .amfeat__media img { transform: scale(1.05); }
.amfeat__chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255,253,248,0.94);
  color: var(--ink);
  padding: 0.6em 1.1em;
  border-radius: var(--r-pill);
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

/* Copy */
.amfeat__copy { max-width: 540px; }
.amfeat__item--reverse .amfeat__copy { margin-left: auto; }
.amfeat__heading {
  font-family: var(--ff-serif);
  font-weight: 400;
  color: var(--ink);
  font-size: var(--type-display-m);
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin: 0 0 1rem;
}
.amfeat__heading .script {
  font-family: 'Mrs Saint Delafield', cursive;
  font-style: normal;
  font-weight: 400;
  color: var(--gold-deep);
  font-size: 1.45em;
  line-height: 0.5;
  vertical-align: -0.08em;
}
.amfeat__lead {
  color: var(--body);
  font-size: var(--type-subhead);
  line-height: 1.7;
  margin: 0 0 var(--space-3);
}
.amfeat__points {
  list-style: none;
  margin: 0 0 var(--space-4);
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.amfeat__points li {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.5;
}
.amfeat__points li::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex: 0 0 auto;
  transform: translateY(-0.32em);
}

@media (max-width: 880px) {
  .amfeat__item,
  .amfeat__item--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  /* image first on mobile, regardless of row parity */
  .amfeat__media,
  .amfeat__item--reverse .amfeat__media { order: -1; }
  .amfeat__copy,
  .amfeat__item--reverse .amfeat__copy { order: 0; max-width: none; margin-left: 0; }
  .amfeat__media { aspect-ratio: 4 / 3; }
}

/* ---------------------------------------------------------
   LIFE AT THE CREEKS — .creekvid
   A cinematic video band on the cream page. A rounded, soft-
   shadowed 16:9 media block holds the poster frame; a dark scrim
   (ONLY on the poster) carries a centered play button + a one-line
   caption. Clicking the button (or the poster) swaps the poster
   for an autoplaying <video> WITH sound — allowed because it
   follows a real user gesture. The video fades in over the poster.
   Light mode only; the dark gradient lives on the image, never the
   page. Three-voice type: eyebrow (sans) -> serif title w/ cursive
   .script accent -> sans caption.
   --------------------------------------------------------- */
.creekvid {
  background: var(--cream-soft);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 6rem);
}
.creekvid__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(1.8rem, 4vw, 3rem);
}
.creekvid__title {
  font-family: var(--ff-serif);
  font-weight: 400;
  color: var(--ink);
  font-size: var(--type-display-m);
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0.5rem 0 0;
}
.creekvid__title .script {
  font-family: 'Mrs Saint Delafield', cursive;
  font-style: normal;
  font-weight: 400;
  color: var(--gold-deep);
  font-size: 1.45em;
  line-height: 0.5;
  vertical-align: -0.1em;
}

/* Media stage — rounded, soft-shadowed 16:9 frame */
.creekvid__stage {
  position: relative;
  margin: 0 auto;
  max-width: 1080px;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--pine-deeper);
}
.creekvid__poster {
  position: absolute;
  inset: 0;
  cursor: pointer;
  border: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
.creekvid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1400ms var(--ease-out);
}
.creekvid__stage:hover .creekvid__img { transform: scale(1.04); }
/* dark scrim ON the poster for play-button + caption legibility */
.creekvid__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 60% at 50% 44%, rgba(15,42,30,0.32) 0%, rgba(15,42,30,0) 70%),
    linear-gradient(180deg, rgba(15,42,30,0.10) 0%, rgba(15,42,30,0) 38%, rgba(15,42,30,0.28) 72%, rgba(15,42,30,0.62) 100%);
  transition: opacity var(--t-med) var(--ease-out);
}
.creekvid__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 1.6rem);
  text-align: center;
  pointer-events: none;
  padding: 1.5rem;
}
/* the play button is a real <button> for accessibility */
.creekvid__play {
  pointer-events: auto;
  width: clamp(68px, 8vw, 92px);
  height: clamp(68px, 8vw, 92px);
  border-radius: 50%;
  border: 1.5px solid rgba(255,253,248,0.85);
  background: rgba(255,253,248,0.16);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 34px rgba(15,42,30,0.34);
  transition: background var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out);
}
.creekvid__play:hover {
  background: rgba(255,253,248,0.28);
  border-color: #fff;
}
.creekvid__play:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}
.creekvid__playicon {
  width: 38%;
  height: 38%;
  fill: var(--white-warm);
  margin-left: 8%; /* optically center the triangle */
}
.creekvid__caption {
  font-family: var(--ff-sans);
  font-size: clamp(0.95rem, 1vw + 0.7rem, 1.15rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255,253,248,0.95);
  max-width: 30ch;
  margin: 0;
  text-shadow: 0 1px 3px rgba(11,28,20,0.6), 0 0 18px rgba(11,28,20,0.4);
}

/* The played video — fills the stage, fades in once it can render */
.creekvid__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
  border: 0;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease-out);
  z-index: 2;
}
.creekvid__stage.is-ready .creekvid__video { opacity: 1; }
/* once playing, hide the poster + its controls so the video reads cleanly */
.creekvid__stage.is-playing .creekvid__poster { pointer-events: none; }
.creekvid__stage.is-playing.is-ready .creekvid__poster { opacity: 0; transition: opacity var(--t-med) var(--ease-out); }

.creekvid__foot {
  text-align: center;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

@media (max-width: 600px) {
  .creekvid__stage { border-radius: var(--r-md); }
  .creekvid__caption { font-size: 0.95rem; }
}

/* ---------------------------------------------------------
   THE GALLERY — .golfgal
   Curated official course photography on the cream page. An
   editorial grid: one wide feature tile and one tall tile anchor
   the wall, the rest fill the remaining cells. Gentle hover zoom +
   a soft caption that rises in on hover (always visible on touch).
   Photos lead; copy is one eyebrow + one serif headline. Lazy-loaded.
   Light mode only.
   --------------------------------------------------------- */
.golfgal {
  background: var(--cream-soft);
  padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(3.5rem, 7vw, 6.5rem);
}
.golfgal__head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto clamp(2.2rem, 5vw, 3.6rem);
}
.golfgal__title {
  font-family: var(--ff-serif);
  font-weight: 400;
  color: var(--ink);
  font-size: var(--type-display-m);
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0.5rem 0 0;
}
.golfgal__title .script {
  font-family: 'Mrs Saint Delafield', cursive;
  font-style: normal;
  font-weight: 400;
  color: var(--gold-deep);
  font-size: 1.45em;
  line-height: 0.5;
  vertical-align: -0.1em;
}

/* Editorial grid — 4 columns, auto rows; two tiles take extra space */
.golfgal__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(150px, 17vw, 240px);
  gap: clamp(0.8rem, 1.4vw, 1.2rem);
}
.golfgal__cell {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  grid-column: span 1;
  grid-row: span 1;
}
/* the wide tile leads the wall; the tall tile gives vertical rhythm */
.golfgal__cell--wide { grid-column: span 2; grid-row: span 2; }
.golfgal__cell--tall { grid-column: span 2; grid-row: span 1; }
/* fill the default single cells across two rows so the wall has no gaps */
.golfgal__cell { grid-row: span 2; }
.golfgal__cell--tall { grid-column: span 2; grid-row: span 2; }

.golfgal__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1100ms var(--ease-out);
}
.golfgal__cell:hover img { transform: scale(1.06); }
.golfgal__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,42,30,0) 46%, rgba(15,42,30,0.55) 100%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease-out);
  pointer-events: none;
}
.golfgal__cell:hover::after { opacity: 1; }
.golfgal__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 1.4rem 1.3rem 1.15rem;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.4;
  color: var(--white-warm);
  text-shadow: 0 1px 3px rgba(11,28,20,0.7);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
  pointer-events: none;
}
.golfgal__cell:hover .golfgal__cap {
  opacity: 1;
  transform: translateY(0);
}
.golfgal__foot {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* Tablet — 2 columns, feature tiles relax to full-width rows */
@media (max-width: 880px) {
  .golfgal__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(150px, 26vw, 220px);
  }
  .golfgal__cell { grid-row: span 1; }
  .golfgal__cell--wide { grid-column: span 2; grid-row: span 1; }
  .golfgal__cell--tall { grid-column: span 1; grid-row: span 1; }
}
/* Touch — captions can't hover, so show them softly at rest */
@media (hover: none) {
  .golfgal__cell::after { opacity: 0.85; }
  .golfgal__cap { opacity: 1; transform: none; }
}
/* Phone — single column stack */
@media (max-width: 540px) {
  .golfgal__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(200px, 56vw, 260px);
  }
  .golfgal__cell--wide,
  .golfgal__cell--tall { grid-column: span 1; grid-row: span 1; }
}
