:root {
  color-scheme: light;
  --ink: #191713;
  --muted: #686056;
  --paper: #faf8f3;
  --panel: #ffffff;
  --line: #ded8ce;
  --accent: #b73a2d;
  --accent-2: #245f73;
  --gold: #c69636;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(250, 248, 243, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 23, 19, 0.72), rgba(25, 23, 19, 0.28) 52%, rgba(25, 23, 19, 0.08));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  color: #fffdfa;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 112px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
}

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

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid rgba(255, 253, 250, 0.55);
  border-radius: 8px;
  color: #fffdfa;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
}

.button.dark {
  background: var(--ink);
  border-color: var(--ink);
}

.inline-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 800;
}

.grid-section,
.stores,
.about,
.empty-state,
.contact-hero,
.store-hero,
.store-page {
  padding: 72px clamp(18px, 5vw, 64px);
}

.section-heading,
.stores {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.art-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.art-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.art-image {
  display: block;
  aspect-ratio: 4 / 3;
  background: #ede7dc;
}

.art-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.art-card-body {
  padding: 18px;
}

.status {
  margin: 0 0 8px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.art-card h3 {
  margin: 0;
  font-size: 22px;
}

.art-card p {
  color: var(--muted);
}

.card-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.store-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-width: min(680px, 100%);
}

.store-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.store-card.planned {
  color: var(--muted);
  border-style: dashed;
}

.store-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.store-card em {
  width: max-content;
  margin-top: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #f1ece3;
  color: var(--accent-2);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.store-list span,
.about p,
.empty-state p {
  color: var(--muted);
}

.about {
  max-width: 900px;
}

.about p,
.empty-state p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.6;
}

.contact-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--panel);
}

.store-hero {
  min-height: 48vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  color: #fffdfa;
}

.store-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 253, 250, 0.78);
  font-size: 20px;
  line-height: 1.55;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.contact-hero h1,
.store-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(48px, 9vw, 104px);
  line-height: 0.95;
  letter-spacing: 0;
}

.contact-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.contact-hero .button {
  color: #fffdfa;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 760px) {
  .topbar,
  .stores,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 70vh;
  }

  .hero::after {
    background: rgba(25, 23, 19, 0.58);
  }

  .hero-copy {
    margin: 0 auto;
    padding-top: 110px;
  }

  .store-list {
    grid-template-columns: 1fr;
  }
}
