:root {
  --paper: #EFE5D0;
  --scrap: #FCFAF1;
  --ink: #1A1714;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100svh;
  display: flex;
  justify-content: center;
}

.card {
  width: 100%;
  max-width: 440px;
  padding: 28px 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.storefront {
  margin: 0;
  width: 100%;
  background: var(--scrap);
  border: 1px solid var(--ink);
  box-shadow: 7px 9px 0 -1px var(--ink);
  padding: 8px;
}

.storefront-clip {
  position: relative;
  overflow: hidden;
}

.storefront img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.banner {
  position: absolute;
  top: 66.67%;
  left: 80%;
  width: 80%;
  transform: translate(-50%, -50%) rotate(-51deg);
  background: #F4C430;
  color: var(--ink);
  padding: 7px 0;
  text-align: center;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  pointer-events: none;
}

.wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 68px;
  line-height: 0.92;
  white-space: nowrap;
  letter-spacing: -0.04em;
  font-variation-settings: "SOFT" 60, "opsz" 144;
  margin: 18px 0 0;
  text-align: center;
}

.rule {
  width: 48px;
  height: 1px;
  background: var(--ink);
  border: 0;
  margin: 14px 0 0;
}

.addr,
.contact {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 20px;
  text-align: center;
  margin: 12px 0 0;
}

.contact { margin-top: 10px; }

.contact a {
  color: inherit;
  text-decoration: none;
}

.contact a:hover,
.contact a:focus-visible { text-decoration: underline; text-underline-offset: 4px; }

.earth {
  margin: 6px 0 0;
}

.earth img {
  width: 210px;
  height: auto;
  display: block;
}

@media (min-width: 440px) {
  .wordmark { font-size: 88px; }
}

@media (min-width: 720px) {
  .card { padding: 64px 40px 80px; max-width: 460px; }
  .wordmark { font-size: 104px; }
  .storefront img { height: 260px; }
  .earth img { width: 230px; }
  .banner {
    top: 66.67%;
    left: 80%;
    width: 80%;
    transform: translate(-50%, -50%) rotate(-44deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  body { transition: none; }
}
