:root {
  --forest-950: #071f1a;
  --forest-900: #0b3028;
  --forest-800: #124438;
  --forest-700: #24614e;
  --sage: #81956a;
  --gold-500: #c6a15c;
  --gold-300: #e0c98e;
  --ivory: #f6f0e5;
  --paper: #fffdf8;
  --ink: #192c26;
  --muted: #5d6c64;
  --line: rgba(25, 44, 38, 0.16);
  --line-light: rgba(246, 240, 229, 0.22);
  --shadow: 0 24px 60px rgba(7, 31, 26, 0.16);
  --brand-texture-size: 11.25rem 11.25rem;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--forest-950);
  background: var(--gold-300);
  transform: translateY(-180%);
}

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

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  color: var(--ivory);
  background-color: var(--forest-900);
  background-image:
    linear-gradient(rgba(11, 48, 40, 0.96), rgba(11, 48, 40, 0.96)),
    url("../images/nadir-export-texture.png");
  background-position: center, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, var(--brand-texture-size);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.4rem;
  gap: 2rem;
}

.brand-lockup {
  position: relative;
  display: block;
  width: clamp(13rem, 20vw, 16rem);
  height: 4.35rem;
  overflow: hidden;
  background: transparent;
  text-decoration: none;
}

.brand-lockup-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.9) contrast(1.06);
  mix-blend-mode: lighten;
  transform: scale(1.08);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 48%, transparent 82%);
  mask-image: radial-gradient(ellipse at center, #000 48%, transparent 82%);
}

.brand-lockup-footer {
  margin-bottom: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.6rem);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.55rem 0;
  color: var(--ivory);
  text-decoration: none;
  opacity: 0.84;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.18rem;
  left: 0;
  height: 1px;
  background: var(--gold-300);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  padding: 0.7rem 1rem;
  color: var(--forest-950);
  background: var(--gold-300);
  opacity: 1;
}

.site-nav .nav-cta::after {
  display: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0;
  color: var(--ivory);
  cursor: pointer;
  list-style: none;
  opacity: 0.84;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  width: 0;
  height: 0;
  border-right: 0.25rem solid transparent;
  border-left: 0.25rem solid transparent;
  border-top: 0.3rem solid currentColor;
  content: "";
  transition: transform 180ms ease;
}

.nav-dropdown[open] > summary::after {
  transform: rotate(180deg);
}

.nav-dropdown > summary::before {
  position: absolute;
  right: 0.7rem;
  bottom: 0.18rem;
  left: 0;
  height: 1px;
  background: var(--gold-300);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-dropdown > summary:hover,
.nav-dropdown > summary[aria-current="page"] {
  opacity: 1;
}

.nav-dropdown > summary:hover::before,
.nav-dropdown > summary[aria-current="page"]::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 12;
  top: calc(100% + 0.9rem);
  left: 50%;
  min-width: 10rem;
  padding: 0.45rem;
  background: var(--forest-950);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.7rem 0.8rem;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--gold-300);
  background: rgba(246, 240, 229, 0.06);
}

.menu-toggle {
  display: none;
  padding: 0.55rem 0;
  color: var(--ivory);
  background: transparent;
  border: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-dark {
  color: var(--ivory);
  background-image:
    radial-gradient(circle at 82% 18%, rgba(99, 128, 82, 0.28), transparent 28rem),
    linear-gradient(
      135deg,
      rgba(7, 31, 26, 0.95),
      rgba(11, 48, 40, 0.93) 54%,
      rgba(21, 63, 50, 0.95)
    ),
    url("../images/nadir-export-texture.png");
  background-position: center, center, 0 0;
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: auto, auto, var(--brand-texture-size);
}

.section-dark::selection {
  color: var(--forest-950);
  background: var(--gold-300);
}

.hero {
  min-height: min(720px, 78vh);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1.05fr);
  align-items: center;
  min-height: min(720px, 78vh);
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: 5.5rem;
}

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

.hero-copy h1 {
  max-width: 17ch;
  font-size: clamp(2.9rem, 5.2vw, 5.2rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--forest-700);
}

.eyebrow-gold {
  color: var(--gold-300);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  letter-spacing: -0.045em;
}

h2 {
  max-width: 15ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 4.8vw, 4.5rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.hero-lede,
.page-lede {
  max-width: 37rem;
  color: rgba(246, 240, 229, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--forest-950);
  background: var(--gold-300);
}

.button-primary:hover {
  background: #f0dca8;
}

.button-dark {
  color: var(--ivory);
  background: var(--forest-900);
}

.button-dark:hover {
  background: var(--forest-700);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--forest-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.1rem;
  line-height: 0;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(0.25rem);
}

.text-link-light {
  color: var(--ivory);
}

.hero-art {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 31, 25, 0.1), rgba(8, 31, 25, 0.65)),
    repeating-linear-gradient(164deg, #754426 0 3.2rem, #5c321f 3.2rem 3.45rem, #a8653b 3.45rem 5.8rem);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-art--image {
  background: var(--forest-950);
}

