﻿:root {
  --charcoal: #1a1814;
  --warm-brown: #8a7355;
  --olive: #3a4a35;
  --sage: #6b7a5e;
  --sand: #c4b49a;
  --grege: #eeeae3;
  --ink-soft: rgba(238, 234, 227, 0.72);
  --ink-muted: rgba(238, 234, 227, 0.58);
  --dark-soft: rgba(26, 24, 20, 0.72);
  --line-dark: rgba(238, 234, 227, 0.14);
  --line-light: rgba(26, 24, 20, 0.16);
  --serif: "EB Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --slab: "Roboto Slab", Georgia, serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--grege);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  margin-bottom: -90px;
  padding: 22px 5vw;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: blur(0);
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.site-header.is-hidden-on-scroll {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(238, 234, 227, 0.1);
  background: linear-gradient(180deg, rgba(10, 9, 7, 0.82), rgba(10, 9, 7, 0.5));
  backdrop-filter: blur(12px);
}

.brand img {
  width: 152px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
  color: var(--grege);
}

.main-nav a,
.text-link {
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.text-link:hover {
  border-color: var(--sand);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.language-menu {
  position: relative;
  z-index: 110;
}

.language-current,
.language-options a {
  display: inline-grid;
  min-width: 58px;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(238, 234, 227, 0.38);
  background: rgba(238, 234, 227, 0.16);
  color: var(--grege);
  backdrop-filter: blur(12px);
  font: 800 12px var(--sans);
}

.language-current {
  cursor: pointer;
}

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  min-width: 58px;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-menu:hover .language-options,
.language-menu:focus-within .language-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-options a {
  border-top: 0;
  background: rgba(17, 16, 13, 0.88);
  color: var(--grege);
}

.language-current:hover,
.language-current:focus-visible,
.language-options a:hover,
.language-options a:focus-visible {
  border-color: var(--sand);
  background: var(--grege);
  color: var(--charcoal);
  outline: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-primary {
  background: var(--sand);
  color: var(--charcoal);
  border-color: var(--sand);
}

.button-primary:hover {
  background: var(--grege);
  border-color: var(--grege);
}

.button-light {
  background: var(--grege);
  color: var(--charcoal);
  border-color: var(--grege);
}

.button-light:hover {
  background: transparent;
  color: var(--grege);
}

.button-quiet {
  color: var(--grege);
  border-color: rgba(238, 234, 227, 0.38);
  background: rgba(238, 234, 227, 0.16);
  backdrop-filter: blur(12px);
}

.button-quiet:hover {
  border-color: var(--sand);
  background: rgba(238, 234, 227, 0.24);
}

.button-quiet-light {
  border-color: rgba(26, 24, 20, 0.16);
  background: rgba(26, 24, 20, 0.06);
  color: var(--charcoal);
  backdrop-filter: none;
}

.button-quiet-light:hover {
  border-color: var(--warm-brown);
  background: rgba(138, 115, 85, 0.12);
  color: var(--charcoal);
}

.button-dark {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}

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

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(150px, 18vh, 190px) 10vw clamp(88px, 12vh, 130px);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 9, 7, 0.72) 0%, rgba(10, 9, 7, 0.56) 35%, rgba(10, 9, 7, 0.18) 72%, rgba(10, 9, 7, 0.38) 100%),
    linear-gradient(180deg, rgba(10, 9, 7, 0.18), rgba(10, 9, 7, 0.48));
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--sand);
  font-family: var(--slab);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.98;
  color: var(--grege);
}

h1 {
  font-size: 64px;
  max-width: 680px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-family: var(--slab);
  font-size: 15px;
  font-weight: 600;
  color: var(--grege);
}

.hero-lead {
  margin-top: 24px;
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 19px;
}

.hero-actions {
  margin-top: 30px;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 1;
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(238, 234, 227, 0.72);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--sand);
  border-color: var(--sand);
}

.hero-slider-arrows {
  position: absolute;
  right: 5vw;
  top: 52%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(-50%);
}

