:root {
  color-scheme: light;
  font-family:
    "Avenir Next", Avenir, Montserrat, Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --paper: #f7f5ef;
  --paper-strong: #fffdf8;
  --ink: #332a25;
  --muted: #746a60;
  --bronze: #7b5139;
  --moss: #596b4f;
  --clay: #b86c45;
  --graphite: #202323;
  --blueprint: #516b82;
  --line: rgba(68, 55, 47, 0.2);
  --shadow: 0 22px 70px rgba(54, 43, 36, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, rgba(255,253,248,.92), rgba(247,245,239,.98)), var(--paper);
  color: var(--ink);
}
body.modal-open { overflow: hidden; }
body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(68,55,47,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68,55,47,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 85%, transparent);
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
.site-shell { min-height: 100vh; overflow: clip; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(1120px, calc(100% - 28px));
  min-height: 58px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px 8px 8px;
  background: rgba(255,253,248,.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.brand-mark, .nav-cta {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 850;
}
.brand-mark {
  width: 58px;
  min-height: 46px;
  justify-content: center;
  border-radius: 999px;
}
.brand-logo {
  display: block;
  width: 34px;
  height: 42px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 0;
  background: rgba(255,253,248,.72);
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .18s ease, opacity .18s ease;
}
.menu-toggle span:nth-child(1) { transform: translateY(-5px); }
.menu-toggle span:nth-child(3) { transform: translateY(5px); }
.topbar.menu-open .menu-toggle span:nth-child(1) { transform: rotate(45deg); }
.topbar.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.topbar.menu-open .menu-toggle span:nth-child(3) { transform: rotate(-45deg); }
.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  min-width: 210px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 8px;
  background: rgba(255,253,248,.94);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px) scale(.94);
  transform-origin: top center;
  transition:
    left .82s cubic-bezier(.16, 1, .3, 1) .2s,
    right .82s cubic-bezier(.16, 1, .3, 1) .2s,
    width .82s cubic-bezier(.16, 1, .3, 1) .2s,
    min-width .82s cubic-bezier(.16, 1, .3, 1) .2s,
    opacity .36s ease,
    transform .68s cubic-bezier(.16, 1, .3, 1),
    border-radius .58s ease;
}
.mobile-menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 0 14px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    justify-content .58s ease .38s,
    opacity .42s ease,
    transform .58s cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--item-index, 0) * 70ms);
}
.mobile-menu a:hover { background: rgba(123, 81, 57, 0.08); color: var(--bronze); }
.mobile-menu a:nth-child(1) { --item-index: 1; }
.mobile-menu a:nth-child(2) { --item-index: 2; }
.mobile-menu a:nth-child(3) { --item-index: 3; }
.mobile-menu a:nth-child(4) { --item-index: 4; }
.mobile-menu a:nth-child(5) { --item-index: 5; }
.mobile-menu a:nth-child(6) { --item-index: 6; }
.topbar.menu-open .mobile-menu {
  left: auto;
  right: 0;
  min-width: 210px;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) translateY(0) scale(1);
}
.topbar.menu-open .mobile-menu a {
  justify-content: flex-start;
  opacity: 1;
  transform: translateY(0);
}
.nav-cta {
  min-height: 42px;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--paper-strong);
  background: var(--bronze);
  font-size: .82rem;
  text-transform: uppercase;
}

