@font-face {
  font-family: "Air Pro Condensed";
  src: url("../fonts/AirProCondensed-Roman.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}

/* Great Harbour Cay — greatharbourcay.com
   Design system from the "Great Harbour Cay Framework" board (1D pattern library).
   Two grounds per page maximum. Navy earns its weight by being rare. */

/* ---------- tokens ---------- */
:root {
  --navy:        #10203a;   /* ink, dark sections, logo */
  --navy-deep:   #0b1524;   /* header bar, footer, feature bands */
  --marlin:      #1b3866;   /* links, secondary fills */
  --bone:        #f5f0e6;   /* page ground */
  --page:        #f7f4ec;   /* page ground, interior pages */
  --sand:        #e8e2d4;   /* alternate bands */
  --sand-warm:   #efeade;
  --brass:       #b08d57;   /* labels only, never a button */

  --body:        #4a5262;
  --body-strong: #3d4657;
  --muted:       #8a8271;
  --rule:        rgba(16, 32, 58, 0.14);
  --status-critical: #8e4a3e;   /* form errors only */
  --rule-strong: rgba(16, 32, 58, 0.28);
  --on-dark:     #f0ece2;
  --on-dark-dim: rgba(240, 236, 226, 0.65);
  --on-dark-rule:rgba(240, 236, 226, 0.16);

  --serif: Spectral, "Iowan Old Style", Georgia, serif;
  --label: "Air Pro Condensed", "Barlow Condensed", "Arial Narrow", sans-serif;
  --sans:  Archivo, "Helvetica Neue", system-ui, sans-serif;

  --gutter: clamp(20px, 5vw, 56px);
  --header-h: 100px;   /* solid navy bar on interior pages */
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  background: var(--page);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--marlin); text-decoration: none; }
a:hover { color: var(--brass-deep); }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; }
input, textarea { font: inherit; }
input::placeholder, textarea::placeholder { color: var(--body); opacity: 1; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

/* ---------- type ---------- */
.label {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}
.label--wide { letter-spacing: 0.3em; }
.label--brass { color: var(--brass); }

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 5.6vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.subhead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 26px);
  line-height: 1.25;
}
.lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.4;
}
.prose { color: var(--body); line-height: 1.8; text-wrap: pretty; }
.measure     { max-width: 62ch; }
.measure-sm  { max-width: 52ch; }
.measure-lead{ max-width: 34ch; }

/* ---------- buttons & links ---------- */
.btn {
  display: inline-block;
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12.5px;
  padding: 15px 30px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--page);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { background: var(--marlin); border-color: var(--marlin); color: var(--page); }
.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--page); }
.btn--on-dark { background: transparent; border-color: rgba(240,236,226,0.45); color: var(--on-dark); }
.btn--on-dark:hover { background: var(--on-dark); border-color: var(--on-dark); color: var(--navy-deep); }
.btn--light { background: var(--page); border-color: var(--page); color: var(--navy-deep); }
.btn--light:hover { background: var(--brass); border-color: var(--brass); color: var(--navy-deep); }

.textlink {
  display: inline-block;
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12.5px;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 4px;
}
.textlink:hover { color: var(--brass-deep); border-color: var(--brass-deep); }
.textlink--on-dark { color: var(--on-dark); border-color: rgba(240,236,226,0.6); }


/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px var(--gutter);
  background: var(--navy-deep);
  color: var(--page);
}
.site-header--over {           /* homepage: sits over the hero */
  position: fixed;
  left: 0; right: 0;
  background: transparent;
  transition: background .3s ease;
}
.site-header--over.is-stuck { background: var(--navy-deep); }
/* Past the hero the header compacts to the interior-page height, so it stops
   overlapping the top of the band beneath it. */
.site-header--over.is-stuck .header-logo img { height: 62px; }
.site-header a { color: var(--page); }
.site-header a:hover { color: var(--brass-deep); }

