@font-face {
  font-family: "HunterRiver";
  src: url("../fonts/HunterRiver/hunterriver-regular-webfont.woff2") format("woff2"),
    url("../fonts/HunterRiver/hunterriver-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DINCondensed-Bold";
  src: url("../fonts/DINCondensed-Bold/d-dincondensed-bold-webfont.woff2") format("woff2"),
    url("../fonts/DINCondensed-Bold/d-dincondensed-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DINCondensed";
  src: url("../fonts/DINCondensed/d-dincondensed-webfont.woff2") format("woff2"),
    url("../fonts/DINCondensed/d-dincondensed-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000000;
  --ink: #ffffff;
  --muted: #b7b4ac;
  --gold: #f1c761;
  --charcoal: #1e1e1e;
  --soft: #efede8;
  --line: rgba(241, 199, 97, 0.34);
  --glass: rgba(0, 0, 0, 0.72);
  --panel: rgba(30, 30, 30, 0.82);
  --font-body: "Montserrat", Arial, sans-serif;
  --font-display: "DINCondensed-Bold", "Montserrat", Arial, sans-serif;
  --font-alt: "DINCondensed", "Montserrat", Arial, sans-serif;
  --font-script: "HunterRiver", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url("../images/background-pattern.jpg") center top / 960px auto repeat;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

body::selection {
  color: var(--bg);
  background: var(--gold);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

address {
  font-style: normal;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  background: var(--glass);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.topline {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 24px;
  color: var(--muted);
  font-family: var(--font-alt);
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topline a:hover,
.nav-links a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--gold);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  min-height: 82px;
  margin: 0 auto;
  padding: 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 116px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
}

.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 92vh;
  padding: 180px 28px 116px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    url("../images/hero-red-hall.jpg") center center / cover no-repeat;
  transform: scale(1.02);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.74) 43%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.18) 42%);
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0.44;
  transform: scale(1.04);
  filter: blur(4px) saturate(1.1) contrast(1.08) brightness(0.76);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  width: min(100%, 1240px);
}

.script {
  margin: 0 0 6px;
  color: var(--gold);
  font-family: var(--font-script);
  font-size: 44px;
  line-height: 1;
}

h1,
h2,
h3,
.section-label {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  font-size: 112px;
}

.hero-kicker {
  margin: 12px 0 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: 18px;
}

.hero-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px 12px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 4px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-primary {
  color: var(--bg);
  background: var(--gold);
}

.btn-primary:hover {
  color: var(--ink);
  background: transparent;
}

.btn-ghost {
  color: var(--gold);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--bg);
  background: var(--gold);
}

.scroll-cue {
  position: absolute;
  right: 50%;
  bottom: 34px;
  width: 30px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 20px;
}

.scroll-cue::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: cue 1.6s ease infinite;
}

@keyframes cue {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

.intro-band,
.map-section,
.venues-section,
.packages-section,
.feed-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 28px;
}

.section-label {
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 34px;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.intro-panel,
.intro-photo {
  min-height: 430px;
}

.intro-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 52px;
  background: rgba(0, 0, 0, 0.84);
}

.intro-panel-dark {
  background: var(--charcoal);
}

.intro-panel h2,
.section-heading h2,
.gram-text h2,
.career-content h2,
.gram-hero h1 {
  font-size: 72px;
}

.intro-panel p:not(.eyebrow),
.section-heading p,
.feature-row p,
.limo-callout p,
.career-content p,
.gram-text p,
.gram-hero p,
.site-footer p {
  color: var(--soft);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.intro-photo {
  position: relative;
  overflow: hidden;
}

.intro-photo img,
.venue-tile img,
.package-card img,
.career-media img,
.feed-card img,
.feed-card video,
.dialog-media img,
.dialog-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-photo::after,
.venue-tile::after,
.package-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.04) 48%);
  pointer-events: none;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 22px;
  align-items: start;
}

.map-card,
.location-card,
.service-strip article,
.feature-row,
.limo-callout,
.profile-row,
.feed-card,
.contact-band article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
}

.map-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.map-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.map-pill {
  min-height: 38px;
  padding: 10px 14px 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 17px;
  text-transform: uppercase;
  cursor: pointer;
}

.map-pill.is-active,
.map-pill:hover {
  color: var(--bg);
  background: var(--gold);
  border-color: var(--gold);
}

#club-map {
  flex: 1;
  min-height: 590px;
  background: var(--charcoal);
}

.map-marker {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--bg);
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(241, 199, 97, 0.16);
  font-family: var(--font-display);
  font-size: 17px;
}

.leaflet-container {
  font-family: var(--font-body);
  background: #191919;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  color: var(--ink);
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.leaflet-popup-content strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
}

.map-fallback {
  display: grid;
  place-items: center;
  min-height: 590px;
  padding: 32px;
  color: var(--muted);
  text-align: center;
}

.location-stack {
  display: grid;
  gap: 14px;
}

