/* GreatPoint — Grey Matter editorial system, adapted to Django templates.
   Monochrome ink/chalk palette, Fraunces (light, 300) + Switzer, glass
   surfaces. Both fonts are loaded via <link> tags in base.html's <head>
   (with preconnect hints), not via @import here — @import inside an
   external stylesheet delays font discovery until after site.css itself
   loads, and this project doesn't use Manrope or DM Serif Display
   anymore, so no font @import belongs in this file at all.
   Header/nav intentionally NOT from the source design — this project uses
   its own floating pill nav + logo badge (see "Shared: nav + logo badge"
   below), so the site-header/nav-links/menu-toggle rules from the source
   stylesheet are omitted and replaced with that component instead. */

:root {
  --ink: #1d1d1c;
  --soft-ink: #62625e;
  --mist: #e7e7e3;
  --chalk: #f8f8f5;
  --paper: #fff;
  --line: rgba(29, 29, 28, .17);
  --glass: rgba(255, 255, 255, .62);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Switzer", Arial, sans-serif;
  --ease: cubic-bezier(.23, 1, .32, 1);
  --nav-bg: #1d1d1c;
  --nav-ink: #f8f8f5;
  --nav-muted: rgba(248, 248, 245, .62);
  --nav-fill: rgba(255, 255, 255, .12);
  --nav-line: rgba(255, 255, 255, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--chalk);
  font-family: var(--sans);
  font-size: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
  cursor: pointer;
}

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

.shell {
  width: min(100% - 64px, 1170px);
  margin-inline: auto;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #676763;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  width: 7px;
  height: 7px;
  border: 1px solid var(--ink);
  content: "";
}

.section-number {
  color: #7c7c77;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 400;
}

h1,
h2,
h3,
.wordmark {
  font-family: var(--serif);
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(65px, 8.2vw, 126px);
  letter-spacing: -.075em;
  line-height: 1;
}

h1 em,
h2 em,
.wordmark em {
  color: #777773;
  font-style: italic;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5vw, 76px);
  letter-spacing: -.065em;
  line-height: .89;
}

h3 {
  margin-bottom: 9px;
  font-size: clamp(30px, 3vw, 43px);
  letter-spacing: -.055em;
  line-height: .91;
}

.body-copy {
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.76;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 19px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--chalk);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .015em;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}

.button:hover {
  box-shadow: 5px 5px 0 #999995;
  transform: translate(-2px, -2px);
}

.button:active {
  transform: scale(.97);
}

.button-white {
  background: var(--paper);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.text-link b {
  font-size: 18px;
  font-weight: 400;
  line-height: 0;
  transition: transform .18s var(--ease);
}

.text-link:hover b {
  transform: translate(3px, -3px);
}

/* ---------- Shared: standalone logo badge, top-left ---------- */
.logo-badge {
  position: fixed;
  top: 18px;
  left: 22px;
  z-index: 51;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  box-sizing: border-box;
  background: rgba(29, 29, 28, .52);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(29, 29, 28, .16);
  transition: transform .2s var(--ease);
}

.logo-badge:hover {
  transform: translateY(-2px);
}

.logo-badge__img {
  width: 76%;
  height: 76%;
  object-fit: contain;
  display: block;
}

@media (max-width:640px) {
  .logo-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    top: 20px;
    left: 16px;
  }
}

/* ---------- Shared: floating nav capsule ---------- */
header {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
}

.nav-capsule {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  background: rgba(29, 29, 28, .52);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  color: var(--nav-ink);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 11px 11px 11px 28px;
  box-shadow: 0 8px 20px rgba(29, 29, 28, .16);
}

.nav-capsule .links {
  display: flex;
  gap: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-capsule .links a {
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--nav-muted);
  white-space: nowrap;
  text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.nav-capsule .links a.active {
  background: var(--nav-fill);
  color: var(--nav-ink);
}

.nav-capsule .links a:hover {
  background: var(--nav-fill);
  color: var(--nav-ink);
}

.nav-capsule .cta {
  margin-left: 8px;
  background: var(--chalk);
  color: var(--ink);
  padding: 13px 21px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity .2s var(--ease);
}

.nav-capsule .cta:hover {
  opacity: 0.82;
}

.mobile-only-link {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 4px;
  width: 32px;
  height: 32px;
  padding: 0;
  margin-left: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--nav-ink);
  border-radius: 1px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}

