/* ------------------------------------------------------------------
   Vora LLC — institutional site
   ------------------------------------------------------------------ */

:root {
  --paper:        #F5F4F0;
  --paper-alt:    #EFEDE7;
  --ink:          #10161A;
  --ink-soft:     #3F474D;
  --ink-muted:    #6B7280;
  --rule:         #DCD9D1;
  --rule-soft:    #E4E1DA;
  --rule-strong:  #C9C5BB;

  --dark:         #10161A;
  --dark-rule:    #2A3238;
  --dark-body:    #A9B1B8;
  --dark-value:   #D6DADD;

  --green:        #14483C;
  --mint:         #7FBFA9;

  --shell:        1180px;
  --gutter:       40px;

  --sans: 'Schibsted Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* keep anchored sections clear of the sticky header */
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}
.panel-dark :focus-visible { outline-color: var(--mint); }

/* ------------------------------------------------------------------
   Layout primitives
   ------------------------------------------------------------------ */

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.panel-dark {
  background: var(--dark);
  color: var(--paper);
}

.panel-alt {
  background: var(--paper-alt);
  border-top: 1px solid var(--rule);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}

.split-even { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }

/* ------------------------------------------------------------------
   Typography
   ------------------------------------------------------------------ */

.eyebrow {
  margin: 0 0 20px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}

.eyebrow-mint { color: var(--mint); }

.eyebrow-dot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.eyebrow-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}

.section-title {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
  text-wrap: balance;
}

.section-title-tight { margin-bottom: 56px; max-width: 24ch; }
.section-title-sm { font-size: clamp(30px, 3.4vw, 40px); line-height: 1.12; margin-bottom: 18px; }
.section-title-lg { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.08; margin-bottom: 22px; }

.section-lede {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 40ch;
  text-wrap: pretty;
}

.section-lede-dark {
  font-size: 17px;
  line-height: 1.65;
  color: var(--dark-body);
  max-width: 44ch;
}

.prose {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.prose p { margin: 0; text-wrap: pretty; }

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

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn-sm { padding: 10px 18px; font-size: 14px; }

.btn-solid {
  background: var(--ink);
  color: var(--paper);
}
.btn-solid:hover { background: var(--green); }

.btn-outline {
  border: 1px solid var(--rule-strong);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--ink); }

/* ------------------------------------------------------------------
   Header
   ------------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 244, 240, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.wordmark-name {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wordmark-suffix {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}

.site-nav > a { color: var(--ink-soft); transition: color 0.18s ease; }
.site-nav > a:hover { color: var(--green); }
.site-nav > a.btn { color: var(--paper); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child { transform: translateY(-3.25px) rotate(-45deg); }

/* ------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------ */

.hero {
  padding-top: 96px;
  padding-bottom: 80px;
}

.hero-title {
  margin: 0;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
  max-width: 16ch;
  text-wrap: balance;
}

.hero-lede {
  margin: 32px 0 0;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

/* ------------------------------------------------------------------
   Facts strip
   ------------------------------------------------------------------ */

.facts {
  background: var(--paper-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.fact {
  padding: 34px 28px;
  border-right: 1px solid var(--rule);
}

.fact:first-child { padding-left: 0; }
.fact:last-child { padding-right: 0; border-right: 0; }

.fact-label {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.fact-value {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

/* ------------------------------------------------------------------
   Capabilities (dark grid)
   ------------------------------------------------------------------ */

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--dark-rule);
}

.capability {
  background: var(--dark);
  padding: 40px 44px;
}

.capability:nth-child(odd) { padding-left: 0; }
.capability:nth-child(even) { padding-right: 0; }
.capability:nth-child(n + 3) { padding-top: 44px; padding-bottom: 40px; }

.capability-index {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mint);
}

.capability-title {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.capability-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-body);
  text-wrap: pretty;
}

/* ------------------------------------------------------------------
   Process steps
   ------------------------------------------------------------------ */

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--rule);
}

.step {
  display: grid;
  grid-template-columns: 80px minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--rule);
}

.step-index {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  color: var(--green);
  padding-top: 4px;
}