.hero-art-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.7);
  transform-origin: center bottom;
}

.hero-art--image::before {
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 31, 26, 0.1), rgba(7, 31, 26, 0.08));
  background-size: auto;
  mix-blend-mode: multiply;
  opacity: 0.45;
}

.hero-art--image::after {
  z-index: 1;
  inset: 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, transparent 42%, rgba(7, 31, 26, 0.25));
  transform: none;
}

.hero-art::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 28%, rgba(232, 205, 141, 0.35), transparent 0.16rem),
    radial-gradient(circle at 68% 72%, rgba(232, 205, 141, 0.3), transparent 0.2rem),
    linear-gradient(90deg, transparent 49.8%, rgba(245, 227, 175, 0.42) 50%, transparent 50.2%);
  background-size: 7rem 7rem, 9rem 9rem, auto;
  content: "";
  mix-blend-mode: screen;
  opacity: 0.55;
}

.hero-art::after {
  position: absolute;
  inset: 13% -20% 9% 7%;
  border: 1px solid rgba(236, 207, 142, 0.78);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.approach-heading {
  max-width: 18ch;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.process-list {
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
  counter-reset: process-step;
}

.process-list li {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

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

.process-list span {
  padding-top: 0.15rem;
  color: var(--forest-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-list p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.approach-image-wrap {
  position: relative;
  min-height: 31rem;
  margin: 0;
  overflow: hidden;
  background: var(--forest-900);
  box-shadow: var(--shadow);
}

.approach-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(7, 31, 26, 0.32));
  content: "";
  pointer-events: none;
}

.approach-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section-light {
  background: var(--paper);
}

.section-ivory {
  background: var(--ivory);
}

.split-intro,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 10vw, 10rem);
}

.section-copy {
  max-width: 34rem;
  align-self: end;
  color: var(--muted);
  font-size: 1.12rem;
}

.section-copy-large {
  font-size: 1.25rem;
}

.section-copy p:last-child {
  margin-bottom: 1.75rem;
}

.material-band {
  color: var(--ivory);
  background-image:
    linear-gradient(105deg, rgba(7, 31, 26, 0.94), rgba(10, 53, 42, 0.92)),
    url("../images/nadir-export-texture.png");
  background-position: center, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto, var(--brand-texture-size);
}

.material-band-inner {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.material-band h2 {
  max-width: 13ch;
}

.material-band-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.material-band-heading h2 {
  margin-bottom: 0;
}

.material-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.material-card {
  position: relative;
  min-height: clamp(22rem, 38vw, 34rem);
  overflow: hidden;
  color: var(--ivory);
  background: var(--forest-950);
  font-family: var(--font-display);
  text-decoration: none;
}

.material-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 31, 26, 0.9));
  content: "";
}

.material-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

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

.material-card-copy {
  position: absolute;
  z-index: 1;
  right: clamp(1.4rem, 3vw, 2.4rem);
  bottom: clamp(1.4rem, 3vw, 2.4rem);
  left: clamp(1.4rem, 3vw, 2.4rem);
}

.material-card-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.material-card-description {
  display: block;
  max-width: 36rem;
  margin-top: 0.8rem;
  color: rgba(246, 240, 229, 0.82);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
}

