:root {
  --ink: #171b1e;
  --text: #40484f;
  --muted: #6d767e;
  --line: #dde0dd;
  --paper: #fbfaf6;
  --soft: #f2f0e9;
  --dark: #171b1e;
  --dark-2: #22282d;
  --accent: #a4854a;
  --accent-soft: #d9c491;
  --white: #fff;
  --radius: 8px;
  --wrap: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.skip { position: absolute; left: -999px; top: 10px; z-index: 100; background: var(--white); color: var(--ink); padding: 9px 12px; }
.skip:focus { left: 10px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 19, 21, .985);
  border-bottom: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.nav {
  max-width: 1360px;
  margin: 0 auto;
  min-height: 82px;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.brand,
.footer-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); flex: 0 0 auto; min-width: max-content; }
.brand strong,
.footer-brand strong { font-size: 25px; letter-spacing: .02em; white-space: nowrap; }
.brand span,
.footer-brand span { font-size: 12px; color: #c4c9c9; letter-spacing: .06em; white-space: nowrap; }
.brand {
  display: grid;
  align-items: center;
  gap: 5px;
  min-width: 150px;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.brand strong { font-size: 28px; line-height: 1; }
.brand span {
  max-width: none;
  color: #d5d9d8;
  font-size: 10.5px;
  line-height: 1;
  letter-spacing: .075em;
}
.links {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(9, minmax(76px, 1fr)) auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #fff;
  font-size: 11.6px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: .01em;
}
.links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: .99;
  padding: 8px 4px 7px;
  border-bottom: 2px solid transparent;
  text-shadow: 0 0 1px rgba(255,255,255,.34);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.links a:hover, .links a:focus-visible { opacity: 1; color: var(--white); border-bottom-color: var(--accent-soft); outline: none; }
.links a[aria-current="page"] { opacity: 1; color: var(--white); border-bottom-color: var(--white); }
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 650;
}
.nav-cta { min-width: 76px; border-color: rgba(217,196,145,.7); color: var(--white); background: rgba(255,255,255,.08); padding-inline: 12px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); white-space: nowrap; }
.nav-cta:hover, .nav-cta:focus-visible { background: rgba(217,196,145,.14); border-color: var(--accent-soft); outline: none; }
.btn.primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn.ghost { background: transparent; color: var(--ink); }
.dark .btn.ghost { color: var(--white); border-color: rgba(255,255,255,.24); }
.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  padding: 9px 12px;
  font: inherit;
  font-weight: 760;
}

