/* Coming-soon landing page.
   Layers on top of main.css so it inherits the .btn and form classes instead of
   duplicating them. The 2026-07-29 rebrand retired the dark gold-on-black
   identity; this page now carries the current brand (charcoal ink on parade
   white, gold worn sparingly), and it does so by remapping main.css's retired
   dark tokens INSIDE .cs-page only, so the parked /preview pages keep rendering
   with their own stylesheet untouched until cutover replaces them.

   Contrast law for the light field: raw --gold (#d4af37) computes 2.03:1 on
   this background and is graphic-only; text-bearing gold uses --gold-ink
   (#7c5f13, 5.79:1) and the gold-ink gradient is reserved for the one large
   headline span.

   No inline styles anywhere: the site runs a strict CSP with no 'unsafe-inline'
   in style-src, so an inline style="" attribute would simply be dropped. */

/* --- Background: parade white, gold worn as insignia ---------------------- */
.cs-page {
  /* Rebrand token remap, scoped to this page (values match the current brand
     constants used on the rebuilt property). */
  --bg: #fbfbf9;
  --bg-2: #f3f3ee;
  --ink: #1d1e23;
  --ink-2: #45464e;
  --ink-3: #5f6169;
  --line: rgba(29, 30, 35, 0.12);
  --line-strong: rgba(29, 30, 35, 0.22);
  --gold-ink: #7c5f13;
  --gold-ink-grad: linear-gradient(135deg, #5e4708 0%, #a17820 45%, #8a6a15 72%, #4f3c06 100%);
  --gold-soft: rgba(212, 175, 55, 0.16);
  --line-gold: rgba(169, 121, 26, 0.45);
  --shadow: 0 18px 44px -26px rgba(29, 30, 35, 0.35);
  --shadow-gold: 0 12px 30px -16px rgba(169, 121, 26, 0.45);

  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 4rem) 1.25rem;
  background-color: var(--bg);
  overflow: hidden;
}

/* A faint gold wash behind the logo over the parade-white field. Keeps the page
   from reading as a flat white rectangle without putting any pattern on it. */
.cs-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 62% 46% at 50% 20%, rgba(212, 175, 55, 0.10) 0%, transparent 66%),
    radial-gradient(ellipse 95% 75% at 50% 45%, var(--bg-2) 0%, var(--bg) 72%);
  pointer-events: none;
}

.cs-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 660px;
  text-align: center;
}

/* --- Identity ------------------------------------------------------------- */
.cs-logo {
  width: clamp(132px, 22vw, 176px);
  height: auto;
  margin: 0 auto 1.6rem;
  display: block;
  filter: drop-shadow(0 18px 44px rgba(29, 30, 35, 0.28));
}

.cs-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.9rem;
}

/* main.css styles the badge for the dark field (gold-hi text, raw-gold border);
   on parade white both fail contrast, so the light field re-dresses them. */
.cs-page .vet-badge {
  color: var(--gold-ink);
  border-color: var(--line-gold);
  background: var(--gold-soft);
}
.cs-page .vet-badge--ghost {
  color: var(--ink-2);
  border-color: var(--line-strong);
  background: transparent;
}

/* --- Type ----------------------------------------------------------------- */
.cs-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 1rem;
  padding-left: 0.42em; /* optical: compensate the trailing letter-spacing */
}

.cs-title {
  font-size: clamp(1.9rem, 4.6vw, 2.9rem);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 1.15rem;
}

/* Large text only: the gold-ink gradient's brightest stop clears 3:1 at this
   size and nowhere near body size. */
.cs-title .grad {
  background: var(--gold-ink-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cs-motto {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* The gold rules either side of the motto, echoing the brandboard's wordmark.
   1px graphic gold: allowed on the light field. */
.cs-motto::before,
.cs-motto::after {
  content: "";
  height: 1px;
  width: clamp(20px, 8vw, 58px);
  background: linear-gradient(90deg, transparent, var(--gold-lo), var(--gold));
}
.cs-motto::after {
  background: linear-gradient(90deg, var(--gold), var(--gold-lo), transparent);
}

.cs-lead {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 auto 2.1rem;
  max-width: 46ch;
}

/* --- Actions -------------------------------------------------------------- */
.cs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 2.4rem;
}

/* .btn-primary keeps its main.css dress: gold plate with near-black ink is the
   brand's highest-contrast pair on any field. The ghost button's white-alpha
   fill was built for the dark field and vanishes on white. */
.cs-page .btn-ghost {
  background: transparent;
}
.cs-page .btn-ghost:hover {
  background: var(--bg-2);
  border-color: var(--ink-3);
}

/* --- Call card ------------------------------------------------------------ */
/* main.css dresses .call-card as a translucent dark panel with raw-gold label
   text and the bright gold-gradient number: all built for the dark field. The
   light field re-dresses it as a white card; the number takes the gold-ink
   gradient, which clears 3:1 at its large size. */
.cs-page .call-card {
  background: #ffffff;
  border-color: var(--line);
  border-top-color: var(--line-gold);
  box-shadow: var(--shadow);
}
.cs-page .call-label {
  color: var(--gold-ink);
}
.cs-page .call-number {
  background: var(--gold-ink-grad);
  -webkit-background-clip: text;
  background-clip: text;
}
.cs-page .call-sub {
  color: var(--ink-2);
}

/* --- Lead capture --------------------------------------------------------- */
/* The site's whole job is lead generation. A coming-soon page that cannot take
   a lead is a coming-soon page that loses business, so the form ships here too
   and writes to the same Lead pipeline (source="coming_soon"). */
.cs-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 2.1rem);
  box-shadow: var(--shadow);
  text-align: left;
}

.cs-card-title {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 1.15rem;
  text-align: center;
}

/* Inputs were dressed for the dark field (#1c1c22 wells); the light card uses
   white wells with the charcoal line. */
.cs-page .field-input {
  background: #ffffff;
  border-color: var(--line-strong);
}
.cs-page .field-input:focus {
  border-color: var(--gold-ink);
}
.cs-page .req {
  color: var(--gold-ink);
}

.cs-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 520px) {
  .cs-form-grid { grid-template-columns: 1fr; }
}

.cs-card textarea.field-input { min-height: 96px; resize: vertical; }

/* --- Contact strip -------------------------------------------------------- */
.cs-contact {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  justify-content: center;
  font-size: 0.86rem;
  color: var(--ink-3);
}

.cs-contact a { color: var(--ink-2); text-decoration: none; }
.cs-contact a:hover { color: var(--gold-ink); }

.cs-founder {
  margin-top: 1.5rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.cs-founder strong { color: var(--ink-2); font-weight: 700; }

/* Honeypot: must stay reachable to bots and invisible to humans. Not
   display:none, which some bots specifically skip. */
.cs-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  .cs-shell { animation: cs-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
  @keyframes cs-rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
  }
}