.brand-intro {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 118px clamp(18px, 6vw, 92px) 72px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 245, 239, 0.96)),
    var(--paper-strong);
}
.intro-logo {
  display: block;
  width: min(380px, 64vw);
  height: auto;
  object-fit: contain;
}
.intro-scroll-cue {
  z-index: 1;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: 120px clamp(18px, 6vw, 92px) 96px;
}
.canvas-stage {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255,253,248,.94) 0%, rgba(247,245,239,.62) 44%, rgba(222,212,189,.2) 100%),
    linear-gradient(180deg, #fffdf8 0%, #f7f5ef 64%, #e9e4d8 100%);
}
#volumeriaScene { display: block; width: 100%; height: 100%; }
.hero-copy { width: min(760px, 100%); padding-top: 7vh; }
.hero-copy .eyebrow {
  font-size: clamp(.9rem, 1.05vw, 1.08rem);
  letter-spacing: .11em;
}
.eyebrow {
  margin-bottom: 14px;
  color: var(--moss);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1 {
  margin-bottom: 24px;
  max-width: 820px;
  font-size: clamp(3rem, 6.5vw, 7.2rem);
  font-weight: 380;
  line-height: 1.04;
  text-wrap: balance;
}
.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.55;
}
.hero-copy .hero-value {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  border-top: 1px solid rgba(123, 81, 57, 0.34);
  padding-top: 14px;
  color: var(--bronze);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 760;
  letter-spacing: .01em;
}
.scroll-cue {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.scroll-cue i {
  position: relative;
  width: 34px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,253,248,.55);
}
.scroll-cue i::after {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 5px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 50%;
  content: "";
  background: var(--bronze);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
.rotate-cue {
  position: absolute;
  right: clamp(20px, 6vw, 76px);
  z-index: 3;
  display: none;
  align-items: center;
  gap: 12px;
  color: rgba(51, 42, 37, 0.82);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  opacity: .98;
  pointer-events: none;
  text-shadow: 0 1px 10px rgba(255, 253, 248, 0.88);
}
.rotate-cue i {
  position: relative;
  width: 54px;
  height: 34px;
  border: 1px solid rgba(123, 81, 57, 0.24);
  border-radius: 999px;
  background: rgba(255,253,248,.84);
  box-shadow: 0 10px 28px rgba(54, 43, 36, 0.14);
  backdrop-filter: blur(8px);
}
.rotate-cue i::after {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  content: "";
  background: var(--bronze);
  animation: rotate-dot 1.8s ease-in-out infinite;
}
.hero .rotate-cue {
  top: 18vh;
  bottom: auto;
}
.journey {
  position: relative;
  display: grid;
  gap: 18vh;
  min-height: 360vh;
  padding: 18vh clamp(18px, 6vw, 92px);
}
.journey-rail {
  position: sticky;
  top: 24vh;
  left: calc(100vw - clamp(62px, 5.25vw, 82px));
  width: 1px;
  height: 52vh;
  margin: 0 0 calc(-52vh - 1px);
  border-radius: 999px;
  background: rgba(68, 55, 47, 0.1);
  transform: translateX(34px);
}
.journey-rail span {
  display: block;
  width: 100%;
  height: calc(var(--scroll-progress, 0) * 100%);
  border-radius: inherit;
  opacity: 0.58;
  background: linear-gradient(180deg, var(--bronze), var(--moss), var(--blueprint));
}
.step-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(500px, 100%);
  min-height: 46vh;
  justify-content: center;
  border: 1px solid rgba(68, 55, 47, 0.1);
  border-radius: 22px;
  padding: 38px 40px;
  background: rgba(255, 253, 248, 0.8);
  box-shadow: none;
}
.step-panel.align-end { margin-left: auto; }
.step-panel h2, .section-heading h2, .contact-band h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.65vw, 4.05rem);
  font-weight: 390;
  line-height: 1.04;
}
.step-panel h2 {
  max-width: 100%;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
  hyphens: manual;
}
.step-panel p:not(.eyebrow), .capability-grid p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}
.step-link {
  display: inline-flex;
  align-self: flex-start;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border: 1px solid rgba(123, 81, 57, 0.72);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--paper-strong);
  background: var(--bronze);
  box-shadow: none;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
