/* ============================================================
   F&H Golf Course — styles.css
   Refined club aesthetic: green brand, charcoal/black depth,
   crimson-red accent, warm white/cream. Fraunces + Source Sans 3.
   ============================================================ */

:root {
  /* Brand greens */
  --primary-green: #1B5E20;
  --accent-green: #2E7D32;
  --deep-green: #0F3D16;
  --light-green: #E8F5E9;

  /* Neutrals */
  --white: #FFFFFF;
  --paper: #FAF8F2;          /* warm off-white ground */
  --paper-2: #F1EEE5;        /* slightly deeper cream */
  --ink: #141414;
  --muted: #5d5c54;
  --charcoal: #17181a;       /* dark sections (gallery) */
  --black: #101113;          /* footer / stat depth */

  /* Crimson accent */
  --red: #B11E2D;
  --red-deep: #8C1622;
  --red-bright: #E0524A;     /* on dark backgrounds */

  --line: rgba(20, 30, 20, 0.12);

  /* Type */
  --font-display: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;

  --max-width: 1140px;
  --nav-height: 72px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05), 0 2px 10px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 26px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 54px rgba(0,0,0,0.16);
  --radius: 14px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 600; }

a { color: var(--accent-green); transition: color 0.2s ease; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* Uppercase kicker above section titles */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.6rem;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250, 248, 242, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.nav.is-scrolled { box-shadow: var(--shadow-md); background: rgba(250, 248, 242, 0.98); }

.nav__inner {
  max-width: var(--max-width); margin: 0 auto; height: var(--nav-height);
  padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between;
}

/* Logo emblem chip + wordmark lockup */
.nav__brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav__mark {
  width: 46px; height: 46px; flex: none;
  background: #fff; border-radius: 50%; padding: 5px;
  object-fit: contain; border: 2px solid var(--primary-green);
  box-shadow: var(--shadow-sm);
}
.nav__wordmark { display: flex; flex-direction: column; line-height: 1.05; }
.nav__name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--primary-green); letter-spacing: 0.01em; }
.nav__tagline { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--red); font-weight: 700; }

.nav__links { display: flex; gap: 1rem; align-items: center; }
.nav__links a { position: relative; color: var(--primary-green); text-decoration: none; font-weight: 600; font-size: 0.88rem; padding: 0.35rem 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.nav__links a:hover { color: var(--red); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__toggle { display: none; flex-direction: column; justify-content: space-between; width: 28px; height: 20px; background: none; border: none; cursor: pointer; }
.nav__toggle span { display: block; height: 2.5px; width: 100%; background: var(--primary-green); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8.75px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8.75px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none;
  font-family: var(--font-body); font-weight: 700; letter-spacing: 0.01em;
  border-radius: 999px; padding: 0.85rem 1.6rem; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
/* Primary CTA in crimson — pops against the green-tinted hero photo */
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.65); }
.btn--ghost:hover { background: rgba(255,255,255,0.14); border-color: #fff; transform: translateY(-2px); }

/* Solid green button for in-content CTAs */
.btn--solid { background: var(--primary-green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--solid:hover { background: var(--accent-green); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--hero { background: #fff; color: var(--primary-green); box-shadow: var(--shadow-md); }
.btn--hero:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: clamp(560px, 82vh, 780px);
  display: flex; align-items: center;
  background: radial-gradient(120% 120% at 78% 18%, var(--accent-green) 0%, var(--primary-green) 48%, var(--deep-green) 100%);
  color: #fff; overflow: hidden;
}

/* HERO PHOTO: images/hero.jpg sits beneath the overlay. If absent, the
   gradient above shows through — graceful fallback, no broken state. */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: url("../images/hero.jpg");
  background-size: cover; background-position: center;
}

/* Cinematic dark overlay: darker at left (for text) with a warm edge at right */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(95deg, rgba(8,10,9,0.88) 0%, rgba(8,10,9,0.58) 42%, rgba(15,45,22,0.34) 74%, rgba(120,38,20,0.20) 100%),
    linear-gradient(180deg, rgba(8,10,9,0.10) 0%, rgba(8,10,9,0.58) 100%);
}

.hero__inner { max-width: var(--max-width); margin: 0 auto; width: 100%; padding: clamp(2.5rem, 7vw, 5rem) 1.5rem; }
.hero__content { max-width: 680px; }

.hero__kicker {
  text-transform: uppercase; letter-spacing: 0.28em; font-size: 0.82rem; font-weight: 700;
  color: var(--red-bright); margin-bottom: 1.1rem; padding-left: 0.15em;
  opacity: 0; animation: rise 0.7s ease 0.05s forwards;
}
.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.9rem, 7.5vw, 5.3rem); line-height: 0.98; letter-spacing: -0.01em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  opacity: 0; animation: rise 0.7s ease 0.16s forwards;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 40ch; margin: 1.2rem 0 2rem;
  color: rgba(255,255,255,0.94); text-shadow: 0 1px 12px rgba(0,0,0,0.3);
  opacity: 0; animation: rise 0.7s ease 0.28s forwards;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; opacity: 0; animation: rise 0.7s ease 0.4s forwards; }

@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero__kicker, .hero__title, .hero__subtitle, .hero__actions { animation: none; opacity: 1; }
}

