:root {
  color-scheme: dark;
  --background: #0d0f15;
  --ink: #f4f2ef;
  --muted: #afb6c3;
  --accent: #d78e89;
  --line: #2a2f38;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--ink);
  background: #904747;
}

p,
figure {
  margin: 0;
}

.page {
  width: min(100%, 1920px);
  min-height: 100svh;
  margin-inline: auto;
  padding-inline: clamp(24px, 4.5vw, 88px);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 128px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: block;
  width: 208px;
  height: auto;
  margin-left: -19px;
  mix-blend-mode: lighten;
}

.location,
.eyebrow,
.art-index,
.brand-line {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.location {
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 630px;
  padding-block: 38px;
  gap: clamp(28px, 4vw, 76px);
}

.hero-copy {
  padding-block: clamp(35px, 4.8vh, 70px);
  align-self: center;
}

.eyebrow {
  color: var(--muted);
  border-left: 2px solid #bd6562;
  padding-left: 16px;
  letter-spacing: 0.12em;
}

h1 {
  margin: 34px 0 30px;
  font-size: clamp(58px, 6.3vw, 110px);
  line-height: 1.03;
  letter-spacing: -0.065em;
  font-weight: 500;
}

h1 em {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.description {
  font-size: clamp(21px, 1.7vw, 27px);
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.intro {
  max-width: 360px;
  margin-top: 19px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.store-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #12161e;
  line-height: 1.4;
}

.brand-icon {
  display: block;
  flex-shrink: 0;
  filter: invert(1);
}

.store-name {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.store-status {
  color: var(--accent);
  font-size: 12px;
}

.signature {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 28px;
  font-size: 14px;
  letter-spacing: 0.015em;
}

.signature span:last-child {
  color: var(--accent);
}

.hero-art {
  position: relative;
  min-height: 554px;
  overflow: hidden;
  background: #101721;
}

.hero-art > img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.hero-art figcaption {
  position: absolute;
  top: 38px;
  left: 34px;
  color: var(--ink);
  font-family: "Iowan Old Style", Palatino, Georgia, serif;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.art-index {
  position: absolute;
  bottom: 28px;
  left: 34px;
  color: #f4f2ef;
  font-size: 12px;
  text-shadow: 0 1px 8px #000;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.brand-line {
  font-size: 12px;
  letter-spacing: 0.16em;
}

.brand-line span {
  margin-inline: 10px;
  color: var(--accent);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--ink);
  font-size: 14px;
  text-decoration: none;
}

.social-links a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.social-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
  border-radius: 3px;
}

@media (min-width: 1600px) {
  .hero {
    min-height: 740px;
  }
}

@media (max-width: 900px) {
  .page {
    padding-inline: 28px;
  }

  .site-header {
    min-height: 100px;
  }

  .hero {
    gap: 28px;
    min-height: 570px;
  }

  h1 {
    font-size: clamp(49px, 6.5vw, 65px);
  }

  .eyebrow {
    max-width: 265px;
    font-size: 12px;
  }

  .hero-art {
    min-height: 490px;
  }

  .hero-art figcaption {
    top: 27px;
    left: 24px;
  }

  .art-index {
    left: 24px;
  }

  .site-footer {
    flex-wrap: wrap;
    padding-block: 16px;
    gap: 12px 24px;
  }
}

@media (max-width: 640px) {
  .page {
    padding-inline: 24px;
  }

  .site-header {
    min-height: 90px;
    gap: 14px;
  }

  .wordmark {
    width: 166px;
    margin-left: -15px;
  }

  .location {
    max-width: 104px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-align: right;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-block: 0 28px;
    gap: 34px;
  }

  .hero-copy {
    padding-block: 43px 0;
  }

  .eyebrow {
    max-width: none;
    font-size: 12px;
    letter-spacing: 0.055em;
    padding-left: 12px;
  }

  h1 {
    font-size: clamp(54px, 13.5vw, 84px);
    margin-block: 29px 25px;
  }

  .description {
    font-size: 22px;
  }

  .intro {
    max-width: 355px;
    margin-top: 16px;
  }

  .signature {
    margin-top: 29px;
  }

  .hero-art {
    min-height: 300px;
    aspect-ratio: 1.25;
  }

  .hero-art > img {
    object-position: center;
  }

  .hero-art figcaption {
    font-size: 25px;
    top: 25px;
  }

  .art-index {
    bottom: 20px;
  }

  .site-footer {
    flex-wrap: wrap;
    gap: 14px;
    padding-block: 24px;
    min-height: 100px;
  }

  .brand-line {
    order: 3;
    width: 100%;
    font-size: 12px;
  }
}