button.step-link {
  appearance: none;
  cursor: pointer;
  font-family: inherit;
}
.step-link:hover {
  border-color: rgba(123, 81, 57, 0.9);
  background: #6d4430;
  transform: translateY(-1px);
}
.result-trigger {
  margin-top: 0;
  color: var(--bronze);
  background: rgba(255, 253, 248, 0.8);
}
.result-trigger:hover {
  color: var(--paper-strong);
}
.capabilities {
  position: relative;
  z-index: 2;
  padding: 16vh clamp(18px, 6vw, 92px);
  background: linear-gradient(180deg, rgba(247,245,239,.2), rgba(255,253,248,.92) 18%), var(--paper-strong);
}
.section-heading { max-width: 780px; margin-bottom: 56px; }
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
  overflow: hidden;
}
.capability-card {
  display: block;
  min-height: 270px;
  padding: 24px;
  background: rgba(255,253,248,.94);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.capability-card:hover {
  background: rgba(255,253,248,1);
  color: var(--bronze);
  transform: translateY(-2px);
}
.capability-card span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--clay);
  font-size: .78rem;
  font-weight: 900;
}
.capability-card h3 { margin-bottom: 14px; font-size: 1.08rem; line-height: 1.18; }
.offer-band {
  position: relative;
  z-index: 2;
  padding: 13vh clamp(18px, 6vw, 92px);
  background: rgba(255, 253, 248, 0.94);
}
.offer-band-alt {
  background:
    linear-gradient(180deg, rgba(247, 245, 239, 0.96), rgba(255, 253, 248, 0.94)),
    var(--paper);
}
.technology-section {
  background: rgba(255, 253, 248, 0.96);
}
.technology-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.66;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
  overflow: hidden;
}
.offer-grid article {
  min-height: 250px;
  padding: 26px;
  background: rgba(255, 253, 248, 0.92);
}
.offer-grid span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--bronze);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.offer-grid h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 420;
  line-height: 1.05;
}
.offer-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}
.technology-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.contact-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: 14vh clamp(18px, 6vw, 92px);
  color: var(--paper-strong);
  background: linear-gradient(135deg, rgba(32,35,35,.98), rgba(51,42,37,.94)), var(--graphite);
}
.contact-band h2 { max-width: 780px; }
.contact-band a {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,253,248,.28);
  border-radius: 999px;
  padding: 0 24px;
  background: rgba(255,253,248,.08);
  font-weight: 850;
  overflow: hidden;
  animation: cta-breathe 2.8s ease-in-out infinite;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.contact-band a::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.24), transparent);
  transform: translateX(-115%);
  animation: cta-sheen 3.4s ease-in-out infinite;
}
.contact-band a::after {
  position: absolute;
  inset: -7px;
  z-index: -2;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: inherit;
  content: "";
  opacity: 0;
  animation: cta-ring 2.8s ease-out infinite;
}
.contact-band a:hover {
  border-color: rgba(255, 253, 248, 0.5);
  background: rgba(255, 253, 248, 0.14);
  transform: translateY(-2px);
}
.contact-band .eyebrow { color: #c2d0b5; }
.contact-cta-wrap { display: flex; flex-direction: column; align-items: flex-end; }
.contact-fallback {
  margin-top: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.07);
  color: var(--paper-strong);
  font-size: .82rem;
  text-align: right;
}
.contact-fallback p { margin: 0 0 10px; opacity: 0.7; }
.contact-fallback-row { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.contact-fallback-row span { font-weight: 700; letter-spacing: .04em; }
.contact-copy-btn {
  padding: 6px 14px;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  color: var(--paper-strong);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s ease;
}
.contact-copy-btn:hover { background: rgba(255, 253, 248, 0.2); }
.legal-footer {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  padding: 22px clamp(18px, 6vw, 92px) 24px;
  color: rgba(255, 253, 248, 0.68);
  background: var(--graphite);
  font-size: .72rem;
  line-height: 1.55;
}
.official-note {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-weight: 800;
}
.official-note a,
.legal-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 4px;
  color: rgba(255, 253, 248, 0.72);
  font-weight: 760;
}
.official-note a:hover,
.legal-links a:hover {
  color: var(--paper-strong);
}
.legal-toggle {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 253, 248, 0.06);
  color: rgba(255, 253, 248, 0.82);
  cursor: pointer;
  font-family: inherit;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.legal-toggle:hover {
  border-color: rgba(255, 253, 248, 0.32);
  background: rgba(255, 253, 248, 0.1);
}
.legal-footer.is-open .legal-toggle span:last-child {
  transform: rotate(45deg);
}
.legal-footer .legal-content {
  padding-top: 18px;
}
.legal-footer .legal-content p {
  max-width: 980px;
  margin: 0 0 8px;
}
.legal-footer .legal-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.detail-main {
  min-height: 100vh;
  padding: 132px clamp(18px, 6vw, 92px) 72px;
}
.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: end;
  min-height: 58vh;
  padding-bottom: 8vh;
}
.detail-kicker {
  margin-bottom: 16px;
  color: var(--moss);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.detail-title {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 7.6rem);
  font-weight: 380;
  line-height: .92;
}
.detail-lede {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.58;
}
.detail-aside {
  border-left: 1px solid var(--line);
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.62;
}
.detail-aside strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: .86rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.detail-section {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding: 54px 0 0;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.detail-card {
  min-height: 250px;
  padding: 26px;
  background: rgba(255, 253, 248, 0.9);
}
.detail-card span {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--clay);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.detail-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.3vw, 2.05rem);
  font-weight: 420;
  line-height: 1.05;
}
.detail-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}
.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 28px clamp(18px, 6vw, 92px);
  background: rgba(255, 253, 248, 0.96);
  color: var(--muted);
}
.footer-brand {
  color: var(--ink);
  font-family: "Caviar Dreams", "Century Gothic", "Avenir Next", sans-serif;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: .84rem;
  font-weight: 800;
}
.site-footer a:hover {
  color: var(--bronze);
}
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
}
.detail-back {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 20px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.legal-page .detail-hero {
  min-height: 44vh;
  align-items: start;
}
.legal-page .detail-title {
  max-width: 1040px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .98;
}
.legal-page .legal-content {
  display: grid;
  gap: 18px;
  max-width: 1040px;
}
.legal-block {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 248, 0.92);
}
.legal-block h2 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 420;
  line-height: 1.08;
}
.legal-block h3 {
  margin: 24px 0 10px;
  font-size: 1.02rem;
}
.legal-block p,
.legal-block li {
  color: var(--muted);
  line-height: 1.66;
}
.legal-block p:last-child,
.legal-block ul:last-child {
  margin-bottom: 0;
}
.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}
.legal-note {
  margin: 0 0 24px;
  border-left: 4px solid var(--clay);
  padding: 14px 16px;
  background: rgba(184, 108, 69, 0.09);
  color: var(--ink);
}
.legal-placeholder {
  color: var(--bronze);
  font-weight: 850;
}
.legal-meta {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.legal-meta li {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 14px;
  border-bottom: 1px solid rgba(68, 55, 47, 0.12);
  padding: 10px 0;
}
.legal-meta li:last-child {
  border-bottom: 0;
}
.legal-meta strong {
  color: var(--ink);
}

.result-modal[hidden] { display: none; }
.result-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
}
.result-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 35, 35, 0.68);
  backdrop-filter: blur(12px);
}
.result-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(280px, 0.58fr);
  width: min(1060px, 100%);
  max-height: min(760px, calc(100svh - 44px));
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 34px 120px rgba(20, 20, 20, 0.32);
  overflow: hidden;
}
.result-media {
  position: relative;
  display: grid;
  min-height: min(680px, calc(100svh - 44px));
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(233, 228, 216, 0.9)),
    var(--paper);
}
.result-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: min(760px, calc(100svh - 44px));
  object-fit: contain;
  cursor: zoom-in;
}
.result-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(123, 81, 57, 0.28);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 12px 34px rgba(54, 43, 36, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.result-nav::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--bronze);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}
.result-nav:hover {
  border-color: rgba(123, 81, 57, 0.54);
  background: var(--bronze);
  transform: translateY(-50%) scale(1.04);
}
.result-nav:hover::before { color: var(--paper-strong); }
.result-prev { left: 16px; }
.result-next { right: 16px; }
.result-prev::before { content: "‹"; }
.result-next::before { content: "›"; }
.result-caption {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 42px);
}
.result-caption h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 390;
  line-height: 1.04;
}
.result-caption p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.62;
}
.result-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(68, 55, 47, 0.18);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.result-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.result-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(123, 81, 57, 0.24);
  cursor: pointer;
}
.result-dot.is-active { background: var(--bronze); }
.image-lightbox[hidden] { display: none; }
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(20, 20, 20, 0.88);
}
.image-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.image-lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.more-trigger {
  display: none;
  align-self: flex-start;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(123, 81, 57, 0.34);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--bronze);
  cursor: pointer;
  font-family: inherit;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.more-modal[hidden] { display: none; }
