:root {
  --cream:    #F4EBD9;
  --cream-2:  #EADFC7;
  --ink:      #14110D;
  --ink-soft: #3A322A;
  --red:      #C8362C;
  --red-deep: #8E1F18;
  --gold:     #E5A82F;
  --forest:   #214B3C;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--red-deep); text-decoration: none; border-bottom: 1px solid currentColor; }
a:hover { color: var(--red); }

.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- A11Y UTILITIES ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 16px;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  z-index: 1000;
  transition: top 0.15s ease-out;
}
.skip-link:focus {
  top: 16px;
  color: var(--cream);
}

/* ---------- FOCUS ---------- */
/* Suppress default focus rings; we render our own only for keyboard focus. */
:focus { outline: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- NAV ---------- */
nav.top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  border: none;
  transition: opacity 0.15s ease;
}
a.wordmark:hover { color: var(--ink); opacity: 0.7; }
.wordmark .dot { color: var(--red); }
nav.top .contact {
  font-size: 14px;
  color: var(--ink-soft);
  border: none;
}
nav.top .contact strong { color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 1px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 60px 0 120px;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; }

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink);
  color: var(--cream);
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(229,168,47,0.7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(229,168,47,0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(229,168,47,0); }
  100% { box-shadow: 0 0 0 0 rgba(229,168,47,0); }
}

h1.headline {
  font-size: clamp(56px, 10vw, 148px);
  margin: 28px 0 0;
  color: var(--ink);
}
h1.headline .italic { font-style: italic; color: var(--red); }
h1.headline .amp { color: var(--gold); font-style: italic; }

.subhead {
  margin: 28px 0 0;
  max-width: 640px;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink-soft);
}

.meta {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 28px 40px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
.meta b { display: block; color: var(--ink); font-size: 15px; letter-spacing: 0.04em; margin-top: 4px; text-transform: none; font-weight: 600; }

/* Decorative shapes */
.shape { position: absolute; z-index: 1; pointer-events: none; }
.shape-hex {
  top: 80px; right: -60px;
  width: 280px; height: 280px;
  background: var(--gold);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  opacity: 0.55;
  transform: rotate(12deg);
}
.shape-circle {
  bottom: 60px; left: -70px;
  width: 220px; height: 220px;
  background: var(--forest);
  border-radius: 50%;
  opacity: 0.18;
}
.shape-die {
  bottom: 100px; right: 8%;
  width: 110px; height: 110px;
  background: var(--cream-2);
  border: 3px solid var(--ink);
  border-radius: 22px;
  transform: rotate(-12deg);
  display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr);
  padding: 14px;
  gap: 6px;
}
.shape-die span { width: 14px; height: 14px; border-radius: 50%; background: var(--ink); align-self: center; justify-self: center; }
.shape-die span:nth-child(2),
.shape-die span:nth-child(4),
.shape-die span:nth-child(6),
.shape-die span:nth-child(8) { visibility: hidden; }

/* ---------- DIVIDER ---------- */
.divider {
  border: none;
  border-top: 2px dashed var(--ink);
  opacity: 0.18;
  margin: 0;
}

