:root {
  --black: #0d0d0d;
  --near-black: #151111;
  --wine: #7f2635;
  --wine-dark: #4f171f;
  --gold: #c99124;
  --gold-light: #e4b85f;
  --cream: #f5ead3;
  --teal: #0d5f64;
  --blue-black: #14242d;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100vh;
  margin: 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(127, 38, 53, 0.36), rgba(13, 13, 13, 0) 42%),
    radial-gradient(circle at top right, rgba(201, 145, 36, 0.18), transparent 34%),
    var(--black);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  min-height: calc(100vh - 58px);
  display: grid;
  align-items: center;
  padding: clamp(28px, 5vw, 60px);
}

.gateway {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro,
.card-location {
  font-weight: 800;
  text-transform: uppercase;
}

.site-logo-heading {
  margin: 0;
}

.site-logo-crop {
  display: block;
  width: min(270px, 72vw);
  aspect-ratio: 300 / 186;
  overflow: hidden;
}

.site-logo-crop img {
  display: block;
  width: 231%;
  height: auto;
}

.intro {
  margin: 22px 0 34px;
  color: var(--gold-light);
  font-size: clamp(0.92rem, 2vw, 1.08rem);
  letter-spacing: 0;
}

.cinema-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.cinema-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: var(--near-black);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

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

.card-photo {
  position: relative;
  display: block;
  min-height: 220px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  transition: filter 0.35s ease;
}

.cinema-card:hover .card-photo,
.cinema-card:focus-visible .card-photo {
  filter: saturate(1.08) brightness(1.08);
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 150px;
  padding: 20px;
  background: var(--wine-dark);
}

.card-name {
  display: block;
  max-width: 100%;
  color: #fff;
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  font-weight: 800;
  line-height: 0.96;
}

.card-location {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 3px;
  color: #fff;
  background: rgba(13, 13, 13, 0.72);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  font-size: 0.8rem;
  letter-spacing: 0;
}

.card-location::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid var(--gold-light);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.card-blurb {
  display: block;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.32;
}

.plaza .card-photo {
  background-image: url("assets/img/plaza-outside.png");
}

.roxy .card-photo {
  background-image: url("assets/img/roxy-outside.jpg");
}

.rex .card-photo {
  background-image: url("assets/img/rex-outside.jpg");
}

.picture-house .card-photo {
  background-image: url("assets/img/picturehouse-outside.jpg");
}

.cottage .card-photo {
  background-image: url("assets/img/cottageroad-outside.jpg");
}

.site-footer {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 16px 24px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(0, 0, 0, 0.36);
  font-size: 0.88rem;
}

@media (max-width: 1100px) {
  .cinema-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cinema-card {
    min-height: 0;
  }

}

@media (max-width: 640px) {
  .page-shell {
    display: block;
    min-height: 0;
    padding: 28px 18px 34px;
  }

  .site-logo-crop {
    width: min(230px, 76vw);
  }

  .intro {
    margin-bottom: 24px;
  }

  .cinema-grid {
    grid-template-columns: 1fr;
  }

  .cinema-card,
  .cottage {
    grid-column: auto;
    min-height: 0;
  }

  .card-content {
    padding: 18px;
  }

  .card-photo {
    min-height: 210px;
  }

  .card-name {
    font-size: 2rem;
  }

}