.location-card {
  padding: 24px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.location-card.is-active,
.location-card:hover {
  border-color: var(--gold);
  background: rgba(241, 199, 97, 0.1);
  transform: translateY(-2px);
}

.location-card p {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
}

.location-card h3 {
  font-size: 34px;
}

.location-card address {
  margin: 12px 0;
  color: var(--soft);
}

.location-card span {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

.location-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.venue-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.venue-tile.tall {
  transform: none;
}

.venue-tile div {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
}

.venue-tile span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 20px;
}

.venue-tile h3 {
  font-size: 38px;
}

.center-action {
  justify-content: center;
  margin-top: 72px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.service-strip article {
  min-height: 210px;
  padding: 26px;
}

.service-strip h3 {
  color: var(--gold);
  font-size: 27px;
}

.service-strip p {
  margin-bottom: 0;
  color: var(--soft);
  font-size: 14px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.package-card {
  position: relative;
  display: block;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.package-card span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  font-family: var(--font-display);
  font-size: 34px;
  text-transform: uppercase;
}

.feature-row,
.limo-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 34px;
}

.feature-row h3,
.limo-callout h3,
.career-content h3 {
  font-size: 48px;
}

.mini-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mini-services span {
  min-height: 72px;
  padding: 22px 18px 18px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.limo-callout {
  grid-template-columns: minmax(0, 1fr) auto;
}

.gram-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 28px 96px;
  border-top: 1px solid var(--line);
}

.gram-text {
  max-width: 680px;
}

.career-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px 96px;
}

.career-media {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px 0 0 8px;
  overflow: hidden;
}

.career-content {
  padding: 54px;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 8px 8px 0;
}

.perk-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.perk-list li {
  padding: 14px 16px;
  color: var(--gold);
  border: 1px solid rgba(241, 199, 97, 0.36);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.apply-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.apply-form label,
.subscribe-form {
  display: grid;
  gap: 8px;
}

.apply-form label {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.apply-form label:last-of-type {
  grid-column: 1 / -1;
}

.apply-form input,
.apply-form select,
.apply-form textarea,
.subscribe-form input {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
}

.apply-form textarea {
  resize: vertical;
}

.apply-form button {
  width: fit-content;
  cursor: pointer;
}

.contact-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto 96px;
  padding: 0 28px;
}

.contact-band article {
  padding: 30px;
  text-align: center;
}

.contact-band span {
  color: var(--gold);
  font-family: var(--font-script);
  font-size: 38px;
}

.contact-band h3 {
  margin-top: 6px;
  font-size: 32px;
}

.contact-band p,
.contact-band a {
  display: block;
  margin: 10px 0 0;
  color: var(--soft);
}

.contact-band small {
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 42px;
  padding: 64px 28px 36px;
  background: #050505;
  border-top: 1px solid var(--line);
}

.site-footer > div,
.site-footer .copyright {
  max-width: 1240px;
}

.site-footer img {
  width: 128px;
  margin-bottom: 18px;
}

.site-footer h3 {
  color: var(--gold);
  font-size: 28px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 8px;
  color: var(--soft);
}

.subscribe-form {
  margin-top: 18px;
}

.subscribe-form button {
  min-height: 44px;
  color: var(--bg);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
}

.copyright {
  grid-column: 1 / -1;
  width: 100%;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.gram-page {
  background:
    linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.95)),
    url("../images/hero-brand.jpg") center center / cover fixed no-repeat;
}

.gram-hero {
  display: grid;
  place-items: end start;
  min-height: 38vh;
  padding: 148px 28px 42px;
  background:
    linear-gradient(0deg, var(--bg), rgba(0, 0, 0, 0.08) 70%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.18));
}

.gram-hero > div {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.gram-hero h1 {
  font-size: 104px;
}

.gram-hero p:last-child {
  max-width: 620px;
  font-size: 18px;
}

.feed-shell {
  padding-top: 24px;
}

.profile-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  padding: 20px;
}