.hero-arrow {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(238, 234, 227, 0.38);
  background: rgba(238, 234, 227, 0.16);
  color: var(--grege);
  backdrop-filter: blur(12px);
  font-family: var(--sans);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.hero-arrow:hover {
  border-color: var(--sand);
  background: rgba(238, 234, 227, 0.24);
  color: var(--grege);
  transform: translateX(2px);
}

.collection-strip,
.proof-panel,
.image-mosaic,
.centered-section,
.split-story,
.dark-services,
.custom-orders-section,
.trade-path,
.custom-production,
.material-band,
.request-panel,
.journal-preview {
  padding: 76px 38px;
}

.proof-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(238, 234, 227, 0.1);
}

.proof-panel article {
  min-height: 122px;
  padding: 30px 28px;
  background: var(--charcoal);
}

.proof-panel strong {
  display: block;
  color: var(--grege);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.proof-panel span {
  display: block;
  margin-top: 10px;
  color: var(--sand);
  font-family: var(--slab);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 14px;
  background: var(--grege);
}

.image-mosaic figure {
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.image-mosaic .mosaic-large {
  grid-row: span 2;
}

.image-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.centered-section {
  text-align: center;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.centered-section h2 {
  max-width: 900px;
  margin: 0 auto;
}

.section-lead {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.segment-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.segment-row span {
  padding: 12px 16px;
  border: 1px solid var(--line-dark);
  color: var(--grege);
  font-family: var(--slab);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1040px);
  margin-top: 34px;
}

.buyer-grid article {
  position: relative;
  min-height: 280px;
  display: grid;
  align-content: start;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(26, 24, 20, 0.08);
  background: linear-gradient(180deg, #fff 0%, #faf7ee 100%);
  text-align: left;
  box-shadow: 0 18px 52px rgba(17, 16, 13, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.buyer-grid article::before {
  content: none;
}

.buyer-grid article:hover {
  border-color: rgba(138, 115, 85, 0.42);
  box-shadow: 0 22px 70px rgba(17, 16, 13, 0.11);
  transform: translateY(-2px);
}

.buyer-label {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid rgba(238, 234, 227, 0.12);
  background:
    linear-gradient(120deg, transparent 0%, rgba(238, 234, 227, 0.16) 38%, transparent 68%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 13px),
    #11100d;
  color: var(--sand);
  font: 800 11px var(--sans);
  text-transform: uppercase;
}

.buyer-grid h3 {
  color: #28241e;
  margin: 24px 24px 0;
}

.buyer-grid p {
  color: #6d665b;
  font-size: 14px;
  line-height: 1.45;
  margin: 16px 24px 0;
}

.buyer-grid ul {
  display: grid;
  gap: 8px;
  margin: 18px 24px 24px;
  padding: 0;
  list-style: none;
}

.buyer-grid li {
  position: relative;
  padding-left: 18px;
  color: #28241e;
  font-size: 13px;
  font-weight: 700;
}

.buyer-grid li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 1px;
  content: "";
  background: #8a7355;
}

.buyer-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: end;
  justify-self: end;
  width: fit-content;
  margin: 2px 24px 24px;
  color: #8a7355;
  font-size: 13px;
  font-weight: 800;
}

.buyer-card-link::after {
  content: ">>";
  color: #8a7355;
  font-weight: 800;
}

.buyer-card-link:hover {
  color: #28241e;
}

.buyer-card-link:hover::after {
  color: #28241e;
}

.split-story {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 46px;
  align-items: center;
  background: var(--charcoal);
}

.story-copy {
  max-width: 620px;
}

.story-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 18px;
}

.split-story figure {
  margin: 0;
  border: 1px solid var(--line-dark);
  padding: 14px;
}

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

.dark-services {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 46px;
  background: var(--olive);
}

.service-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

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

.service-grid article {
  min-height: 216px;
  padding: 26px;
  border: 1px solid rgba(238, 234, 227, 0.18);
  background: rgba(26, 24, 20, 0.1);
}

.service-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--sand);
  font-family: var(--slab);
  font-size: 12px;
  font-weight: 600;
}

.service-grid p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
}

.custom-orders-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  background: linear-gradient(90deg, rgba(26, 24, 20, 0.94), rgba(58, 74, 53, 0.94)), var(--olive);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.custom-orders-section div {
  max-width: 760px;
}

.custom-orders-section p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
}

.collection-strip {
  padding-top: 42px;
  background: var(--grege);
  color: var(--charcoal);
}

