:root {
  --navy: #12263f;
  --gold: #d3a64a;
  --parchment: #f3ebdd;
  --clay: #ad5e45;
  --sage: #687765;
  --soft-light: #fbf8f0;
  --ink-soft: #42536a;
  --rule: #d8cfbe;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--soft-light);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--soft-light);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--navy);
  color: white;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 248, 240, .96);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(calc(100% - 4rem), 1320px);
  min-height: 84px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand-link { display: block; width: 208px; }
.brand-link img { width: 100%; }
.primary-nav { display: flex; align-items: center; gap: clamp(1.5rem, 3.2vw, 3.3rem); }
.primary-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: .83rem;
  font-weight: 650;
  text-decoration: none;
}
.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -.55rem;
  left: 0;
  height: 1px;
  background: var(--clay);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav a[aria-current="page"] { color: var(--navy); }
.menu-button {
  display: none;
  border: 0;
  background: none;
  color: var(--navy);
  font: 700 .85rem/1 var(--sans);
}
.scroll-rule { height: 2px; background: var(--rule); }
.scroll-rule span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.04;
}
h1 { font-size: clamp(3.6rem, 7.2vw, 7.5rem); }
h2 { font-size: clamp(2.6rem, 5.2vw, 5.25rem); }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }
.eyebrow {
  margin-bottom: 1.5rem;
  color: var(--clay);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero-lede, .large-copy { color: var(--ink-soft); font-size: clamp(1.1rem, 1.6vw, 1.4rem); line-height: 1.6; }
.hero-lede { max-width: 700px; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 2.2rem; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.35rem;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: white;
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-3px); background: #1c3759; }
.button-light { border-color: var(--parchment); background: var(--parchment); color: var(--navy); }
.button-light:hover { background: white; }
.text-link {
  display: inline-block;
  padding-bottom: .18rem;
  border-bottom: 1px solid var(--gold);
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease;
}
.text-link:hover { border-color: var(--clay); color: var(--clay); }
.light-link { color: var(--parchment); }

.reveal { opacity: 1; transform: none; }
html[data-enhanced="true"] .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
html[data-enhanced="true"] .reveal.is-visible { opacity: 1; transform: translateY(0); }

html[data-capture="true"] .site-header { position: static; }
html[data-capture="true"] .reveal { opacity: 1; transform: none; }
html[data-capture="true"] .folio-stage { transform: none !important; }
html[data-capture="true"] .folio-mark { animation: none; }

.home-hero {
  position: relative;
  width: min(calc(100% - 4rem), 1320px);
  min-height: 580px;
  margin: auto;
  padding: 1.25rem 0 2.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, .92fr);
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: center;
}
.home-hero-copy { position: relative; z-index: 2; padding-left: clamp(3rem, 5.5vw, 5.5rem); }
.home-hero h1 { max-width: 730px; margin-bottom: 1.6rem; font-size: clamp(3.6rem, 5.5vw, 5.4rem); }
.margin-note {
  position: absolute;
  top: 50%;
  left: -3.6rem;
  color: var(--sage);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
}
.folio-stage {
  --parallax: 0px;
  position: relative;
  min-height: 520px;
  transform: translateY(var(--parallax));
  transition: transform .12s linear;
}
.folio-paper {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border: 1px solid var(--rule);
  box-shadow: 28px 32px 0 rgba(18, 38, 63, .07), -12px 18px 0 rgba(173, 94, 69, .08);
}
.folio-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(48%, 330px);
  max-height: 480px;
  transform: translate(-50%, -50%);
  animation: breathe 7s ease-in-out infinite;
}
.folio-index {
  position: absolute;
  right: -1.5rem;
  bottom: 4rem;
  padding: .3rem 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  color: var(--clay);
  font: 700 .72rem/1.5 var(--sans);
  letter-spacing: .1em;
}
@keyframes breathe { 0%,100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -52%) scale(1.012); } }