.material-card-label small {
  color: var(--gold-300);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.material-card-label b {
  margin-left: auto;
  color: var(--gold-300);
  font-family: var(--font-body);
  font-size: 1.5rem;
  transition: transform 180ms ease;
}

.material-card:hover .material-card-label b {
  transform: translateX(0.35rem);
}

.shipping-section {
  border-bottom: 1px solid var(--line);
}

.shipping-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 7rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.shipping-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.shipping-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shipping-facts div {
  min-height: 13rem;
  padding: 2rem clamp(1rem, 2.4vw, 2rem);
}

.shipping-facts div + div {
  border-left: 1px solid var(--line);
}

.shipping-facts dt {
  margin-bottom: 1.2rem;
  color: var(--forest-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shipping-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.callout {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.callout h2 {
  margin-bottom: 0;
}

.quote-section {
  padding-block: clamp(6.5rem, 12vw, 11rem);
}

.quote-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 8vw, 7rem);
}

.quote-callout h2 {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 6.5vw, 6rem);
}

.button-quote {
  min-height: 4.5rem;
  padding: 1.25rem clamp(1.7rem, 3vw, 2.6rem);
  font-size: 0.9rem;
  white-space: nowrap;
}

.page-hero {
  padding-block: clamp(6rem, 13vw, 11rem);
}

.narrow-content {
  max-width: 67rem;
}

.page-hero h1 {
  max-width: 14ch;
}

.page-lede {
  margin-bottom: 0;
}

.products-intro {
  padding-block: clamp(5rem, 10vw, 8rem);
}

.products-intro-inner {
  max-width: 76rem;
}

.products-intro .eyebrow {
  color: var(--forest-700);
}

.products-intro h1 {
  max-width: 15ch;
  margin-bottom: 1.25rem;
}

.products-intro-lede {
  max-width: 36rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.about-statement {
  background-image:
    linear-gradient(rgba(7, 31, 26, 0.72), rgba(7, 31, 26, 0.8)),
    url("../images/nadir-export-texture.png");
  background-position: center, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto, var(--brand-texture-size);
}

.about-statement-inner {
  max-width: 74rem;
  padding-block: clamp(5rem, 10vw, 8rem);
  text-align: center;
}

.about-statement-inner h2 {
  max-width: none;
  margin-bottom: 1.8rem;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.about-statement-lede {
  max-width: 58rem;
  margin-inline: auto;
  color: rgba(246, 240, 229, 0.9);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.28;
}

.about-focus-label {
  margin-top: 3.5rem;
  margin-bottom: 1.2rem;
}

.focus-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 2.5rem;
  margin: 0;
  padding: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  list-style: none;
}

.focus-list li::before {
  margin-right: 0.55rem;
  color: var(--gold-300);
  content: "•";
}

.vision-section {
  background: var(--paper);
}

.section-heading-row-dark {
  border-bottom-color: var(--line);
}

.section-heading-note-dark {
  color: var(--muted);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  padding-top: 1.5rem;
}

.vision-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--ivory);
  box-shadow: 0 1rem 2.4rem rgba(7, 31, 26, 0.08);
}

.vision-card h3 {
  margin-bottom: 1rem;
}

.vision-card p:last-child {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
}

.values-section {
  padding-block: clamp(5rem, 10vw, 9rem);
  color: var(--ivory);
  background-image:
    linear-gradient(rgba(11, 48, 40, 0.94), rgba(7, 31, 26, 0.96)),
    url("../images/nadir-export-texture.png");
  background-position: center, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto, var(--brand-texture-size);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-light);
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-heading-note {
  max-width: 20rem;
  margin-bottom: 0.4rem;
  color: rgba(246, 240, 229, 0.68);
}

.section-heading-row-dark .section-heading-note-dark {
  color: var(--muted);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.value-item {
  min-height: 15rem;
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-bottom: 1px solid var(--line-light);
}

.value-item + .value-item {
  padding-left: 2.5rem;
  border-left: 1px solid var(--line-light);
}

.value-index {
  display: block;
  margin-bottom: 2.8rem;
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.value-item p {
  max-width: 19rem;
  margin-bottom: 0;
  color: rgba(246, 240, 229, 0.7);
}

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

.product-card {
  background: var(--ivory);
  box-shadow: 0 1rem 2.4rem rgba(7, 31, 26, 0.08);
}

.product-swatch {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
}

.product-swatch::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 45%, rgba(7, 31, 26, 0.42));
  content: "";
}

.product-swatch img {
  display: block;
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.product-swatch span {
  z-index: 1;
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.product-card-body {
  padding: 2rem;
}

.product-card-body h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 3vw, 2.9rem);
}

.product-card-body p:not(.eyebrow) {
  min-height: 5.2rem;
  color: var(--muted);
}

.catalog-section {
  scroll-margin-top: 6rem;
  border-top: 1px solid var(--line);
}

.catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 7rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.catalog-heading h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.catalog-heading > p {
  max-width: 35rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-card {
  display: flex;
  min-height: 23rem;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.catalog-card + .catalog-card {
  border-left: 1px solid var(--line);
}

.catalog-card h3 {
  max-width: 18ch;
}

.catalog-card > p:not(.catalog-meta) {
  max-width: 34rem;
  color: var(--muted);
}

.catalog-card .button {
  margin-top: auto;
}

.catalog-meta {
  margin-bottom: 1.2rem;
  color: var(--forest-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-panel {
  background: var(--ivory);
}

.portfolio-detail {
  background: var(--ivory);
}

.portfolio-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: clamp(3rem, 10vw, 10rem);
}

.portfolio-detail .button {
  margin-top: 0.75rem;
}

.portfolio-detail .section-copy h3 {
  max-width: 18ch;
  color: var(--forest-900);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.product-gallery-section {
  background: var(--paper);
}

.product-gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-gallery-heading h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.product-gallery-card {
  position: relative;
  grid-column: span 4;
  min-height: clamp(22rem, 35vw, 31rem);
  margin: 0;
  overflow: hidden;
  background: var(--forest-900);
  box-shadow: 0 1rem 2.4rem rgba(7, 31, 26, 0.1);
}

.product-gallery-4 .product-gallery-card {
  grid-column: span 6;
}

.product-gallery-card::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(7, 31, 26, 0.88));
  content: "";
}

.product-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.product-gallery-card:hover img {
  transform: scale(1.025);
}

.product-gallery-card figcaption {
  position: absolute;
  z-index: 1;
  right: 1.7rem;
  bottom: 1.5rem;
  left: 1.7rem;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  line-height: 1.1;
}

.contact-aside h2 {
  max-width: 11ch;
}

.contact-aside > p:last-child {
  max-width: 30rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 3.25rem);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--forest-800);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
}

