/* =========================================================================
   Sports on 20 — American Sports Bar & Grill, Sukhumvit Soi 20, Bangkok
   Shared stylesheet. Dark "matchday board" identity.
   ========================================================================= */

/* ---- Fonts ---------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ---- Tokens ------------------------------------------------------------- */
:root {
  --bg:        #12100e;
  --bg-2:      #171410;
  --surface:   #1c1a17;
  --surface-2: #241f1a;
  --line:      #35302a;
  --chalk:     #f3ece0;
  --muted:     #a39b8d;
  --amber:     #ffd400;
  --amber-dk:  #e0b400;
  --red:       #e4322b;
  --field:     #2f8f57;

  --font-display: 'Barlow Condensed', 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --radius: 4px;

  --shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.75);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

/* Keep anchor targets clear of the sticky header */
:target, [id] { scroll-margin-top: 92px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--chalk);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0.4em;
}

p { margin: 0 0 1rem; max-width: 68ch; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--amber);
  color: #1a1206;
  padding: 0.6rem 1rem;
  font-weight: 700;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---- Layout helpers ------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.2rem, 8vw, 6rem); }
.section--tight { padding-block: clamp(2.4rem, 5vw, 3.5rem); }
.section--alt { background: var(--bg-2); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 0.9rem;
  margin-bottom: 2.4rem;
}
.section-head h2 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  margin: 0;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 46ch;
  font-size: 0.98rem;
}

.kicker {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--amber);
  display: inline-block;
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--amber);
  --btn-fg: #1a1206;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
  padding: 0.7rem 1.5rem;
  border: 2px solid var(--btn-bg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--chalk);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn--red { --btn-bg: var(--red); --btn-fg: #fff; }

/* ---- Header ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 16, 14, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--chalk);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.25rem;
  line-height: 1;
}
.brand:hover { text-decoration: none; color: var(--amber); }
.brand img { height: 42px; width: auto; }
.brand span b { color: var(--amber); }

.nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav a {
  color: var(--chalk);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
}
.nav a:hover { color: var(--amber); text-decoration: none; }
.nav a[aria-current="page"] {
  color: var(--amber);
  box-shadow: inset 0 -2px 0 var(--amber);
}
.nav__cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--chalk);
  width: 46px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem var(--gutter) 1.2rem;
    transform: translateY(-130%);
    transition: transform 0.28s ease;
    box-shadow: var(--shadow);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 0.85rem 0.4rem; border-bottom: 1px solid var(--line); }
  .nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--amber); }
  .nav__cta { margin: 0.8rem 0 0; justify-content: center; }
}

/* ---- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: saturate(1.05) contrast(1.03);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(18,16,14,0.35) 0%, rgba(18,16,14,0.15) 35%, rgba(18,16,14,0.92) 100%),
    radial-gradient(120% 80% at 15% 20%, rgba(228,50,43,0.20), transparent 60%);
}
.hero__inner { padding-block: clamp(2rem, 6vw, 4rem); }
.hero h1 {
  font-size: clamp(2.7rem, 9vw, 6.4rem);
  max-width: 16ch;
  margin-bottom: 0.35em;
  text-shadow: 0 6px 24px rgba(0,0,0,0.5);
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
  display: block;
}
.hero__sub {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: var(--chalk);
  max-width: 52ch;
  margin-bottom: 1.6rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---- LED ticker ------------------------------------------------------------- */
.ticker {
  background: #0c0b09;
  border-block: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  gap: 3rem;
  padding-block: 0.7rem;
  padding-left: 100%;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--chalk);
  animation: ticker-scroll 34s linear infinite;
}
.ticker__track b { color: var(--amber); }
.ticker__track .live {
  color: var(--red);
  font-weight: 700;
}
@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

