/* ============================================================
   Limerick Press — Shop (Coming Soon)
   Cream/red aesthetic shared with the rest of the site, with a
   warm gold accent that matches the home tile that links here.
   ============================================================ */
:root {
  --cream: #f4ecd8;
  --cream-deep: #ecdfc1;
  --ink: #2b2724;
  --ink-soft: #4a423b;
  --rule: #d6c79a;
  --accent: #ee0a14;
  --gold: #c9a44a;
  --gold-deep: #a07a1f;
  --teal: #2f6e6a;
  --tile-bg: #fffaee;
  --shadow: 0 1px 0 rgba(43,39,36,0.04), 0 8px 24px rgba(43,39,36,0.08);
  --shadow-hover: 0 1px 0 rgba(43,39,36,0.04), 0 16px 36px rgba(43,39,36,0.16);
  --font-display: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --gut: clamp(1.25rem, 4vw, 4rem);
  --maxw: 1100px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background:
    radial-gradient(1100px 700px at 50% -10%, #fff6e0 0%, var(--cream) 55%, var(--cream-deep) 100%);
  color: var(--ink);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  min-height: 100dvh;
}

.page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) var(--gut) clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 3rem);
  min-height: 100vh;
  min-height: 100dvh;
}

/* ===== Masthead ===== */
.masthead { text-align: center; }
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  color: var(--ink-soft);
  margin: 0 0 0.9rem;
}
.title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 8.5vw, 4.6rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}
.kicker {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  margin: 0.8rem 0 0;
}

/* ===== Hero card ===== */
.hero { display: flex; justify-content: center; }
.hero-card {
  width: 100%;
  max-width: 720px;
  background: var(--tile-bg);
  border: 1px solid var(--gold);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(201,164,74,0.20), transparent 70%),
    radial-gradient(70% 50% at 50% 100%, rgba(179,38,30,0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-card > * { position: relative; z-index: 1; }

.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--gold-deep);
  background: rgba(201,164,74,0.16);
  border: 1px solid rgba(201,164,74,0.55);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 5.2vw, 2.4rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 0.8rem;
  color: var(--ink);
}
.hero-lede {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 1.4rem;
}

/* ===== Wares list ===== */
.wares {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.2rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--ink);
}
@media (max-width: 480px) {
  .wares { grid-template-columns: 1fr; }
}
.wares li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ware-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===== Notify form ===== */
.notify-lede {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 0.8rem;
}
.notify-form {
  display: flex;
  gap: 0.55rem;
  margin: 0 0 0.4rem;
}
.notify-form input[type="email"] {
  font: inherit;
  flex: 1 1 auto;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  color: var(--ink);
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.notify-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(201,164,74,0.22);
}
.notify-btn {
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--accent);
  color: #fffaee;
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  transition: background 140ms ease, transform 140ms ease;
}
.notify-btn:hover { background: #8c1d18; border-color: #8c1d18; }
.notify-btn:disabled { background: #c98c88; border-color: #c98c88; cursor: wait; }

@media (max-width: 480px) {
  .notify-form { flex-direction: column; }
  .notify-btn { width: 100%; }
}

.notify-status {
  margin: 0.2rem 0 0;
  font-size: 0.92rem;
  min-height: 1.2em;
  color: var(--ink-soft);
}
.notify-status.is-error { color: var(--accent); }
.notify-status.is-success { color: #1f6c43; }

/* ===== Back link ===== */
.back-line {
  margin: 1.6rem 0 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.back-link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: color 140ms ease, border-color 140ms ease;
}
.back-link:hover { color: var(--accent); border-color: var(--accent); }

/* ===== Footer ===== */
.foot {
  margin-top: auto;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  opacity: 0.7;
}
.foot p { margin: 0; }

/* ===== A11y helper ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