.collection-strip h2,
.request-panel h2 {
  color: var(--charcoal);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}

.collection-strip .eyebrow,
.request-panel .eyebrow {
  color: var(--warm-brown);
}

.category-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  grid-auto-rows: 210px;
  gap: 14px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--charcoal);
  color: var(--grege);
  min-height: 180px;
}

.category-card.large {
  grid-row: span 2;
}

.category-card.compact {
  display: grid;
  place-items: end start;
  padding: 18px;
  background: var(--olive);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  transition: transform 320ms ease, opacity 320ms ease;
}

.category-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: 80%;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}

.category-card.compact span {
  position: static;
}

.category-card:hover img {
  transform: scale(1.03);
  opacity: 1;
}

.trade-path {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 44px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

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

.trade-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  background: rgba(238, 234, 227, 0.035);
}

.trade-grid span {
  display: block;
  margin-bottom: 26px;
  color: var(--sand);
  font-family: var(--slab);
  font-size: 13px;
}

.trade-grid p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
}

.custom-production {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 44px;
  background: var(--olive);
}

.custom-production figure {
  margin: 0;
  min-height: 500px;
}

.custom-production img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.custom-copy {
  align-self: center;
  max-width: 600px;
}

.custom-copy p {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 17px;
}

.custom-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.custom-copy li {
  padding: 14px;
  border: 1px solid rgba(238, 234, 227, 0.18);
  color: var(--grege);
}

.material-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: center;
  background: var(--charcoal);
}

.material-image {
  border: 1px solid var(--line-dark);
  padding: 14px;
}

.material-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.material-content p {
  max-width: 720px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--sand);
  font-weight: 700;
}

.request-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  background: var(--grege);
  color: var(--charcoal);
}

.request-panel p {
  margin-top: 20px;
  color: var(--dark-soft);
  font-size: 17px;
}

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

.catalog-form label {
  display: grid;
  gap: 8px;
  color: var(--warm-brown);
  font-family: var(--slab);
  font-size: 13px;
  font-weight: 600;
}

.catalog-form .wide {
  grid-column: 1 / -1;
}

.catalog-form input,
.catalog-form textarea,
.catalog-form select {
  width: 100%;
  border: 1px solid var(--line-light);
  background: rgba(26, 24, 20, 0.035);
  color: var(--charcoal);
  font: inherit;
  padding: 12px;
}

.catalog-form button {
  justify-self: start;
}

.journal-preview {
  display: grid;
  grid-template-columns: 0.45fr 1fr 0.6fr;
  gap: 28px;
  align-items: baseline;
  border-top: 1px solid var(--line-dark);
}

.journal-preview p:not(.eyebrow) {
  color: var(--ink-soft);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 38px;
  border-top: 1px solid var(--line-dark);
  background: var(--charcoal);
}

