:root {
  --red: #c4121a;
  --ink: #2b241f;
  --muted: #5c534c;
  --paper: #faf6ef;
  --line: rgba(43, 36, 31, 0.12);
  --bar: #1c1612;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Source Sans Pro", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

.archive-bar,
.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 2.5rem;
  background: var(--bar);
  color: #f4ece3;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.archive-bar {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 2.5rem;
}

.archive-bar a,
.site-footer a {
  color: #ffd5c8;
  text-decoration: none;
  white-space: nowrap;
}

.archive-bar a:hover,
.archive-bar a:focus,
.site-footer a:hover,
.site-footer a:focus {
  text-decoration: underline;
}

.site-footer {
  margin-top: auto;
}

.site-footer p {
  margin: 0;
}

.banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #1a1410;
}

.banner-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.banner-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2.4rem 2.5rem 1.6rem;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(250, 246, 239, 0.94) 55%);
}

.logo {
  width: min(520px, 80vw);
  height: auto;
}

.tagline {
  margin: 0.2rem 0 0;
  font-family: Lato, "Source Sans Pro", sans-serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--muted);
}

.page {
  flex: 1;
  width: 100%;
  padding: 2.4rem 2.5rem 2.2rem;
}

.intro {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.contact p {
  margin: 0.2rem 0;
  font-size: 1rem;
  line-height: 1.45;
}

.contact a {
  color: var(--ink);
  text-decoration: none;
}

.contact a:hover,
.contact a:focus {
  color: var(--red);
}

.hours {
  margin-top: 1rem !important;
  color: var(--muted);
}

.description {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.55;
}

.swants {
  font-style: italic;
}

.notice {
  margin: 1.4rem 0 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  font-size: 0.98rem;
  line-height: 1.4;
  color: var(--muted);
}

.hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-row img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

@media (max-width: 860px) {
  .archive-bar,
  .site-footer,
  .page,
  .banner-copy {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .contact {
    text-align: center;
  }

  .description {
    font-size: 1.1rem;
  }

  .hero-row {
    grid-template-columns: 1fr;
  }

  .hero-row img {
    height: 220px;
  }

  .banner {
    min-height: 200px;
  }
}
