:root {
  --terra-300: #ddbf88;
  --terra-400: #d4b06f;
  --terra-500: #ccab70;
  --terra-600: #b99657;
  --terra-700: #97783f;
  --terra-900: #4a3d24;
  --ink-900: #1b1916;
  --ink-800: #262320;
  --ink-700: #353230;
  --ink-600: #404040;
  --ink-500: #5a5550;
  --ink-400: #837c75;
  --bone-50: #fbf9f5;
  --bone-100: #f5f1ea;
  --bone-200: #ece5d9;
  --bone-300: #ddd3c2;
  --hairline: color-mix(in srgb, var(--ink-900) 12%, transparent);
  --hairline-light: #ffffff29;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 81px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--bone-100);
  color: var(--ink-900);
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

ul {
  list-style: none;
}

.wrap {
  width: 100%;
  max-width: 82rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 768px) {
  .wrap {
    padding-inline: 2.5rem;
  }

  .header-phone {
    display: flex;
  }
}

.hairline {
  border-color: var(--hairline);
}

.wood-bar {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #4a3d24 0%, #6f5932 22%, #97783f 42%, #ccab70 70%, #e8d3ad 100%);
}

/* Header */
#site-header {
  position: relative;
  z-index: 70;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition: background 0.5s, border-color 0.5s, backdrop-filter 0.5s, padding 0.5s;
}

.site-header.is-solid,
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--ink-900) 92%, transparent);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--hairline-light);
  padding: 14px 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 30px;
}

.logo-mark .dot {
  width: 13.2px;
  height: 13.2px;
  border-radius: 9999px;
  background: var(--terra-500);
}

.logo-mark .bar {
  width: 28.5px;
  height: 5.1px;
  background: var(--bone-50);
  margin-top: 3px;
}

.logo-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-word strong {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bone-50);
}

.logo-word span {
  margin-top: 3px;
  font-size: 0.56rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: rgba(251, 249, 245, 0.7);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 22px;
}

.nav-desktop a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: color-mix(in srgb, var(--bone-50) 80%, transparent);
  padding-bottom: 3px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: color 0.3s, background-size 0.3s var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--terra-300);
  background-size: 100% 1px;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--terra-500);
  color: var(--ink-900);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 2px;
  transition: background 0.3s;
}

.header-phone:hover {
  background: var(--terra-400);
}

.header-phone svg {
  flex-shrink: 0;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 2px;
  border: 1px solid color-mix(in srgb, var(--bone-100) 25%, transparent);
  color: var(--bone-50);
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .menu-toggle {
    display: none;
  }
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: #1b1916;
  color: var(--bone-50);
  padding: 24px 24px 48px;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  isolation: isolate;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.nav-mobile.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-mobile nav {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
  gap: 4px;
}

.nav-mobile nav a {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline-light);
}

.nav-mobile__cta {
  margin-top: auto;
  width: fit-content;
}

/* Buttons — same geometry as live: 14px / 14px 24px / 2px */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  padding: 14px 24px;
  min-height: 48px;
  border: 1px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}

.text-link {
  display: inline-flex;
  align-items: center;
  align-self: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
  padding-bottom: 3px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
}

.btn svg {
  transition: transform 0.3s var(--ease);
}

.btn:hover svg {
  transform: translate(2px, -2px);
}

.btn-gold {
  background: var(--terra-500);
  color: var(--ink-900);
}

.btn-gold:hover {
  background: var(--terra-400);
}

.btn-ghost {
  background: transparent;
  color: var(--bone-50);
  border-color: var(--hairline-light);
}

.btn-ghost:hover {
  background: var(--bone-50);
  color: var(--ink-900);
}

.btn-ink {
  background: var(--ink-900);
  color: var(--bone-50);
}

.btn-ink:hover {
  background: var(--terra-600);
  color: var(--ink-900);
}

.btn-outline-ink {
  background: transparent;
  border-color: var(--hairline);
  color: var(--ink-900);
}

.btn-outline-ink:hover {
  background: var(--ink-900);
  color: var(--bone-50);
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-400);
}

