:root {
  --ink: #141622;
  --navy: #202331;
  --navy-light: #292d3d;
  --cream: #f5f0df;
  --cream-dim: #d8d1be;
  --gold: #d7aa53;
  --gold-light: #ffe3a2;
  --red: #9f2f2a;
  --facebook: #1877f2;
  --shadow: rgba(5, 6, 10, 0.72);
  color-scheme: dark;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--cream);
  background:
    linear-gradient(rgba(8, 9, 14, 0.22), rgba(8, 9, 14, 0.64)),
    repeating-linear-gradient(
      0deg,
      transparent 0 55px,
      rgba(245, 240, 223, 0.035) 55px 58px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(15, 17, 25, 0.24) 0 98px,
      rgba(245, 240, 223, 0.025) 98px 101px,
      rgba(10, 11, 17, 0.24) 101px 196px
    ),
    #151721;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
}

body::before {
  z-index: 5;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

body::after {
  z-index: -1;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 227, 162, 0.2), transparent 34%),
    radial-gradient(circle at 12% 38%, rgba(215, 170, 83, 0.08), transparent 20%),
    radial-gradient(circle at 88% 64%, rgba(159, 47, 42, 0.08), transparent 24%);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--cream);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-stage {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(1.35rem, 3.5vw, 3.75rem);
  overflow: hidden;
}

.billboard {
  position: relative;
  width: min(1180px, 100%);
  padding: clamp(2rem, 4.5vw, 4.4rem) clamp(1.35rem, 5vw, 5rem)
    clamp(1.45rem, 3vw, 2.75rem);
  border: clamp(7px, 1vw, 12px) solid #c4a263;
  outline: 3px solid rgba(245, 240, 223, 0.7);
  outline-offset: -17px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 28%),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.035), transparent 24%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.012) 0 1px,
      transparent 1px 4px
    ),
    var(--navy);
  box-shadow:
    0 42px 90px var(--shadow),
    0 7px 0 #795f37,
    inset 0 0 0 4px rgba(15, 16, 24, 0.62),
    inset 0 0 90px rgba(0, 0, 0, 0.44);
  transform: rotate(-0.25deg);
}

.billboard::before,
.billboard::after {
  position: absolute;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 28px;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(
    circle,
    var(--gold-light) 0 2px,
    rgba(255, 227, 162, 0.78) 3px,
    rgba(255, 227, 162, 0.18) 4px 7px,
    transparent 8px
  );
  background-position: 12px 50%;
  background-size: 44px 28px;
  filter: drop-shadow(0 0 7px rgba(255, 220, 139, 0.58));
  opacity: 0.8;
}

.billboard::before {
  top: 0;
}

.billboard::after {
  bottom: 0;
}

.billboard__bolts::before,
.billboard__bolts::after {
  position: absolute;
  top: 24px;
  z-index: 4;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
  background: #7d6a49;
  box-shadow: 0 calc(100% + min(680px, 72vh)) 0 #7d6a49;
}

.billboard__bolts::before {
  left: 24px;
}

.billboard__bolts::after {
  right: 24px;
}

.paint-mark {
  position: absolute;
  top: clamp(2rem, 3.7vw, 3.5rem);
  right: clamp(1rem, 3vw, 2.5rem);
  display: grid;
  gap: 0.05rem;
  min-width: 144px;
  padding: 0.72rem 1rem 0.62rem;
  border: 2px solid rgba(245, 240, 223, 0.9);
  color: var(--cream);
  background: var(--red);
  box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.26);
  font-family: "Arial Narrow", Impact, sans-serif;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(4deg);
}

.paint-mark span {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.paint-mark strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.billboard__header {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2rem);
  max-width: calc(100% - 180px);
}

.club-badge {
  width: clamp(108px, 15vw, 174px);
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.32));
}

.billboard__identity {
  padding-left: clamp(1rem, 2.6vw, 2rem);
  border-left: 1px solid rgba(245, 240, 223, 0.38);
}

