:root {
  --bg: #f4f1ea;
  --bg-2: #ece8df;
  --ink: #161513;
  --muted: #6f6a63;
  --line: rgba(22, 21, 19, 0.14);
  --line-strong: rgba(22, 21, 19, 0.28);
  --accent: #ff8117;
  --accent-soft: rgba(255, 129, 23, 0.14);
  --max: 74rem;
  --font-ui: "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--ink);
  color: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.35), transparent 28%, transparent 72%, rgba(0,0,0,0.2));
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 0.75rem 1rem;
  z-index: 80;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 70;
  background: var(--accent);
  pointer-events: none;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.topbar {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--bg);
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.55rem 0;
}

.topbar a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 96%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 4.15rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--ink);
}

.brand-mark {
  width: 1.55rem;
  height: 1.8rem;
  display: block;
  flex-shrink: 0;
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-mark .mark-a {
  fill: #ff8117;
}

.brand-mark .mark-b {
  fill: #1f2025;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand-text span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(18rem, 0.92fr) minmax(20rem, 1.18fr);
  border-bottom: 1px solid var(--line);
  min-height: min(82vh, 42rem);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 6vw, 4.5rem) 0;
  border-right: 1px solid var(--line);
}

.hero-copy .wrap-local {
  padding-right: 2rem;
  max-width: 36rem;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: min(82vh, 42rem);
  filter: grayscale(18%) contrast(1.05);
}

.eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-split h1,
.page-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 400;
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  padding: 0.85rem 0.9rem 0 0;
  border-right: 1px solid var(--line);
}

.hero-facts div:last-child {
  border-right: 0;
  padding-right: 0;
}

.hero-facts strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-facts span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  cursor: pointer;
  transition: transform 80ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn:active {
  transform: scale(0.97);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--ink);
  color: var(--bg);
}

.btn-on-paper {
  background: transparent;
  color: var(--ink);
}

.page-hero {
  padding: clamp(2.5rem, 6vw, 4.2rem) 0 0;
  max-width: 38rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.3rem);
}

.section {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
}

.section h2,
.prose h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 400;
}

.section p,
.prose p {
  margin: 0 0 1rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.prose ul {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--muted);
  max-width: 38rem;
}

.prose h3 {
  margin: 1.6rem 0 0.45rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border: 1px solid var(--line);
}

.split > * {
  min-width: 0;
}

.split .media-frame,
.split > img {
  border-right: 1px solid var(--line);
}

.split img {
  width: 100%;
  height: min(30rem, 72vw);
  object-fit: cover;
  filter: grayscale(22%);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease;
}

.media-frame {
  overflow: hidden;
}

.media-frame:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.split-copy {
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.text-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  box-shadow: inset 0 -1px 0 var(--accent);
}

.text-link:hover {
  color: var(--accent);
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.25rem;
  border: 1px solid var(--line);
}

.facts div {
  padding: 0.7rem 0.85rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts div:nth-child(2n) {
  border-right: 0;
}

.facts strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
}

.facts span {
  font-size: 0.8rem;
  color: var(--muted);
}

.bento {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: minmax(11rem, auto) minmax(11rem, auto);
  border: 1px solid var(--line);
  margin-top: 1.75rem;
}

.bento a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 1.15rem 1.2rem 1.15rem;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  --mx: 50%;
  --my: 40%;
}

.bento-rcm {
  grid-column: 1;
  grid-row: 1 / span 2;
  border-right: 1px solid var(--line);
  min-height: 22rem;
}

.bento-shot {
  width: calc(100% + 2.4rem);
  margin: 0 -1.2rem;
  height: 8.5rem;
  object-fit: cover;
  filter: grayscale(25%);
}

.bento-rcm .bento-shot {
  height: 10.5rem;
}

.stack-lines {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.stack-lines li {
  padding: 0.38rem 0;
  border-top: 1px solid var(--line);
}

.bars {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 0.28rem;
  height: 4.2rem;
  margin: 0.2rem 0 0.4rem;
}

.bars i {
  display: block;
  background: var(--ink);
  opacity: 0.22;
  height: var(--h, 40%);
}

.bars i:nth-child(3),
.bars i:nth-child(6) {
  background: var(--accent);
  opacity: 0.85;
}

.bento a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(22rem circle at var(--mx) var(--my), var(--accent-soft), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
  z-index: -1;
}

.bento a:hover::before,
.bento a:focus-visible::before {
  opacity: 1;
}

.bento-rcm {
  grid-column: 1;
  grid-row: 1 / span 2;
  border-right: 1px solid var(--line);
  min-height: 22rem;
}

.bento-analytics {
  grid-column: 2 / span 2;
  border-bottom: 1px solid var(--line);
}

.bento-support {
  grid-column: 2;
  border-right: 1px solid var(--line);
}

.bento-brand {
  grid-column: 3;
}

.bento h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  font-weight: 400;
  line-height: 1.15;
}

