:root {
  --ink: #14231d;
  --forest: #155c43;
  --mint: #dcefe5;
  --lime: #d6ed62;
  --paper: #ffffff;
  --line: #cbd6cd;
  --blue: #245b76;
  --muted: #617068;
  --bg: #f3f7f3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  min-height: var(--app-height, 100dvh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 2rem 1.25rem;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8faf7 0%, var(--bg) 100%);
}

.page-shell {
  width: min(760px, 100%);
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(214, 237, 98, 0.16);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(220, 239, 229, 0.6);
  color: var(--forest);
  font: 500 12px "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 20px 50px rgba(20, 35, 29, 0.06);
  backdrop-filter: blur(4px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--forest);
  font: 500 12px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h1 {
  margin-bottom: 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 18px;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.meta-label {
  font: 500 11px "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.meta-value {
  font-weight: 600;
  color: var(--ink);
}

.meta-value.accent {
  color: var(--forest);
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.contact-row a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 700;
}

.contact-row a:hover,
.contact-row a:focus-visible {
  text-decoration: underline;
}

.stores-panel {
  width: min(760px, 100%);
  margin-top: 28px;
  padding: 0.2rem 0 0;
}

.stores-label {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.store-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.store-link:hover,
.store-link:focus-visible {
  border-color: rgba(21, 92, 67, 0.4);
  box-shadow: 0 12px 28px rgba(20, 35, 29, 0.06);
  transform: translateY(-1px);
}

.store-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 4px;
}

.site-footer {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 540px) {
  .brand-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .meta-grid {
    grid-template-columns: 1fr;
  }

  .store-list {
    gap: 10px;
  }

  .store-link {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
    min-width: 0;
  }
}