.section-rule { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.archive-intro {
  width: min(calc(100% - 4rem), 1320px);
  margin: auto;
  padding: clamp(2.75rem, 5vw, 5rem) 0 clamp(4.5rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  column-gap: 8vw;
}
.archive-heading h2 { max-width: 750px; }
.archive-summary { max-width: 480px; align-self: end; color: var(--ink-soft); font-size: 1.08rem; }
.archive-columns { grid-column: 1 / -1; margin-top: 3.5rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--rule); }
.archive-item { padding: 2.2rem 2rem 1rem 0; border-right: 1px solid var(--rule); }
.archive-item + .archive-item { padding-left: 2rem; }
.archive-item:last-child { border-right: 0; }
.archive-item span { color: var(--clay); font-size: .7rem; font-weight: 800; }
.archive-item h3 { margin: 1.4rem 0 .8rem; }
.archive-item p { color: var(--ink-soft); }

.home-product {
  margin-top: clamp(5rem, 9vw, 9rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr);
  background: var(--navy);
  color: var(--parchment);
}
.product-image-wrap { min-height: 680px; padding: clamp(3rem, 6vw, 7rem); display: grid; place-items: center; background: var(--parchment); }
.product-image-wrap img { width: 100%; border: 1px solid var(--rule); box-shadow: 18px 20px 0 rgba(18,38,63,.14); }
.product-intro { align-self: center; padding: clamp(4rem, 7vw, 8rem); }
.product-intro .eyebrow { color: var(--gold); }
.product-intro .large-copy, .product-intro p { color: #d7d7d0; }
.product-intro h2 { margin-bottom: 2rem; }

.statement-section {
  min-height: 650px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  background: var(--navy);
  color: var(--parchment);
}
.statement-mark { padding: clamp(4rem, 7vw, 8rem); display: grid; place-items: center; }
.statement-mark img { width: min(100%, 360px); max-height: 440px; }
.statement-copy { padding: clamp(4rem, 8vw, 9rem) clamp(4rem, 7vw, 8rem); border-left: 1px solid rgba(243,235,221,.35); }
.statement-copy .eyebrow { color: var(--parchment); opacity: .8; }
.statement-copy h2 { max-width: 900px; }

.page-hero {
  width: min(calc(100% - 4rem), 1320px);
  margin: auto;
  padding: clamp(5rem, 9vw, 9rem) 0 clamp(4rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 8vw;
  align-items: end;
}
.page-hero h1 { max-width: 980px; margin-bottom: 2rem; }
.page-hero-aside { max-width: 340px; padding-left: 1.5rem; border-left: 2px solid var(--gold); color: var(--ink-soft); }

.product-feature {
  width: min(calc(100% - 4rem), 1320px);
  margin: auto;
  padding: clamp(6rem, 10vw, 10rem) 0;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 7vw;
  align-items: center;
}
.product-identity { display: flex; align-items: center; gap: 1rem; margin-bottom: 3rem; color: var(--clay); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.product-identity img { width: 54px; height: 54px; }
.product-feature-copy h2 { margin-bottom: 1.5rem; }
.product-feature-copy p:not(.large-copy) { color: var(--ink-soft); }
.product-feature-copy .button { margin-top: 1rem; }
.product-screen { margin: 0; }
.product-screen img { width: 100%; border: 1px solid var(--rule); box-shadow: 24px 28px 0 var(--parchment); }
.product-screen figcaption { margin-top: 1.2rem; color: var(--sage); font-size: .78rem; letter-spacing: .05em; }

.portfolio-boundary {
  width: min(calc(100% - 4rem), 1320px);
  margin: auto;
  padding: clamp(5rem, 9vw, 9rem) 0;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
}
.boundary-list > div { display: grid; grid-template-columns: 150px 1fr; gap: 2rem; padding: 1.5rem 0; border-top: 1px solid var(--rule); }
.boundary-list span { color: var(--clay); font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.boundary-list p { margin: 0; color: var(--ink-soft); }
.quiet-cta { width: min(calc(100% - 4rem), 1080px); margin: auto; padding: clamp(6rem, 10vw, 11rem) 0; text-align: center; }
.quiet-cta h2 { margin-inline: auto; max-width: 1000px; }
.quiet-cta .button, .quiet-cta .text-link { margin-top: 1.5rem; }

.principles-grid {
  width: min(calc(100% - 4rem), 1320px);
  margin: auto;
  padding: clamp(5rem, 9vw, 9rem) 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--rule);
}
.principle-card { min-height: 390px; padding: clamp(2.5rem, 5vw, 5rem); border-top: 1px solid var(--rule); }
.principle-card:nth-child(odd) { border-right: 1px solid var(--rule); }
.principle-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4rem; color: var(--clay); font-size: .72rem; font-weight: 800; }
.principle-meta img { width: 64px; height: 64px; }
.principle-card h2 { font-size: clamp(2.2rem, 3.8vw, 4rem); }
.principle-card p { max-width: 560px; color: var(--ink-soft); }

.ordered-dialogue { background: var(--navy); color: var(--parchment); padding: clamp(5rem, 9vw, 10rem) max(2rem, calc((100vw - 1320px) / 2)); }
.dialogue-intro { display: grid; grid-template-columns: .4fr 1.6fr; gap: 4rem; margin-bottom: 5rem; }
.dialogue-intro .eyebrow { color: var(--gold); }
.dialogue-row { display: grid; grid-template-columns: 90px .8fr 1.2fr; gap: 3rem; padding: 2rem 0; border-top: 1px solid rgba(243,235,221,.3); align-items: start; }
.dialogue-row > span { color: var(--gold); font-size: .75rem; font-weight: 800; }
.dialogue-row h3 { margin: 0; }
.dialogue-row p { margin: 0; color: #cbd1d3; }
.boundary-banner { width: min(calc(100% - 4rem), 1050px); margin: clamp(5rem, 9vw, 10rem) auto; display: grid; grid-template-columns: 100px 1fr; gap: 3rem; align-items: center; }
.boundary-banner img { width: 88px; }
.boundary-banner p { margin: 0; color: var(--ink-soft); font: 400 clamp(1.35rem, 2.5vw, 2.15rem)/1.45 var(--serif); }

.founder-hero {
  width: min(calc(100% - 4rem), 1320px);
  margin: auto;
  padding: clamp(5rem, 8vw, 8rem) 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 7vw;
  align-items: center;
}
.founder-title h1 { margin-bottom: 2rem; }
.founder-portrait { margin: 0; }
.founder-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 25%; border: 1px solid var(--rule); }
.founder-portrait figcaption { padding: 1rem 0; border-bottom: 1px solid var(--rule); color: var(--clay); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.founder-story {
  width: min(calc(100% - 4rem), 1320px);
  margin: auto;
  padding: clamp(5rem, 9vw, 9rem) 0;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
}
.founder-story-copy { max-width: 720px; }
.founder-story-copy > p:not(.large-copy) { color: var(--ink-soft); }
.role-note { margin-top: 2rem; padding: 1.5rem; border-left: 2px solid var(--gold); background: var(--parchment); }
.founder-product { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; background: var(--parchment); }
.founder-product-image { padding: clamp(3rem, 7vw, 8rem); }
.founder-product-image img { width: 100%; border: 1px solid var(--rule); box-shadow: 18px 22px 0 rgba(18,38,63,.1); }
.founder-product-copy { padding: clamp(4rem, 8vw, 9rem); }
.founder-product-copy h2 { max-width: 700px; }
.founder-product-copy p { color: var(--ink-soft); }

.contact-layout {
  width: min(calc(100% - 4rem), 1320px);
  margin: auto;
  padding: clamp(6rem, 10vw, 10rem) 0;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
}
.contact-invitation { padding: clamp(2.5rem, 5vw, 5rem); background: var(--parchment); align-self: start; }
.contact-invitation h2 { font-size: clamp(2.5rem, 4.5vw, 4.5rem); }
.contact-invitation p { color: var(--ink-soft); }
.contact-invitation .button { margin-top: 1rem; }
.contact-lanes { border-top: 1px solid var(--rule); }
.contact-lanes article { display: grid; grid-template-columns: 54px .65fr 1.35fr; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid var(--rule); }
.contact-lanes span { color: var(--clay); font-size: .72rem; font-weight: 800; }
.contact-lanes h3, .contact-lanes p { margin: 0; }
.contact-lanes p { color: var(--ink-soft); }
.partnership-boundary { padding: clamp(5rem, 9vw, 9rem) max(2rem, calc((100vw - 1320px) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; background: var(--sage); color: var(--parchment); }
.partnership-boundary .eyebrow { color: var(--parchment); }
.partnership-boundary p { max-width: 580px; align-self: end; }
.via-logos-contact { width: min(calc(100% - 4rem), 1100px); margin: auto; padding: clamp(5rem, 9vw, 9rem) 0; display: grid; grid-template-columns: 80px 1fr auto; gap: 2rem; align-items: center; }
.via-logos-contact > img { width: 72px; }
.via-logos-contact h2 { margin-bottom: .5rem; font-size: clamp(2rem, 4vw, 3.5rem); }
.via-logos-contact p { margin: 0; color: var(--ink-soft); }

.site-footer { background: var(--navy); color: var(--parchment); }
.footer-inner { width: min(calc(100% - 4rem), 1320px); margin: auto; padding: 4.5rem 0 2rem; display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem 8vw; }
.footer-signature img { width: 230px; }
.footer-signature p { margin-top: 1rem; color: #cbd1d3; }
.footer-boundary { max-width: 650px; color: #cbd1d3; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-nav a { color: #d7d7d0; font-size: .78rem; text-decoration: none; }
.footer-nav a:hover { color: var(--gold); }
.copyright { margin: 0; color: #aab3b8; font-size: .75rem; text-align: right; }

@media (max-width: 980px) {
  .home-hero, .page-hero, .founder-hero { grid-template-columns: 1fr; }
  .home-hero { padding-top: 5rem; }
  .home-hero-copy { padding-left: 0; }
  .folio-stage { min-height: 520px; }
  .folio-paper { height: 520px; }
  .margin-note { display: none; }
  .archive-intro, .portfolio-boundary, .founder-story, .contact-layout { grid-template-columns: 1fr; }
  .archive-summary { align-self: auto; }
  .archive-columns { margin-top: 3rem; }
  .home-product, .founder-product { grid-template-columns: 1fr; }
  .statement-section { grid-template-columns: .7fr 1.3fr; }
  .product-feature { grid-template-columns: 1fr; }
  .product-feature-copy { max-width: 760px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card:nth-child(odd) { border-right: 0; }
  .dialogue-intro { grid-template-columns: 1fr; }
  .dialogue-row { grid-template-columns: 60px .8fr 1.2fr; gap: 1.5rem; }
  .partnership-boundary { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .header-inner { width: min(calc(100% - 2rem), 1320px); min-height: 72px; }
  .brand-link { width: 175px; }
  .menu-button { display: block; min-width: 48px; min-height: 48px; }
  .primary-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    padding: 1.5rem 1rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    background: var(--soft-light);
    border-bottom: 1px solid var(--rule);
  }
  .primary-nav[data-open="true"] { display: flex; }
  .primary-nav a { width: 100%; padding: .6rem 0; font-size: 1rem; }
  .home-hero, .archive-intro, .page-hero, .product-feature, .portfolio-boundary, .principles-grid, .founder-hero, .founder-story, .contact-layout, .boundary-banner, .via-logos-contact, .footer-inner {
    width: min(calc(100% - 2rem), 1320px);
  }
  h1 { font-size: clamp(3.15rem, 16vw, 5rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.7rem); }
  .home-hero { min-height: auto; gap: 3rem; padding: 4.5rem 0; }
  .folio-stage { min-height: 410px; }
  .folio-paper { height: 410px; box-shadow: 10px 14px 0 rgba(18,38,63,.07); }
  .folio-mark { width: 46%; max-height: 300px; }
  .folio-index { right: .5rem; }
  .archive-intro { padding: 4.5rem 0; }
  .archive-columns { grid-template-columns: 1fr; }
  .archive-item, .archive-item + .archive-item { padding: 1.8rem 0; border-right: 0; border-bottom: 1px solid var(--rule); }
  .product-image-wrap { min-height: auto; padding: 3rem 1rem; }
  .product-intro { padding: 4.5rem 1rem; }
  .statement-section { grid-template-columns: 1fr; }
  .statement-mark { padding: 4rem 2rem 1rem; }
  .statement-mark img { max-height: 280px; }
  .statement-copy { padding: 3rem 1rem 5rem; border-left: 0; }
  .page-hero { padding: 4.5rem 0; gap: 2rem; }
  .page-hero-aside { padding-top: 1.2rem; padding-left: 0; border-top: 2px solid var(--gold); border-left: 0; }
  .product-feature { padding: 4.5rem 0; gap: 3rem; }
  .product-screen img { box-shadow: 10px 12px 0 var(--parchment); }
  .portfolio-boundary { padding: 4.5rem 0; }
  .boundary-list > div { grid-template-columns: 1fr; gap: .6rem; }
  .quiet-cta { width: min(calc(100% - 2rem), 1080px); padding: 5rem 0; text-align: left; }
  .principle-card { min-height: auto; padding: 3rem 0; }
  .principle-meta { margin-bottom: 2.5rem; }
  .dialogue-intro { gap: 1rem; }
  .dialogue-row { grid-template-columns: 44px 1fr; }
  .dialogue-row p { grid-column: 2; }
  .boundary-banner { grid-template-columns: 64px 1fr; gap: 1.3rem; margin: 5rem auto; }
  .boundary-banner img { width: 58px; }
  .founder-hero { padding: 4.5rem 0; }
  .founder-story { padding: 4.5rem 0; }
  .founder-product-image { padding: 3rem 1rem; }
  .founder-product-copy { padding: 3rem 1rem 5rem; }
  .contact-layout { padding: 4.5rem 0; }
  .contact-invitation { padding: 2.2rem 1.2rem; }
  .contact-lanes article { grid-template-columns: 40px 1fr; }
  .contact-lanes article p { grid-column: 2; }
  .partnership-boundary { padding: 4.5rem 1rem; }
  .via-logos-contact { grid-template-columns: 64px 1fr; padding: 4.5rem 0; }
  .via-logos-contact > img { width: 58px; }
  .via-logos-contact .text-link { grid-column: 2; justify-self: start; }
  .footer-inner { grid-template-columns: 1fr; padding-top: 4rem; }
  .copyright { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .folio-stage { transform: none !important; }
}
