/* ═══════════════════════════════════════════════════════════════════════════
   Ricardiam Landing page — Varela Round marketing skin.

   Scoped to `body.landing-page` only (Phase 2.A, ported from the frozen
   wireframe artifact). Every other Tier 1/2 surface keeps app.css's serif
   ledger skin per Jonny's 2026-07-11 decision — do not let this stylesheet
   apply anywhere else.
   ═══════════════════════════════════════════════════════════════════════════ */

@font-face {
  font-family: "Varela Round";
  src: url("/static/fonts/VarelaRound-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body.landing-page {
  margin: 0;
  min-height: 100vh;
  font-family: "Varela Round", var(--font-body);
}

.landing-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 48px 24px 40px;
  background-image: url("/static/images/WW_land_001_1920x1200.webp");
  background-size: cover;
  background-position: center;
}
@media (max-width: 600px) {
  .landing-hero { background-image: url("/static/images/WW_land_001_1280x2632.webp"); }
}

.landing-wordmark-wrap { margin-top: 34px; }
.landing-wordmark {
  font-family: "Varela Round", var(--font-body);
  font-weight: 700;
  font-size: clamp(40px, 8vw, 64px);
  color: #2c4b57;
  letter-spacing: 0.01em;
  margin: 0;
  text-shadow: 0 10px 26px rgba(44, 75, 87, 0.18);
}
.landing-subtitle {
  margin: 6px 0 0;
  font-family: "Varela Round", var(--font-body);
  font-size: clamp(13px, 2.2vw, 16px);
  color: #4a6b76;
}
.landing-subtitle a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(44, 75, 87, 0.4);
  text-underline-offset: 3px;
}
.landing-subtitle a:hover { text-decoration-color: currentColor; }

.landing-quote {
  width: 100%;
  max-width: 460px;
  margin: 28px auto 26px;
  font-family: "Varela Round", var(--font-body);
  color: #33505b;
}
.landing-quote-text {
  font-size: clamp(13.5px, 2vw, 16px);
  line-height: 1.5;
  margin: 0 0 6px;
}
.landing-quote-cite {
  font-style: normal;
  font-size: 12px;
  color: #b98a4e;
  letter-spacing: 0.03em;
}

.landing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.landing-btn {
  font-family: "Varela Round", var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 8px;
  padding: 11px 22px;
  background: #2c4b57;
  color: #eaf5fb;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  display: inline-block;
}
.landing-btn:hover { background: #23404b; text-decoration: none; }
.landing-btn:focus-visible { outline: 2px solid var(--wk-accent); outline-offset: 2px; }