/* ---- Highlights strip ----------------------------------------------------- */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.facts > div {
  background: var(--surface);
  padding: 1.4rem 1.3rem;
}
.facts dt {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.facts dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
@media (max-width: 780px) {
  .facts { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Coverage grid ------------------------------------------------------- */
.coverage {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.9rem;
}
.coverage li {
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.15rem;
}
.coverage li small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.2rem;
}

/* ---- Split feature (food & drink / happy hour) -------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.split--flip { grid-template-columns: 1fr 1.05fr; }
.split--flip .split__media { order: -1; }
.split__media img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.split h2 { font-size: clamp(1.8rem, 4.5vw, 2.7rem); }
.split ul { padding-left: 1.1rem; color: var(--muted); }
.split ul li { margin-bottom: 0.35rem; }
@media (max-width: 820px) {
  .split, .split--flip { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
}

/* ---- Happy hour panel ---------------------------------------------------- */
.promo {
  background:
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.promo h2 { color: var(--amber); font-size: clamp(1.8rem, 4.5vw, 2.6rem); }
.promo__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  color: var(--chalk);
  line-height: 1;
}
.promo__price span { color: var(--red); }
.promo__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}
.promo__list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---- Event highlight (upcoming party) ----------------------------------- */
.event {
  display: grid;
  grid-template-columns: minmax(0, 360px) 1fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  background: linear-gradient(135deg, #211c12 0%, var(--surface) 55%);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}
.event__poster {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--amber);
}
.event__body h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin: 0.1rem 0 0.5rem;
}
.event__body h2 em { font-style: normal; color: var(--amber); display: block; }
.event .kicker { color: var(--amber); }
.event__when {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--chalk);
  font-size: 1.05rem;
  margin: 0 0 1rem;
}
.event__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0 0 1.4rem;
  list-style: none;
}
.event__list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
}
@media (max-width: 720px) {
  .event { grid-template-columns: 1fr; }
  .event__poster { max-width: 340px; margin-inline: auto; }
}

/* ---- Predict & win competition (home) --------------------------------- */
.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 880px) {
  .comp-grid { grid-template-columns: 1fr; }
}

.comp-rules {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.55rem;
}
.comp-rules li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.comp-rules li::before {
  content: "\203A";
  position: absolute;
  left: 0.2rem;
  color: var(--amber);
  font-weight: 700;
}

.score-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 0.9rem;
}
.score-fields__x {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--muted);
  padding-bottom: 0.65rem;
}

.form label.checkbox-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--chalk);
}
.form label.checkbox-row input {
  width: 1.15rem;
  height: 1.15rem;
  flex: none;
  margin-top: 0.1rem;
  accent-color: var(--amber);
}

.btn--fb { --btn-bg: #1877f2; --btn-fg: #fff; }
.btn--fb.is-done { --btn-bg: var(--field); }

/* ---- NFL mornings mini list (home) ------------------------------------- */
.nfl-games {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.nfl-games li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 0.8rem 0.95rem;
}
.nfl-games__match {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  color: var(--chalk);
}
.nfl-games__match em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9em;
  margin-inline: 0.1rem;
}
.nfl-games__doors {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.72rem;
  color: #1a1206;
  background: var(--amber);
  border-radius: 999px;
  padding: 0.14rem 0.6rem;
  white-space: nowrap;
}
.nfl-games__meta {
  font-size: 0.84rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.nfl-games__meta b { color: var(--chalk); font-weight: 600; }
@media (max-width: 620px) {
  .nfl-games { grid-template-columns: 1fr; }
}

/* ---- Schedule board --------------------------------------------------------- */
.board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.board__row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1.2rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.12s ease;
}
.board__row:last-child { border-bottom: 0; }
.board__row:hover { background: var(--surface-2); }
.board__row--head {
  background: #0c0b09;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 0.85rem;
}
.board__time {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--amber);
}
.board__match strong {
  font-weight: 600;
  display: block;
}
.board__match small { color: var(--muted); }
.tag {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  white-space: nowrap;
}
.tag--live { background: var(--red); border-color: var(--red); color: #fff; }
.tag--pick { background: rgba(255,182,46,0.14); border-color: var(--amber-dk); color: var(--amber); }
@media (max-width: 620px) {
  .board__row {
    grid-template-columns: 70px 1fr;
    grid-template-areas: "time match" "tag tag";
    row-gap: 0.5rem;
  }
  .board__time { grid-area: time; }
  .board__match { grid-area: match; }
  .board__row .tag { grid-area: tag; justify-self: start; }
  .board__row--head { display: none; }
}

/* ---- Weekly events poster (schedule page) ------------------------------------
   Mirrors the venue's printed "SPORT EVENTS" board: navy ground, yellow frame,
   two centred columns of fixtures. Scoped so it doesn't touch the rest of the
   site's warm-black theme. */
:root {
  --poster-line: #ffd400;
  --poster-head: #ffe11f;
  --poster-sub:  #cfd0f0;
}

.poster {
  position: relative;
  background: linear-gradient(180deg, #26236b 0%, #1b1852 100%);
  color: #fff;
  border-radius: 6px;
  padding: clamp(2.4rem, 6vw, 4rem) clamp(1.1rem, 5vw, 3.5rem);
  box-shadow: var(--shadow);
}
.poster::before {
  content: "";
  position: absolute;
  inset: clamp(10px, 2vw, 18px);
  border: 2px solid var(--poster-line);
  border-radius: 2px;
  pointer-events: none;
}

.poster__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2.5vw, 1.6rem);
  margin: 0 0 clamp(1.8rem, 4vw, 2.8rem);
}
.poster__title span {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(2rem, 7vw, 4.4rem);
  color: var(--poster-head);
  line-height: 0.9;
}
.poster__title img {
  height: clamp(48px, 9vw, 92px);
  width: auto;
}
.poster__title i {
  flex: 1 1 0;
  height: 3px;
  max-width: clamp(24px, 8vw, 96px);
  background: var(--poster-line);
}