.step-title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.step-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* ------------------------------------------------------------------
   Company record card
   ------------------------------------------------------------------ */

.record {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 12px 32px;
}

.record-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-soft);
}

.record-row:last-child { border-bottom: 0; }

.record-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 3px;
}

.record-value {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.record-value-mono { font-family: var(--mono); }

/* ------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------ */

.faq { border-top: 1px solid var(--rule); }

.faq-item { border-bottom: 1px solid var(--rule); }

.faq-heading { margin: 0; font-size: inherit; font-weight: inherit; }

.faq-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  color: var(--ink);
  transition: opacity 0.18s ease;
}

.faq-trigger:hover { opacity: 0.7; }

.faq-question {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.faq-sign {
  font-family: var(--mono);
  font-size: 20px;
  line-height: 1;
  color: var(--green);
  flex: none;
}

.faq-sign::before { content: "+"; }
.faq-trigger[aria-expanded="true"] .faq-sign::before { content: "\2212"; }

.faq-panel[hidden] { display: none; }

.faq-answer {
  margin: 0;
  padding: 0 0 30px;
  max-width: 78ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* ------------------------------------------------------------------
   Contact
   ------------------------------------------------------------------ */

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-row {
  border-top: 1px solid var(--dark-rule);
  padding: 26px 0;
}

.contact-row-last { border-bottom: 1px solid var(--dark-rule); }

.contact-label {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
}

.contact-email {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--paper);
  transition: color 0.18s ease;
  word-break: break-word;
}

.contact-email:hover { color: var(--mint); }

.contact-value {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--dark-value);
}

/* ------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------ */

.site-footer {
  background: var(--dark);
  color: var(--ink-muted);
  border-top: 1px solid var(--dark-rule);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 36px;
  padding-bottom: 36px;
  font-size: 13px;
}

.footer-mono {
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------ */

@media (max-width: 1080px) {
  .split { gap: 56px; }
  .section { padding-top: 88px; padding-bottom: 88px; }
}

@media (max-width: 900px) {
  :root { --gutter: 28px; }

  .split,
  .split-even {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .section-lede,
  .section-lede-dark { max-width: 60ch; }

  .capability-grid { grid-template-columns: minmax(0, 1fr); }
  .capability,
  .capability:nth-child(odd),
  .capability:nth-child(even),
  .capability:nth-child(n + 3) {
    padding: 36px 0;
  }

  .step {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 16px 32px;
  }
  .step-body { grid-column: 2; }

  .record { padding: 8px 24px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 8px var(--gutter) 24px;
    font-size: 16px;
  }

  .site-nav.is-open { display: flex; }

  .site-nav > a {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule-soft);
  }

  .site-nav > a.btn {
    margin-top: 18px;
    border-bottom: 0;
    text-align: center;
    padding: 14px 18px;
    font-size: 15px;
  }

  .header-inner { position: relative; }

  .hero { padding-top: 64px; padding-bottom: 56px; }
  .section { padding-top: 68px; padding-bottom: 68px; }

  .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact { padding: 26px 24px; border-right: 1px solid var(--rule); }
  .fact:nth-child(odd) { padding-left: 0; }
  .fact:nth-child(even) { padding-right: 0; border-right: 0; }
  .fact:nth-child(n + 3) { border-top: 1px solid var(--rule); }

  .section-title-tight { margin-bottom: 40px; }

  .record-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .faq-trigger { padding: 22px 0; gap: 20px; }
  .faq-question { font-size: 17px; }
}

@media (max-width: 480px) {
  :root { --gutter: 20px; }

  .step {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
  .step-body { grid-column: 1; }
  .step-index { padding-top: 0; }

  .facts-grid { grid-template-columns: minmax(0, 1fr); }
  .fact,
  .fact:nth-child(odd),
  .fact:nth-child(even) {
    padding: 22px 0;
    border-right: 0;
    border-top: 1px solid var(--rule);
  }
  .fact:first-child { border-top: 0; }

  .hero-actions .btn { flex: 1 1 100%; text-align: center; }

  .contact-email { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
