:root {
  color-scheme: light;
  --background: #f3eee7;
  --brown: #83533f;
  --brown-muted: rgba(131, 83, 63, 0.74);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--brown);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

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

.page {
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  height: 100svh;
  padding: clamp(14px, 2.6vh, 28px) 20px clamp(18px, 3vh, 34px);
  overflow: hidden;
}

.content {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: clamp(14px, 2.4vh, 28px);
  width: min(900px, 100%);
  max-width: 100%;
  min-width: 0;
  text-align: center;
}

.brand-row {
  display: grid;
  justify-items: center;
}

.wordmark-frame {
  width: clamp(140px, 13vw, 220px);
  height: clamp(46px, 4.6vw, 72px);
  overflow: hidden;
}

.wordmark-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.logo-frame {
  width: min(900px, 104vw);
  height: clamp(250px, 42vh, 430px);
  overflow: hidden;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  mix-blend-mode: multiply;
}

.copy {
  display: grid;
  justify-items: center;
  gap: clamp(7px, 1.4vh, 12px);
  width: min(720px, 100%);
  min-width: 0;
}

h1,
p {
  margin: 0;
}

.address {
  width: 100%;
  color: var(--brown-muted);
  font-size: clamp(0.9rem, 1.6vw, 1.18rem);
  font-weight: 500;
  margin-bottom: clamp(5px, 0.9vh, 10px);
  overflow-wrap: anywhere;
  text-align: center;
}

.address a {
  color: inherit;
  text-decoration: none;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.address a:hover,
.address a:focus-visible {
  color: var(--brown);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.address a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

.hours {
  display: grid;
  gap: 5px;
  color: var(--brown);
  font-size: clamp(0.78rem, 1.28vw, 1rem);
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: clamp(8px, 1.5vh, 18px);
}

.note {
  width: 100%;
  max-width: 660px;
  color: var(--brown-muted);
  font-size: clamp(0.75rem, 1.22vw, 0.98rem);
  font-weight: 500;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.note span,
.note a {
  color: var(--brown);
  font-weight: 700;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 20px);
  margin-top: clamp(3px, 0.8vh, 8px);
}

.social-links a {
  display: grid;
  place-items: center;
  width: clamp(32px, 3.4vw, 42px);
  height: clamp(32px, 3.4vw, 42px);
  color: var(--brown);
  text-decoration: none;
}

.social-links svg {
  width: 100%;
  height: 100%;
}

.social-links path,
.social-links rect,
.social-links circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links .dot,
.social-links a:last-child path {
  fill: currentColor;
  stroke: none;
}

.event-note {
  align-self: end;
  width: min(660px, 100%);
  margin: 0;
  color: var(--brown-muted);
  font-size: clamp(0.75rem, 1.22vw, 0.98rem);
  font-weight: 500;
  line-height: 1.42;
  text-align: center;
  overflow-wrap: anywhere;
}

.event-note a {
  color: var(--brown);
  font-weight: 700;
}

@media (max-width: 520px) {
  .page {
    padding: 22px 14px 20px;
  }

  .content {
    gap: 15px;
  }

  .wordmark-frame {
    width: 146px;
    height: 50px;
  }

  .logo-frame {
    width: min(100%, 390px);
    height: 285px;
  }

  .address {
    max-width: 100%;
    font-size: clamp(0.76rem, 3.15vw, 0.86rem);
    line-height: 1.25;
    white-space: nowrap;
  }

  .hours {
    font-size: 0.82rem;
    line-height: 1.24;
  }

  .note {
    max-width: 340px;
    font-size: 0.72rem;
    line-height: 1.42;
  }

  .social-links {
    gap: 15px;
    margin-top: 0;
  }

  .social-links a {
    width: 31px;
    height: 31px;
  }

  .event-note {
    max-width: 340px;
    font-size: 0.72rem;
    line-height: 1.36;
  }
}
