:root {
  --ink: #111311;
  --ink-soft: #232723;
  --paper: #f3f0e9;
  --paper-deep: #e7e1d5;
  --white: #fff;
  --accent: #a94c38;
  --line: rgba(17, 19, 17, 0.18);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --header-height: 88px;
  --page-pad: clamp(20px, 4vw, 68px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    height 500ms var(--ease),
    color 500ms var(--ease),
    background-color 500ms var(--ease),
    border-color 500ms var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-active {
  height: 72px;
  color: var(--ink);
  background: rgba(243, 240, 233, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  letter-spacing: 0.11em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 5px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 8px;
  opacity: 0.68;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  display: flex;
  gap: clamp(22px, 3vw, 48px);
  transform: translateX(-50%);
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 400ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
}

.language-option {
  padding: 8px 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  opacity: 0.48;
  transition: opacity 240ms ease;
}

.language-option:hover,
.language-option.is-active {
  opacity: 1;
}

.menu-toggle {
  width: 34px;
  height: 34px;
  padding: 8px 4px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 400ms var(--ease);
}

.menu-active .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-active .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  padding: 130px var(--page-pad) 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  color: var(--ink);
  background: var(--paper);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 400ms var(--ease),
    transform 400ms var(--ease),
    visibility 400ms;
}

.menu-open .mobile-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(38px, 12vw, 70px);
  line-height: 1.05;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 30%;
  animation: heroReveal 1.6s var(--ease) both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.79) 0%, rgba(8, 8, 8, 0.34) 52%, rgba(8, 8, 8, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.45), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 78vw);
  padding: 0 var(--page-pad) clamp(118px, 15vh, 175px);
}

.eyebrow {
  margin: 0 0 25px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: rgba(17, 19, 17, 0.54);
}

