:root {
  --red: #e31b23;
  --deep-red: #9f090f;
  --yellow: #ffd54a;
  --gold: #f59e0b;

  --white: #ffffff;
  --muted: #c9c9c9;
  --soft-muted: #a9a9a9;

  --panel: rgba(18, 18, 18, 0.94);
  --panel-hover: rgba(28, 28, 28, 0.98);

  --border: rgba(255, 255, 255, 0.14);
  --border-hover: rgba(255, 255, 255, 0.3);

  --radius-lg: 18px;
  --radius-md: 14px;

  --shadow:
    0 10px 28px rgba(0, 0, 0, 0.32);

  --shadow-hover:
    0 14px 34px rgba(0, 0, 0, 0.42);
}


/* =========================
   RESET
========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  color: var(--white);

  background:
    linear-gradient(
      rgba(12, 0, 0, 0.74),
      rgba(0, 0, 0, 0.97)
    ),
    url("contact.jpg") center / cover fixed no-repeat;
}

a,
button {
  font: inherit;
}

button {
  border: 0;
}


/* =========================
   MAIN SHELL
========================= */

.site-shell {
  width: min(100%, 580px);
  min-height: 100vh;

  margin: 0 auto;
  padding: 30px 16px 26px;
}

.page {
  display: none;
  animation: fade 0.28s ease;
}

.page.active {
  display: block;
}


/* =========================
   HERO
========================= */

.hero,
.location-title {
  text-align: center;
}

.logo {
  display: block;

  width: 180px;
  max-width: 72vw;
  height: auto;

  margin: 0 auto 18px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 6px 14px rgba(0, 0, 0, 0.45)
    );
}

h1 {
  font-size: clamp(2.1rem, 9vw, 3rem);
  line-height: 1.05;

  letter-spacing: -1px;
}

.tagline {
  margin-top: 10px;

  font-size: 1.15rem;
  font-weight: 700;

  color: #eeeeee;
}


/* =========================
   HOME HOURS
========================= */

.hours {
  display: inline-flex;
  flex-direction: column;
  align-items: center;

  margin: 24px auto 30px;
  padding: 16px 28px;

  background:
    rgba(0, 0, 0, 0.7);

  border:
    1px solid
    rgba(255, 213, 74, 0.38);

  border-radius: var(--radius-lg);

  box-shadow:
    0 8px 24px
    rgba(0, 0, 0, 0.42);
}

.hours strong:first-child {
  margin-bottom: 5px;

  font-size: 1rem;
  font-weight: 700;

  color: var(--white);
}

.hours strong:last-child {
  font-size: 1.35rem;
  font-weight: 800;

  color: var(--yellow);

  letter-spacing: 0.3px;
}


/* =========================
   LINK STACKS
========================= */

.link-stack {
  display: flex;
  flex-direction: column;

  gap: 13px;
}

.top-links {
  margin-top: 26px;
}


/* =========================
   LINK CARDS
========================= */

.link-card {
  display: grid;

  grid-template-columns:
    46px
    1fr
    22px;

  align-items: center;

  width: 100%;
  min-height: 76px;

  padding: 13px 15px;

  background: var(--panel);

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-lg);

  color: var(--white);

  text-decoration: none;
  text-align: left;

  cursor: pointer;

  box-shadow:
    var(--shadow);

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.link-card:hover {
  transform:
    translateY(-2px);

  background:
    var(--panel-hover);

  border-color:
    var(--border-hover);

  box-shadow:
    var(--shadow-hover);
}

.link-card:active {
  transform:
    scale(0.985);
}


/* PRIMARY BUTTON */

.link-card.primary {
  background:
    linear-gradient(
      135deg,
      var(--red),
      var(--deep-red)
    );

  border-color:
    rgba(255, 255, 255, 0.12);

  box-shadow:
    0 10px 28px
    rgba(227, 27, 35, 0.25);
}

.link-card.primary:hover {
  box-shadow:
    0 14px 34px
    rgba(227, 27, 35, 0.38);
}


/* =========================
   CARD ICON
========================= */

.icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  border-radius: 12px;

  background:
    rgba(255, 255, 255, 0.08);

  font-size: 1.2rem;
}


/* =========================
   CARD COPY
========================= */

.copy {
  display: flex;
  flex-direction: column;

  gap: 4px;

  padding: 0 10px;
}

.copy strong {
  font-size: 1rem;
  font-weight: 700;

  color: var(--white);
}

.copy small {
  font-size: 0.78rem;

  color: #bdbdbd;
}

.primary .copy small {
  color:
    rgba(255, 255, 255, 0.82);
}

.arrow {
  justify-self: end;

  font-size: 1.4rem;

  color:
    rgba(255, 255, 255, 0.5);
}


/* =========================
   SECTION HEADINGS
========================= */

.section-heading {
  text-align: center;

  margin: 42px 0 24px;
}

.section-heading h2 {
  font-size: 2rem;
  font-weight: 800;

  color: var(--white);

  letter-spacing: -0.5px;
}


/* =========================
   LOCATION HEADER
========================= */

.location-title {
  margin-bottom: 26px;
}

.location-logo {
  display: block;

  width: 68px;
  height: 68px;

  object-fit: contain;

  margin:
    0 auto 14px;
}

