/* nascnt.life · house styles
   ─────────────────────────────────────────────────────────────────────────
   One file: fonts, palette, all component styles. No framework, no build
   step. Edit by hand.

   The design-workshop picker has been retired — the look below is baked in.
   To re-theme, edit the :root block. Token roles:

     --hero-image    url() of the homepage hero photograph
     --font-title    wordmark + page titles
     --font-heading  section / venture / sidebar headings
     --font-body     paragraphs, taglines, blockquotes
     --font-meta     small uppercased mono captions / labels
     --font-ui       form controls + the rare sans bit of chrome
*/

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,300;1,6..72,400&family=IBM+Plex+Serif:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Manrope:wght@300;400;500;600&family=JetBrains+Mono:wght@300;400;500&display=swap');

/* ─────────── Fonts (locked) ─────────── */
:root {
  --font-title:   'Newsreader', 'Iowan Old Style', Georgia, serif;
  --font-heading: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body:    'IBM Plex Serif', Charter, Georgia, serif;
  --font-meta:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --font-ui:      -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;

  --hero-image:   url('assets/header-bg.jpg');
}

/* ─────────── Palette · Spring (canonical for nascnt.life) ─────────── */
/* Near-whites all sit in the same green hue family (~142) as --fog so the
   nav band, input fields, and hero text harmonize rather than clash. */
:root {
  --fog:      #FAFFFA;                  /* page bg */
  --paper:    #EFF4EF;   /* nav / footer bg — slightly darker tint oklch(0.962 0.012 142); */
  --rice:     oklch(0.978 0.006 142);   /* input fields — between fog and paper */
  --ink:      oklch(0.26  0.030 145);   /* deep forest */
  --ink-soft: oklch(0.42  0.028 142);
  --mist:     oklch(0.62  0.030 130);
  --hairline: oklch(0.26  0.030 145 / 0.16);

  --moss:     oklch(0.50  0.090 140);   /* live/pilot status */
  --ember:    #cccecc;    /* in-development status; pullquote rule; oklch(0.62  0.110 78) */

  --hero-text: oklch(0.988 0.008 142);
  --hero-veil: linear-gradient(180deg,
    oklch(0.22 0.030 145 / 0.40) 0%,
    oklch(0.22 0.030 145 / 0.10) 35%,
    oklch(0.22 0.030 145 / 0.50) 100%);
}

/* ─────────── Base ─────────── */
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--fog);
  color: var(--ink);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
}
body { overflow-x: hidden; }    /* guards the hero's 100vw breakout against scrollbar rounding */
a { color: var(--link, inherit); text-decoration: none; }
img { display: block; max-width: 100%; }

/* Pages cap at 1440px to preserve composition. Above that, fog gutters. */
.page { max-width: 1440px; margin: 0 auto; min-height: 100vh; display: flex; flex-direction: column; }

/* ─────────── Status dots ─────────── */
.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; vertical-align: middle; }
.dot.pilot  { background: var(--moss); }
.dot.dev    { background: var(--ember); }
.dot.future { background: transparent; box-shadow: inset 0 0 0 1.2px var(--mist); }

/* ─────────── Hairline rule with mono caption ─────────── */
.tick-rule { display: flex; align-items: center; gap: 10px; color: var(--mist);
  font-family: var(--font-meta); font-size: 11px; line-height: 1;
  letter-spacing: 0.08em; text-transform: uppercase; }
.tick-rule::before, .tick-rule::after {
  content: ''; flex: 1 1 auto; height: 1px; background: var(--hairline);
}

/* ═══════════════════════ HOMEPAGE ═══════════════════════ */

.hero {
  /* Break out of the .page 1440px cap — the photograph is a full-bleed
     visual, not text composition, so it spans the viewport regardless of
     the parent's max-width. */
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  height: clamp(560px, 64vh, 760px);
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: 50% 35%;
}
.hero-veil {
  position: absolute; inset: 0;
  background: var(--hero-veil);
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  padding: clamp(36px, 5vw, 64px) clamp(36px, 7vw, 88px);
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--hero-text);
  z-index: 1;
}
.hero-top {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px;
  font-family: var(--font-meta); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.88;
}
.wordmark {
  font-family: var(--font-title);
  font-size: clamp(72px, 10vw, 132px);
  line-height: 0.9; font-weight: 300; letter-spacing: -0.025em;
  margin: 0;
}
.wordmark-dot { opacity: 0.55; }
.tagline {
  font-family: var(--font-body); font-style: italic;
  font-size: clamp(20px, 2.1vw, 27px); line-height: 1.32;
  max-width: 640px; margin: 0px 0 0; font-weight: 300;
}

