/* Marketing V2 — emblem-forward, ornament-aware, attention-grabbing.
   Builds ON marketing.css but adds the new visual language. */

@import url('./colors_and_type.css');

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--of-bg-sunk);
  color: var(--of-fg);
  font-family: var(--of-font-sans);
  font-size: var(--of-size-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--of-amber); color: var(--of-ink-900); }

/* ============================================================================
   LAYOUT
   ============================================================================ */
.mv-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
}
.mv-container-tight {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ============================================================================
   THE WORDMARK — confident, architectural, takes up space
   ============================================================================ */
.mv-wordmark {
  font-family: var(--of-font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--of-fg);
  display: inline-flex;
  flex-direction: column;
  line-height: 0.88;
}
.mv-wordmark .top {
  font-size: 1em;
  letter-spacing: 0.04em;
}
.mv-wordmark .bot {
  font-size: 0.42em;
  letter-spacing: 0.32em;
  margin-top: 0.12em;
  color: var(--of-fg-muted);
}

/* ============================================================================
   EYEBROW — refined; mono caps with amber tick
   ============================================================================ */
.mv-eyebrow {
  font-family: var(--of-font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--of-amber);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  width: fit-content;
}
.mv-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--of-amber);
}
.mv-eyebrow.muted {
  color: var(--of-fg-muted);
}
.mv-eyebrow.muted::before {
  background: var(--of-fg-muted);
}

/* ============================================================================
   DISPLAY TYPE — large, confident
   ============================================================================ */
.mv-mega {
  /* Tabloid-scale headline. Use sparingly. */
  font-family: var(--of-font-sans);
  font-size: clamp(64px, 11vw, 168px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 0.92;
  color: var(--of-fg);
}
.mv-h1 {
  font-family: var(--of-font-sans);
  font-size: clamp(56px, 7.5vw, 112px);
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 0.98;
  color: var(--of-fg);
  text-wrap: balance;
}
.mv-h2 {
  font-family: var(--of-font-sans);
  font-size: clamp(40px, 4.6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.016em;
  line-height: 1.0;
  color: var(--of-fg);
  text-wrap: balance;
}
.mv-h3 {
  font-family: var(--of-font-sans);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.008em;
  line-height: 1.15;
  color: var(--of-fg);
}
.mv-lead {
  font-family: var(--of-font-sans);
  font-size: 19px;
  line-height: 1.55;
  color: var(--of-fg-muted);
  max-width: 580px;
  text-wrap: pretty;
}
.mv-body {
  font-family: var(--of-font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--of-fg-muted);
  text-wrap: pretty;
}

/* ============================================================================
   BUTTONS — bigger, more architectural
   ============================================================================ */
.mv-btn {
  display: inline-flex; align-items: center; gap: 14px;
  height: 48px; padding: 0 24px;
  font-family: var(--of-font-mono);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: var(--of-radius-xs);
  border: 1px solid transparent;
  transition: all var(--of-dur-base) var(--of-ease-deterministic);
  white-space: nowrap;
}
.mv-btn-primary {
  background: var(--of-amber);
  color: var(--of-ink-900);
  border-color: var(--of-amber-deep);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), inset 0 -1px 0 rgba(0,0,0,0.18);
}
.mv-btn-primary:hover {
  background: var(--of-amber-bright);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), inset 0 -1px 0 rgba(0,0,0,0.18), 0 0 48px -8px rgba(229,177,68,0.6);
  transform: translateY(-1px);
}
.mv-btn-secondary {
  background: transparent;
  color: var(--of-fg);
  border: 1px solid var(--of-border-strong);
}
.mv-btn-secondary:hover {
  border-color: var(--of-amber);
  color: var(--of-amber);
}
.mv-btn-link {
  height: 32px;
  padding: 0;
  color: var(--of-amber);
  font-family: var(--of-font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--of-amber);
  border-radius: 0;
  padding-bottom: 4px;
}

.mv-arrow {
  font-family: var(--of-font-mono);
  font-size: 14px;
  transition: transform var(--of-dur-base);
}
.mv-btn:hover .mv-arrow { transform: translateX(4px); }

/* ============================================================================
   MISSION EMBLEM — circular seal with perimeter text
   ============================================================================ */
.mv-emblem {
  position: relative;
  display: inline-block;
  aspect-ratio: 1;
}

/* ============================================================================
   CHEVRON MOTIF — large background ornament
   ============================================================================ */
.mv-chevron-bg {
  position: absolute;
  pointer-events: none;
  color: var(--of-amber);
  opacity: 0.06;
}

/* ============================================================================
   AMBER WASH BLOCKS — large color blocks as graphic statement
   ============================================================================ */
.mv-amber-wash {
  background: var(--of-amber);
  color: var(--of-ink-900);
  position: relative;
  overflow: hidden;
}
.mv-amber-wash::after {
  /* Pinstripe ornament across amber surfaces, subtle */
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(14,13,11,0.04) 1px, transparent 1px);
  background-size: 8px 100%;
  pointer-events: none;
}

/* ============================================================================
   ENGRAVED DIVIDER — the "stamped on metal" feel
   ============================================================================ */
.mv-engrave {
  border-top: 1px solid var(--of-border);
  box-shadow: 0 1px 0 rgba(255,255,255,0.02);
}

/* ============================================================================
   VERTICAL MONO LABEL — runs along the side of a section
   ============================================================================ */
.mv-vlabel {
  position: absolute;
  font-family: var(--of-font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--of-fg-dim);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ============================================================================
   STAMP — large background numerals used as ornament
   ============================================================================ */
.mv-stamp-num {
  position: absolute;
  font-family: var(--of-font-display);
  font-weight: 700;
  font-size: clamp(280px, 36vw, 540px);
  letter-spacing: -0.04em;
  line-height: 0.8;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  user-select: none;
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */
@keyframes mv-orbit-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes mv-spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes mv-pulse-soft {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
@keyframes mv-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