.eyebrow,
.since,
.hand-note,
.coming-list,
.page-note,
.footer-label {
  margin: 0;
}

.eyebrow {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.since {
  margin-top: 0.45rem;
  color: var(--cream-dim);
  font-size: clamp(0.7rem, 1.3vw, 0.88rem);
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.billboard__message {
  position: relative;
  max-width: 910px;
  margin: clamp(1.55rem, 3.5vw, 3rem) auto clamp(1.5rem, 3vw, 2.6rem);
  text-align: center;
}

.hand-note {
  position: absolute;
  top: -1.2rem;
  right: 1%;
  color: var(--gold-light);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(0.78rem, 1.4vw, 1rem);
  transform: rotate(-5deg);
}

h1 {
  margin: 0;
  text-transform: uppercase;
}

h1 span,
h1 strong {
  display: block;
}

h1 span {
  color: var(--cream-dim);
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(1.2rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: clamp(0.08em, 0.9vw, 0.18em);
}

h1 strong {
  margin-top: 0.12em;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 7.25vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.25);
}

.intro {
  max-width: 700px;
  margin: clamp(1.15rem, 2vw, 1.75rem) auto 0;
  color: var(--cream-dim);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.6;
}

.coming-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  margin-top: 1.1rem;
  color: var(--gold-light);
  font-size: clamp(0.72rem, 1.25vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.web-address {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.5rem);
  width: min(850px, 100%);
  margin: 0 auto;
  padding: clamp(0.8rem, 1.7vw, 1.2rem) clamp(1rem, 2.5vw, 2rem);
  border-top: 1px solid rgba(215, 170, 83, 0.65);
  border-bottom: 1px solid rgba(215, 170, 83, 0.65);
  color: var(--gold-light);
}

.web-address__label {
  padding: 0.22rem 0.5rem;
  border: 1px solid currentColor;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.web-address strong {
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(1.15rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.open-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: fit-content;
  max-width: calc(100% - 2rem);
  margin: clamp(1.3rem, 2.6vw, 2rem) auto clamp(1.4rem, 2.6vw, 2.1rem);
  padding: 0.72rem clamp(1.2rem, 3vw, 2rem) 0.68rem;
  border: 1px solid rgba(215, 170, 83, 0.82);
  outline: 1px solid rgba(245, 240, 223, 0.18);
  outline-offset: 4px;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.12)),
    rgba(13, 15, 24, 0.62);
  box-shadow:
    0 7px 16px rgba(0, 0, 0, 0.28),
    inset 0 0 0 3px rgba(215, 170, 83, 0.07);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.78rem, 1.35vw, 0.98rem);
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.open-strip::before,
.open-strip::after {
  width: clamp(16px, 3vw, 34px);
  height: 1px;
  flex: 0 0 auto;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(215, 170, 83, 0.68));
}

.open-strip::after {
  transform: rotate(180deg);
}

.open-strip__lamp {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow:
    0 0 0 3px rgba(215, 170, 83, 0.12),
    0 0 10px rgba(255, 227, 162, 0.5);
}

.billboard__footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(330px, 1.25fr);
  align-items: end;
  gap: clamp(1.25rem, 4vw, 4rem);
}

.club-address {
  display: grid;
  gap: 0.26rem;
  color: var(--cream-dim);
  font-size: clamp(0.78rem, 1.25vw, 0.92rem);
  font-style: normal;
  line-height: 1.45;
}

.club-address strong {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.footer-label {
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-route {
  display: grid;
  justify-items: end;
  gap: 0.55rem;
}

.facebook-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.82rem 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.82);
  color: #fff;
  background: var(--facebook);
  box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.3);
  font-size: clamp(0.74rem, 1.25vw, 0.9rem);
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.facebook-button__icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: end center;
  border-radius: 50%;
  color: var(--facebook);
  background: #fff;
  font-family: Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1;
}

.facebook-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 2;
}