.location-title > span {
  display: inline-block;

  margin-bottom: 7px;

  font-size: 0.75rem;
  font-weight: 800;

  color: var(--yellow);

  text-transform: uppercase;

  letter-spacing: 1.4px;
}

.location-title h2 {
  margin-bottom: 9px;

  font-size:
    clamp(
      2rem,
      8vw,
      2.5rem
    );

  line-height: 1.05;

  letter-spacing: -0.8px;
}

.location-title p {
  font-size: 0.95rem;

  line-height: 1.55;

  color: #d1d1d1;
}

.location-links {
  margin-top: 26px;
}


/* =========================
   LOCATION HOURS
========================= */

.location-hours {
  display: inline-flex;
  flex-direction: column;
  align-items: center;

  gap: 4px;

  margin-top: 14px;
  padding: 12px 22px;

  background:
    rgba(0, 0, 0, 0.68);

  border:
    1px solid
    rgba(255, 213, 74, 0.4);

  border-radius:
    var(--radius-md);
}

.location-hours strong {
  font-size: 0.9rem;

  color: var(--white);
}

.location-hours span {
  font-size: 1.15rem;
  font-weight: 800;

  color: var(--yellow);
}


/* =========================
   REWARDS CARD
========================= */

.rewards-card {
  margin: 18px 0;
  padding: 20px;

  text-align: center;

  color: var(--white);

  background:
    linear-gradient(
      145deg,
      rgba(28, 21, 8, 0.95),
      rgba(14, 14, 14, 0.96)
    );

  border:
    1px solid
    rgba(245, 158, 11, 0.55);

  border-radius:
    var(--radius-lg);

  box-shadow:
    0 10px 26px
    rgba(0, 0, 0, 0.3);
}

.rewards-card h3 {
  margin-bottom: 12px;

  font-size: 1.15rem;

  color: #fbbf24;
}

.rewards-card strong {
  color: var(--white);
}

.rewards-card p {
  margin: 8px 0;

  font-size: 0.9rem;

  color: #d1d5db;

  line-height: 1.45;
}

.rewards-card .rewards-note {
  margin-top: 12px;

  padding-top: 10px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.1);

  font-size: 0.78rem;

  font-style: italic;

  color: #aaaaaa;
}


/* =========================
   COMING SOON BADGE
========================= */

.coming-soon {
  display: inline-block;

  width: fit-content;

  margin-top: 6px;
  padding: 4px 9px;

  border-radius: 999px;

  background:
    rgba(245, 158, 11, 0.16);

  border:
    1px solid
    rgba(245, 158, 11, 0.55);

  color: #fbbf24;

  font-size: 0.65rem;
  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}


/* =========================
   INSTAGRAM BUTTON
========================= */

.instagram-button,
.instagram-button:visited {
  color: var(--white);
}


/* =========================
   BACK BUTTON
========================= */

.back {
  margin-bottom: 24px;

  padding: 9px 13px;

  color: #d7d7d7;

  background:
    rgba(255, 255, 255, 0.06);

  border:
    1px solid
    rgba(255, 255, 255, 0.1);

  border-radius: 10px;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.back:hover {
  background:
    rgba(255, 255, 255, 0.1);

  color: var(--white);
}


/* =========================
   FOOTER
========================= */

footer {
  margin-top: 44px;
  padding-top: 22px;

  border-top:
    1px solid
    var(--border);

  text-align: center;

  font-size: 0.8rem;

  color: #8f8f8f;
}

footer a {
  color: var(--white);

  text-decoration: none;
}

footer a:hover {
  color: var(--yellow);
}


/* =========================
   ANIMATION
========================= */

@keyframes fade {
  from {
    opacity: 0;

    transform:
      translateY(6px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .site-shell {
    padding:
      22px
      12px
      24px;
  }

  .logo {
    width: 165px;
    max-width: 72vw;

    margin-bottom: 16px;
  }

  h1 {
    font-size:
      clamp(
        2rem,
        10vw,
        2.65rem
      );
  }

  .tagline {
    font-size: 1rem;
  }

  .hours {
    margin:
      20px auto
      26px;

    padding:
      14px
      22px;
  }

  .hours strong:first-child {
    font-size: 0.9rem;
  }

  .hours strong:last-child {
    font-size: 1.18rem;
  }

  .link-card {
    min-height: 72px;

    grid-template-columns:
      43px
      1fr
      18px;

    padding:
      11px
      13px;

    border-radius: 15px;
  }

  .icon {
    width: 38px;
    height: 38px;

    font-size: 1.1rem;
  }

  .copy strong {
    font-size: 0.95rem;
  }

  .copy small {
    font-size: 0.74rem;
  }

  .location-logo {
    width: 60px;
    height: 60px;
  }

  .section-heading {
    margin:
      36px
      0
      20px;
  }

  .section-heading h2 {
    font-size: 1.75rem;
  }

  .rewards-card {
    padding: 17px;
  }

  .location-hours {
    padding:
      11px
      18px;
  }
}


/* =========================
   VERY SMALL PHONES
========================= */

@media (max-width: 380px) {

  .site-shell {
    padding-left: 10px;
    padding-right: 10px;
  }

  .logo {
    width: 145px;
  }

  .link-card {
    grid-template-columns:
      40px
      1fr
      16px;
  }

  .copy {
    padding:
      0 8px;
  }

}