.bento p {
  margin: 0;
  max-width: none;
  font-size: 0.9rem;
}

.bento .codeish {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.offer-list,
.feature-list,
.why-list,
.ehr-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.offer-list {
  display: grid;
  border: 1px solid var(--line);
}

.offer-list li {
  display: grid;
  grid-template-columns: minmax(12rem, 0.4fr) 1fr;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border-bottom: 1px solid var(--line);
}

.offer-list li:last-child {
  border-bottom: 0;
}

.offer-list h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.offer-list p {
  margin: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.feature-list li {
  padding: 1.1rem 1.15rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease;
}

.feature-list li:hover {
  background: rgba(154, 79, 28, 0.06);
}

.feature-list li:nth-child(2n) {
  border-right: 0;
}

.feature-list h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 400;
}

.feature-list p {
  margin: 0;
  font-size: 0.95rem;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.why-list li {
  padding: 0.9rem 1.1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.why-list li small {
  display: block;
  margin-top: 0.3rem;
  font-weight: 400;
  font-size: 0.84rem;
  color: var(--muted);
  letter-spacing: 0;
}

.why-list li:nth-child(2n) {
  border-right: 0;
}

.ehr-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
}

.phone-band {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--line);
  padding: 2.8rem 0;
  background: var(--ink);
  color: #d9d4cb;
}

.phone-band .wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: end;
}

.phone-meta {
  font-size: 0.95rem;
  color: #bdb6ab;
  max-width: 28rem;
}

.phone-band .wrap > div p {
  margin: 0 0 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bdb6ab;
}

.phone-band .wrap > div a {
  color: var(--bg);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-decoration: none;
  letter-spacing: -0.03em;
  display: inline-block;
  transition: letter-spacing 200ms ease, color 160ms ease;
}

.phone-band .wrap > div a:hover,
.phone-band .wrap > div a:focus-visible {
  color: #fff;
  letter-spacing: 0.01em;
}

.phone-meta a {
  color: var(--bg);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  border: 1px solid var(--line);
}

.inquiry > * {
  padding: 1.4rem 1.35rem;
}

.inquiry > :first-child {
  border-right: 1px solid var(--line);
}

.form-panel {
  background: transparent;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.form-grid label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.form-grid input,
.form-grid textarea {
  font: 1rem/1.4 var(--font-ui);
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  transition: border-color 160ms ease;
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.form-grid textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-status {
  margin: 0.7rem 0 0;
  font-size: 0.9rem;
  color: var(--accent);
}

.note {
  font-size: 0.92rem !important;
}

.meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--muted);
  padding: 2.6rem 0 1.3rem;
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  margin-bottom: 1.6rem;
}

.footer-grid h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-grid p,
.footer-grid li {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(0.8rem);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .hero-split,
  .split,
  .inquiry,
  .offer-list li,
  .feature-list,
  .why-list,
  .footer-grid,
  .bento,
  .hero-facts,
  .phone-band .wrap,
  .facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div,
  .facts div {
    border-right: 0;
  }

  .bento {
    grid-template-rows: none;
  }

  .bento-rcm,
  .bento-analytics,
  .bento-support,
  .bento-brand {
    grid-column: auto;
    grid-row: auto;
    border-right: 0;
    min-height: 0;
    border-bottom: 1px solid var(--line);
  }

  .bento-brand {
    border-bottom: 0;
  }

  .hero-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .split .media-frame,
  .inquiry > :first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-list li,
  .why-list li {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 0 0.9rem;
  }

  .nav {
    gap: 0.55rem 0.9rem;
  }

  .hero-media img {
    min-height: 18rem;
  }
}

.page-home .topbar,
.page-home .site-header {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
}

.page-home .topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 31;
  color: var(--ink);
  border-bottom-color: rgba(22, 21, 19, 0.12);
}

.page-home .site-header {
  position: absolute;
  top: 2.15rem;
  left: 0;
  right: 0;
  border-bottom-color: rgba(22, 21, 19, 0.12);
}

.page-home .brand-text span,
.page-home .nav a {
  color: var(--ink);
}

.page-home .nav a[aria-current="page"],
.page-home .nav a:hover,
.page-home .nav a:focus-visible {
  color: var(--ink);
}

.page-home .site-header.is-scrolled {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}