.eyebrow .dash {
  width: 22px;
  height: 1px;
  background: var(--terra-500);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ink-900);
  color: var(--bone-50);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  image-rendering: auto;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--ink-900) 0%, color-mix(in srgb, var(--ink-900) 28%, transparent) 48%, color-mix(in srgb, var(--ink-900) 38%, transparent) 100%),
    linear-gradient(to right, color-mix(in srgb, var(--ink-900) 55%, transparent) 0%, color-mix(in srgb, var(--ink-900) 12%, transparent) 48%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 28px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-200);
}

.hero-kicker .logo-mark {
  width: 18px;
  height: 18px;
}

.hero-kicker .logo-mark .dot {
  width: 8px;
  height: 8px;
}

.hero-kicker .logo-mark .bar {
  width: 17px;
  height: 3px;
  margin-top: 2px;
}

.hero h1 {
  max-width: 896px;
  font-size: clamp(2.35rem, 5.4vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: var(--bone-50);
  text-wrap: pretty;
}

.hero h1 .gold {
  color: var(--terra-400);
}

.hero-lead {
  margin-top: 22px;
  max-width: 42rem;
  font-size: 16px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--bone-50) 78%, transparent);
}

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

.hero-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--hairline-light);
  background: color-mix(in srgb, var(--ink-800) 60%, transparent);
}

.hero-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding-block: 16px;
}

.hero-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.hero-cats a {
  font-size: 13px;
  font-weight: 600;
  color: var(--bone-200);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-cats a:hover {
  color: var(--terra-300);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bone-50) 70%, transparent);
}

.hero-stats strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--bone-50);
}

.hero-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.discover {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terra-300);
}

.marquee {
  overflow: hidden;
  width: 100%;
  background: var(--ink-800);
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  animation: marquee 36s linear infinite;
  will-change: transform;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 32px;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: color-mix(in srgb, var(--bone-300) 50%, transparent);
}

.marquee__item .logo-mark {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.marquee__item .logo-mark .bar {
  width: 11.4px;
  height: 2px;
  background: var(--terra-500);
  margin-top: 1.2px;
}

.marquee__item .logo-mark .dot {
  width: 5.3px;
  height: 5.3px;
  background: var(--terra-500);
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* Sections */
.section {
  padding: 96px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 128px 0;
  }
}

.bg-bone { background: var(--bone-100); }
.bg-bone-50 { background: var(--bone-50); }
.bg-bone-200 { background: var(--bone-200); }
.bg-ink { background: var(--ink-900); color: var(--bone-50); }
.bg-terra { background: var(--terra-500); color: var(--ink-900); }

.section-head {
  display: grid;
  gap: 24px;
  margin-bottom: 56px;
}

@media (min-width: 900px) {
  .section-head.split {
    grid-template-columns: 1.4fr 0.8fr;
    align-items: end;
  }
  .section-head.split .lede {
    text-align: right;
    max-width: 28rem;
    margin-left: auto;
  }
}

.display {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-wrap: pretty;
}

.lede {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-500);
}

.bg-ink .lede {
  color: color-mix(in srgb, var(--bone-50) 62%, transparent);
}

/* Brand / idea */
.idea-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 960px) {
  .idea-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 72px;
    align-items: start;
  }
}

.equation {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.equation span {
  color: var(--terra-600);
}

.photo-pair {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: end;
}

.photo-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-pair figure:first-child img {
  min-height: 420px;
  max-height: 520px;
}

.photo-pair figure:last-child img {
  min-height: 280px;
  max-height: 360px;
}

.idea-copy {
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-500);
  max-width: 38rem;
}

/* Catalog cards */
.cat-grid {
  display: grid;
  gap: 18px;
}

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

.cat-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--hairline);
  background: var(--bone-50);
  color: var(--ink-900);
}

.cat-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bone-200);
}

.cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.cat-card:hover .cat-card__media img {
  transform: scale(1.05);
}

.cat-num {
  position: absolute;
  left: 16px;
  top: 16px;
  border-radius: 2px;
  background: color-mix(in srgb, var(--ink-900) 85%, transparent);
  color: var(--bone-50);
  padding: 4px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  backdrop-filter: blur(8px);
}

.cat-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.cat-card__title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cat-card__title h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cat-card__title svg {
  margin-top: 4px;
  flex-shrink: 0;
  color: var(--ink-400);
  transition: transform 0.3s, color 0.3s;
}

.cat-card:hover .cat-card__title svg {
  color: var(--terra-600);
  transform: translate(2px, -2px);
}

.cat-meta {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra-700);
}

