/* Generated by @comercii/demo-forge — do not edit directly.
   Source: packages/demo-forge/templates/shared/tokens.css
   Vertical: cafe · Palette: Terracotta / cream

   LIGHT MODE ONLY. There is deliberately no prefers-color-scheme branch:
   the prospect must see exactly what was seen when the demo link was sent. */

:root {
  --paper: #FBF7F2;
  --paper-2: #F4EBE1;
  --paper-card: #FFFFFF;
  --text: #1D1815;
  --text-2: #4E433B;
  --muted: #6F6157;
  --accent: #B4502D;
  --accent-hover: #9A4325;
  --accent-deep: #6E2F19;
  --highlight: #D89A3C;
  --border: #E7DACB;
  --border-2: #DBC9B5;
  --ink: #1D1815;

  --serif: 'Fraunces', 'EB Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 3px;
  --radius: 6px;
  --radius-lg: 14px;
  --maxw: 1120px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.16);

  /* CSS-only imagery system (no photography by design — Davis 2026-07-25).
     Depth comes from layered gradients, a hairline grid, and a duotone wash
     built from the palette, so every vertical looks composed without a single
     stock photo and without a per-vertical image generation run. */
  --wash: radial-gradient(
      120% 90% at 12% 0%,
      color-mix(in srgb, var(--accent) 14%, transparent) 0%,
      transparent 60%
    ),
    radial-gradient(
      90% 80% at 100% 10%,
      color-mix(in srgb, var(--highlight) 16%, transparent) 0%,
      transparent 55%
    );
  --grid: repeating-linear-gradient(
      to right,
      color-mix(in srgb, var(--text) 5%, transparent) 0 1px,
      transparent 1px 72px
    );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Nothing may cause a horizontal scrollbar at 390px. */
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--accent-hover);
}

/* Keyboard focus must always be visible — never `focus:` alone. */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 5.2vw, 3.4rem);
}

h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.25rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
  color: var(--text-2);
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

.muted {
  color: var(--muted);
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* 44px minimum touch target. */
  min-height: 44px;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--paper-card);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--paper-card);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---- Demo watermark ----
   Every generated surface is a sample. Saying so plainly protects the offer:
   a prospect who thinks invented review text is real has been misled, and the
   guarantee depends on their trust. */

.demo-flag {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 7px 16px;
}

.demo-flag strong {
  color: var(--highlight);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