.header-action {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  background: none;
  border: 0;
  padding: 6px 0;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.header-action--right { justify-self: end; }
.burger { display: flex; flex-direction: column; gap: 6px; }
.burger span { display: block; width: 26px; height: 1px; background: currentColor; }
.header-logo { justify-self: center; }
.header-logo img {
  height: 62px; width: auto;
  transition: height .3s ease;
  filter: brightness(0) invert(1);
  opacity: .96;
}
.site-header--over .header-logo img { height: clamp(64px, 8vw, 112px); }

/* ---------- full-screen menu ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--navy-deep);
  color: var(--on-dark);
  display: flex;
  flex-direction: column;
  padding: 18px var(--gutter) var(--gutter);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity .28s ease, visibility .28s;
}
.menu.is-open { visibility: visible; opacity: 1; }
.menu__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.menu__close {
  justify-self: start;
  text-align: left;
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  background: none; border: 0; padding: 6px 0;
  color: var(--on-dark);
}
.menu__close:hover { color: var(--brass); }
.menu__cols {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 64px;
  align-content: center;
  padding: 56px 0;
}
.menu__item {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.5;
  color: var(--on-dark);
  border-bottom: 1px solid transparent;
}
.menu__item:hover { color: var(--brass); border-bottom-color: rgba(176,141,87,.5); }
.menu__section > a {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 2.6vw, 34px);
  color: var(--on-dark);
  display: inline-block;
  margin-bottom: 20px;
}
.menu__section > a:hover { color: var(--brass-deep); }
.menu__sub { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.menu__sub a { color: var(--on-dark-dim); font-size: 15px; }
.menu__sub a:hover { color: var(--brass-deep); }
.menu__foot {
  border-top: 1px solid var(--on-dark-rule);
  padding-top: 22px;
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11.5px;
  color: rgba(240, 236, 226, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.menu__foot a { color: inherit; }

/* ---------- hero ---------- */
.hero { position: relative; height: clamp(380px, 62vh, 560px); }
.hero--home { height: 100svh; min-height: 560px; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; background: rgba(11, 21, 36, 0.34); }
.hero--home .hero__body { padding-top: var(--header-h); }
.hero--home .hero__scrim {
  background: linear-gradient(180deg, rgba(11,21,36,.42) 0%, rgba(11,21,36,.06) 34%, rgba(11,21,36,.45) 100%);
}
.hero__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 0 var(--gutter);
  color: var(--page);
}
.hero__body .label { color: rgba(247, 244, 236, 0.8); }
.hero__body h1, .hero__body h2 { color: var(--page); max-width: 20ch; }
.hero__foot {
  position: absolute;
  left: 0; right: 0; bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: rgba(247, 244, 236, 0.85);
}
.hero__rule {
  display: block; width: 1px; height: 56px;
  background: linear-gradient(180deg, rgba(247,244,236,.7), rgba(247,244,236,0));
}


/* ---------- video hero ----------
   Autoplay only works muted; playsinline stops iOS going fullscreen.
   The poster carries the hero on its own before the video decodes, if the
   file fails, and whenever reduced motion is requested. */
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #0b2b33;
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}

/* ---------- generic bands ---------- */
.band { padding: clamp(64px, 9vw, 130px) var(--gutter); }
.band--tight { padding: clamp(56px, 7vw, 100px) var(--gutter); }
.band--sand { background: var(--sand-warm); }
.band--navy { background: var(--navy-deep); color: var(--on-dark); }
.band--navy .prose,
.band--navy .label { color: var(--on-dark-dim); }
.band--navy a { color: var(--on-dark); }

.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.stack { display: flex; flex-direction: column; gap: 22px; }
.stack--sm { gap: 14px; }

/* intro statement under every page hero */
.intro { gap: 24px; }
.intro .prose { color: var(--body); }