@media (max-width:900px) {
  header {
    left: auto;
    right: 14px;
    transform: none;
    width: 64px;
    max-width: 64px;
  }

  header:has(.nav-capsule.is-open) {
    width: calc(100vw - 96px);
    max-width: 320px;
  }

  .nav-capsule {
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
    justify-content: center;
  }

  .nav-capsule.is-open {
    padding: 8px 8px 8px 22px;
    justify-content: flex-start;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-capsule .cta {
    display: none;
  }

  .mobile-only-link {
    display: block;
  }

  .nav-capsule .links {
    order: 10;
    width: 100%;
    flex-direction: column;
    gap: 2px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .3s var(--ease), opacity .25s var(--ease), margin-top .3s var(--ease), padding-top .3s var(--ease);
  }

  .nav-capsule.is-open {
    border-radius: 22px;
  }

  .nav-capsule.is-open .links {
    max-height: 320px;
    opacity: 1;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--nav-line);
  }

  .nav-capsule .links a {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (prefers-reduced-motion:reduce) {
  .nav-capsule .links {
    transition: none;
  }

  .nav-toggle span {
    transition: none;
  }
}

/* Shared chrome — footer */
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
}

.brand-mark {
  position: relative;
  display: block;
  width: 21px;
  height: 21px;
  border: 3px solid var(--ink);
  border-radius: 3px 0 7px 3px;
}

.brand-mark::after {
  position: absolute;
  width: 9px;
  height: 9px;
  right: -3px;
  bottom: -3px;
  border: 2px solid var(--chalk);
  background: var(--ink);
  content: "";
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 70px 0 23px;
  background: #20201f;
  color: #f8f8f5;
}

.site-footer::before {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -350px;
  right: 7%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand-mark {
  border-color: #fff;
}

.site-footer .brand-mark::after {
  background: #fff;
  border-color: #20201f;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.footer-top .brand {
  align-self: start;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.footer-nav a,
.footer-contact {
  color: rgba(255, 255, 255, .64);
  font-size: 15px;
  line-height: 1.85;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-contact {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  line-height: .95;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 19px;
  color: rgba(255, 255, 255, .49);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Home */
.hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 76% 40%, #eeeeeb 0, #f9f9f6 28%, #fff 65%);
}

.hero::before {
  position: absolute;
  width: 430px;
  height: 430px;
  right: -96px;
  top: 5%;
  border: 1px solid rgba(29, 29, 28, .08);
  border-radius: 50%;
  content: "";
}

.hero .shell {
  width: min(100% - 64px, 1500px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 60px;
  padding: 150px 0 64px;
}

.hero-copy {
  max-width: 560px;
}

.hero-copy .eyebrow {
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: clamp(38px, 4vw, 64px);
  margin-bottom: 16px;
}

.hero-deck {
  max-width: 385px;
  margin-bottom: 22px;
  color: #656561;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 23px;
}

.hero-art {
  position: relative;
  min-height: 280px;
}

.hero-art img {
  position: absolute;
  z-index: 1;
  width: 95%;
  right: 0;
  top: 44px;
  filter: grayscale(1) contrast(.89);
  mix-blend-mode: multiply;
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  width: 92%;
  height: 65%;
  top: 67px;
  left: 0;
  transform: rotate(-23deg);
}

.hero-orbit svg { width: 100%; height: 100%; overflow: visible; }

.orbit-spin { transform-box: fill-box; transform-origin: center; animation: orbit-spin 70s linear infinite; }

.orbit-dot {
  filter: drop-shadow(0 0 6px rgba(29, 29, 28, .35));
  animation: orbit-pulse 3.2s ease-in-out infinite;
}

@keyframes orbit-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbit-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }

@media (prefers-reduced-motion: reduce) {
  .orbit-spin, .orbit-dot { animation: none; }
}

.hero-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .73);
  border: 1px solid rgba(255, 255, 255, .95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-note strong {
  color: #6a6a66;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -.08em;
}

.hero-note.top {
  top: 16px;
  right: 0;
}

.hero-note.bottom {
  left: 2%;
  bottom: 28px;
}

.hero-note.bottom::before {
  width: 10px;
  height: 10px;
  background: var(--ink);
  content: "";
}

.butterfly-note {
  position: absolute;
  z-index: 3;
  right: -7px;
  bottom: -11px;
  display: flex;
  align-items: center;
  gap: 9px;
  width: 191px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .9);
  background: rgba(249, 249, 247, .67);
  box-shadow: 0 11px 28px rgba(0, 0, 0, .07);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

.butterfly {
  position: relative;
  flex: 0 0 26px;
  height: 24px;
}

.butterfly::before,
.butterfly::after {
  position: absolute;
  top: 4px;
  width: 12px;
  height: 16px;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, .3);
  content: "";
}

.butterfly::before {
  left: 1px;
  border-radius: 85% 12% 74% 26%;
  transform: rotate(-32deg);
}

.butterfly::after {
  right: 1px;
  border-radius: 12% 85% 26% 74%;
  transform: rotate(32deg);
}

.butterfly i {
  position: absolute;
  z-index: 1;
  width: 2px;
  height: 20px;
  top: 4px;
  left: 12px;
  background: var(--ink);
  transform: rotate(6deg);
}

.butterfly-note p {
  margin: 0;
  color: #676763;
  font-size: 6.5px;
  line-height: 1.45;
}

.butterfly-note b {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-wordmark {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -3vw;
  color: rgba(29, 29, 28, .042);
  font: clamp(112px, 18vw, 292px)/.78 var(--serif);
  letter-spacing: -.09em;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
}

.scroll-tag {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: max(32px, calc((100vw - 1170px)/2));
  display: flex;
  align-items: center;
  gap: 9px;
  color: #6d6d69;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.scroll-tag::after {
  content: "↓";
  color: var(--ink);
  font-size: 17px;
}

.statement {
  display: grid;
  grid-template-columns: 1fr .82fr;
  align-items: end;
  gap: 80px;
  padding: 125px 0 106px;
  background: linear-gradient(105deg, #efefec, #e4e4e0);
}

.statement .shell {
  display: contents;
}

.statement>div:first-child {
  margin-left: max(32px, calc((100vw - 1170px)/2));
}

.statement>div:last-child {
  margin-right: max(32px, calc((100vw - 1170px)/2));
  padding: 23px 25px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .06);
  backdrop-filter: blur(12px);
}

.statement h2 {
  max-width: 590px;
  margin-top: 19px;
}

.statement p {
  max-width: 290px;
  margin-bottom: 19px;
  color: #686864;
  font-size: 17px;
  line-height: 1.7;
}

.product-section {
  position: relative;
  padding: 122px 0 116px;
  background: var(--chalk);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 53px;
}

.section-head h2 {
  margin-top: 19px;
}

.section-head>p {
  width: 275px;
  margin: 0 2px 4px 0;
  color: #656561;
  font-size: 17px;
  line-height: 1.72;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  position: relative;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .92);
  background: linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(240, 240, 236, .45));
  box-shadow: 0 20px 45px rgba(0, 0, 0, .07), inset 0 1px 0 rgba(255, 255, 255, .98);
  backdrop-filter: blur(14px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.product-card:hover {
  box-shadow: 0 28px 48px rgba(0, 0, 0, .11), inset 0 1px 0 #fff;
  transform: translateY(-6px);
}

.product-image {
  position: relative;
  height: 267px;
  overflow: hidden;
  background: #dededb;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: .48;
}

.product-image.has-image img {
  filter: none;
  opacity: 1;
}

.ui-pane {
  position: absolute;
  z-index: 2;
  inset: 33px 12% 30px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .9);
  background: rgba(251, 251, 249, .85);
  box-shadow: 0 14px 23px rgba(0, 0, 0, .13);
  transform: rotate(-2.3deg);
}

.ui-pane .ui-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: #5a5a56;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ui-pane .ui-label b {
  color: var(--ink);
}

.ui-lines i {
  display: block;
  height: 5px;
  margin-top: 8px;
  background: #c1c1bd;
}

.ui-lines i:nth-child(2) {
  width: 78%;
}

.ui-lines i:nth-child(3) {
  width: 92%;
}

.ui-chips {
  display: flex;
  gap: 5px;
  margin-top: 15px;
}

.ui-chips span {
  padding: 4px 5px;
  background: #20201f;
  color: #f8f8f5;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
}

.ui-status {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 8px;
  border-top: 1px solid #d3d3cf;
  color: #62625e;
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ui-status b {
  color: var(--ink);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 13px;
  color: #646460;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-meta a {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-size: 17px;
}

.product-card h3 {
  margin: 16px 0 7px;
  font-size: 40px;
}

.product-card>p {
  min-height: 38px;
  margin: 0;
  color: #666662;
  font-size: 16px;
  line-height: 1.58;
}

.proof-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding: 8px 9px;
  background: #e9e9e6;
  color: #656561;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.proof-line b {
  padding: 4px 5px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  white-space: nowrap;
}

.full-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 31px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 25px;
}

.notes-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0 91px;
  background: linear-gradient(110deg, #e8e8e4, #deded9);
}

.notes-section::after {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: 30px;
  border: 1px solid rgba(29, 29, 28, .09);
  border-radius: 50%;
  content: "";
}

.notes-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 43px;
}