.more-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 18px;
}
.more-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 35, 35, 0.58);
  backdrop-filter: blur(10px);
}
.more-modal-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(680px, calc(100svh - 36px));
  overflow: auto;
  border: 1px solid rgba(68, 55, 47, 0.16);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 42px);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 28px 100px rgba(20, 20, 20, 0.28);
}
.more-title {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 390;
  line-height: 1.04;
}
.more-content p {
  color: var(--muted);
  line-height: 1.64;
}
.more-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(68, 55, 47, 0.18);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@keyframes scroll-dot {
  0%, 100% { transform: translate(-50%, 0); opacity: .4; }
  50% { transform: translate(-50%, 22px); opacity: 1; }
}
@keyframes rotate-dot {
  0%, 100% { transform: translate(0, -50%); opacity: .4; }
  50% { transform: translate(24px, -50%); opacity: 1; }
}
@keyframes cta-breathe {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 253, 248, 0); }
  50% { box-shadow: 0 0 28px rgba(255, 253, 248, 0.16); }
}
@keyframes cta-sheen {
  0%, 48% { transform: translateX(-115%); }
  72%, 100% { transform: translateX(115%); }
}
@keyframes cta-ring {
  0% { opacity: .42; transform: scale(.96); }
  70%, 100% { opacity: 0; transform: scale(1.14); }
}
@media (max-width: 900px) {
  .topbar {
    grid-template-columns: auto 42px auto;
    justify-content: space-between;
    width: min(720px, calc(100% - 28px));
    gap: 14px;
  }
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero {
    min-height: 92svh;
    align-items: end;
    padding-top: 104px;
    padding-bottom: 132px;
  }
  .brand-intro {
    min-height: 100svh;
    padding-top: 104px;
    padding-bottom: 58px;
  }
  .intro-logo { width: min(320px, 66vw); }
  .hero-copy {
    width: min(620px, 100%);
    padding-top: 12vh;
  }
  .hero-copy p:not(.eyebrow) { max-width: 460px; }
  .rotate-cue {
    display: inline-flex;
  }
  .journey {
    gap: 44vh;
    min-height: auto;
    padding-top: 30vh;
    padding-bottom: 30vh;
  }
  .journey-rail {
    left: calc(100vw - 24px);
    height: 42vh;
    margin-bottom: calc(-42vh - 1px);
    transform: none;
  }
  .step-panel, .step-panel.align-end {
    width: min(350px, 84%);
    min-height: auto;
    margin-left: 0;
    padding: 16px;
    background: rgba(255, 253, 248, 0.76);
    backdrop-filter: none;
  }
  .step-panel.align-end { margin-left: auto; }
  .step-panel h2, .section-heading h2, .contact-band h2 {
    font-size: clamp(1.45rem, 4.4vw, 2.25rem);
  }
  .step-panel h2 {
    font-size: clamp(1.28rem, 4vw, 2rem);
  }
  .mobile-detail { display: none; }
  .more-trigger { display: inline-flex; }
  .hero-copy .more-trigger { margin-top: 10px; }
  .capability-card .more-trigger,
  .offer-grid .more-trigger { margin-top: 16px; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .offer-grid, .technology-grid { grid-template-columns: 1fr; }
  .capabilities {
    padding-top: 30vh;
    padding-bottom: 30vh;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(255, 253, 248, 0.68));
  }
  .offer-band {
    padding-top: 30vh;
    padding-bottom: 30vh;
    background: rgba(255, 253, 248, 0.72);
  }
  .offer-band-alt {
    background: rgba(247, 245, 239, 0.72);
  }
  .technology-section {
    background: rgba(255, 253, 248, 0.72);
  }
  .capability-card,
  .offer-grid article {
    min-height: auto;
    padding: 15px 17px;
  }
  .capability-card span,
  .offer-grid span {
    margin-bottom: 9px;
  }
  .capability-card h3,
  .offer-grid h3 {
    margin-bottom: 0;
    font-size: clamp(.98rem, 3vw, 1.28rem);
    line-height: 1.14;
  }
  .contact-band { grid-template-columns: 1fr; }
  .result-modal-panel {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 28px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .result-media {
    min-height: 0;
    height: min(46svh, 420px);
    overflow: hidden;
  }
  .result-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
  }
  .result-caption {
    justify-content: flex-start;
    min-height: auto;
    padding: 26px;
  }
  .result-caption h2 {
    font-size: clamp(1.85rem, 6vw, 2.7rem);
  }
  .result-close {
    position: sticky;
    top: 12px;
    justify-self: end;
    margin-left: auto;
  }
  .detail-hero { grid-template-columns: 1fr; min-height: auto; }
  .detail-aside { border-left: 0; border-top: 1px solid var(--line); padding: 22px 0 0; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-card { min-height: auto; }
}
@media (max-width: 560px) {
  body::before { background-size: 34px 34px; }
  .topbar {
    grid-template-columns: minmax(0, auto) 38px auto;
    top: 10px;
    width: calc(100% - 18px);
    min-height: 52px;
    padding: 6px;
    gap: 8px;
  }
  .brand-mark {
    min-width: 0;
    width: 48px;
    min-height: 42px;
  }
  .brand-logo {
    width: 31px;
    height: 38px;
  }
  .menu-toggle {
    width: 38px;
    height: 38px;
  }
  .nav-cta { min-height: 38px; padding: 0 13px; font-size: .72rem; }
  .mobile-menu {
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    transform: translateY(-8px) scale(.98);
    transform-origin: top center;
    transition:
      opacity .22s ease,
      transform .34s cubic-bezier(.22, 1, .36, 1),
      border-radius .34s ease;
  }
  .mobile-menu a { justify-content: center; }
  .topbar.menu-open .mobile-menu {
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    transform: translateY(0) scale(1);
  }
  .topbar.menu-open .mobile-menu a {
    justify-content: center;
  }
  .hero {
    min-height: 92svh;
    padding: 90px 18px 122px;
  }
  .brand-intro {
    min-height: 100svh;
    padding: 86px 18px 48px;
  }
  .intro-logo { width: min(230px, 72vw); }
  h1 {
    max-width: 10ch;
    font-size: clamp(2rem, 10.2vw, 3.2rem);
    line-height: 1.02;
  }
  .hero-copy { padding-top: 12vh; }
  .hero-copy p:not(.eyebrow) {
    max-width: 34ch;
    font-size: .98rem;
    line-height: 1.55;
  }
  .hero-copy .hero-value {
    max-width: 32ch;
    font-size: .98rem;
  }
  .scroll-cue {
    left: 18px;
    right: auto;
    bottom: 24px;
  }
  .rotate-cue {
    display: inline-flex;
  }
  .journey {
    gap: 54vh;
    padding: 34vh 18px 34vh;
  }
  .journey-rail { display: none; }
  .step-panel, .step-panel.align-end {
    width: min(292px, 78%);
    border-radius: 14px;
    padding: 14px;
    background: rgba(255, 253, 248, 0.74);
  }
  .step-panel h2, .section-heading h2, .contact-band h2 {
    font-size: clamp(1.28rem, 5.9vw, 1.78rem);
    line-height: 1.08;
  }
  .step-panel h2 {
    font-size: clamp(1.18rem, 5.4vw, 1.62rem);
  }
  .step-panel p:not(.eyebrow), .capability-grid p {
    font-size: .92rem;
    line-height: 1.58;
  }
  .capabilities, .offer-band, .technology-section, .contact-band {
    padding: 30vh 18px;
  }
  .section-heading { margin-bottom: 20px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card, .offer-grid article, .detail-card {
    min-height: auto;
    padding: 12px 14px;
  }
  .capability-card span, .offer-grid span, .detail-card span {
    margin-bottom: 8px;
    font-size: .68rem;
  }
  .capability-card h3,
  .offer-grid h3 {
    font-size: clamp(.95rem, 4.55vw, 1.22rem);
    line-height: 1.16;
  }
  .more-trigger {
    min-height: 28px;
    margin-top: 10px;
    padding: 0 10px;
    font-size: .6rem;
  }
  .capability-card .more-trigger,
  .offer-grid .more-trigger { margin-top: 10px; }
  .contact-band {
    gap: 24px;
    align-items: start;
    padding: 12vh 18px;
  }
  .contact-band h2 {
    font-size: clamp(1.32rem, 6.2vw, 1.72rem);
    line-height: 1.08;
  }
  .contact-band .eyebrow {
    margin-bottom: 14px;
    font-size: .72rem;
  }
  .contact-band a {
    width: 100%;
    min-height: 38px;
    padding: 0 14px;
    font-size: .8rem;
  }
  .result-modal {
    align-items: start;
    padding: 10px;
  }
  .result-modal-panel {
    width: 100%;
    max-height: calc(100svh - 20px);
    border-radius: 12px;
  }
  .result-media {
    height: min(44svh, 390px);
  }
  .result-caption {
    padding: 18px;
  }
  .result-caption h2 {
    margin-bottom: 12px;
    font-size: clamp(1.55rem, 8.2vw, 2.25rem);
  }
  .result-caption p:not(.eyebrow) {
    font-size: .92rem;
    line-height: 1.52;
  }
  .result-nav {
    width: 34px;
    height: 34px;
  }
  .result-prev {
    left: 10px;
  }
  .result-next {
    right: 10px;
  }
  .result-dots {
    gap: 7px;
    margin-top: 18px;
  }
  .detail-main { padding: 98px 18px 58px; }
  .detail-title {
    font-size: clamp(2.7rem, 14vw, 4.8rem);
    line-height: .98;
  }
  .detail-actions { margin-top: 30px; }
}
@media (max-width: 380px) {
  .topbar { grid-template-columns: 42px 36px auto; }
  .brand-mark {
    width: 42px;
    min-height: 38px;
  }
  .brand-logo {
    width: 30px;
    height: 36px;
    object-fit: contain;
    object-position: center;
  }
  .menu-toggle {
    width: 36px;
    height: 36px;
  }
  .nav-cta {
    min-height: 36px;
    padding: 0 11px;
    font-size: .68rem;
  }
  h1 { font-size: clamp(2.25rem, 12vw, 3.35rem); }
  .step-panel h2, .section-heading h2, .contact-band h2 {
    font-size: clamp(1.78rem, 9.8vw, 2.55rem);
  }
}