/* ---------- card grid (1px rules, bone cards) ---------- */
.grid {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { background: var(--page); display: flex; flex-direction: column; }
.card__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__body .prose { font-size: 15px; line-height: 1.7; }
.card__meta { font-size: 14px; color: var(--muted); margin-top: auto; padding-top: 8px; }
.card__meta b { color: var(--navy); font-weight: 500; }

/* pillar rail — the homepage's five experiences */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  gap: 20px;
  overflow-x: auto;
  padding: 0 var(--gutter) 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.rail > * { scroll-snap-align: start; }
.rail__img { height: clamp(340px, 42vw, 470px); overflow: hidden; }
.rail__img img { width: 100%; height: 100%; object-fit: cover; }
.rail__body { padding: 22px 2px 0; display: flex; flex-direction: column; gap: 9px; }

/* ---------- stat row ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat { background: var(--page); padding: clamp(28px, 3.5vw, 44px); }
.stats--on-navy { background: rgba(240,236,226,.16); border-color: rgba(240,236,226,.16); }
.stats--on-navy .stat { background: var(--navy-deep); color: var(--on-dark); }
.stats--on-navy .stat__l { color: rgba(240,236,226,.6); }
.stat__n {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__l {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 12px;
}

/* ---------- rate / spec table ---------- */
.rates { display: flex; flex-direction: column; }
.rates__row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
}
.rates__row:first-child { border-top: 1px solid var(--rule); }
.rates__row span:last-child { font-family: var(--serif); font-size: 18px; white-space: nowrap; }
.note { font-size: 13.5px; color: var(--muted); }

.table-wrap { overflow-x: auto; border: 1px solid var(--rule); }
table.spec { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 15px; }
table.spec th, table.spec td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
table.spec th {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 400;
  white-space: nowrap;
}
table.spec td:first-child { font-family: var(--serif); font-size: 17px; white-space: nowrap; }
table.spec tr:last-child td { border-bottom: 0; }

/* ---------- split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split__img { height: clamp(300px, 40vw, 520px); overflow: hidden; }
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.split--panels {
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  align-items: stretch;
}
.panel {
  background: var(--page);
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ---------- feature band with image behind ---------- */
.feature { position: relative; min-height: clamp(420px, 60vh, 720px); display: flex; }
.feature__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature__scrim { position: absolute; inset: 0; background: rgba(11, 21, 36, 0.34); }
.feature--bottom .feature__scrim {
  background: linear-gradient(180deg, rgba(11,21,36,.10), rgba(11,21,36,.55));
}
.feature__body {
  position: relative;
  margin: auto;
  padding: clamp(56px, 8vw, 96px) var(--gutter);
  color: var(--page);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  max-width: 900px;
}
.feature--bottom .feature__body { margin: auto auto 0; }
.feature__body .label { color: rgba(247, 244, 236, 0.8); }
.feature__body .prose { color: rgba(247, 244, 236, 0.82); }