.notes-head h2 {
  margin-top: 18px;
}

.notes-intro {
  display: flex;
  align-items: end;
  gap: 30px;
}

.notes-intro p {
  width: 203px;
  margin: 0;
  color: #686864;
  font-size: 12px;
  line-height: 1.65;
}

.scroll-controls {
  display: flex;
  gap: 7px;
}

.scroll-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(29, 29, 28, .24);
  background: rgba(255, 255, 255, .43);
  font-size: 21px;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.scroll-controls button:hover {
  background: var(--ink);
  color: #fff;
}

.notes-track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  overflow: auto;
  padding: 3px max(32px, calc((100vw - 1170px)/2)) 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #60605b transparent;
}

.notes-track::-webkit-scrollbar {
  height: 5px;
}

.notes-track::-webkit-scrollbar-thumb {
  background: #646460;
}

.notes-track::-webkit-scrollbar-track {
  background: rgba(29, 29, 28, .1);
}

.note-card {
  flex: 0 0 clamp(320px, 28vw, 390px);
  min-height: 352px;
  display: flex;
  flex-direction: column;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .93);
  background: linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(246, 246, 243, .35));
  box-shadow: 0 19px 39px rgba(0, 0, 0, .075), inset 0 1px 0 rgba(255, 255, 255, .95);
  backdrop-filter: blur(16px);
  scroll-snap-align: start;
  transition: transform .25s var(--ease);
}