.facebook-button:hover {
  background: #0b68dc;
  box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.32);
  transform: translate(2px, 2px) rotate(-0.5deg);
}

.facebook-button:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.page-note {
  margin-top: clamp(1rem, 2vw, 1.5rem);
  color: rgba(245, 240, 223, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.72rem, 1.2vw, 0.86rem);
  font-style: italic;
  letter-spacing: 0.035em;
  text-align: center;
}

@media (max-width: 720px) {
  .site-stage {
    padding: 1rem;
  }

  .billboard {
    padding: 3.25rem 1.35rem 2.2rem;
    border-width: 7px;
    outline-offset: -13px;
    transform: none;
  }

  .paint-mark {
    top: 1.7rem;
    right: 0.8rem;
    min-width: 114px;
    padding: 0.55rem 0.7rem 0.48rem;
  }

  .paint-mark span {
    font-size: 0.52rem;
  }

  .paint-mark strong {
    font-size: 0.76rem;
  }

  .billboard__header {
    display: grid;
    justify-items: center;
    max-width: none;
    padding-top: 1rem;
    text-align: center;
  }

  .club-badge {
    width: 132px;
  }

  .billboard__identity {
    padding: 0;
    border-left: 0;
  }

  .eyebrow {
    font-size: 0.9rem;
  }

  .since {
    line-height: 1.6;
  }

  .billboard__message {
    margin-top: 1.5rem;
  }

  .hand-note {
    display: none;
  }

  h1 span {
    font-size: 1rem;
    line-height: 1.4;
  }

  h1 strong {
    font-size: clamp(2.45rem, 14vw, 4rem);
    line-height: 0.98;
  }

  .intro {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .coming-list {
    font-size: 0.65rem;
    line-height: 1.6;
  }

  .web-address {
    display: grid;
    gap: 0.65rem;
    text-align: center;
  }

  .web-address__label {
    justify-self: center;
  }

  .web-address strong {
    font-size: clamp(1.05rem, 6vw, 1.45rem);
  }

  .open-strip {
    max-width: calc(100% - 1.5rem);
    padding-right: 1rem;
    padding-left: 1rem;
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .open-strip::before,
  .open-strip::after {
    display: none;
  }

  .billboard__footer {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 1.25rem;
    text-align: center;
  }

  .club-address,
  .social-route {
    justify-items: center;
  }

  .facebook-button {
    width: 100%;
    font-size: 0.72rem;
  }
}

@media (max-height: 760px) and (min-width: 721px) {
  .site-stage {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .billboard {
    padding-top: 2.2rem;
    padding-bottom: 1.7rem;
  }

  .club-badge {
    width: 112px;
  }

  .billboard__message {
    margin-top: 1.15rem;
    margin-bottom: 1.15rem;
  }

  h1 strong {
    font-size: clamp(3rem, 7vw, 5.4rem);
  }

  .intro {
    margin-top: 0.85rem;
  }

  .open-strip {
    margin-top: 1.15rem;
    margin-bottom: 1rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .billboard {
    animation: board-arrival 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .billboard::before,
  .billboard::after {
    animation: lights-on 1.1s 400ms ease-out both;
  }

  .paint-mark {
    animation: stamp-in 450ms 540ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
  }
}

@keyframes board-arrival {
  from {
    opacity: 0;
    transform: translateY(22px) rotate(-0.65deg) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-0.25deg) scale(1);
  }
}

@keyframes lights-on {
  from {
    opacity: 0.08;
    filter: none;
  }
  to {
    opacity: 0.8;
    filter: drop-shadow(0 0 7px rgba(255, 220, 139, 0.58));
  }
}

@keyframes stamp-in {
  from {
    opacity: 0;
    transform: rotate(4deg) scale(1.2);
  }
  to {
    opacity: 1;
    transform: rotate(4deg) scale(1);
  }
}

@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;
  }
}

@media (forced-colors: active) {
  .billboard,
  .facebook-button,
  .paint-mark,
  .open-strip {
    border: 2px solid CanvasText;
  }
}