.cat-card p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-500);
}

.tags {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  border-radius: 2px;
  background: var(--bone-200);
  color: var(--ink-600);
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Stats band */
.stats-band {
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
}

@media (min-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-block strong {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-block span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Projects */
.proj-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 40px;
}

.proj-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 22vw);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.proj-row::-webkit-scrollbar { display: none; }

.proj-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-width: 260px;
}

.proj-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink-800);
  border-radius: 2px;
}

.proj-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.proj-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink-900) 0%, color-mix(in srgb, var(--ink-900) 30%, transparent) 50%, color-mix(in srgb, var(--ink-900) 50%, transparent) 100%);
}

.proj-card__caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: var(--bone-50);
}

.proj-card__caption .where {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra-300);
}

.proj-card__caption h3 {
  margin-top: 6px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.proj-card__caption p {
  margin-top: 4px;
  font-size: 13px;
  color: color-mix(in srgb, var(--bone-50) 72%, transparent);
}

/* Process */
.process-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline-light);
}

.process-item {
  display: grid;
  gap: 12px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline-light);
}

@media (min-width: 800px) {
  .process-item {
    grid-template-columns: 80px 1fr 1.2fr;
    gap: 32px;
    align-items: start;
  }
}

.process-item .num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--terra-400);
}

.process-item h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.process-item p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--bone-50) 62%, transparent);
}

.process-cta {
  margin-top: 48px;
  padding: 32px;
  border: 1px solid var(--hairline-light);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.process-cta p {
  margin-top: 6px;
  font-size: 14px;
  color: color-mix(in srgb, var(--bone-50) 62%, transparent);
}

/* Brands */
.brands {
  padding: 80px 0 96px;
}

.brands-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 28px;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
}

.brand-row span {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-700);
  opacity: 0.72;
}

.brands .note {
  margin-top: 28px;
  font-size: 12px;
  color: var(--ink-400);
  max-width: 46rem;
}

/* Final CTA */
.final-cta h2 {
  max-width: 16ch;
}

.final-cta .lede {
  margin-top: 18px;
  max-width: 36rem;
}

.final-cta .hero-actions {
  margin-top: 32px;
  justify-content: center;
}

.footer-cta {
  width: 100%;
  margin-top: 24px;
  padding: 12px 20px;
  min-height: 44px;
}

.cat-offer {
  margin-top: 32px;
}

/* Footer */
.site-footer {
  background: var(--ink-900);
  color: var(--bone-50);
}

.footer-grid {
  display: grid;
  gap: 48px;
  padding-block: 64px;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 4fr 2fr 3fr 3fr;
    padding-block: 80px;
  }
}

.footer-brand .logo-mark .bar { background: var(--bone-50); }
.footer-brand .logo-word strong { font-size: 1.5rem; }
.footer-brand .logo-word span { color: var(--terra-300); }

.footer-brand p {
  margin-top: 24px;
  max-width: 20rem;
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--bone-300) 80%, transparent);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 1px solid var(--hairline-light);
  color: var(--bone-200);
  transition: border-color 0.3s, color 0.3s;
}

.socials a:hover {
  border-color: var(--terra-400);
  color: var(--terra-300);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra-300);
  margin-bottom: 16px;
}

.footer-col ul a,
.footer-col li {
  display: block;
  font-size: 14px;
  color: var(--bone-200);
  padding: 5px 0;
}

.footer-col ul a:hover {
  color: var(--bone-50);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-block: 20px 28px;
  border-top: 1px solid var(--hairline-light);
  font-size: 13px;
  color: color-mix(in srgb, var(--bone-300) 70%, transparent);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a:hover {
  color: var(--bone-50);
}

/* Page hero (inner) */
.page-hero {
  background: var(--ink-900);
  color: var(--bone-50);
  padding: calc(var(--header-h) + 72px) 0 72px;
}

.page-hero h1 {
  margin-top: 16px;
  max-width: 16ch;
}

.page-hero h1 .gold {
  color: var(--terra-400);
}

.page-hero .lede {
  margin-top: 18px;
  max-width: 38rem;
  color: color-mix(in srgb, var(--bone-50) 70%, transparent);
}

/* About */
.about-story {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .about-story {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
}

.about-story img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.materials {
  display: grid;
  gap: 18px;
}

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

.material-card {
  background: var(--bone-50);
  border: 1px solid var(--hairline);
  padding: 32px;
}

.material-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.material-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.material-card p {
  margin-top: 10px;
  color: var(--ink-500);
  line-height: 1.7;
}

.principles {
  display: grid;
  gap: 16px;
}

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

.principle {
  padding: 28px;
  border: 1px solid var(--hairline);
  background: var(--bone-50);
}

.principle h3 {
  font-size: 1.15rem;
  font-weight: 800;
}

.principle p {
  margin-top: 8px;
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.65;
}

.quote {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.quote p {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra-400);
}

/* FAQ */
.faq-list {
  max-width: 52rem;
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: var(--terra-600);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 0 22px;
  color: var(--ink-500);
  line-height: 1.7;
  max-width: 46rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 72px;
  }
}

.contact-meta h3 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra-700);
  margin-bottom: 6px;
}