.note-card:hover {
  transform: translateY(-5px);
}

.note-top {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #666662;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.note-top i {
  width: 7px;
  height: 7px;
  margin-left: auto;
  border: 1px solid var(--ink);
  box-shadow: 0 0 0 3px rgba(29, 29, 28, .06);
}

.note-graphic {
  position: relative;
  height: 95px;
  margin-top: 20px;
  overflow: hidden;
  background: #dcdcd7;
  border: 1px solid rgba(255, 255, 255, .8);
}

.note-graphic::before {
  position: absolute;
  width: 210px;
  height: 140px;
  left: 50%;
  top: -22px;
  border: 1px solid rgba(29, 29, 28, .25);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%) rotate(-22deg);
}

.note-graphic b {
  position: absolute;
  z-index: 1;
  width: 75px;
  height: 50px;
  left: 28%;
  top: 25px;
  background: rgba(250, 250, 247, .86);
  border: 1px solid #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .11);
}

.note-graphic b+b {
  width: 32px;
  height: 32px;
  left: auto;
  right: 25%;
  top: 19px;
  background: #252524;
}

.note-card.dark .note-graphic {
  background: #20201f;
}

.note-card.dark .note-graphic::before {
  border-color: rgba(255, 255, 255, .32);
}

.note-card.dark .note-graphic b {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .35);
}