.site-footer img {
  width: 140px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr;
    row-gap: 14px;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .proof-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-mosaic,
  .split-story,
  .dark-services,
  .custom-orders-section,
  .trade-path,
  .custom-production,
  .material-band,
  .request-panel,
  .section-intro {
    grid-template-columns: 1fr;
  }

  .service-heading {
    position: static;
  }

  .hero {
    padding-top: 150px;
  }

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

  .journal-preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .collection-strip,
  .proof-panel,
  .image-mosaic,
  .centered-section,
  .split-story,
  .dark-services,
  .custom-orders-section,
  .trade-path,
  .custom-production,
  .material-band,
  .request-panel,
  .journal-preview,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-nav {
    display: none;
  }

  .button {
    width: 100%;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    margin-bottom: -104px;
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .header-actions {
    display: flex;
    justify-content: flex-end;
    width: auto;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 142px;
    padding-bottom: 76px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-lead,
  .material-content p,
  .custom-copy p {
    font-size: 16px;
  }

  .hero-actions {
    display: flex;
  }

  .hero-slider-dots {
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
  }

  .hero-slider-arrows {
    right: 20px;
    top: 55%;
    gap: 12px;
  }

  .hero-arrow {
    width: 46px;
    height: 46px;
    font-size: 30px;
  }

  .category-grid,
  .proof-panel,
  .image-mosaic,
  .service-grid,
  .trade-grid,
  .custom-copy ul,
  .catalog-form {
    grid-template-columns: 1fr;
  }

  .image-mosaic .mosaic-large {
    grid-row: span 1;
  }

  .split-story img {
    height: 320px;
  }

  .custom-orders-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-grid {
    grid-auto-rows: 180px;
  }

  .category-card.large {
    grid-row: span 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

/* Direct section copy below the locked header and hero */
main {
  background: #faf7ee;
  color: #28241e;
}

.proof-panel,
.image-mosaic,
.centered-section,
.split-story,
.dark-services,
.product-families,
.custom-orders-section,
.expertise,
.final-banner,
.request-panel {
  width: min(1120px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.proof-panel {
  position: relative;
  z-index: 3;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -48px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 13px),
    var(--olive);
  box-shadow: 0 22px 60px rgba(17, 16, 13, 0.14);
  color: #fff;
}

.proof-panel article {
  min-height: 120px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  text-align: center;
}

.proof-panel article:last-child {
  border-right: 0;
}

.proof-panel strong {
  color: #fff;
  font-size: 42px;
}

.proof-panel span {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--sans);
  font-size: 13px;
  white-space: nowrap;
  text-transform: none;
}

.image-mosaic {
  grid-template-columns: 0.86fr 1.28fr 0.86fr;
  grid-template-rows: auto;
  gap: 14px;
  padding: 112px 0 0;
  background: transparent;
}

.mosaic-timeline {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.86fr 1.28fr 0.86fr;
  gap: 14px;
  margin-bottom: 10px;
}

.mosaic-timeline::before {
  position: absolute;
  top: 19px;
  left: 30px;
  right: 30px;
  height: 1px;
  content: "";
  background: #ded6c6;
}

.mosaic-timeline article {
  position: relative;
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 118px;
  padding-top: 46px;
}

.mosaic-timeline article::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 1px solid #8a7355;
  border-radius: 50%;
  background: #faf7ee;
  content: "";
}

.mosaic-timeline span {
  color: #8a7355;
  font: 800 12px var(--sans);
  text-transform: uppercase;
}

.mosaic-timeline strong {
  color: #28241e;
  font-family: var(--slab);
  font-size: 15px;
  font-weight: 600;
}

.mosaic-timeline p {
  max-width: 280px;
  color: #6d665b;
  font-size: 14px;
  line-height: 1.35;
}

.mosaic-timeline p span {
  display: block;
  white-space: nowrap;
}

.image-mosaic figure {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 24, 20, 0.12);
  background: #11100d;
  box-shadow: 0 22px 70px rgba(17, 16, 13, 0.16);
  --focus-x: 50%;
  --focus-y: 55%;
}

.image-mosaic figure:nth-of-type(1) {
  --focus-x: 50%;
  --focus-y: 56%;
}

.image-mosaic figure:nth-of-type(2) {
  --focus-x: 58%;
  --focus-y: 58%;
}

.image-mosaic figure:nth-of-type(3) {
  --focus-x: 42%;
  --focus-y: 52%;
}

.image-mosaic figure:nth-of-type(3) img {
  object-position: 32% center;
}

.image-mosaic figure:nth-of-type(2) img,
.image-mosaic figure:nth-of-type(3) img {
  filter: brightness(0.84) saturate(0.96);
}

.image-mosaic figure::before,
.image-mosaic figure::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.image-mosaic figure::before {
  z-index: 1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  mask: radial-gradient(ellipse 52% 42% at var(--focus-x) var(--focus-y), transparent 0 58%, rgba(0, 0, 0, 0.42) 78%, #000 100%);
  -webkit-mask: radial-gradient(ellipse 52% 42% at var(--focus-x) var(--focus-y), transparent 0 58%, rgba(0, 0, 0, 0.42) 78%, #000 100%);
}

.image-mosaic figure::after {
  z-index: 2;
  background:
    radial-gradient(ellipse 52% 42% at var(--focus-x) var(--focus-y), rgba(17, 16, 13, 0) 0 54%, rgba(17, 16, 13, 0.22) 80%, rgba(17, 16, 13, 0.46) 100%),
    linear-gradient(90deg, rgba(17, 16, 13, 0.38), rgba(17, 16, 13, 0) 27%, rgba(17, 16, 13, 0) 72%, rgba(17, 16, 13, 0.42));
}

.image-mosaic img {
  display: block;
  height: 300px;
  min-height: 0;
  object-fit: cover;
}

.centered-section {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 108px 0 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.centered-section h2,
.split-story h2,
.expertise h2,
.request-panel h2 {
  color: #28241e;
}

.centered-section h2 {
  max-width: 760px;
}

.section-lead {
  max-width: 760px;
  margin: 0;
  color: #6d665b;
}

.segment-row {
  width: min(900px, 100%);
  gap: 10px;
  margin-top: 18px;
}

.segment-row span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #ded6c6;
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: #11100d;
  font-family: var(--sans);
  font-size: 13px;
  text-transform: none;
}

.split-story {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: 80px;
  padding: 118px 0 0;
  background: transparent;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-copy p:not(.eyebrow) {
  margin: 0;
  color: #6d665b;
  font-size: 16px;
}

.story-pillars {
  display: grid;
  gap: 12px;
}

.story-pillars span {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: #28241e;
  font-size: 13px;
  font-weight: 800;
}

.story-pillars small {
  color: #8a7355;
  font: 800 11px var(--sans);
}

.text-link {
  width: fit-content;
  margin-top: 0;
  justify-self: end;
  border-bottom: 0;
  color: #11100d;
  font-weight: 800;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
}

.split-story figure {
  padding: 0;
  border: 0;
}

.split-story img {
  height: 560px;
  object-fit: cover;
  filter: brightness(0.84) saturate(0.96);
}

.dark-services {
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 118px;
  padding: 56px;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 12px),
    #11100d;
  color: #fff;
}

.service-heading {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.7fr);
  gap: 34px;
  align-items: end;
  padding-bottom: 28px;
}

.service-heading h2 {
  max-width: 650px;
  color: #fff;
}

.service-heading p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.55;
}

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

.service-grid article {
  position: relative;
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(238, 234, 227, 0.08);
  background: linear-gradient(180deg, #fff 0%, #faf7ee 100%);
  color: #28241e;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.14);
}

.service-grid article::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  content: "";
  background: var(--sand);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.service-grid span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  background: #efede7;
  color: #11100d;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
}

.service-icon {
  width: 46px;
  height: 46px;
  color: #3a4a35;
}

.service-icon path {
  fill: none;
  stroke: #3a4a35;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-grid h3 {
  color: #28241e;
  font-size: 16px;
  line-height: 1.25;
}

.service-grid p {
  margin: 0;
  color: #6d665b;
  line-height: 1.45;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(238, 234, 227, 0.12);
}

.product-families {
  padding-top: 118px;
}

.product-families-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 30px;
}

.product-families-heading h2 {
  max-width: 680px;
  color: #28241e;
}

.product-families-heading > p {
  margin: 0 0 8px;
  color: #6d665b;
  font-size: 16px;
  line-height: 1.7;
}

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

.product-family-card {
  position: relative;
  display: grid;
  min-height: 360px;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(26, 24, 20, 0.1);
  background: #11100d;
  box-shadow: 0 22px 62px rgba(17, 16, 13, 0.12);
}

.product-family-card:first-child {
  grid-column: span 2;
  min-height: 440px;
}

.product-family-card figure {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: #11100d;
}

.product-family-card figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 40%, transparent 0 36%, rgba(17, 16, 13, 0.42) 100%),
    linear-gradient(180deg, rgba(17, 16, 13, 0.08) 0%, rgba(17, 16, 13, 0.2) 42%, rgba(17, 16, 13, 0.86) 100%);
  transition: opacity 220ms ease;
}

