:root {
  --accent: #e2131b;
  --ink: #222222;
  --muted: #676767;
  --surface: #ffffff;
  --soft: #f7f4f1;
  --line: #eadfda;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration-color: var(--accent);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent);
}

.site-header {
  border-bottom: 4px solid var(--accent);
  background: var(--surface);
}

.brand {
  display: flex;
  justify-content: center;
  width: min(92vw, var(--max-width));
  margin: 0 auto;
  padding: 18px 0 16px;
}

.brand img {
  width: min(640px, 86vw);
}

main {
  width: min(92vw, var(--max-width));
  margin: 0 auto;
}

.contact-strip {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(28px, 4vw, 44px) 0 0;
}

.contact-strip .eyebrow {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-strip h2 {
  margin: 0 0 6px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.12;
}

.contact-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.contact-strip address {
  display: grid;
  gap: 4px;
  min-width: min(100%, 300px);
  padding-left: 20px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  font-style: normal;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.contact-strip address span,
.contact-strip address a {
  display: block;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(92vw, var(--max-width));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 4px solid var(--accent);
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.facebook-link img {
  width: 40px;
  height: 40px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px) 0 clamp(32px, 5vw, 64px);
}

.shop-photo,
.map,
.hours {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

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

.info-column {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map,
.hours {
  height: clamp(300px, 31vw, 430px);
}

.hours {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hours-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: clamp(32px, 5vw, 54px);
  border-top: 2px solid var(--accent);
  background: #ffffff;
}

.hours-times p {
  margin: 0;
}

.hours-times a {
  color: inherit;
}

.hours-times {
  width: 100%;
}

.hours-title {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1rem;
  white-space: nowrap;
}

.hours-title::after {
  display: block;
  height: 1px;
  width: 100%;
  margin-top: 10px;
  background: var(--accent);
  content: "";
}

.hours-times dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.hours-times dl > div {
  display: grid;
  grid-template-columns: minmax(112px, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.hours-times dt,
.hours-times dd {
  margin: 0;
  color: #454545;
  font-size: 0.98rem;
  line-height: 1.35;
}

.hours-times dt {
  font-weight: 600;
}

.hours-times dd {
  display: grid;
  gap: 2px;
}

.hours-times dd span {
  display: block;
  overflow-wrap: normal;
}

@media (max-width: 820px) {
  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-strip address {
    padding-left: 14px;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hours-times dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}