.sequence {
  border-bottom: 1px solid var(--line);
  background: rgba(251,250,246,.96);
}
.sequence .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}
.sequence-top .wrap {
  padding-top: 10px;
  padding-bottom: 10px;
  color: var(--muted);
  font-size: 13.2px;
  font-weight: 700;
}
.sequence-top a { border-bottom: 1px solid transparent; }
.sequence-top a:last-child { justify-self: end; text-align: right; }
.sequence a:hover,
.sequence a:focus-visible { color: var(--ink); outline: none; border-bottom-color: var(--accent); }
.sequence-bottom {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: var(--white);
}
.sequence-bottom .wrap {
  padding-top: 22px;
  padding-bottom: 22px;
}
.seq-card {
  display: grid;
  gap: 5px;
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 19px;
  background: var(--paper);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.seq-card.next { justify-items: end; text-align: right; }
.seq-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.seq-card strong { color: var(--ink); font-size: 18px; line-height: 1.25; }
.seq-card:hover,
.seq-card:focus-visible { border-color: rgba(164,133,74,.65); background: var(--white); outline: none; transform: translateY(-1px); }

.breadcrumb {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.breadcrumb .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}
.breadcrumb a {
  color: var(--ink);
  font-weight: 650;
  border-bottom: 1px solid transparent;
}
.breadcrumb a:hover,
.breadcrumb a:focus-visible { border-bottom-color: var(--accent); outline: none; }
.breadcrumb .sep { color: #9aa1a6; }
.breadcrumb [aria-current="page"] { color: var(--muted); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 760px; }
.section { padding: 58px 0; }
.compact-section { padding: 48px 0; }
.founders { padding: 42px 0; }
.founders h2 { font-size: clamp(22px, 2.45vw, 30px); }
.founders .richtext p { font-size: 15.8px; }
.soft { background: var(--soft); }
.dark { background: var(--dark); color: #d8dddc; }
.dark h1, .dark h2, .dark h3 { color: var(--white); }
.dark .eyebrow { color: var(--accent-soft); }

.hero {
  background: linear-gradient(180deg, #fffdf8 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  min-height: 450px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 48px;
  align-items: center;
  padding-top: 38px;
  padding-bottom: 38px;
}
.page-head {
  padding: 76px 0 52px;
  background: linear-gradient(180deg, #fffdf8, var(--paper));
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--ink); margin: 0; line-height: 1.13; letter-spacing: 0; }
h1 { max-width: 780px; font-size: clamp(31px, 4.1vw, 50px); font-weight: 660; }
h2 { max-width: 720px; font-size: clamp(24px, 3vw, 34px); font-weight: 650; }
h3 { font-size: 17px; font-weight: 680; }
.lead { max-width: 710px; margin: 19px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.lead, p, h1, h2, h3 { overflow-wrap: break-word; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 27px; }

.proof-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.74);
  padding: 22px;
  display: grid;
  gap: 18px;
}
.proof-panel div { padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.proof-panel div:last-child { padding-bottom: 0; border-bottom: 0; }
.proof-panel span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.proof-panel strong { color: var(--ink); font-size: 15.5px; font-weight: 680; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.split.compact { align-items: center; }
.richtext p { margin: 0 0 16px; font-size: 16.5px; color: var(--text); }
.richtext a {
  color: var(--ink);
  font-weight: 680;
  border-bottom: 1px solid rgba(164,133,74,.72);
}
.richtext a:hover,
.richtext a:focus-visible { color: var(--accent); outline: none; }
.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  font-weight: 650;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.card-grid.three { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card {
  min-height: 164px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.76);
  padding: 18px;
}
.compact-cards .card { min-height: 148px; }
.card p { margin: 11px 0 0; color: var(--muted); font-size: 15px; }
.card span { display: inline-flex; margin-top: 18px; color: var(--accent); font-size: 13px; font-weight: 700; }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
.timeline article {
  min-height: 238px;
  background: rgba(255,255,255,.78);
  padding: 20px;
}
.timeline span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.timeline p { margin: 12px 0 0; color: var(--muted); font-size: 15px; }

.context-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.context-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  padding: 20px;
  position: relative;
}
.dark .context-card {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
}
.before-after {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.before-after div {
  padding: 15px 0 0 18px;
  border-top: 1px solid var(--line);
  position: relative;
}
.before-after div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.dark .before-after div { border-top-color: rgba(255,255,255,.14); }
.dark .before-after div::before { background: var(--accent-soft); }
.before-after strong {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.dark .before-after strong { color: var(--accent-soft); }
.before-after p { margin: 7px 0 0; color: var(--muted); font-size: 15px; line-height: 1.68; }
.dark .before-after p { color: #cbd1d0; }
.pillar-grid .card-grid { margin-top: 24px; }

.media-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, .65fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 24px;
}
.media-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}
.shot-carousel {
  display: grid;
  gap: 14px;
}
.shot-viewport {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101315;
  box-shadow: 0 18px 55px rgba(23,27,30,.12);
}
.shot-viewport:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.shot-track {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.shot-track::-webkit-scrollbar { display: none; }
.shot-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
}
.shot-slide figure {
  margin: 0;
  display: grid;
  background: #101315;
}
.shot-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #101315;
}
.shot-slide figcaption {
  padding: 10px 14px;
  color: #cbd1d0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.shot-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 9px;
}
.shot-controls button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}
.shot-controls button:hover,
.shot-controls button:focus-visible {
  border-color: rgba(164,133,74,.65);
  outline: none;
}
.shot-controls span {
  min-width: 58px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.logo-carousel { margin-top: 25px; }
.carousel-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 14px;
}
.carousel-head p { max-width: 680px; margin: 0; color: #cbd1d0; font-size: 15px; }
.carousel-actions { display: flex; align-items: center; gap: 7px; }
.carousel-actions a {
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.36);
  font-size: 13px;
  margin-right: 8px;
}
.carousel-actions button {
  width: 33px;
  height: 33px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font: inherit;
  cursor: pointer;
}
.carousel-actions button:hover,
.carousel-actions button:focus-visible { background: rgba(255,255,255,.08); outline: none; }
.logo-viewport {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}
.logo-viewport:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 3px; }
.logo-track {
  width: max-content;
  display: flex;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: logo-scroll 78s linear infinite;
}
.logo-carousel:hover .logo-track,
.logo-viewport:focus-within .logo-track { animation-play-state: paused; }
.logo-slide {
  width: 168px;
  min-height: 96px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #f6f4ec;
}
.logo-slide img {
  width: 116px;
  height: 42px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .8;
}
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.resource-links { display: grid; gap: 12px; }
.resource-card {
  position: relative;
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  padding: 18px;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.resource-card::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 18px;
  color: var(--accent);
  font-weight: 700;
}
.resource-card:hover,
.resource-card:focus-visible {
  border-color: rgba(164,133,74,.65);
  background: var(--white);
  transform: translateY(-1px);
  outline: none;
}
.card-grid a:focus-visible .card,
.card-grid a:hover .card {
  border-color: rgba(164,133,74,.55);
  background: var(--white);
}
.card-grid a:focus-visible { outline: none; }
.resource-card strong { color: var(--ink); }
.resource-card span { color: var(--muted); font-size: 15px; }
.resource-card em {
  margin-top: 8px;
  color: var(--accent);
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
}
.cta { text-align: center; background: var(--white); border-top: 1px solid var(--line); }
.cta p { max-width: 640px; margin: 15px auto 24px; color: var(--muted); }
.bridge { min-height: 62vh; display: flex; align-items: center; }
.bridge-inner { max-width: 780px; }

.contact { background: var(--white); }
.contact-box { display: grid; gap: 6px; margin-top: 26px; padding-left: 18px; border-left: 2px solid var(--accent); }
.form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdf8, var(--paper));
  padding: 26px;
  box-shadow: 0 18px 50px rgba(23,27,30,.06);
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
label { display: grid; gap: 7px; color: var(--ink); font-weight: 620; font-size: 14px; }
label span { color: var(--ink); }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease;
}
input:focus, textarea:focus { outline: none; border-color: rgba(164,133,74,.72); box-shadow: 0 0 0 3px rgba(164,133,74,.14); }
textarea { min-height: 132px; resize: vertical; }
.check { display: flex; flex-direction: row; align-items: flex-start; gap: 9px; color: var(--muted); font-weight: 500; }
.check input { width: auto; margin-top: 5px; }
.notice { display: none; margin: 0; color: var(--accent); font-weight: 700; }
button:disabled { cursor: wait; opacity: .68; }