.product-family-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-family-card > div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 100%;
  gap: 8px;
  padding: 22px;
  color: #fff;
}

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

.product-family-card span {
  color: var(--sand);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-family-card h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}

.product-family-card p {
  margin: 0;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.45;
}

.product-family-card a {
  justify-self: start;
  margin-top: 4px;
  color: var(--sand);
  font-size: 13px;
  font-weight: 800;
}

.product-family-card a:hover {
  color: #fff;
}

.product-families-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(26, 24, 20, 0.08);
  background:
    linear-gradient(120deg, rgba(196, 180, 154, 0.2), transparent 45%),
    #fff;
}

.product-families-cta p {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--slab);
  font-size: 18px;
  font-weight: 700;
}

.custom-orders-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 112px;
  padding: 46px;
  background:
    linear-gradient(120deg, rgba(196, 180, 154, 0.12), transparent 42%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 12px),
    #11100d;
  color: #fff;
}

.custom-orders-section h2 {
  color: #fff;
}

.custom-orders-section p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.custom-order-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.custom-order-points li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.custom-order-points li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--sand);
  content: "0" counter(custom-point);
  counter-increment: custom-point;
  font-family: var(--slab);
  font-size: 12px;
}

.custom-order-points {
  counter-reset: custom-point;
}

.custom-order-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.expertise {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: 76px;
  align-items: center;
  padding: 118px 0 0;
}