.poster__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 4vw, 3.5rem);
}
.poster__col { display: flex; flex-direction: column; gap: clamp(1.3rem, 3vw, 2rem); }

.poster-group { text-align: center; }
.poster-group h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--poster-head);
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  line-height: 1.15;
  margin: 0 0 0.65rem;
}
.poster-fixture { margin: 0 0 0.7rem; line-height: 1.4; }
.poster-fixture:last-child { margin-bottom: 0; }
.poster-fixture b {
  display: block;
  font-weight: 700;
  font-size: 0.98rem;
}
.poster-fixture span {
  display: block;
  font-size: 0.88rem;
  color: var(--poster-sub);
}
.poster-fixture--range span { color: #fff; font-weight: 600; }

.poster__foot {
  text-align: center;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.4;
}
.poster__foot strong { display: block; color: var(--poster-head); }

@media (max-width: 720px) {
  .poster__cols { grid-template-columns: 1fr; gap: 1.8rem; }
  .poster__title span { font-size: clamp(1.7rem, 10vw, 2.6rem); }
}

/* ---- Card grid (news) ------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card__media {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.card__body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.card__date {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  color: var(--amber);
}
.card h3 { font-size: 1.5rem; margin: 0; }
.card p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.card--placeholder .card__media {
  display: grid;
  place-items: center;
  color: var(--line);
  aspect-ratio: 16 / 10;
}

/* ---- Instagram feed ------------------------------------------------------ */
.ig {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}
.ig__item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-2);
}
.ig__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.ig__item:hover img { transform: scale(1.04); }
.ig__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem 0.7rem 0.55rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.82));
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ig__status {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0.4rem 0;
}
.ig__status[hidden] { display: none; }

/* ---- Contact ----------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 5vw, 3.5rem);
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.info-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.info-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.info-list svg { width: 22px; height: 22px; color: var(--amber); margin-top: 3px; }
.info-list b {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
}

.hours {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.hours th, .hours td {
  text-align: left;
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid var(--line);
}
.hours th {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 600;
}
.hours td:last-child { text-align: right; color: var(--amber); font-weight: 600; }

.map-embed {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  filter: grayscale(0.3) contrast(1.05);
}

/* ---- Form -------------------------------------------------------------------- */
.form { display: grid; gap: 1rem; }
.form label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
  margin-bottom: 0.35rem;
}
.form input, .form textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--chalk);
  font: inherit;
  padding: 0.7rem 0.85rem;
}
.form input:focus, .form textarea:focus {
  border-color: var(--amber);
  outline: none;
}
.form textarea { min-height: 140px; resize: vertical; }
.form button[type="submit"] { justify-self: start; }
.form__note { font-size: 0.85rem; color: var(--muted); }
.form__status {
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  background: rgba(47,143,87,0.14);
  border: 1px solid var(--field);
  color: var(--chalk);
}
.form__status[hidden] { display: none; }

/* ---- Footer ---------------------------------------------------------------- */
.site-footer {
  background: #0c0b09;
  border-top: 2px solid var(--amber);
  padding-block: 3rem 2rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.site-footer h4 {
  font-size: 1.1rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.site-footer a { color: var(--chalk); }
.site-footer a:hover { color: var(--amber); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.site-footer__brand img { height: 54px; margin-bottom: 0.8rem; }
.site-footer__legal {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}
@media (max-width: 720px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 1.6rem; }
}

/* ---- Utilities ---------------------------------------------------------- */
.lead { font-size: 1.1rem; color: var(--chalk); }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.stack > * + * { margin-top: 1rem; }

/* ---- Motion preferences ------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .ticker__track { padding-left: 0; }
}