/* ---------- SECTIONS ---------- */
section { padding: 96px 0; }
.eyebrow {
  font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
h2.section-title {
  font-size: clamp(36px, 5vw, 64px);
  margin: 14px 0 0;
  max-width: 18ch;
}
h2.section-title em { color: var(--forest); font-style: italic; }

.principles {
  display: grid;
  gap: 18px;
}
.principle {
  background: var(--cream-2);
  border-radius: 18px;
  padding: 22px 24px;
  border: 1.5px solid rgba(20,17,13,0.08);
}
.principle h3 {
  margin: 0 0 4px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
}
.principle p { margin: 0; font-size: 15px; color: var(--ink-soft); }
.principle .icon {
  display: inline-block;
  width: 32px; height: 32px;
  margin-bottom: 8px;
  color: var(--red);
}

/* ---------- PHILOSOPHY ---------- */
.manifesto { max-width: 760px; margin-top: 40px; }
.manifesto p { font-size: 18.5px; color: var(--ink-soft); margin: 0 0 22px; }
.manifesto p.lede {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.32;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.manifesto p .accent { color: var(--red); font-weight: 600; }

.pullquote {
  margin: 56px 0 0;
  padding: 36px 44px;
  background: var(--cream-2);
  border-left: 6px solid var(--red);
  border-radius: 4px 20px 20px 4px;
  max-width: 760px;
}
.pullquote p {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pullquote p em { color: var(--red); font-style: italic; }
.pullquote cite {
  display: block;
  margin-top: 14px;
  font-style: italic;
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* ---------- HOW WE DESIGN ---------- */
.design-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.design-intro p {
  margin: 18px 0 0;
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 36ch;
}

/* ---------- CTA ROW ---------- */
.cta-row {
  background: var(--ink);
  color: var(--cream);
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.cta-row::before {
  content: "";
  position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.85;
}
.cta-row::after {
  content: "";
  position: absolute; right: 60px; bottom: -80px;
  width: 200px; height: 200px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.85;
}
.cta-block { position: relative; z-index: 2; }
.cta-block h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.05;
  margin: 8px 0 14px;
  letter-spacing: -0.01em;
}
.cta-block p { color: rgba(244,235,217,0.78); margin: 0 0 22px; font-size: 15.5px; }
.cta-block .eyebrow { color: var(--gold); }

/* signup form */
form.signup { display: flex; gap: 8px; flex-wrap: wrap; }
form.signup input[type=email] {
  flex: 1 1 220px;
  background: rgba(244,235,217,0.08);
  color: var(--cream);
  border: 1.5px solid rgba(244,235,217,0.3);
  border-radius: 999px;
  padding: 14px 20px;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s ease;
}
form.signup input[type=email]::placeholder { color: rgba(244,235,217,0.5); }
form.signup input[type=email]:focus { border-color: var(--gold); }
form.signup input[type=email]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}
form.signup button {
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.1s ease, background 0.15s ease;
}
form.signup button:hover { background: #f1b94a; transform: translateY(-1px); }
.form-note { font-size: 12.5px; color: rgba(244,235,217,0.55); margin: 12px 0 0; }
.form-success {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(229,168,47,0.15);
  border: 1px solid rgba(229,168,47,0.4);
  border-radius: 12px;
  color: var(--gold);
  font-size: 14px;
}
.form-success.shown { display: block; }

/* vendors block */
.vendor-cta a.button {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cream);
  color: var(--ink);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: transform 0.1s ease;
}
.vendor-cta a.button:hover { transform: translateY(-1px); }
.vendor-cta a.button .arrow { transition: transform 0.15s ease; }
.vendor-cta a.button:hover .arrow { transform: translateX(3px); }

/* ---------- CONFIRMED PAGE ---------- */
.confirmed {
  position: relative;
  padding: 80px 0 140px;
  overflow: hidden;
  min-height: calc(100vh - 240px);
  display: flex;
  align-items: center;
}
.confirmed-inner { position: relative; z-index: 2; max-width: 720px; }
.confirmed h1.headline {
  font-size: clamp(56px, 9vw, 128px);
}
.confirmed .subhead {
  margin-top: 32px;
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--ink-soft);
  max-width: 560px;
}
.confirmed-actions {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-ink {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  text-decoration: none;
  transition: transform 0.1s ease, background 0.15s ease;
}
.btn-ink:hover { background: #2a2418; color: var(--cream); transform: translateY(-1px); }
.btn-ink .arrow { transition: transform 0.15s ease; }
.btn-ink:hover .arrow { transform: translateX(3px); }
.btn-quiet {
  font-size: 14.5px;
  color: var(--ink-soft);
  border: none;
  padding: 10px 4px;
}
.btn-quiet:hover { color: var(--red); }

/* ---------- FOOTER ---------- */
footer {
  padding: 48px 0 56px;
  border-top: 1.5px solid rgba(20,17,13,0.1);
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-soft);
}
footer .row {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
footer .legal { font-size: 12.5px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 820px) {
  .design-grid { grid-template-columns: 1fr; gap: 36px; }
  .pullquote { padding: 26px 24px; margin-top: 40px; }
  .cta-row { grid-template-columns: 1fr; padding: 36px; gap: 40px; }
  .cta-row::before { width: 240px; height: 240px; right: -100px; top: -100px; }
  .cta-row::after { width: 140px; height: 140px; right: 20px; bottom: -60px; }
  .shape-hex { width: 180px; height: 180px; right: -80px; top: 40px; }
  .shape-die { display: none; }
  .shape-circle { width: 160px; height: 160px; bottom: 20px; }
  section { padding: 72px 0; }
  .hero { padding: 40px 0 80px; }
  nav.top { padding: 22px; }
  .container { padding: 0 22px; }
}
@media (max-width: 520px) {
  nav.top .contact .label { display: none; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .badge .pulse {
    animation: none;
    box-shadow: 0 0 0 4px rgba(229,168,47,0.25);
  }
  .vendor-cta a.button:hover,
  form.signup button:hover,
  .btn-ink:hover { transform: none; }
}

@media (max-width: 820px) {
  .confirmed { padding: 60px 0 100px; min-height: 0; }
}