.note-card h3 {
  margin: 20px 0 9px;
  font-size: 35px;
}

.note-card>p {
  margin: 0;
  color: #666662;
  font-size: 16px;
  line-height: 1.6;
}

.note-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  color: #70706c;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.note-status a {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-size: 18px;
}

.scroll-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px auto 0;
  width: min(100% - 64px, 1170px);
  color: #747470;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.scroll-note b {
  font-size: 18px;
  color: var(--ink);
}

.roadmap {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  text-align: center;
  background: #20201f;
  color: #f8f8f5;
}

.roadmap::before {
  position: absolute;
  width: 540px;
  height: 540px;
  top: -114px;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%) rotate(22deg);
}

.roadmap .shell {
  position: relative;
  z-index: 1;
}

.gp-square {
  display: grid;
  width: 29px;
  height: 29px;
  margin: 0 auto 21px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .5);
  font: 13px var(--serif);
}

.roadmap .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, .54);
}

.roadmap .eyebrow::before {
  display: none;
}

.roadmap h2 {
  margin: 20px auto 30px;
  color: #fff;
}

/* Inner-page architecture */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 135px 0 60px;
  background: linear-gradient(110deg, #fdfdfb, #e6e6e2);
}

.page-hero::after {
  position: absolute;
  width: 560px;
  height: 560px;
  top: -235px;
  right: -88px;
  border: 1px solid rgba(29, 29, 28, .1);
  border-radius: 50%;
  content: "";
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 800px;
  margin-top: 18px;
  font-size: clamp(40px, 4.4vw, 68px);
}

.page-hero .body-copy {
  max-width: 430px;
  margin: 20px 0 0 43%;
}

.page-hero .wordmark {
  position: absolute;
  z-index: -1;
  bottom: -30px;
  left: 20px;
  color: rgba(29, 29, 28, .04);
  font-size: 150px;
  letter-spacing: -.09em;
  white-space: nowrap;
}

.inner-section {
  padding: 115px 0;
}

.inner-section.mist {
  background: var(--mist);
}

.inner-section.black {
  background: #20201f;
  color: #fff;
}

.split-head {
  display: grid;
  grid-template-columns: 1.06fr .7fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 54px;
}

.split-head h2 {
  margin-top: 18px;
}

.split-head .body-copy {
  margin: 0;
}

.subnav {
  display: flex;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.subnav a {
  color: #676763;
}

.subnav a:hover {
  color: var(--ink);
}

.detail-photo {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 8px;
}

.detail-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

@media (max-width:800px) {
  .detail-photo img {
    height: 260px;
  }
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: start;
  padding: 95px 0;
  border-bottom: 1px solid var(--line);
}

.product-detail:last-child {
  border-bottom: 0;
}

.detail-number {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 21px;
  color: #666662;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.detail-number b {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 11px;
}

.product-detail h2 {
  margin-bottom: 25px;
}

.product-detail .button {
  margin-top: 19px;
}

.detail-ui {
  position: relative;
  min-height: 408px;
  overflow: hidden;
  padding: 25px;
  background: #dadad6;
  border: 1px solid rgba(255, 255, 255, .8);
}

.detail-ui::before {
  position: absolute;
  width: 470px;
  height: 300px;
  top: 35px;
  left: 45px;
  border: 1px solid rgba(29, 29, 28, .22);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.detail-ui.dark {
  background: #222220;
}

.detail-ui.dark::before {
  border-color: rgba(255, 255, 255, .23);
}

.detail-ui img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 358px;
  object-fit: cover;
  border: 1px solid #fff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .13);
}

.large-ui-window {
  position: relative;
  z-index: 1;
  margin: 45px 22px 0;
  padding: 18px;
  background: rgba(252, 252, 250, .88);
  border: 1px solid #fff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .13);
}

.large-ui-window header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid #d6d6d2;
  color: #5f5f5b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.large-ui-window header b {
  color: var(--ink);
}

.large-ui-window .row {
  display: grid;
  grid-template-columns: 1fr 70px 50px;
  gap: 8px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #e0e0dd;
  color: #555550;
  font-size: 11px;
}