.footer {
  padding: 50px 0 26px;
  background: var(--dark);
  color: #c9d0d0;
}
.footer-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 34px;
}
.footer h3 { margin: 0 0 12px; color: var(--white); font-size: 15px; }
.footer p, .footer a { color: #c9d0d0; }
.footer a { display: block; margin: 8px 0; font-size: 14px; }
.footer-brand { margin-bottom: 12px; }
.copyright {
  max-width: var(--wrap);
  margin: 30px auto 0;
  padding: 20px 22px 0;
  border-top: 1px solid rgba(255,255,255,.11);
  color: #aeb7b7;
  font-size: 13px;
}

@media (max-width: 1280px) {
  .links { display: none; }
  .links.open {
    display: grid;
    grid-template-columns: 1fr;
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    padding: 18px 22px 20px;
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,.12);
    gap: 12px;
    font-size: 14px;
  }
  .links.open a {
    min-height: 38px;
    justify-content: flex-start;
    text-align: left;
    padding: 9px 0;
  }
  .menu-toggle { display: inline-flex; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .context-grid { grid-template-columns: 1fr; }
  .media-head { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 760px) {
  .nav { min-height: 68px; padding: 12px 18px; }
  .brand { min-width: auto; padding-right: 0; border-right: 0; }
  .brand span { display: none; }
  .section { padding: 52px 0; }
  .hero-inner, .split, .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; gap: 28px; padding-top: 52px; padding-bottom: 44px; }
  .page-head { padding: 58px 0 40px; }
  h1 { font-size: 31px; }
  h2 { font-size: 25px; }
  .lead { font-size: 16.5px; }
  .proof-panel { padding: 18px; }
  .card-grid, .card-grid.three { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .timeline { grid-template-columns: 1fr; }
  .timeline article { min-height: auto; }
  .shot-slide img { aspect-ratio: 4 / 3; }
  .shot-controls { justify-content: space-between; }
  .carousel-head { align-items: flex-start; flex-direction: column; }
  .carousel-actions { width: 100%; justify-content: space-between; }
  .logo-slide { width: 136px; min-height: 86px; padding: 16px; }
  .logo-slide img { width: 98px; height: 36px; }
  .footer-grid { gap: 22px; }
  .sequence .wrap { grid-template-columns: 1fr; gap: 8px; }
  .sequence-top .wrap { align-items: start; }
  .sequence-top a:last-child { justify-self: start; text-align: left; }
  .sequence-top .wrap > span { order: -1; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
  .sequence-bottom .wrap { grid-template-columns: 1fr; }
  .seq-card.next { justify-items: start; text-align: left; }
  .breadcrumb .wrap { font-size: 12.5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .logo-track { animation: none; }
}