.expertise figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #11100d;
}

.expertise figure::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    radial-gradient(ellipse 38% 30% at 56% 58%, rgba(17, 16, 13, 0) 0 42%, rgba(17, 16, 13, 0.28) 76%, rgba(17, 16, 13, 0.5) 100%),
    linear-gradient(90deg, rgba(17, 16, 13, 0.38), rgba(17, 16, 13, 0) 27%, rgba(17, 16, 13, 0) 72%, rgba(17, 16, 13, 0.42));
  pointer-events: none;
}

.expertise figure::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  mask: radial-gradient(ellipse 38% 30% at 56% 58%, transparent 0 48%, rgba(0, 0, 0, 0.5) 68%, #000 100%);
  -webkit-mask: radial-gradient(ellipse 38% 30% at 56% 58%, transparent 0 48%, rgba(0, 0, 0, 0.5) 68%, #000 100%);
  pointer-events: none;
}

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

.expertise div {
  display: grid;
  align-content: start;
  gap: 16px;
}

.expertise p:not(.eyebrow) {
  color: #6d665b;
  line-height: 1.65;
}

.expertise-points {
  counter-reset: expertise;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 34px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.expertise-points li {
  position: relative;
  padding: 0 0 0 24px;
  color: #11100d;
  font-size: 14px;
  font-weight: 800;
}

.expertise-points li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--warm-brown);
  content: "0" counter(expertise);
  counter-increment: expertise;
  font-size: 11px;
  font-weight: 800;
}

.final-banner {
  position: relative;
  min-height: 0;
  display: grid;
  gap: 28px;
  justify-items: center;
  margin-top: 118px;
  padding: 0;
  overflow: hidden;
  color: #28241e;
  text-align: center;
  background: transparent;
}

.final-banner-copy {
  width: min(760px, calc(100% - 40px));
  display: grid;
  justify-items: center;
  gap: 16px;
}

.final-banner h2 {
  color: #28241e;
}

.final-banner p:not(.eyebrow) {
  color: #6d665b;
}

.market-map {
  position: relative;
  width: min(1120px, 100%);
  aspect-ratio: 1200 / 620;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 24, 20, 0.08);
  background: #b8b7ba;
  box-shadow: 0 22px 62px rgba(17, 16, 13, 0.08);
}

.market-map-graphic {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.market-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  width: 14px;
  height: 14px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--olive);
  appearance: none;
  box-shadow: 0 0 0 5px rgba(58, 74, 53, 0.18);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.market-point:hover,
.market-point:focus-visible {
  background: var(--sand);
  box-shadow: 0 0 0 7px rgba(196, 180, 154, 0.18);
  outline: none;
}

.market-point span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(26, 24, 20, 0.1);
  background: rgba(250, 247, 238, 0.96);
  color: #11100d;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.market-point:hover span,
.market-point:focus-visible span {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.market-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.market-actions .button {
  width: auto;
}

.market-actions .button-quiet-light {
  border-color: rgba(26, 24, 20, 0.18);
  background: #fff;
  color: #11100d;
  box-shadow: 0 10px 28px rgba(17, 16, 13, 0.08);
}

.market-actions .button-quiet-light:hover {
  border-color: var(--warm-brown);
  background: #faf7ee;
  color: #11100d;
}

.request-panel {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.15fr);
  gap: 18px;
  align-items: stretch;
  padding: 118px 0;
  background: transparent;
  color: #28241e;
}