.hero h1 {
  margin: 0;
  max-width: 860px;
  font-family: var(--serif);
  font-size: clamp(58px, 8.4vw, 138px);
  font-weight: 400;
  line-height: 0.83;
  letter-spacing: -0.055em;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em,
.contact h2 em {
  margin-left: 0.35em;
  font-weight: 400;
}

.hero-intro {
  width: min(480px, 100%);
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(14px, 1.25vw, 18px);
}

.hero-actions {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 35px;
}

.button {
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    color 400ms var(--ease),
    background-color 400ms var(--ease),
    border-color 400ms var(--ease),
    transform 400ms var(--ease);
}

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

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

.button-light:hover {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
}

.button-dark {
  min-width: 205px;
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.text-link span:last-child {
  transition: transform 350ms var(--ease);
}

.text-link:hover span:last-child {
  transform: translateX(7px);
}

.hero-side-note {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: calc(var(--page-pad) * 0.5);
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 8px;
  letter-spacing: 0.17em;
  transform: translateY(-50%) rotate(90deg);
}

.hero-side-note::before {
  content: "";
  width: 45px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: var(--page-pad);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 100%;
  background: var(--white);
  animation: scrollLine 1.8s ease-in-out infinite;
}

.section-pad {
  padding: clamp(92px, 12vw, 180px) var(--page-pad);
}

.manifesto {
  display: grid;
  grid-template-columns: 0.35fr 1.3fr 0.85fr;
  gap: clamp(28px, 5vw, 90px);
  border-bottom: 1px solid var(--line);
}

.section-index {
  font-family: var(--serif);
  font-size: 13px;
}

.manifesto h2,
.section-heading h2,
.capabilities h2,
.about h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.manifesto h2 {
  font-size: clamp(48px, 6.2vw, 94px);
}

.manifesto-copy {
  padding-top: 43px;
}

.manifesto-copy > p {
  margin: 0;
  max-width: 440px;
  color: rgba(17, 19, 17, 0.68);
  font-size: clamp(15px, 1.3vw, 19px);
}

.manifesto-stat {
  margin-top: 65px;
  padding-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.manifesto-stat strong {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
}

.manifesto-stat span {
  max-width: 120px;
  color: rgba(17, 19, 17, 0.56);
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.collection {
  background: #f7f5f0;
}

.section-heading {
  margin-bottom: 65px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 70px;
  align-items: end;
}

.section-heading h2 {
  max-width: 810px;
  font-size: clamp(48px, 6.3vw, 94px);
}

.section-heading > p {
  margin: 0;
  max-width: 430px;
  color: rgba(17, 19, 17, 0.63);
  font-size: 14px;
}

.filter-bar {
  margin-bottom: 32px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.filter-button {
  padding: 11px 17px;
  color: rgba(17, 19, 17, 0.56);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    color 300ms ease,
    background-color 300ms ease,
    border-color 300ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 32px) clamp(12px, 1.6vw, 24px);
}

.product-card {
  min-width: 0;
  animation: cardIn 700ms var(--ease) both;
}

.product-card:nth-child(7n + 1),
.product-card:nth-child(7n + 5) {
  grid-column: span 2;
}

.catalog-card {
  grid-column: span 1 !important;
}

.catalog-card .product-image-wrap {
  aspect-ratio: 210 / 297 !important;
  background: var(--white);
}

.catalog-card .product-image-wrap img {
  object-fit: contain;
}

.product-card-button {
  width: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  background: none;
  border: 0;
  cursor: zoom-in;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 0.76;
  background: var(--paper-deep);
  overflow: hidden;
}

.product-card:nth-child(7n + 1) .product-image-wrap,
.product-card:nth-child(7n + 5) .product-image-wrap {
  aspect-ratio: 1.26;
}

.product-image-wrap::after {
  content: "↗";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  font-size: 13px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 350ms var(--ease),
    transform 350ms var(--ease);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms var(--ease);
}

.product-card-button:hover img {
  transform: scale(1.035);
}

.product-card-button:hover .product-image-wrap::after {
  opacity: 1;
  transform: translateY(0);
}

.product-meta {
  padding-top: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-meta h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.product-meta p {
  margin: 5px 0 0;
  color: rgba(17, 19, 17, 0.46);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-meta > span {
  flex: 0 0 auto;
  color: rgba(17, 19, 17, 0.4);
  font-size: 9px;
}

.collection-footer {
  margin-top: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.collection-footer p {
  color: rgba(17, 19, 17, 0.52);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.editorial-break {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  color: var(--white);
  background: var(--ink);
}

.editorial-image {
  min-height: 680px;
  overflow: hidden;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.editorial-copy {
  padding: var(--page-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-copy blockquote {
  margin: 0 0 55px;
  max-width: 650px;
  font-family: var(--serif);
  font-size: clamp(43px, 5.5vw, 82px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.text-link.light {
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

.capabilities {
  display: grid;
  grid-template-columns: 0.25fr 0.75fr 1fr;
  gap: clamp(25px, 5vw, 80px);
}

.capabilities h2 {
  font-size: clamp(48px, 5.4vw, 80px);
}

.capability {
  padding: 28px 0 32px;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.capability:last-child {
  border-bottom: 1px solid var(--line);
}

.capability > span {
  color: rgba(17, 19, 17, 0.4);
  font-family: var(--serif);
  font-size: 12px;
}

.capability h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.capability p {
  margin: 0;
  max-width: 440px;
  color: rgba(17, 19, 17, 0.58);
  font-size: 13px;
}

.about {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper-deep);
}

.about-image {
  min-height: 700px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  padding: clamp(70px, 9vw, 145px) var(--page-pad);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.about-brand-logo {
  width: clamp(92px, 8vw, 125px);
  height: auto;
  margin-bottom: 38px;
}

.about h2 {
  max-width: 690px;
  font-size: clamp(45px, 5.6vw, 84px);
}

.about-copy > p:not(.eyebrow) {
  margin: 40px 0;
  max-width: 510px;
  color: rgba(17, 19, 17, 0.62);
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1.28fr);
  align-items: start;
  gap: clamp(42px, 6vw, 100px);
  color: var(--white);
  background: var(--ink);
}

.contact h2 {
  font-size: clamp(55px, 6vw, 94px);
}

.contact h2 span,
.contact h2 em {
  display: block;
}

.contact-details {
  padding-top: 42px;
}

.contact-details > p:first-child {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.business-card {
  width: 100%;
  margin: 30px 0 0;
  transition: transform 450ms var(--ease);
}

.business-card:hover,
.business-card:focus-within {
  transform: translateY(-5px);
}

.business-card-meta {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.business-card-meta .eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}

.business-card-meta > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.digital-card {
  min-height: 540px;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.digital-card-intro {
  min-width: 0;
  padding: clamp(30px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 52px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 15% 10%, #f2d7d0 0, transparent 45%);
}

.digital-card-person {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.digital-card-accent {
  width: 12px;
  height: 56px;
  flex: 0 0 auto;
  background: var(--accent);
}

.digital-card-person h3 {
  margin: -7px 0 4px;
  color: var(--accent);
  font-family: var(--sans);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.digital-card-person p {
  margin: 0;
  color: rgba(169, 76, 56, 0.72);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.digital-card-qr-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: clamp(14px, 2vw, 24px);
}

.digital-card-qr-list figure {
  min-width: 0;
  margin: 0;
  text-align: center;
}

.digital-card-qr-list figcaption {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 25px);
}

.digital-card-qr {
  padding: 9px;
  display: block;
  background: var(--white);
  border: 1px solid rgba(17, 19, 17, 0.12);
}

.digital-card-qr img {
  width: 100%;
  height: auto;
  display: block;
}

.digital-card-details {
  position: relative;
  min-width: 0;
  padding: clamp(30px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background:
    radial-gradient(circle at 95% 5%, rgba(169, 76, 56, 0.1), transparent 36%),
    linear-gradient(145deg, var(--paper) 0%, var(--paper-deep) 100%);
  border-radius: 84px 0 0;
  isolation: isolate;
}

.digital-card-details::after {
  position: absolute;
  right: -95px;
  bottom: -130px;
  z-index: -1;
  width: 320px;
  height: 320px;
  content: "";
  border: 1px solid rgba(17, 19, 17, 0.1);
  border-radius: 50%;
}

.digital-card-brand {
  margin-bottom: clamp(24px, 3vw, 38px);
  display: flex;
  align-items: center;
  gap: 14px;
}

.digital-card-brand-mark {
  width: 46px;
  height: 46px;
  padding: 6px;
  display: block;
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid rgba(169, 76, 56, 0.48);
  border-radius: 50%;
  overflow: hidden;
}

.digital-card-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.digital-card-brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.digital-card-brand strong {
  font-size: 14px;
  letter-spacing: 0.18em;
}

.digital-card-brand small {
  color: rgba(17, 19, 17, 0.52);
  font-size: 7px;
  letter-spacing: 0.16em;
}

.digital-card-list {
  margin: 0;
}

.digital-card-row {
  padding: 12px 0;
  display: grid;
  grid-template-columns: minmax(45px, 0.14fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(17, 19, 17, 0.16);
}

.digital-card-row dt {
  color: rgba(17, 19, 17, 0.48);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.digital-card-row dd {
  min-width: 0;
  margin: 0;
  font-size: clamp(14px, 1.3vw, 19px);
  line-height: 1.35;
  overflow-wrap: anywhere;
  user-select: text;
}

.digital-card-row dd a {
  border-bottom: 1px solid transparent;
  transition: border-color 250ms var(--ease);
}

.digital-card-row dd a:hover {
  border-color: rgba(17, 19, 17, 0.72);
}

.copy-button {
  min-width: 52px;
  padding: 7px 9px;
  color: rgba(17, 19, 17, 0.72);
  font: inherit;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(17, 19, 17, 0.3);
  border-radius: 999px;
  cursor: pointer;
  transition:
    color 250ms var(--ease),
    background-color 250ms var(--ease),
    border-color 250ms var(--ease);
}

.copy-button:hover,
.copy-button:focus-visible {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.copy-status {
  min-height: 16px;
  margin: auto 0 0;
  padding-top: 14px;
  color: rgba(17, 19, 17, 0.55);
  font-size: 9px;
}

.site-footer {
  padding: 35px var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--white);
  background: #090a09;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  color: var(--white);
}

.site-footer p,
.site-footer > a {
  font-size: 9px;
  letter-spacing: 0.08em;
}

.site-footer > a {
  display: flex;
  gap: 12px;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 35px;
  color: var(--white);
  background: rgba(8, 9, 8, 0.96);
  border: 0;
  overflow: hidden;
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
}

.lightbox figure {
  min-width: 0;
  height: calc(100vh - 70px);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100% - 50px);
  object-fit: contain;
}

.lightbox figcaption {
  width: min(650px, 100%);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--serif);
  font-size: 18px;
}

.lightbox figcaption small {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.lightbox-close,
.lightbox-nav {
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 28px;
  width: 44px;
  height: 44px;
  font-size: 36px;
  font-weight: 200;
}

.lightbox-nav {
  width: 55px;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition:
    color 300ms ease,
    background-color 300ms ease;
}

.lightbox-nav:hover {
  color: var(--ink);
  background: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.reveal-delay-3 {
  transition-delay: 320ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scrollLine {
  from {
    transform: translateX(-20px);
  }
  to {
    transform: translateX(48px);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .manifesto {
    grid-template-columns: 0.18fr 1fr;
  }

  .manifesto-copy {
    grid-column: 2;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading > p {
    max-width: 600px;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-card:nth-child(7n + 1),
  .product-card:nth-child(7n + 5) {
    grid-column: span 1;
  }

  .product-card:nth-child(5n + 1) {
    grid-column: span 2;
  }

  .capabilities {
    grid-template-columns: 0.18fr 1fr;
  }

  .capability-list {
    grid-column: 2;
  }

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

  .contact-details {
    max-width: none;
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .header-actions {
    gap: 14px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-image {
    object-position: 50% 28%;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 8, 8, 0.76) 0%, rgba(8, 8, 8, 0.25) 75%),
      linear-gradient(90deg, rgba(8, 8, 8, 0.35), transparent);
  }

  .hero-content {
    width: 100%;
    padding-bottom: 105px;
  }

  .hero h1 {
    font-size: clamp(56px, 18vw, 88px);
    line-height: 0.87;
  }

  .hero h1 em {
    margin-left: 0;
  }

  .hero-intro {
    margin-top: 28px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .hero-side-note,
  .scroll-cue {
    display: none;
  }

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

  .section-index {
    margin-bottom: -10px;
  }

  .manifesto-copy {
    grid-column: auto;
    padding-top: 0;
  }

  .manifesto-stat {
    margin-top: 45px;
  }

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

  .product-card:nth-child(5n + 1) {
    grid-column: span 2;
  }

  .catalog-card {
    grid-column: span 1 !important;
  }

  .product-card:nth-child(5n + 1) .product-image-wrap {
    aspect-ratio: 1.15;
  }

  .catalog-card .product-image-wrap {
    aspect-ratio: 210 / 297 !important;
  }

  .product-meta h3 {
    font-size: 15px;
  }

  .product-meta > span {
    display: none;
  }

  .collection-footer {
    flex-direction: column;
  }

  .editorial-break,
  .about {
    grid-template-columns: 1fr;
  }

  .editorial-image,
  .about-image {
    min-height: 520px;
  }

  .editorial-copy {
    min-height: 520px;
  }

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

  .capability-list {
    grid-column: auto;
  }

  .about-copy {
    min-height: 620px;
  }

  .contact h2 em {
    margin-left: 0;
  }

  .business-card {
    margin-top: 24px;
  }

  .business-card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .digital-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .digital-card-intro {
    padding: 30px;
    gap: 36px;
  }

  .digital-card-accent {
    height: 52px;
  }

  .digital-card-person h3 {
    font-size: 30px;
  }

  .digital-card-qr-list {
    gap: 18px;
  }

  .digital-card-qr-list figcaption {
    font-size: 18px;
  }

  .digital-card-details {
    padding: 36px 30px 28px;
    border-radius: 48px 0 0;
  }

  .digital-card-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 14px;
  }

  .digital-card-row dt {
    grid-column: 1 / -1;
  }

  .digital-card-row dd {
    font-size: 15px;
  }

  .copy-button {
    min-width: 58px;
    padding: 8px 11px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand {
    margin-bottom: 10px;
  }

  .lightbox {
    padding: 65px 15px 20px;
  }

  .lightbox[open] {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
    height: calc(100vh - 150px);
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
    justify-self: center;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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