.large-ui-window .row i {
  height: 7px;
  background: #bebeba;
}

.large-ui-window .row b {
  padding: 5px 6px;
  background: #20201f;
  color: white;
  font-size: 10px;
  text-align: center;
}

.large-ui-window .row:last-child {
  border-bottom: 0;
}

.dark .large-ui-window {
  background: rgba(242, 242, 238, .95);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(29, 29, 28, .15);
  border: 1px solid rgba(29, 29, 28, .15);
}

.feature-grid.feature-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width:800px) {
  .feature-grid.feature-grid--four {
    grid-template-columns: 1fr;
  }
}

.feature {
  min-height: 238px;
  padding: 25px;
  background: rgba(255, 255, 255, .62);
}

.feature .section-number {
  display: block;
  margin-bottom: 50px;
}

.feature h3 {
  font-size: 33px;
}

.feature p {
  max-width: 240px;
  margin: 0;
  color: #676763;
  font-size: 16px;
  line-height: 1.65;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.process-list li {
  display: grid;
  grid-template-columns: 100px 1fr 340px;
  gap: 40px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.process-list span {
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
  font-weight: 600;
}

.process-list h3 {
  margin: 0;
  font-size: 37px;
}

.process-list p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  line-height: 1.65;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 76px;
  align-items: start;
}

.about-quote {
  padding: 36px;
  background: #20201f;
  color: white;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .14);
}

.about-quote .eyebrow {
  color: rgba(255, 255, 255, .55);
}

.about-quote .eyebrow::before {
  border-color: #fff;
}

.about-quote p {
  margin: 33px 0 0;
  font: 44px/.95 var(--serif);
  letter-spacing: -.06em;
}

.about-quote p em {
  color: #a4a49e;
}

.about-content {
  padding: 16px 0;
}

.about-content .body-copy {
  max-width: 470px;
  font-size: 15px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 43px;
}

.location {
  padding: 19px;
  border: 1px solid rgba(29, 29, 28, .19);
  background: rgba(255, 255, 255, .48);
}

.location span {
  display: block;
  margin-bottom: 31px;
  color: #686864;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.location h3 {
  margin: 0;
  font-size: 34px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 100px;
}

.contact-grid h2 {
  margin-top: 19px;
}

.contact-links {
  margin: 39px 0;
}

.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--ink);
  font: 25px var(--serif);
}

.contact-link span {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
}

.contact-panel {
  padding: 31px;
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(255, 255, 255, .95);
  box-shadow: 0 22px 43px rgba(0, 0, 0, .08);
  backdrop-filter: blur(16px);
}

.contact-panel p {
  color: #686864;
  font-size: 17px;
  line-height: 1.68;
}

.contact-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 27px;
  background: rgba(29, 29, 28, .14);
}

.contact-facts div {
  min-height: 102px;
  padding: 15px;
  background: #f7f7f3;
}

.contact-facts span {
  display: block;
  color: #6a6a66;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-facts b {
  display: block;
  margin-top: 26px;
  font: 27px var(--serif);
  letter-spacing: -.05em;
}

/* Contact form (project-specific — the source design had no live form) */
.contact-form-panel {
  padding: 31px;
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(255, 255, 255, .95);
  box-shadow: 0 22px 43px rgba(0, 0, 0, .08);
  backdrop-filter: blur(16px);
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  margin-bottom: 9px;
  color: #6a6a66;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 9px 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-width: 2px;
}

.field textarea {
  resize: vertical;
  min-height: 88px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 19px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--chalk);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .015em;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}

.btn-submit:hover {
  box-shadow: 5px 5px 0 #999995;
  transform: translate(-2px, -2px);
}

.form-success {
  display: none;
  padding: 20px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
}

.form-success.show {
  display: block;
}

#contact-form.hidden {
  display: none;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 90px;
}