.contact-meta a,
.contact-meta p {
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-meta > div + div {
  margin-top: 22px;
}

.form {
  background: var(--bone-50);
  border: 1px solid var(--hairline);
  padding: 28px;
}

.form-row {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

@media (min-width: 640px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--ink-500);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  background: var(--bone-100);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: 12px 14px;
  outline: none;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--terra-500);
  box-shadow: 0 0 0 3px #ccab7033;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form .btn {
  width: 100%;
  margin-top: 24px;
  padding-block: 16px;
}

@media (min-width: 640px) {
  .form .btn {
    width: auto;
  }
}

.form-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-400);
}

.form-success {
  display: none;
  padding: 14px;
  background: color-mix(in srgb, var(--terra-500) 18%, var(--bone-50));
  border: 1px solid var(--terra-500);
  font-size: 14px;
  margin-bottom: 14px;
}

.form-success.is-visible {
  display: block;
}

/* Product / catalog extras */
.product-grid {
  display: grid;
  gap: 18px;
}

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

@media (min-width: 1100px) {
  .product-grid.three {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bone-50);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  overflow: hidden;
  color: var(--ink-900);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bone-200);
}

.product-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card .cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra-700);
}

.product-card h3 {
  margin-top: 6px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.product-card p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
  flex: 1;
}

.product-card .more {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.empty-state {
  padding: 48px;
  border: 1px dashed var(--hairline);
  text-align: center;
  color: var(--ink-500);
}

.product-hero {
  display: grid;
  gap: 40px;
  padding: 64px 0 80px;
}

@media (min-width: 900px) {
  .product-hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.product-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bone-200);
}

.spec-table {
  margin-top: 24px;
  width: 100%;
  border-top: 1px solid var(--hairline);
}

.spec-table div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
}

.spec-table dt {
  color: var(--ink-400);
  font-weight: 600;
}

.legal h2 {
  margin: 40px 0 12px;
  font-size: 1.4rem;
}

.legal p {
  color: var(--ink-500);
  line-height: 1.75;
  max-width: 46rem;
  margin-bottom: 12px;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-weight: 700;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 1200px) {
  .nav-desktop {
    gap: 28px;
  }
}

@media (max-width: 1023px) {
  .hero-stats {
    display: none;
  }

  .hero-bar__inner {
    padding-block: 14px 16px;
  }

  .hero-cats {
    gap: 10px 18px;
  }

  .hero-cats a {
    font-size: 13px;
  }

  .marquee__item {
    gap: 20px;
    padding: 14px 20px;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .page-hero {
    padding: calc(var(--header-h) + 48px) 0 56px;
  }

  .section {
    padding: 72px 0;
  }

  .photo-pair figure:first-child img {
    min-height: 240px;
    max-height: 280px;
  }

  .photo-pair figure:last-child img {
    min-height: 180px;
    max-height: 220px;
  }

  .equation {
    font-size: clamp(1.7rem, 9vw, 2.5rem);
    gap: 8px;
  }

  .process-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
  }

  .process-cta .btn {
    width: 100%;
  }

  .nav-mobile nav a {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
    padding: 14px 0;
  }

  .logo-word span {
    letter-spacing: 0.22em;
  }

  .proj-row {
    grid-auto-columns: minmax(72vw, 280px);
  }

  .contact-grid,
  .product-hero,
  .about-story {
    gap: 28px;
  }

  .form {
    padding: 20px;
  }
}