/* ---------- forms ---------- */
.form { display: flex; flex-direction: column; gap: 12px; max-width: 560px; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.field {
  width: 100%;
  background: transparent;
  border: 1px solid var(--rule-strong);
  padding: 16px 18px;
  color: var(--navy);
  font-size: 15px;
  border-radius: 0;
}
.field:focus { border-color: var(--navy); outline: none; }
textarea.field { resize: vertical; min-height: 96px; }

.inline-form { display: flex; max-width: 460px; }
.inline-form .field { border-right: 0; }
.inline-form .btn { border-left: 0; white-space: nowrap; }

.on-navy .field { border-color: rgba(240, 236, 226, 0.35); color: var(--on-dark); }
.on-navy .field::placeholder { color: rgba(240, 236, 226, 0.62); }
.on-navy .field:focus { border-color: var(--on-dark); }
.form-status { font-size: 14px; color: var(--brass); min-height: 1.4em; }

/* ---------- events ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11.5px;
  padding: 9px 18px;
  border: 1px solid var(--rule-strong);
  background: transparent;
  color: var(--body-strong);
}
.chip[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: var(--page); }
.event {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.event__day { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.2em; font-size: 12px; color: var(--muted); }
.event__name { font-family: var(--serif); font-size: 20px; }
.event__where { font-size: 14.5px; color: var(--body); }
.event__tag { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; color: var(--brass); }

/* ---------- travel map ---------- */
.travel { position: relative; max-width: 1000px; margin: clamp(48px, 6vw, 76px) auto 0; }
.travel svg { width: 100%; height: auto; display: block; }
.travel__pts { display: none; }
.travel__pt .label { color: rgba(240, 236, 226, 0.6); }
.travel__n { font-family: var(--serif); font-weight: 300; font-size: 38px; letter-spacing: -0.02em; margin-top: 4px; }
.travel__d { font-size: 13px; color: rgba(240, 236, 226, 0.55); margin-top: 2px; }
@media (min-width: 900px) {
  .travel { height: 400px; }
  .travel__pts { display: block; }
  .travel__pt { position: absolute; text-align: left; }
  .travel__pt--fll  { left: 0;     top: 52px; }
  .travel__pt--mia  { left: 0;     top: 222px; }
  .travel__pt--nas  { left: 64%;   top: 318px; }
  .travel__pt--ghc  { left: 73%;   top: 150px; max-width: 28ch; }
  .travel__list { display: none; }
}
.travel__list { display: grid; gap: 28px; margin-top: 40px; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-deep); color: var(--on-dark); padding: clamp(64px, 8vw, 110px) var(--gutter) 48px; }
.site-footer a { color: rgba(240, 236, 226, 0.75); }
.site-footer a:hover { color: var(--brass-deep); }
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--on-dark-rule);
}
.footer__top img { height: clamp(96px, 11vw, 132px); width: auto; filter: brightness(0) invert(1); opacity: .95; }
.footer__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 8px; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px clamp(28px, 4vw, 48px);
  padding: clamp(40px, 5vw, 60px) 0;
  font-size: 14.5px;
}
.footer__cols a { display: block; }
.footer__col { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.footer__col .label { color: rgba(240, 236, 226, 0.4); letter-spacing: 0.22em; font-size: 11.5px; margin-bottom: 6px; }
.footer__bar {
  padding-top: 26px;
  border-top: 1px solid var(--on-dark-rule);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 30px;
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11.5px;
  color: rgba(240, 236, 226, 0.45);
}
.footer__bar a { color: inherit; }


/* ---------- photo gallery ----------
   Full-bleed grid of square crops, hairline-separated like .grid. */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.gallery figure { margin: 0; aspect-ratio: 1; overflow: hidden; background: var(--page); }
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease, filter .18s ease;
}
.gallery img:hover { filter: brightness(1.03); transform: scale(1.02); }


/* ---------- venue list (Dining) ----------
   Three columns: name + place, description, then hours and phone hard right.
   Hairline between rows, no card chrome — matches the board's artboard. */
.venues { border-top: 1px solid var(--rule); }
.venue {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 1.85fr) minmax(165px, auto);
  gap: clamp(20px, 3.5vw, 52px);
  padding: clamp(22px, 2.6vw, 30px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.venue__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.1vw, 25px);
  line-height: 1.22;
  margin: 0;
}
.venue__where {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 10px;
}
.venue__desc { font-size: 15px; line-height: 1.7; color: var(--body); margin: 0; }
.venue__meta { text-align: right; font-size: 14.5px; line-height: 1.7; color: var(--body); }
.venue__meta b { color: var(--navy); font-weight: 500; }
@media (max-width: 860px) {
  .venue { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .venue__meta { text-align: left; }
}


/* ---------- film player (Island History) ---------- */
.film { width: 100%; display: block; background: var(--navy-deep); }
.film-wrap { position: relative; }

/* chapter contents list */
.contents { display: flex; flex-direction: column; }
.contents__row {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 11px 0; border-bottom: 1px solid var(--rule); font-size: 15px;
}
.contents__row:first-child { border-top: 1px solid var(--rule); }
.contents__row span:last-child { font-family: var(--serif); color: var(--muted); }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; align-content: start; }
}
@media (max-width: 1000px) {
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  :root { --header-h: 84px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); }
  .split, .split--panels { grid-template-columns: minmax(0, 1fr); }
  .form__row { grid-template-columns: minmax(0, 1fr); }
  .header-logo img { height: 46px; }
  .site-header--over .header-logo img { height: 56px; }
  .header-action span.txt { display: none; }
  .header-action--right span.txt { display: inline; }
  .event { grid-template-columns: 56px minmax(0, 1fr); row-gap: 6px; }
  .event__where, .event__tag { grid-column: 2; }
  .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu__cols { grid-template-columns: minmax(0, 1fr); }
  .rail { grid-auto-columns: 78vw; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* honeypot — off-screen, never shown, never announced */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}
.btn[disabled] { opacity: .4; cursor: default; }
