:root {
  --ink: #0a0a0a;
  --ink-soft: #1d1d1d;
  --paper: #f4efe5;
  --bone: #fbf8f1;
  --red: #e30613;
  --red-dark: #a9000b;
  --acid: #d4ff3d;
  --muted: #6e675f;
  --rule: 2px solid var(--ink);
  --max: 1220px;
  --display: "Arial Black", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

a:hover {
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.concept-bar {
  background: var(--red);
  color: #fff;
  font: 700 0.78rem/1.2 var(--mono);
  padding: 0.55rem 1rem;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: #000;
  color: #fff;
  border-bottom: 2px solid var(--red);
  padding: 1rem max(1rem, calc((100vw - var(--max)) / 2));
}

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

.brand img {
  width: 178px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.65rem);
  font-family: var(--display);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.primary-nav a {
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--acid);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 0.25rem;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  background: #000;
  color: #fff;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/hero-patio.jpg") center / cover no-repeat;
  filter: saturate(1.08) contrast(1.04);
  z-index: -2;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.55) 48%, rgba(0, 0, 0, 0.15)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0) 44%);
  z-index: -1;
}

.hero-inner,
.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.56fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  min-height: 760px;
  padding: 5rem 0;
}

.kicker,
.board-label {
  margin: 0 0 0.8rem;
  color: var(--acid);
  font: 800 0.78rem/1.1 var(--mono);
  text-transform: uppercase;
}

.hero h1,
.section h2,
.owner-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 8.6vw, 7rem);
  line-height: 0.95;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 780px;
}

.hero-lede {
  max-width: 680px;
  margin: 1.2rem 0 0;
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.2rem;
  border: var(--rule);
  font-family: var(--display);
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
}

.button-primary {
  background: var(--red);
  color: #fff;
}

.button-light {
  background: var(--bone);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.action-board {
  background: var(--bone);
  color: var(--ink);
  border: var(--rule);
  padding: 1.25rem;
}

.action-board h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.board-links {
  display: grid;
  gap: 0.7rem;
}

.board-links a,
.quick-card,
.link-list a {
  text-decoration: none;
}

.board-links a {
  display: block;
  background: var(--paper);
  border: var(--rule);
  padding: 0.9rem;
}

.board-links span,
.quick-card strong,
.experience-card span {
  display: block;
  font-family: var(--display);
  line-height: 1.05;
  text-transform: uppercase;
}

.board-links small,
.quick-card small,
.experience-card small {
  display: block;
  margin-top: 0.28rem;
  color: var(--muted);
  font-weight: 700;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: var(--rule);
  border-bottom: var(--rule);
  background: var(--acid);
}

.ticker a {
  padding: 0.85rem 0.75rem;
  border-right: var(--rule);
  font: 900 0.86rem/1.1 var(--display);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.ticker a:last-child {
  border-right: 0;
}

.section {
  padding: clamp(3.5rem, 8vw, 6.8rem) 0;
}

.section-light {
  background: var(--paper);
}

.section-ink {
  background: var(--ink);
  color: #fff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading h2,
.owner-cta h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.section-heading p:not(.kicker),
.owner-cta p,
.menu-copy p,
.loyalty p {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
}

.section-ink .menu-copy p {
  color: #e8e1d8;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--rule);
  background: var(--ink);
  gap: 2px;
}

.quick-card {
  min-height: 210px;
  background: var(--bone);
  padding: 1.2rem;
}

.quick-card:hover,
.board-links a:hover,
.link-list a:hover,
.experience-card:hover {
  background: var(--red);
  color: #fff;
}

.quick-card:hover small,
.board-links a:hover small,
.experience-card:hover small {
  color: #fff;
}

.quick-number {
  display: inline-flex;
  margin-bottom: 2.7rem;
  font-family: var(--mono);
  font-weight: 900;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.image-poster {
  border: 2px solid #fff;
  background: #000;
}

.image-poster img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.link-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  color: var(--ink);
  border: 2px solid #fff;
  padding: 1rem;
  font-family: var(--display);
  text-transform: uppercase;
}

.link-list a::after {
  content: "→";
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.program-card {
  display: grid;
  background: var(--bone);
  border: var(--rule);
  min-height: 100%;
}

.program-card.wide {
  grid-column: span 2;
}

.program-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: var(--rule);
}

.program-card.no-image {
  background: var(--ink);
  color: #fff;
}

.program-card > div {
  padding: 1.2rem;
}

.program-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.program-card p:not(.kicker) {
  color: var(--muted);
  font-weight: 650;
}

.program-card.no-image p:not(.kicker) {
  color: #ece5dc;
}

.program-card a {
  font-weight: 900;
  text-transform: uppercase;
}

.experience-section {
  background: #fff;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.experience-card {
  display: grid;
  background: var(--ink);
  color: #fff;
  border: var(--rule);
  text-decoration: none;
}

.experience-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 2px solid #fff;
}

.experience-card span,
.experience-card small {
  padding-inline: 1.2rem;
}

.experience-card span {
  padding-top: 1.2rem;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.experience-card small {
  padding-bottom: 1.2rem;
  color: #ece5dc;
}

.loyalty-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--bone);
  border: var(--rule);
  padding: clamp(1.2rem, 4vw, 2.5rem);
}

.loyalty-panel > * {
  min-width: 0;
}

.loyalty-images {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 1rem;
  align-items: center;
  min-width: 0;
}

.loyalty-images img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.owner-cta {
  background: var(--red);
  color: #fff;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.owner-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.owner-cta p {
  color: #fff;
  max-width: 760px;
}

.owner-cta .kicker {
  color: var(--acid);
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 2rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand img {
  width: 165px;
}

.site-footer p {
  margin: 0;
  color: #d8d0c6;
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    background: #000;
    border-bottom: 2px solid var(--red);
    padding: 1rem;
  }

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

  .primary-nav a {
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 4rem 0 3rem;
  }

  .action-board {
    max-width: 560px;
  }

  .ticker {
    grid-template-columns: repeat(2, 1fr);
  }

  .ticker a:nth-child(2n) {
    border-right: 0;
  }

  .ticker a:last-child {
    grid-column: 1 / -1;
    border-top: var(--rule);
  }

  .quick-grid,
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-layout,
  .loyalty-panel,
  .owner-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .split-heading {
    display: block;
  }

  .split-heading .button {
    margin-top: 1rem;
  }
}

@media (max-width: 620px) {
  .concept-bar {
    font-size: 0.68rem;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .brand img {
    width: 148px;
  }

  .hero h1,
  .section h2,
  .owner-cta h2 {
    font-size: clamp(2.45rem, 13vw, 4.3rem);
  }

  .hero-inner,
  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .hero-actions,
  .site-footer nav {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .quick-grid,
  .program-grid,
  .experience-grid,
  .loyalty-images {
    grid-template-columns: 1fr;
  }

  .program-card.wide {
    grid-column: auto;
  }

  .quick-card {
    min-height: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