.legal-layout aside {
  position: sticky;
  top: 30px;
  height: max-content;
  padding: 17px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.legal-layout aside p {
  margin: 0 0 10px;
  color: #656561;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-layout aside span {
  display: block;
  font: 20px var(--serif);
}

.legal-toc {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.legal-toc a {
  display: block;
  padding: 5px 0;
  color: #676763;
  font-size: 13px;
  line-height: 1.5;
}

.legal-toc a:hover {
  color: var(--ink);
}

.legal-copy {
  max-width: 690px;
}

.legal-copy h2 {
  margin: 49px 0 16px;
  font-size: 45px;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy h3 {
  margin: 24px 0 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
}

.legal-copy p,
.legal-copy li {
  color: #5f5f5b;
  font-size: 17px;
  line-height: 1.8;
}

.legal-copy ul {
  padding-left: 18px;
}

.legal-notice {
  margin: 25px 0 35px;
  padding: 18px 20px;
  border-left: 2px solid var(--ink);
  background: #e7e7e3;
  color: #5f5f5b;
  font-size: 16px;
  line-height: 1.65;
}

/* Resources / Blog */
.resources-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 17px 0;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.resources-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.resources-tabs a {
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #676763;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

.resources-tabs a:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.resources-tabs a.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.resources-count {
  color: #8a8a86;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color .2s ease;
}

.blog-card:hover {
  border-color: var(--ink);
}

.blog-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #dedbd6;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.05);
}

.blog-tag {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 6px 11px;
  background: var(--ink);
  color: #f8f8f5;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.thumb-graphic {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #262624, #1a1a19);
}

.thumb-graphic::before {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.thumb-graphic span {
  position: relative;
  z-index: 1;
  font: italic 22px var(--serif);
  color: rgba(255, 255, 255, .55);
}

.blog-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
  color: #767672;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-meta span:not(:first-child)::before {
  content: "·";
  margin: 0 8px;
  color: #b6b6b1;
}

.blog-body h3 {
  margin: 0 0 9px;
  font-size: 24px;
}

.blog-card:hover h3 {
  opacity: .68;
}

.blog-body>p {
  flex: 1;
  margin: 0 0 18px;
  color: #666662;
  font-size: 15px;
  line-height: 1.65;
}

.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(29, 29, 28, .12);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-read b {
  font-size: 16px;
  font-weight: 400;
  line-height: 0;
  transition: transform .18s var(--ease);
}

.blog-card:hover .blog-read b {
  transform: translate(3px, -3px);
}

.blog-empty {
  padding: 60px 0;
  color: #676763;
}

.blog-load-more {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 24px 0 0;
  color: #767672;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-meta-row span:not(:first-child)::before {
  content: "·";
  margin: 0 8px;
  color: #b6b6b1;
}

.article-cover {
  margin: 0 0 8px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.article-cover img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.article-cover.thumb-graphic {
  position: relative;
  height: 340px;
  border-radius: 0;
}

.article-cover.thumb-graphic span {
  font-size: 36px;
}

@media (max-width:800px) {

  .article-cover img,
  .article-cover.thumb-graphic {
    height: 240px;
  }
}

.article-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 56px 0 10px;
}

.article-content {
  font-size: 17px;
  line-height: 1.9;
  color: #3f3f3d;
}

.article-content p {
  margin: 0 0 22px;
}

.article-content p:first-of-type::first-letter {
  float: left;
  margin: 4px 8px 0 0;
  font-family: var(--serif);
  font-size: 64px;
  line-height: .8;
  color: var(--ink);
}

.article-footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 26px;
  margin-top: 10px;
  border-top: 1px solid var(--line);
}

.article-related {
  padding-top: 0;
}

@media (max-width:800px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .article-content p:first-of-type::first-letter {
    font-size: 48px;
  }
}

@media (max-width:1000px) and (min-width:801px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Motion and responsive */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

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

@media (max-width:800px) {
  .shell {
    width: min(100% - 48px, 1170px);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 120px 0 88px;
  }

  .hero-art {
    display: none;
  }

  .hero-wordmark {
    bottom: -7px;
    font-size: 116px;
  }

  .scroll-tag {
    left: 24px;
    bottom: 20px;
  }

  .statement {
    display: block;
    padding: 75px 24px 65px;
  }

  .statement>div:first-child,
  .statement>div:last-child {
    margin: 0;
  }

  .statement>div:last-child {
    margin-top: 27px;
  }

  .product-section,
  .notes-section,
  .inner-section {
    padding: 78px 0;
  }

  .section-head,
  .split-head,
  .notes-head {
    display: block;
  }

  .section-head>p,
  .split-head .body-copy {
    width: auto;
    margin-top: 23px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 238px;
  }

  .product-card h3 {
    font-size: 37px;
  }

  .notes-head {
    margin-bottom: 27px;
  }

  .notes-intro {
    display: block;
    margin-top: 19px;
  }

  .notes-intro p {
    width: auto;
    max-width: 280px;
  }

  .scroll-controls {
    display: none;
  }

  .notes-track {
    padding-left: 24px;
    padding-right: 24px;
  }

  .note-card {
    flex-basis: min(307px, 82vw);
    min-height: 344px;
  }

  .scroll-note {
    width: calc(100% - 48px);
  }

  .roadmap {
    padding: 91px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 40px;
  }

  .footer-nav {
    max-width: 360px;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

  .page-hero {
    padding: 110px 0 66px;
  }

  .page-hero h1 {
    font-size: 67px;
  }

  .page-hero .body-copy {
    margin-left: 0;
  }

  .page-hero .wordmark {
    left: 0;
    font-size: 106px;
  }

  .product-detail,
  .about-grid,
  .contact-grid,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 65px 0;
  }

  .detail-ui {
    min-height: 325px;
  }

  .large-ui-window {
    margin: 36px 0 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .process-list li {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .process-list p {
    grid-column: 2;
  }

  .location-grid {
    margin-top: 30px;
  }

  .legal-layout {
    gap: 38px;
  }

  .legal-layout aside {
    position: static;
  }

  .contact-panel,
  .contact-form-panel {
    padding: 23px;
  }
}
/* ---------- Homepage: pinned product scroll-carousel ---------- */
.product-scroll { position: relative; }
.product-scroll__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--mist);
}
.product-scroll__stage { position: relative; width: min(100% - 64px, 1080px); height: 68vh; margin: 26px 0; }
.product-panel {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  opacity: 0; transform: translateY(70px);
  transition: opacity .5s ease, transform .55s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.product-panel.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.product-panel.is-past { opacity: 0; transform: translateY(-70px); }
.product-panel h2 { margin-bottom: 30px; }
.product-panel__cards { position: relative; width: 100%; height: 420px; margin-bottom: 30px; }
.product-panel__card {
  position: absolute; width: 290px; padding: 26px 28px;
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(0,0,0,.07);
}
.product-panel__card--1 { top: 0;    left: 0;   transform: rotate(-6deg); z-index: 6; }
.product-panel__card--2 { top: 20px; left: 270px; transform: rotate(4deg); z-index: 5; }
.product-panel__card--3 { top: 50px; left: 550px; transform: rotate(-4deg); z-index: 4; }
.product-panel__card--4 { top: 150px; left: 90px;  transform: rotate(5deg); z-index: 3; }
.product-panel__card--5 { top: 195px; left: 370px; transform: rotate(-3deg); z-index: 2; }
.product-panel__card--6 { top: 240px; left: 650px; transform: rotate(4deg); z-index: 1; }
.product-panel__card .section-number { display: block; margin-bottom: 12px; }
.product-panel__card p { font-size: 17px; color: var(--soft-ink); line-height: 1.55; margin: 0; }
.product-scroll__progress { display: flex; gap: 10px; width: min(100% - 64px, 1080px); margin-top: 8px; }
.product-scroll__seg { flex: 1; height: 2px; background: var(--line); transition: background .3s ease; }
.product-scroll__seg.is-active { background: var(--ink); }

@media (max-width: 800px) {
  .product-scroll__stage { height: auto; }
  .product-panel__cards { height: auto; position: static; display: flex; flex-direction: column; gap: 16px; }
  .product-panel__card { position: static; width: 100%; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .product-scroll { height: auto !important; }
  .product-scroll__sticky { position: static; height: auto; padding: 60px 0; }
  .product-panel { position: static; opacity: 1; transform: none; margin-bottom: 60px; }
  .product-scroll__progress { display: none; }
}
