/* Intentionally minimal: single-page static site */

:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #5a5a5a;
  --border: #e9e9e9;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M4 8c0-3 2.5-5 5.5-5h1C14 3 16 5.2 16 8v5c0 2-1.6 3-3.5 3H7.5C5.4 16 4 15 4 13V8z' fill='%23D79A52'/%3E%3Cpath d='M6 9c0-1.8 1.5-3.1 3.3-3.1h.8C12 5.9 13.5 7.3 13.5 9v3.4c0 1.2-.9 1.9-2.1 1.9H8.1C6.9 14.3 6 13.6 6 12.4V9z' fill='%23F3D6A3'/%3E%3C/svg%3E")
      4 2,
    auto;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 32px) clamp(12px, 4vw, 20px);
}

.hero {
  width: min(920px, 100%);
  display: grid;
  gap: clamp(12px, 2.5vw, 18px);
  align-items: center;
  justify-items: center;
  text-align: center;
}

.artWrap {
  width: min(920px, 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.bread {
  display: block;
  width: min(920px, 100%);
  max-width: 100%;
  height: auto;
  max-height: min(58vh, 560px);
  object-fit: contain;
}

.copy {
  width: min(760px, 100%);
  display: grid;
  gap: 6px;
  padding: 2px 0;
}

.copyLine {
  margin: 0;
  font-size: clamp(18px, 3.4vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.copyEmphasis {
  font-size: clamp(22px, 4.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.copyTagline {
  margin: 6px 0 0;
  font-size: clamp(12px, 2.2vw, 15px);
  line-height: 1.35;
  color: rgba(17, 17, 17, 0.62);
  letter-spacing: 0.01em;
}

.ctaRow {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-width: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow);
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.contract {
  height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px dashed var(--border);
  color: var(--muted);
  background: #ffffff;
  max-width: 100%;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .ctaRow {
    width: 100%;
    gap: 10px;
    justify-content: center;
  }

  .btn,
  .contract {
    width: min(320px, 100%);
    justify-content: center;
  }

  .contract {
    white-space: normal;
    text-align: center;
    padding: 10px 16px;
    height: auto;
  }

}

@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .btn:active {
    transform: none;
  }
}