.request-panel > div,
.request-panel form {
  border: 1px solid rgba(238, 234, 227, 0.12);
  background:
    linear-gradient(120deg, rgba(196, 180, 154, 0.12), transparent 42%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 12px),
    #11100d;
  box-shadow: 0 22px 72px rgba(17, 16, 13, 0.08);
  color: #fff;
}

.request-panel > div {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 50px;
}

.request-panel h2 {
  color: #fff;
}

.request-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.request-points {
  display: grid;
  gap: 12px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.request-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font: 700 13px var(--sans);
}

.request-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border: 1px solid rgba(196, 180, 154, 0.78);
  background: var(--sand);
}

.catalog-form {
  padding: 40px;
}

.catalog-form label {
  color: var(--sand);
}

.catalog-form input,
.catalog-form textarea,
.catalog-form select {
  min-height: 46px;
  border: 1px solid #ded6c6;
  border-radius: 3px;
  background: #faf7ee;
}

.catalog-form button {
  background: var(--sand);
  color: #11100d;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 4px;
}

.form-actions .text-link {
  margin-left: auto;
  color: #fff;
  text-decoration: none;
}

.form-actions .text-link::after {
  content: ">";
  display: inline-block;
  margin-left: 9px;
  color: #8a7355;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(160px, 0.42fr) minmax(160px, 0.42fr);
  gap: 56px;
  align-items: start;
  padding: 64px max(38px, calc((100% - 1120px) / 2)) 58px;
  border-top: 1px solid rgba(238, 234, 227, 0.12);
  background:
    linear-gradient(120deg, rgba(196, 180, 154, 0.1), transparent 36%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 13px),
    #11100d;
  color: #fff;
}

.footer-brand {
  display: grid;
  gap: 18px;
  max-width: 430px;
}

.footer-brand img {
  width: 150px;
}

.footer-brand p {
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.site-footer .footer-column {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.site-footer .footer-column span {
  margin-bottom: 8px;
  color: var(--sand);
  font: 800 11px var(--sans);
  text-transform: uppercase;
}

.site-footer .footer-column a {
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer .footer-column a:hover {
  color: #fff;
  transform: translateX(2px);
}

@media (max-width: 980px) {
  .proof-panel,
  .image-mosaic,
  .buyer-grid,
  .service-heading,
  .service-grid,
  .product-families-heading,
  .product-family-grid,
  .custom-orders-section,
  .expertise,
  .request-panel,
  .split-story {
    grid-template-columns: 1fr;
  }

  .proof-panel {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .image-mosaic,
  .centered-section,
  .split-story,
  .product-families,
  .expertise {
    padding-top: 90px;
  }

  .dark-services,
  .custom-orders-section,
  .final-banner {
    margin-top: 90px;
  }

  .request-panel {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .proof-panel article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .product-family-card:first-child {
    grid-column: span 1;
    min-height: 360px;
  }

  .product-family-card {
    min-height: 360px;
  }

  .custom-order-actions {
    justify-content: flex-start;
  }

  .market-map {
    aspect-ratio: 1200 / 620;
  }

  .market-point span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
  }

  .image-mosaic img {
    height: 260px;
  }

  .mosaic-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 6px;
  }

  .mosaic-timeline::before {
    top: 6px;
    bottom: 6px;
    left: 6px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .mosaic-timeline article {
    min-height: 0;
    padding-top: 0;
    padding-left: 34px;
  }

  .mosaic-timeline article::before {
    top: 3px;
    left: 0;
  }

  .mosaic-timeline p {
    max-width: 100%;
  }

  .mosaic-timeline p span {
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .dark-services,
  .custom-orders-section {
    width: 100%;
  }

  .dark-services {
    margin-top: 70px;
    padding: 32px 20px;
  }

  .split-story img,
  .expertise img {
    height: 380px;
  }

  .request-panel {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .request-panel > div,
  .catalog-form {
    padding: 28px;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-actions .text-link {
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .expertise ul {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 44px 20px 40px;
  }

  .footer-brand,
  .site-footer .footer-column {
    min-width: 0;
    max-width: 100%;
  }

  .footer-brand p,
  .site-footer .footer-column a {
    overflow-wrap: anywhere;
  }
}