/* ─── Ventures grid ─── */
.ventures {
  padding: clamp(48px, 5vw, 72px) clamp(36px, 7vw, 88px) clamp(48px, 5vw, 64px);
  display: grid; grid-template-columns: 1fr 2.2fr; gap: 64px;
  flex: 1 1 auto;
}
.label-mono {
  font-family: var(--font-meta); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist);
}
.blurb-italic {
  font-family: var(--font-body); font-style: italic;
  font-size: 16px; line-height: 1.55;
  color: var(--ink-soft); margin: 14px 0 0;
}
.venture-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 36px 56px;
}
.venture { padding-top: 14px; border-top: 1px solid var(--hairline); }
.venture-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 10px;
}
.venture-name {
  font-family: var(--font-heading); font-size: 28px; font-weight: 400;
  letter-spacing: -0.01em; margin: 0;
}
.venture-working {
  font-family: var(--font-meta); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mist); margin-left: 8px;
  vertical-align: middle;
}
.venture-status {
  font-family: var(--font-meta); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.venture-desc {
  font-family: var(--font-body); font-size: 16.5px; line-height: 1.5;
  color: var(--ink-soft); margin: 0;
}

/* ─── Suite band (Ocean, OR1) — a heavier sibling of .venture, full-width.
   Lives inside .venture-stack alongside the .venture-grid pairs. The thick
   top rule signals "this is structurally above the cards under it." ─── */
.venture-stack { display: flex; flex-direction: column; gap: 36px; }
.suite { padding-top: 18px; border-top: 2px solid var(--ink); }
.suite-top {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 12px;
}
.suite-name {
  font-family: var(--font-heading); font-weight: 400;
  font-size: clamp(30px, 2.6vw, 38px);
  letter-spacing: -0.015em; margin: 0;
}
.suite-desc {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.35vw, 19px); line-height: 1.5;
  color: var(--ink-soft); margin: 0; max-width: 64ch;
}
.suite-adjacent { border-top-color: var(--ink-soft); }
.tick-rule-pad { padding: 4px 0; }

/* ─── Footer ─── */
.footer {
  padding: 28px clamp(36px, 7vw, 88px) 32px;
  border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: var(--font-meta); font-size: 11.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist);
}
.footer-links { display: inline-flex; gap: 28px; flex-wrap: wrap; }
.footer-link { color: var(--link, var(--ink-soft)); }
.footer-link:hover { color: var(--ink); }

/* ═══════════════════════ INTERIOR / ALMANAC ═══════════════════════ */

/* Nav bar is full-bleed — escapes the .page 1440px cap so the band paints
   the whole viewport width, while .nav-inner keeps the logo/links/date
   aligned to the page-content rails (same 1440px cap as .page). Mirrors
   the .hero full-bleed pattern. */
.nav {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px clamp(28px, 5vw, 64px);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 32px;
}
.nav-mark {
  font-family: var(--font-title); font-weight: 400; font-size: 24px;
  letter-spacing: -0.015em; margin: 0;
}
.nav-mark-dot { color: var(--mist); }
.nav-center {
  display: flex; gap: 28px; justify-content: center;
  font-family: var(--font-meta); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
}
.nav-center a:hover { color: var(--ink); }
.nav-center .is-active { color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.nav-right {
  justify-self: end;
  font-family: var(--font-meta); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
  display: inline-flex; gap: 18px; align-items: center;
}
.nav-right .muted { color: var(--mist); }

.masthead {
  padding: 64px clamp(36px, 7vw, 88px) 48px;
  display: grid; grid-template-columns: 0.9fr 1.4fr;
  column-gap: 64px; align-items: end;
  border-bottom: 2px solid var(--ink);
}
.masthead-meta {
  font-family: var(--font-meta); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist);
  padding-bottom: 18px;
}
.page-title {
  font-family: var(--font-title); font-weight: 400;
  font-size: clamp(56px, 7vw, 84px); line-height: 0.96;
  letter-spacing: -0.025em; margin: 0;
}
.page-lead {
  font-family: var(--font-body); font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.4;
  color: var(--ink-soft); margin-top: 10px;
}

.body {
  padding: 56px clamp(36px, 7vw, 88px);
  display: grid; grid-template-columns: 0.9fr 1.4fr; column-gap: 64px;
  flex: 1 1 auto;
}
.side { display: flex; flex-direction: column; gap: 28px; }
.side-section { display: flex; flex-direction: column; gap: 8px; }
.side-label {
  font-family: var(--font-meta); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist);
}
.side-value {
  font-family: var(--font-heading); font-size: 16.5px; line-height: 1.5;
  color: var(--ink);
}
.side-value-soft { color: var(--ink-soft); font-size: 14.5px; }
.side-value a { border-bottom: 1px solid var(--ink); }
.side-value a:hover { color: var(--ink); }