.page-home .hero-cine {
  min-height: 100vh;
  min-height: 100dvh;
}

.hero-cine {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: #f4f1ea;
  overflow: hidden;
}

.hero-cine img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(8%) contrast(1.08) saturate(0.9);
  transform: scale(1.06);
  animation: cine-drift 28s ease-in-out alternate infinite;
}

.hero-cine::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.78) 0%, rgba(10, 9, 8, 0.28) 52%, rgba(10, 9, 8, 0.12) 100%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.25) 0%, transparent 28%, rgba(10, 9, 8, 0.72) 100%);
}

.hero-cine .wrap {
  position: relative;
  z-index: 2;
  padding: var(--hero-clearance, 8.75rem) 0 4.5rem;
  max-width: 42rem;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
}

.hero-cine h1 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 6.2vw, 6.1rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 400;
}

.hero-cine .lede {
  color: rgba(244, 241, 234, 0.82);
  font-size: 1.12rem;
}

.hero-cine .btn-ghost {
  border-color: rgba(244, 241, 234, 0.45);
  color: #f4f1ea;
}

.hero-cine .btn-ghost:hover {
  background: #f4f1ea;
  color: var(--ink);
}

.hero-cine .hero-facts {
  border-top-color: rgba(244, 241, 234, 0.2);
}

.hero-cine .hero-facts div {
  border-right-color: rgba(244, 241, 234, 0.2);
}

.hero-cine .hero-facts strong {
  color: #fff;
}

.hero-cine .hero-facts span {
  color: rgba(244, 241, 234, 0.62);
}

@keyframes cine-drift {
  from { transform: scale(1.06) translate(0, 0); }
  to { transform: scale(1.14) translate(-1.5%, -1%); }
}

.ticker {
  overflow: hidden;
  background: var(--ink);
  color: rgba(244, 241, 234, 0.55);
  border-bottom: 1px solid rgba(244, 241, 234, 0.08);
  padding: 0.85rem 0;
}

.ticker-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: ticker 36s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.stage {
  position: relative;
  min-height: min(78vh, 40rem);
  display: grid;
  align-items: end;
  color: #f4f1ea;
  overflow: hidden;
}

.stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}

.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.15), rgba(10, 9, 8, 0.78));
}

.stage .wrap {
  position: relative;
  z-index: 1;
  padding: 5rem 0 3.2rem;
}

.stage h2 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  max-width: 16ch;
}

.stage p {
  color: rgba(244, 241, 234, 0.8);
}

.stage .text-link {
  color: #fff;
  box-shadow: inset 0 -1px 0 var(--accent);
}

.mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 18rem 18rem;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.tile {
  position: relative;
  overflow: hidden;
  color: #f4f1ea;
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.3rem 1.35rem;
  text-decoration: none;
  isolation: isolate;
  --mx: 50%;
  --my: 40%;
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(24rem circle at var(--mx) var(--my), rgba(224, 180, 138, 0.22), transparent 45%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.tile:hover::before,
.tile:focus-visible::before {
  opacity: 1;
}

.tile > *:not(img) {
  position: relative;
  z-index: 1;
}

.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: grayscale(18%) contrast(1.06);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.08) 10%, rgba(10, 9, 8, 0.82) 100%);
}

.tile:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(1.08);
}

.tile-rcm {
  grid-row: 1 / span 2;
  min-height: 36.55rem;
}

.tile .codeish {
  color: #ff8117;
}

.tile h3 {
  margin: 0.15rem 0 0.35rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.tile p {
  margin: 0;
  max-width: 34rem;
  color: rgba(244, 241, 234, 0.82);
  font-size: 0.95rem;
}

.tile-plain {
  background: var(--ink);
}

.tile-plain::after {
  display: none;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.principle {
  min-height: 11rem;
  padding: 1.15rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.35), rgba(10, 9, 8, 0.72)),
    url("../img/cinematic-floor.jpg") center / cover no-repeat;
  color: #f4f1ea;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.principle.p-a {
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.4), rgba(10, 9, 8, 0.78)),
    url("../img/cinematic-floor.jpg") center / cover no-repeat;
}

.principle.p-b {
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.42), rgba(10, 9, 8, 0.8)),
    url("../img/about-desk.jpg") center / cover no-repeat;
}

.principle.p-c {
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.38), rgba(10, 9, 8, 0.76)),
    url("../img/support-floor.jpg") center / cover no-repeat;
}

.principle strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.7rem;
  color: #ff8117;
}

.principle span {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.principle small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(244, 241, 234, 0.68);
  font-size: 0.86rem;
}