/* ---------- Stat strip ---------- */
.stats { background: var(--primary-green); color: #fff; border-top: 3px solid var(--red); }
.stats__inner { max-width: var(--max-width); margin: 0 auto; padding: 1.7rem 1.5rem; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; text-align: center; }
.stat { position: relative; padding: 0.2rem 0.5rem; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 60%; width: 1px; background: rgba(255,255,255,0.22); }
.stat__num { display: block; font-family: var(--font-display); font-size: clamp(1.5rem, 3.4vw, 2.25rem); font-weight: 600; line-height: 1; }
.stat__label { display: block; margin-top: 0.35rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.8); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--alt { background: var(--white); }
.section--paper { background: var(--paper-2); }

.section-head { max-width: 760px; margin-bottom: 2.5rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__title { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--primary-green); letter-spacing: -0.01em; }
.section__text { max-width: 720px; margin: 0 auto 1rem; font-size: 1.08rem; color: #33342e; }
.section__text--center { text-align: center; }
.section__subtitle { font-size: 1.15rem; font-style: italic; color: var(--accent-green); margin: 0.4rem 0 1.75rem; max-width: 720px; }

.rule-brass { width: 56px; height: 3px; background: var(--red); border: none; border-radius: 2px; margin: 0.9rem 0 0; }
.section-head--center .rule-brass { margin-left: auto; margin-right: auto; }

/* ---------- About: asymmetric two-column ---------- */
.about { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.about__lede { font-size: 1.18rem; line-height: 1.7; color: #2c2d27; }

.factbox { background: var(--primary-green); color: #fff; border-radius: var(--radius); padding: 1.6rem 1.7rem; box-shadow: var(--shadow-md); position: relative; top: 0.25rem; border-top: 4px solid var(--red); }
.factbox h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.72); margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
.factbox dl { display: grid; gap: 0.85rem; }
.factbox dl > div { display: grid; gap: 0.1rem; padding-bottom: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.16); }
.factbox dl > div:last-child { border-bottom: none; padding-bottom: 0; }
.factbox dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.72); }
.factbox dd { font-family: var(--font-display); font-size: 1.12rem; }

/* ---------- Amenities ---------- */
.amenities { list-style: none; margin: clamp(2.5rem, 5vw, 3.5rem) 0 0; padding: 1.75rem 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem 1rem; }
.amenity { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.65rem; }
.amenity svg { width: 34px; height: 34px; color: var(--primary-green); stroke: var(--primary-green); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s ease, color 0.2s ease, stroke 0.2s ease; }
.amenity:hover svg { transform: translateY(-3px) scale(1.06); color: var(--red); stroke: var(--red); }
.amenity span { font-size: 0.9rem; font-weight: 600; color: #2c2d27; }

/* ---------- Our Story ---------- */
.story { max-width: 740px; }
.story p { margin-bottom: 1.15rem; font-size: 1.08rem; }
/* No drop cap here on purpose: the first paragraph opens with "F&H"
   (Fleming & Haxtun) and ::first-letter would split the monogram. */
.story__attribution { max-width: 740px; margin: 1.5rem 0 0; font-size: 0.92rem; font-style: italic; color: var(--muted); }
.story__cta { margin-top: 2.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }
.story__listen-link { display: inline-flex; align-items: center; font-weight: 700; text-decoration: none; color: var(--primary-green); }
.story__listen-link:hover { color: var(--red); text-decoration: underline; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; max-width: 760px; margin: 3rem 0 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; top: 6px; bottom: 6px; left: 11px; width: 2px; background: linear-gradient(var(--accent-green), var(--light-green)); }
.timeline__item { position: relative; padding: 0 0 1.75rem 3rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before { content: ""; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; background: var(--primary-green); border: 3px solid var(--paper); border-radius: 50%; box-shadow: 0 0 0 2px var(--accent-green); }
.section--alt .timeline__item::before { border-color: var(--white); }
.timeline__year { display: inline-block; font-family: var(--font-display); font-weight: 600; color: var(--primary-green); font-size: 1.3rem; margin-bottom: 0.25rem; }
.timeline__text { background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 10px; padding: 0.7rem 1rem; box-shadow: var(--shadow-sm); margin: 0; }

/* ---------- Cards (rates) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
.cards--two { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3 { color: var(--primary-green); margin-bottom: 0.5rem; font-size: 1.25rem; }
.card--feature { border-top: 3px solid var(--red); }
.card--feature .card__big { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--primary-green); margin: 0.5rem 0 0.25rem; }
.card__note { font-size: 0.85rem; color: var(--muted); font-style: italic; }
.rates-note { margin-top: 1.75rem; }

/* ---------- Pay for Play (QR) ---------- */
.pay {
  margin-top: 2rem;
  display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--red);
  border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow-md);
}
.pay__qr { text-align: center; }
.pay__qr img { width: 220px; height: 220px; display: block; border: 1px solid var(--line); border-radius: 10px; padding: 8px; background: #fff; }
.pay__qr-label { display: block; margin-top: 0.55rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700; color: var(--primary-green); }
.pay__title { color: var(--primary-green); font-size: 1.5rem; margin: 0.2rem 0 0.6rem; }
.pay__lead { color: var(--muted); margin-bottom: 0.9rem; max-width: 54ch; }
.pay__fees { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); margin-bottom: 1.1rem; }
.pay__note { margin-top: 0.85rem; font-size: 0.8rem; color: var(--muted); font-style: italic; }

/* Price table inside the pay block */
.pricing { border-collapse: collapse; margin: 0.4rem 0 0.9rem; min-width: 280px; }
.pricing th, .pricing td { padding: 0.5rem 1rem; text-align: center; border-bottom: 1px solid var(--line); }
.pricing thead th { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; }
.pricing tbody th { text-align: left; font-family: var(--font-display); font-weight: 600; color: var(--primary-green); font-size: 1.05rem; }
.pricing td { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.pricing td:last-child { color: var(--red-deep); font-weight: 700; }
.pay__note2 { font-size: 0.9rem; color: #3a3b34; margin-bottom: 1.1rem; }

/* Hours + Membership dues cards */
.rates-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; align-items: start; }
.ratecard { background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: var(--radius); padding: 1.6rem 1.75rem; box-shadow: var(--shadow-sm); }
.ratecard__title { color: var(--primary-green); font-size: 1.3rem; margin-bottom: 0.9rem; }
.hours__table, .dues { width: 100%; border-collapse: collapse; }
.hours__table th, .hours__table td, .dues th, .dues td { padding: 0.42rem 0.4rem; border-bottom: 1px solid var(--line); font-size: 0.97rem; }
.hours__table th[scope="row"], .dues th[scope="row"] { text-align: left; font-weight: 600; color: #2c2d27; }
.hours__table td { text-align: right; color: #33342e; }
.dues thead th { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); font-weight: 700; }
.dues thead th:not(:first-child), .dues td { text-align: right; }
.dues td { font-family: var(--font-display); color: var(--ink); }
.dues td[colspan] { color: var(--primary-green); font-weight: 600; }
.hours__note, .dues__note { margin-top: 0.85rem; font-size: 0.85rem; color: var(--muted); }

/* Tournament schedule */
.schedule { list-style: none; max-width: 640px; margin: 0 auto; padding: 0; }
.schedule li { display: flex; gap: 1rem; align-items: baseline; padding: 0.7rem 0.4rem; border-bottom: 1px solid var(--line); }
.schedule__date { flex: 0 0 6rem; font-family: var(--font-display); font-weight: 600; color: var(--red-deep); }
.schedule__event { color: #2c2d27; font-weight: 600; }
.schedule__note { max-width: 640px; margin: 1.5rem auto 0; text-align: center; font-size: 0.85rem; color: var(--muted); }
.schedule li { flex-wrap: wrap; }
.schedule__meta { flex-basis: 100%; font-size: 0.85rem; color: var(--muted); margin-top: 0.2rem; font-weight: 600; }
.schedule li.is-past { opacity: 0.7; }
.schedule__done { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.4rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.schedule__done::before { content: "✓"; color: var(--primary-green); font-weight: 700; }
.schedule__full { flex-basis: 100%; display: flex; align-items: center; gap: 0.75rem; margin-top: 0.5rem; }
.schedule__track { flex: 1 1 auto; max-width: 340px; height: 8px; background: var(--line); border-radius: 999px; overflow: hidden; }
.schedule__fill { height: 100%; background: linear-gradient(90deg, var(--accent-green), var(--primary-green)); border-radius: 999px; transition: width 0.5s ease; }
.schedule__full.is-full .schedule__fill { background: var(--red); }
.schedule__pct { font-size: 0.8rem; font-weight: 700; color: var(--primary-green); white-space: nowrap; }
.schedule__full.is-full .schedule__pct { color: var(--red-deep); }
.form__format { background: var(--light-green); border-radius: 8px; padding: 0.5rem 0.85rem; font-size: 0.9rem; color: var(--primary-green); font-weight: 600; }

@media (max-width: 760px) { .rates-grid { grid-template-columns: 1fr; } }

/* ---------- Share buttons (tournaments page) ---------- */
.share { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 1.5rem; }
.share__link { display: inline-flex; align-items: center; gap: 0.4rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 0.6rem 1.2rem; font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; color: var(--primary-green); text-decoration: none; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease; }
.share__link:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--primary-green); }
.share__link--primary { background: var(--red); color: #fff; border-color: var(--red); }
.share__link--primary:hover { background: var(--red-deep); border-color: var(--red-deep); }
.share__msg { display: block; margin-top: 0.9rem; min-height: 1.2em; font-weight: 700; color: var(--accent-green); }

/* ---------- Add to Home Screen block ---------- */
.install { margin-top: 1.5rem; }
.install__note { color: var(--muted); margin-top: 0.5rem; }
.install__rule { border: none; border-top: 1px solid var(--line); max-width: 320px; margin: 2.25rem auto 1.75rem; }
.install__share-title { color: var(--primary-green); font-size: 1.3rem; margin-bottom: 0.4rem; }

@media (max-width: 640px) {
  .pay { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .pay__lead, .pay__fees { max-width: none; }
}

/* ---------- Scorecard ---------- */
.table-wrap { overflow-x: auto; margin-top: 0.5rem; max-width: 640px; }
.scorecard { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: var(--shadow-sm); border-radius: var(--radius); overflow: hidden; min-width: 320px; border: 1px solid var(--line); }
.scorecard th, .scorecard td { padding: 0.8rem 1.1rem; text-align: center; border-bottom: 1px solid var(--line); }
.scorecard thead th { background: var(--primary-green); color: #fff; font-family: var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; }
.scorecard tbody tr:nth-child(even) { background: var(--paper); }
.scorecard tbody td:first-child { font-family: var(--font-display); font-weight: 600; color: var(--primary-green); }
.scorecard tfoot td { background: var(--accent-green); color: #fff; font-weight: 700; }

/* ---------- Immersive photo band ---------- */
.band {
  position: relative; isolation: isolate; color: #fff; text-align: center;
  background: #1a1a1a url("../images/band.jpg") center/cover no-repeat;
}
.band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,0.62), rgba(10,10,10,0.74));
}
.band__inner { max-width: 820px; margin: 0 auto; padding: clamp(3.5rem, 9vw, 6.5rem) 1.5rem; }
.band__kicker { text-transform: uppercase; letter-spacing: 0.28em; font-size: 0.78rem; font-weight: 700; color: var(--red-bright); margin-bottom: 1rem; }
.band__quote { font-family: var(--font-display); font-size: clamp(1.7rem, 4.5vw, 3rem); line-height: 1.12; font-weight: 500; text-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.band__rule { width: 60px; height: 3px; background: var(--red); border: none; border-radius: 2px; margin: 1.4rem auto; }
.band__sub { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 52ch; margin: 0 auto; }

/* ---------- "Respect the Course" creed band ---------- */
.creed-band { background: var(--deep-green); color: #fff; border-top: 4px solid var(--red); border-bottom: 4px solid var(--red); }
.creed { max-width: 760px; margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) 1.5rem; text-align: center; }
.creed__eyebrow { text-transform: uppercase; letter-spacing: 0.28em; font-size: 0.78rem; font-weight: 700; color: var(--red-bright); margin-bottom: 0.8rem; }
.creed__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.1rem; }
.creed__lead { font-size: 1.15rem; color: rgba(255, 255, 255, 0.9); line-height: 1.7; margin: 0 auto 1.6rem; max-width: 60ch; }
.creed__list { list-style: none; padding: 0; margin: 0 auto 1.6rem; display: inline-grid; gap: 0.7rem; text-align: left; }
.creed__ask { font-weight: 700; color: #fff; font-size: 1.05rem; margin-bottom: 1rem; letter-spacing: 0.01em; }
.creed__list li { padding: 0.55rem 0 0.55rem 1rem; border-left: 3px solid var(--red-bright); font-family: var(--font-display); font-size: 1.12rem; }
.creed__close { font-family: var(--font-display); font-size: clamp(1.15rem, 2.4vw, 1.4rem); color: #fff; margin: 0.4rem auto 1.3rem; max-width: 48ch; }
.creed__sign { font-style: italic; color: rgba(255, 255, 255, 0.75); }

/* ---------- Gallery (dark showcase) ---------- */
.gallery { background: var(--charcoal); color: #fff; }
.gallery .section__title { color: #fff; }
.gallery .eyebrow { color: var(--red-bright); }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery__item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-md); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__cap {
  position: absolute; left: 0; right: 0; bottom: 0; margin: 0;
  padding: 1.4rem 1rem 0.85rem; color: #fff; font-size: 0.95rem; font-weight: 600;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
}
.gallery__cap::before { content: ""; display: inline-block; width: 18px; height: 2px; background: var(--red-bright); margin-right: 0.5rem; vertical-align: middle; }
.gallery__note { margin-top: 1.5rem; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.55); font-style: italic; }

/* ---------- Location / map ---------- */
.map-wrap { margin-top: 2rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-wrap iframe { display: block; }

/* ---------- Contact ---------- */
.contact-lines { font-size: 1.1rem; }
.contact-lines a { font-weight: 600; }

/* ---------- Facebook block ---------- */
.fb { margin-top: 1.75rem; }
.fb__card { max-width: 540px; background: var(--white); border: 1px solid var(--line); border-top: 3px solid #1877F2; border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.fb__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fb__icon svg { width: 44px; height: 44px; display: block; }
.fb__title { color: var(--primary-green); font-size: 1.45rem; margin: 0.85rem 0 0.4rem; }
.fb__lead { color: var(--muted); margin-bottom: 1.35rem; }
.fb__feed { max-width: 540px; margin-top: 1.5rem; max-height: 0; overflow: hidden; opacity: 0; transition: opacity 0.45s ease, max-height 0.45s ease; }
.fb__feed.is-ready { max-height: 720px; opacity: 1; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--black); color: rgba(255,255,255,0.82); border-top: 4px solid var(--red); }
.site-footer__inner { max-width: var(--max-width); margin: 0 auto; padding: 3rem 1.5rem 1.5rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer__brand { display: flex; gap: 0.9rem; align-items: flex-start; }
.site-footer__mark { width: 62px; height: 62px; flex: none; background: #fff; border-radius: 50%; padding: 7px; object-fit: contain; box-shadow: 0 4px 16px rgba(0,0,0,0.5); }
.site-footer__name { font-family: var(--font-display); font-size: 1.4rem; color: #fff; }
.site-footer__tag { font-style: italic; color: rgba(255,255,255,0.68); margin-top: 0.3rem; max-width: 32ch; }
.site-footer h4 { font-family: var(--font-body); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--red-bright); margin-bottom: 0.9rem; }
.site-footer a { color: rgba(255,255,255,0.82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; display: grid; gap: 0.5rem; }
.site-footer address { font-style: normal; line-height: 1.7; }
.site-footer__bottom { max-width: var(--max-width); margin: 0 auto; padding: 1.25rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.14); font-size: 0.85rem; color: rgba(255,255,255,0.55); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer__link { color: rgba(255,255,255,0.85); font-weight: 600; }
.footer { background: var(--black); color: #fff; text-align: center; padding: 1.5rem; font-size: 0.95rem; }

/* ============================================================
   story.html — full-history page components
   ============================================================ */
.hero--strip { min-height: clamp(300px, 44vh, 440px); }
.hero--strip .hero__inner { padding: clamp(2.5rem, 7vw, 4.5rem) 1.5rem; }

.book { max-width: 740px; margin: 0 auto; background: transparent; color: var(--ink); font-size: 1.12rem; line-height: 1.85; }
.book p { margin-bottom: 1.4rem; }
.book p:first-of-type::first-letter { font-family: var(--font-display); float: left; font-size: 3.8rem; line-height: 0.78; padding: 0.06em 0.12em 0 0; color: var(--primary-green); font-weight: 600; }
.book__attribution { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 2px solid var(--line); font-style: italic; text-align: right; color: var(--primary-green); font-weight: 600; }

.listen { max-width: 740px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--red); border-radius: var(--radius); padding: 1.9rem; text-align: center; box-shadow: var(--shadow-md); }
.listen__title { color: var(--primary-green); margin-bottom: 0.4rem; font-size: 1.6rem; }
.listen__lead { margin-bottom: 1.2rem; color: var(--muted); }
.listen__player { width: 100%; max-width: 520px; }
.listen__links { margin-top: 1rem; }
.listen__links a { font-weight: 700; text-decoration: none; margin: 0 0.6rem; }
.listen__links a:hover { text-decoration: underline; }
.listen__caption { margin-top: 0.8rem; font-size: 0.85rem; font-style: italic; color: var(--muted); }

/* Vintage newspaper clippings (intentionally print-styled) */
.newspaper { max-width: 840px; margin: 0 auto; background: #fdfbf3; border: 1px solid #d8d4c2; box-shadow: var(--shadow-md); padding: 2.25rem 2.5rem; color: #1a1a1a; font-family: Georgia, "Times New Roman", Times, serif; }
.newspaper__masthead { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 0.5rem; border-bottom: 3px double #1a1a1a; padding-bottom: 0.5rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }
.newspaper__paper { font-weight: 700; font-size: 1rem; letter-spacing: 0.1em; }
.newspaper__headline { font-family: Georgia, "Times New Roman", Times, serif; font-size: clamp(1.7rem, 4vw, 2.3rem); font-weight: 900; text-align: center; line-height: 1.12; margin: 1.1rem 0 0.4rem; color: var(--primary-green); }
.newspaper__subhead { text-align: center; font-style: italic; font-size: 1.05rem; margin: 0 auto 0.75rem; max-width: 640px; }
.newspaper__rule { border: none; border-top: 1px solid #1a1a1a; margin: 0.75rem 0 1.25rem; }
.newspaper__columns { column-count: 2; column-gap: 2rem; column-rule: 1px solid #cfcab4; text-align: justify; hyphens: auto; font-size: 1rem; line-height: 1.6; }
.newspaper__columns p { margin: 0 0 0.85rem; }
.newspaper__columns p:first-child::first-letter { float: left; font-size: 3.1rem; line-height: 0.8; padding: 0.05em 0.08em 0 0; font-weight: 900; color: var(--primary-green); }
.newspaper__photo { margin: 0 0 1.25rem; text-align: center; }
.newspaper__photo img { width: 100%; height: auto; border: 1px solid #d8d4c2; filter: grayscale(100%) contrast(1.05); }
.newspaper__photo figcaption { font-size: 0.85rem; line-height: 1.45; text-align: left; padding-top: 0.5rem; border-top: 1px solid #cfcab4; margin-top: 0.4rem; }
.newspaper__sources { margin-top: 1.1rem; padding-top: 0.6rem; border-top: 1px solid #cfcab4; font-size: 0.85rem; font-style: italic; }

.clipping { max-width: 560px; margin: 2rem auto 0; text-align: center; }
.clipping img { width: 100%; height: auto; border: 1px solid #d8d4c2; box-shadow: var(--shadow-sm); border-radius: 4px; }
.clipping figcaption { margin-top: 0.6rem; font-size: 0.85rem; font-style: italic; color: var(--muted); }

.archives__divider { border: none; border-top: 2px dashed var(--red); max-width: 840px; margin: 2.75rem auto; opacity: 0.5; }

/* ---------- Hall of Fame (hall-of-fame.html) ---------- */
.hof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.hof__card { background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: var(--radius); padding: 1.9rem 1.6rem; text-align: center; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.hof__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.hof__avatar, .hof__photo { width: 104px; height: 104px; border-radius: 50%; margin: 0 auto 1rem; box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--red); }
.hof__avatar { display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-size: 2rem; font-weight: 600; letter-spacing: 0.02em; background: radial-gradient(circle at 32% 26%, var(--accent-green), var(--deep-green)); }
.hof__photo { object-fit: cover; display: block; }
.hof__name { font-size: 1.3rem; color: var(--primary-green); margin-bottom: 0.2rem; }
.hof__role { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--red); font-weight: 700; margin-bottom: 0.7rem; }
.hof__bio { color: #33342e; font-size: 0.98rem; line-height: 1.55; }

.honor-roll { list-style: none; max-width: 880px; margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.4rem 2.25rem; }
.honor-roll li { padding: 0.6rem 0; border-bottom: 1px solid var(--line); font-size: 0.98rem; color: #33342e; }
.honor-roll__name { font-weight: 700; color: var(--primary-green); }

@media (max-width: 900px) { .hof__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hof__grid { grid-template-columns: 1fr; } .honor-roll { grid-template-columns: 1fr; } }

/* ---------- Nomination form (nominate.html) ---------- */
.nominate { max-width: 780px; }
.form { display: grid; gap: 1.15rem; margin-top: 1.5rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.form__row--3 { grid-template-columns: repeat(3, 1fr); }
.form__field { display: grid; gap: 0.4rem; min-width: 0; }
.form__label { font-size: 0.85rem; font-weight: 700; color: var(--primary-green); }
.req { color: var(--red); }
.form input, .form select, .form textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 10px; padding: 0.72rem 0.85rem; width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--primary-green); box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.13);
}
.form textarea { resize: vertical; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.3rem; }
.form__status { font-size: 0.95rem; }
.form__status.is-error { color: var(--red); font-weight: 600; }
.form__fineprint { font-size: 0.85rem; color: var(--muted); margin-top: 0.2rem; }
.form__success { margin-top: 1.5rem; background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--primary-green); border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow-md); }
.form__success h3 { color: var(--primary-green); font-size: 1.55rem; margin-bottom: 0.5rem; }
.form__success p { color: #33342e; margin-bottom: 1.2rem; }

@media (max-width: 640px) { .form__row, .form__row--3 { grid-template-columns: 1fr; } }

/* ---------- Staff portal (admin.html) ---------- */
.admin { max-width: 1000px; }
.admin-gate { max-width: 420px; margin: 1rem auto; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--red); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-md); text-align: center; }
.admin-gate h2 { color: var(--primary-green); margin-bottom: 0.3rem; }
.admin-gate p { color: var(--muted); margin-bottom: 1.2rem; }
.admin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.admin-card { display: block; text-decoration: none; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease; color: var(--ink); }
.admin-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.admin-card__tag { display: inline-block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; color: var(--red); margin-bottom: 0.5rem; }
.admin-card h3 { color: var(--primary-green); font-size: 1.2rem; margin-bottom: 0.3rem; }
.admin-card p { color: var(--muted); font-size: 0.92rem; }
.admin-note { margin-top: 2rem; font-size: 0.92rem; color: #3a3b34; background: var(--paper-2); border-radius: 10px; padding: 1.1rem 1.3rem; line-height: 1.7; }
.admin-note code { background: rgba(0,0,0,0.06); padding: 0.05em 0.35em; border-radius: 4px; font-size: 0.92em; }
.site-footer__marklink { display: inline-flex; flex: none; border-radius: 50%; }

/* Submitted nominations list (in the portal) */
.noms { max-width: 1000px; margin: 0 auto 2.75rem; }
.noms__bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.noms__title { color: var(--primary-green); font-size: 1.35rem; }
.noms__count { color: var(--muted); font-weight: 400; font-family: var(--font-body); font-size: 1rem; }
.noms__list { display: grid; gap: 1rem; }
.noms__msg { color: var(--muted); }
.nom { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 12px; padding: 1.1rem 1.25rem; box-shadow: var(--shadow-sm); }
.nom__head { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.nom__name { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--primary-green); }
.nom__status { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; padding: 0.22rem 0.65rem; border-radius: 999px; background: var(--paper-2); color: #555; }
.nom__status--new { background: #fde8ea; color: var(--red-deep); }
.nom__status--reviewing { background: #fff3df; color: #8a5a00; }
.nom__status--approved, .nom__status--added { background: var(--light-green); color: var(--primary-green); }
.nom__status--declined { background: #ececec; color: #777; }
.nom__meta { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red); font-weight: 700; margin-top: 0.25rem; }
.nom__why { margin: 0.6rem 0; color: #33342e; }
.nom__by { font-size: 0.85rem; color: var(--muted); }
.nom__by a { color: var(--accent-green); }

/* Tournament groups in the portal */
.tgroup { margin-bottom: 1.75rem; }
.tgroup__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.7rem; padding-bottom: 0.45rem; border-bottom: 2px solid var(--line); }
.tgroup__name { font-family: var(--font-display); color: var(--primary-green); font-size: 1.18rem; }
.tgroup__count { font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; color: var(--muted); }
.tgroup__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tgroup__actions .btn { padding: 0.5rem 1rem; font-size: 0.88rem; }
.tgroup .nom { margin-bottom: 0.6rem; }

/* Tournament finance calculator */
.calc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.calc__inputs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.9rem; margin-bottom: 1.25rem; }
.calc input { font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 0.5rem 0.6rem; width: 100%; }
.calc input:focus { outline: none; border-color: var(--primary-green); box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.12); }
.calc__out { display: grid; gap: 0.4rem; max-width: 440px; }
.calc__row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0.8rem; border-bottom: 1px solid var(--line); }
.calc__row strong { font-family: var(--font-display); font-size: 1.1rem; }
.calc__row--prize { background: var(--light-green); border-radius: 10px; border-bottom: none; }
.calc__row--prize strong { color: var(--primary-green); }
.calc__hint { margin-top: 1rem; font-size: 0.85rem; color: var(--muted); }
@media (max-width: 760px) { .calc__inputs { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 760px) { .admin-grid { grid-template-columns: 1fr; } }

/* ---------- Reviews page (reviews.html) ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: start; }
.quote { margin: 0; padding: 1.5rem 1.6rem; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.quote blockquote { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.45; color: #2c2d27; font-style: italic; }
.quote figcaption { margin-top: 0.7rem; font-size: 0.82rem; font-weight: 700; color: var(--muted); }
.quote__tag { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; color: var(--red); margin-bottom: 0.55rem; }
.quote__stars { color: #E6A100; letter-spacing: 2px; margin-bottom: 0.5rem; }

.videoreview { margin-top: 2.5rem; text-align: center; }
.videoreview__sub { color: var(--muted); margin: 0 auto 1rem; max-width: 56ch; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.videoreview__title { color: var(--primary-green); font-size: 1.2rem; margin-bottom: 0.9rem; }

.reviews__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; max-width: 980px; margin: 0 auto; }
.reviews__msg { grid-column: 1 / -1; text-align: center; color: var(--muted); }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm); }
.review__stars { color: #E6A100; letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 0.5rem; }
.review__text { color: #33342e; margin-bottom: 0.7rem; }
.review__by { font-size: 0.85rem; font-weight: 700; color: var(--primary-green); }

/* Star rating input (reversed DOM order so :checked ~ label fills correctly) */
.stars { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 0.15rem; }
.stars input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.stars label { font-size: 2rem; line-height: 1; color: #d7d3c4; cursor: pointer; transition: color 0.15s ease, transform 0.15s ease; }
.stars label:hover { transform: scale(1.1); }
.stars input:checked ~ label, .stars label:hover, .stars label:hover ~ label { color: #E6A100; }
.stars input:focus-visible + label { outline: 2px solid var(--primary-green); outline-offset: 2px; border-radius: 4px; }
.form__hint { font-weight: 400; color: var(--muted); font-size: 0.8rem; }
.form__prefill { background: var(--light-green); border: 1px solid rgba(27,94,32,0.18); border-radius: 10px; padding: 0.65rem 0.95rem; margin-bottom: 1.1rem; font-size: 0.92rem; color: var(--primary-green); }
.form__prefill a { font-weight: 700; }

@media (max-width: 640px) { .reviews__list { grid-template-columns: 1fr; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .factbox { top: 0; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
  .amenities { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .nav__toggle { display: flex; }
  .nav__tagline { display: none; }
  .nav__links {
    position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: var(--paper); flex-direction: column; gap: 0; align-items: stretch;
    padding: 0.5rem 0; box-shadow: var(--shadow-md); border-bottom: 1px solid var(--line);
    transform: translateY(-160%); transition: transform 0.3s ease;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: 0.9rem 1.5rem; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }

  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .stat:nth-child(1)::before, .stat:nth-child(3)::before, .stat:nth-child(5)::before { display: none; }
  .stat:nth-child(5) { grid-column: 1 / -1; }

  .cards, .cards--two { grid-template-columns: 1fr; }
  .newspaper { padding: 1.25rem; }
  .newspaper__columns { column-count: 1; }
}

@media (max-width: 560px) {
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: 1fr; }
  .story__cta { flex-direction: column; align-items: flex-start; }
}