.main { display: flex; flex-direction: column; gap: 28px; }
.main p { font-family: var(--font-body); margin: 0; }
.main-lead {
  font-size: clamp(20px, 1.65vw, 22px); line-height: 1.45;
  color: var(--ink);
}
.main-para {
  font-size: 19px; line-height: 1.55; color: var(--ink-soft);
}
.main em.accent { color: var(--ink); font-style: italic; }

.pullquote {
  margin: 8px 0;
  padding: 20px 0 20px 28px;
  border-left: 2px solid var(--ember);
  font-family: var(--font-body); font-style: italic;
  font-size: 22px; line-height: 1.4; color: var(--ink);
}

/* ─── "How we operate" structured block — interior almanac.
   Quiet treatment: top hairline + small mono label + serif body bullets.
   Distinct from .pullquote (which is for voice) and from .venture-shot
   (which is for screenshots). ─── */
.ops-block {
  margin: 4px 0;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.ops-label {
  font-family: var(--font-meta); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist);
  margin-bottom: 14px;
}
.ops-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.ops-list li {
  font-family: var(--font-body); font-size: 17px; line-height: 1.5;
  color: var(--ink-soft);
  padding-left: 18px; position: relative;
}
.ops-list li::before {
  content: ''; position: absolute;
  left: 0; top: 0.7em;
  width: 8px; height: 1px; background: var(--ink-soft);
}
.ops-list strong {
  color: var(--ink); font-weight: 500;
}

/* ─── Venture detail figures + CTA ─── */
.venture-shot { margin: 4px 0; display: flex; flex-direction: column; gap: 10px; }
.venture-shot img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--hairline);
  border-radius: 3px;
  background: var(--rice);
}
.venture-shot figcaption {
  font-family: var(--font-meta); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist);
}

.cta-row {
  margin-top: 12px; padding-top: 28px;
  border-top: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; gap: 14px 18px; align-items: center;
}
.cta-primary, .cta-secondary {
  font-family: var(--font-meta); font-size: 11.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 4px;
  white-space: nowrap;
  display: inline-block;
}
.cta-primary {
  background: var(--ink); color: var(--rice);
  border: 1px solid var(--ink);
}
.cta-primary:hover { background: oklch(0.34 0.030 145); border-color: oklch(0.34 0.030 145); }
.cta-primary:disabled, .cta-primary[disabled] {
  background: transparent; color: var(--mist);
  border-color: var(--hairline);
  cursor: not-allowed;
}
.cta-primary:disabled:hover, .cta-primary[disabled]:hover {
  background: transparent; border-color: var(--hairline);
}
.cta-secondary {
  background: transparent; color: var(--ink-soft);
  border: 1px solid var(--hairline);
}
.cta-secondary:hover { color: var(--ink); border-color: var(--ink); }

/* ─── Contact / inquiry form — interior almanac.
   Quiet, in keeping with the rest of the interior pages: hairline borders,
   mono labels, serif body. Focus state uses the --ember accent.
   Field pairs collapse to single column at the existing 880px breakpoint. ─── */
.inquiry-form {
  display: flex; flex-direction: column;
  gap: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.inquiry-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.inquiry-row { display: flex; flex-direction: column; gap: 6px; }
.inquiry-label {
  font-family: var(--font-meta); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
}
.inquiry-input {
  width: 100%;
  padding: 10px 12px;
  background: var(--rice);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  font-family: var(--font-body); font-size: 16px; line-height: 1.4;
  color: var(--ink);
}
.inquiry-input::placeholder { color: var(--mist); font-style: italic; }
.inquiry-input:focus {
  outline: 2px solid var(--ember); outline-offset: -2px;
  border-color: transparent;
}
.inquiry-textarea { resize: vertical; min-height: 140px; font-family: var(--font-body); }
.inquiry-help {
  font-family: var(--font-meta); font-size: 10.5px;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--mist);
  margin-top: 2px;
}
.inquiry-cta {
  margin-top: 6px; padding-top: 22px;
  border-top: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center;
}
.inquiry-fineprint {
  font-family: var(--font-body); font-style: italic;
  font-size: 13.5px; line-height: 1.4; color: var(--ink-soft);
  flex: 1 1 280px;
}
@media (max-width: 880px) {
  .inquiry-pair { grid-template-columns: 1fr; }
}

/* ─── "Pilot details →" affordance on a venture card ─── */
.venture-more {
  display: inline-block; margin-top: 12px;
  font-family: var(--font-meta); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 1px;
}
.venture-more:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* Narrow viewports — fold two-col layouts to one */
@media (max-width: 880px) {
  .ventures, .body { grid-template-columns: 1fr; }
  .venture-grid { grid-template-columns: 1fr; }
  .masthead { grid-template-columns: 1fr; }
  .nav-inner { grid-template-columns: 1fr; row-gap: 14px; }
  .nav-center, .nav-right { justify-self: start; flex-wrap: wrap; }
}