.hero-cine .wrap > * {
  animation: rise-in 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-cine .eyebrow { animation-delay: 120ms; }
.hero-cine h1 { animation-delay: 220ms; }
.hero-cine .lede { animation-delay: 340ms; }
.hero-cine .cta-row { animation-delay: 460ms; }
.hero-cine .hero-facts { animation-delay: 580ms; }
.hero-cine .scroll-cue { animation: rise-in 900ms 700ms both; }

.scroll-cue {
  position: absolute;
  right: max(1rem, calc((100% - var(--max)) / 2));
  bottom: 1.6rem;
  z-index: 3;
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  color: rgba(244, 241, 234, 0.7);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 1px;
  height: 2.8rem;
  background: linear-gradient(#ff8117, transparent);
  animation: cue-pulse 1.8s ease-in-out infinite;
}

@keyframes cue-pulse {
  0%, 100% { transform: scaleY(0.55); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.product-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 18rem);
  gap: 0;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.product-band .copy {
  padding: 2.2rem 2rem;
  border-right: 1px solid var(--line);
}

.product-band .action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.6rem;
  background: var(--ink);
}

.product-band .action .btn {
  width: 100%;
}

.product-band .action .btn-ghost {
  border-color: rgba(244, 241, 234, 0.4);
  color: #f4f1ea;
}

.product-band .action .btn-ghost:hover {
  background: #f4f1ea;
  color: var(--ink);
}

.product-band h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.product-band p {
  margin: 0;
  max-width: 36rem;
}

.tile .explore {
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff8117;
  transform: translateY(0.4rem);
  opacity: 0;
  transition: opacity 240ms ease, transform 240ms ease;
}

.tile:hover .explore,
.tile:focus-visible .explore {
  opacity: 1;
  transform: none;
}

.principle:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.close-stage {
  min-height: min(62vh, 32rem);
}

.close-stage .btn-ghost {
  border-color: rgba(244, 241, 234, 0.45);
  color: #f4f1ea;
}

.close-stage .btn-ghost:hover {
  background: #f4f1ea;
  color: var(--ink);
}

.stage .cta-row {
  margin-top: 1.2rem;
}

.stage .btn-ghost {
  border-color: rgba(244, 241, 234, 0.45);
  color: #f4f1ea;
}

.stage .btn-ghost:hover {
  background: #f4f1ea;
  color: var(--ink);
}

.story-card {
  display: block;
  padding: 1.6rem 1.5rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(244, 241, 234, 0.92), rgba(244, 241, 234, 0.55)),
    url("../img/hero-office.jpg") center / cover no-repeat;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.story-card h3 {
  margin: 0.35rem 0 0.55rem;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.story-card p {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
}

.story-card .explore {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.inquiry .note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.inner-stage {
  min-height: min(52vh, 28rem);
}

.mosaic-wide {
  grid-template-columns: 1fr;
  grid-template-rows: 16rem;
  margin-top: 0.55rem;
}

.mosaic-wide .tile {
  min-height: 16rem;
}

@media (max-width: 1100px) {
  .page-home {
    --hero-clearance: 9.4rem;
  }

  .page-home .site-header {
    top: 2.6rem;
  }
}

@media (max-width: 900px) {
  .product-band {
    grid-template-columns: 1fr;
  }

  .product-band .copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .scroll-cue {
    display: none;
  }

  .mosaic,
  .principles {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .tile-rcm {
    grid-row: auto;
    min-height: 22rem;
  }

  .page-home {
    --hero-clearance: 11.25rem;
  }

  .page-home .site-header {
    top: 3.4rem;
  }

  .hero-cine h1 {
    font-size: clamp(2.15rem, 8vw, 3.4rem);
  }

  .hero-cine .wrap {
    padding-bottom: 3rem;
  }
}

@media (max-width: 760px) {
  .page-home {
    --hero-clearance: 12.5rem;
  }

  .page-home .site-header {
    top: 4.4rem;
  }

  .hero-cine {
    min-height: 100dvh;
  }
}

@media (max-height: 820px) and (min-width: 761px) {
  .page-home {
    --hero-clearance: 8.25rem;
  }

  .hero-cine h1 {
    font-size: clamp(2.1rem, 6.5vh, 3.6rem);
  }

  .hero-cine .lede {
    margin-bottom: 1.1rem;
    font-size: 1rem;
  }

  .hero-cine .wrap {
    padding-bottom: 2.4rem;
  }

  .hero-cine .hero-facts {
    margin-top: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .split img,
  [data-reveal],
  .hero-cine img,
  .ticker-track,
  .tile img {
    transition: none;
    animation: none;
    transform: none;
    opacity: 1;
  }
}