.form-control:focus {
  border-color: var(--forest-700);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(36, 97, 78, 0.18);
}

.form-control-message {
  resize: vertical;
}

.field-error {
  margin: 0.35rem 0 0;
  color: #8f2d24;
  font-size: 0.82rem;
}

.form-note {
  max-width: 28rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.flash-stack {
  padding-top: 1rem;
}

.flash {
  margin: 0;
  padding: 0.8rem 1rem;
  color: var(--forest-950);
  background: var(--gold-300);
  font-size: 0.9rem;
}

.site-footer {
  color: var(--ivory);
  background-image:
    linear-gradient(rgba(7, 31, 26, 0.95), rgba(7, 31, 26, 0.97)),
    url("../images/nadir-export-texture.png");
  background-position: center, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto, var(--brand-texture-size);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  align-items: end;
  gap: 2rem;
  padding-block: 3.75rem;
}

.footer-note,
.footer-meta {
  max-width: 18rem;
  margin-bottom: 0;
  color: rgba(246, 240, 229, 0.57);
  font-size: 0.82rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--ivory);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-300);
}

.footer-meta {
  justify-self: end;
  text-align: right;
}

.error-page .button {
  margin-top: 1.25rem;
}

@media (max-width: 850px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.5rem 1.25rem;
    background: var(--forest-900);
    border-bottom: 1px solid var(--line-light);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.8rem 0;
  }

  .site-nav .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .material-band-inner,
  .approach-grid,
  .shipping-heading,
  .split-intro,
  .contact-grid,
  .portfolio-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 5rem;
  }

  .hero-art {
    min-height: 24rem;
  }

  .section-copy {
    align-self: start;
  }

  .material-band-inner {
    gap: 2rem;
  }

  .approach-image-wrap {
    min-height: 25rem;
  }

  .material-band-heading,
  .quote-callout,
  .product-gallery-heading {
    display: block;
  }

  .material-card-grid {
    grid-template-columns: 1fr;
  }

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

  .shipping-facts div {
    min-height: 11rem;
  }

  .shipping-facts div:nth-child(3) {
    border-left: 0;
  }

  .shipping-facts div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .material-card {
    min-height: 25rem;
  }

  .quote-callout .button {
    margin-top: 2rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown > summary {
    justify-content: space-between;
    padding: 0.8rem 0;
  }

  .nav-dropdown > summary::before {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0.1rem 0 0.4rem 1rem;
    border: 0;
    border-left: 1px solid var(--line-light);
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 0.6rem 0;
  }

  .callout {
    display: block;
  }

  .callout .button {
    margin-top: 1rem;
  }

  .values-list,
  .product-grid,
  .vision-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-heading {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    min-height: 20rem;
  }

  .catalog-card + .catalog-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .value-item,
  .value-item + .value-item {
    min-height: auto;
    padding: 2rem 0;
    border-left: 0;
  }

  .value-index {
    margin-bottom: 1rem;
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-note {
    margin-top: 1.5rem;
  }

  .product-swatch {
    min-height: 14rem;
  }

  .product-swatch img {
    height: 14rem;
  }

  .product-gallery-card,
  .product-gallery-4 .product-gallery-card {
    grid-column: span 12;
    min-height: 25rem;
  }

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

  .footer-meta {
    justify-self: start;
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  .header-inner {
    min-height: 4.7rem;
  }

  .brand-lockup {
    width: 12rem;
    height: 3.8rem;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.3rem);
  }

  .hero-art {
    min-height: 19rem;
  }

  .hero-art-image {
    object-position: center bottom;
    transform: scale(1.7);
  }

  .approach-image-wrap,
  .material-card,
  .product-gallery-card {
    min-height: 20rem;
  }

  .shipping-facts {
    grid-template-columns: 1fr;
  }

  .shipping-facts div {
    min-height: auto;
  }

  .shipping-facts div + div,
  .shipping-facts div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