.profile-row img {
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.profile-row h2 {
  font-size: 36px;
}

.profile-row p {
  margin: 0;
  color: var(--muted);
}

.gallery-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.gallery-stats span {
  min-width: 92px;
  padding: 10px 12px 8px;
  color: var(--soft);
  border: 1px solid rgba(241, 199, 97, 0.32);
  border-radius: 4px;
  font-family: var(--font-alt);
  font-size: 15px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.gallery-stats strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 22px;
}

.feed-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.feed-heading h2 {
  font-size: 48px;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feed-card {
  overflow: hidden;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}

.feed-card:hover,
.feed-card:focus {
  border-color: var(--gold);
  outline: 0;
  transform: translateY(-3px);
}

.feed-media {
  position: relative;
  aspect-ratio: 1;
  background: var(--charcoal);
}

.feed-media video,
.dialog-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.feed-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.feed-play-button {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: var(--ink);
  background: rgba(205, 168, 91, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.feed-copy {
  padding: 18px;
}

.feed-copy h3 {
  font-size: 30px;
}

.feed-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.feed-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
}

.feed-share-button {
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.feed-share-button:hover,
.feed-share-button:focus {
  color: var(--gold);
  outline: 0;
}

.gram-dialog {
  width: min(100% - 28px, 980px);
  padding: 0;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.gram-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.gram-dialog[open] {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.dialog-close {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.dialog-media {
  min-height: 560px;
  background: var(--charcoal);
}

.dialog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.dialog-copy h2 {
  font-size: 52px;
}

.dialog-copy p:last-child {
  color: var(--soft);
}

.compact-footer {
  grid-template-columns: 1.4fr 0.9fr 0.9fr;
}

.compact-footer .copyright {
  grid-column: 1 / -1;
}

@media (max-width: 1100px) {
  .hero h1,
  .gram-hero h1 {
    font-size: 88px;
  }

  .intro-panel h2,
  .section-heading h2,
  .gram-text h2,
  .career-content h2 {
    font-size: 58px;
  }

  .map-layout,
  .career-section,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .service-strip,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-media,
  .career-content {
    border-radius: 8px;
  }

  .career-content {
    border-left: 1px solid var(--line);
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body {
    font-size: 15px;
  }

  .topline {
    display: none;
  }

  .nav-shell {
    min-height: 72px;
    padding: 0 18px;
  }

  .brand {
    width: 96px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 12px;
    left: 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    background: rgba(0, 0, 0, 0.94);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 88vh;
    padding: 126px 20px 96px;
  }

  .hero h1,
  .gram-hero h1 {
    font-size: 68px;
  }

  .script {
    font-size: 38px;
  }

  .hero-kicker {
    font-size: 30px;
  }

  .intro-band,
  .map-section,
  .venues-section,
  .packages-section,
  .feed-shell {
    padding: 72px 20px;
  }

  .intro-grid,
  .venue-grid,
  .contact-band,
  .profile-row,
  .gram-dialog[open] {
    grid-template-columns: 1fr;
  }

  .intro-panel {
    padding: 34px;
  }

  .intro-panel,
  .intro-photo {
    min-height: 330px;
  }

  .intro-panel h2,
  .section-heading h2,
  .gram-text h2,
  .career-content h2 {
    font-size: 48px;
  }

  #club-map,
  .map-fallback {
    flex: none;
    min-height: 470px;
  }

  .venue-tile,
  .venue-tile.tall {
    min-height: 300px;
    transform: none;
  }

  .package-card {
    min-height: 340px;
  }

  .gram-teaser,
  .limo-callout {
    display: grid;
    grid-template-columns: 1fr;
    padding-right: 20px;
    padding-left: 20px;
  }

  .career-section,
  .contact-band {
    padding-right: 20px;
    padding-left: 20px;
  }

  .career-content {
    padding: 34px;
  }

  .apply-form,
  .perk-list,
  .mini-services,
  .site-footer,
  .compact-footer {
    grid-template-columns: 1fr;
  }

  .dialog-media {
    min-height: 420px;
  }

  .gram-hero {
    min-height: 32vh;
    padding-top: 104px;
    padding-bottom: 24px;
  }

  .profile-row {
    align-items: start;
    grid-template-columns: auto minmax(0, 1fr);
    margin-bottom: 16px;
    padding: 16px;
  }

  .profile-row img {
    width: 60px;
    height: 60px;
  }

  .gallery-stats {
    grid-column: 1 / -1;
    justify-content: start;
  }

  .feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .feed-heading {
    display: block;
    margin-top: 14px;
    padding-bottom: 12px;
  }

  .feed-heading h2 {
    font-size: 38px;
  }

  .feed-copy {
    padding: 14px;
  }

  .feed-copy h3 {
    font-size: 24px;
  }

  .feed-copy p {
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .hero,
  .gram-hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-content,
  .gram-hero > div {
    width: 100%;
    max-width: calc(100vw - 40px);
    min-width: 0;
  }

  .hero h1,
  .gram-hero h1 {
    font-size: 52px;
  }

  .hero-kicker {
    font-size: 25px;
  }

  .hero-copy,
  .gram-hero p:last-child {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .center-action {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .section-label {
    font-size: 28px;
  }

  .intro-panel h2,
  .section-heading h2,
  .gram-text h2,
  .career-content h2 {
    font-size: 40px;
  }

  .service-strip,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .feature-row h3,
  .limo-callout h3,
  .career-content h3 {
    font-size: 38px;
  }

  .profile-row .btn {
    width: auto;
  }

  .profile-row h2 {
    font-size: 30px;
  }

  .gallery-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .gallery-stats span {
    min-width: 0;
    padding-right: 6px;
    padding-left: 6px;
    font-size: 12px;
  }

  .gallery-stats strong {
    font-size: 18px;
  }

  .feed-copy h3 {
    font-size: 22px;
  }

  .feed-actions {
    font-size: 14px;
  }
}
