:root {
  --ink: #171717;
  --muted: #62615d;
  --line: #ded9cf;
  --paper: #f8f6f1;
  --white: #ffffff;
  --brass: #b9852f;
  --brass-dark: #76501d;
  --green: #2e6f63;
  --blue: #315f8f;
  --shadow: 0 18px 45px rgba(24, 24, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.js body {
  opacity: 0;
  transition: opacity 260ms ease;
}

html.is-ready body {
  opacity: 1;
}

html.is-leaving body {
  opacity: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  background: var(--paper);
  opacity: 0;
  transition: opacity 220ms ease;
}

html.is-loading body::before,
html.is-leaving body::before {
  opacity: 1;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--brass-dark), var(--brass), #d9b264);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
}

html.is-loading body::after,
html.is-leaving body::after {
  opacity: 1;
  animation: page-progress 900ms ease-in-out infinite;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

html.js .image-loading-host {
  position: relative;
}

html.js .image-spinner-overlay {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  transition: opacity 180ms ease;
}

html.js .image-spinner-overlay::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 3px solid rgba(118, 80, 29, 0.22);
  border-top-color: var(--brass-dark);
  border-right-color: var(--brass);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: image-spinner 760ms linear infinite;
}

html.js .image-spinner-overlay.is-loaded {
  opacity: 0;
}

html.js .image-spinner-overlay.is-loaded::after {
  animation: none;
}

html.js img.image-loading {
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.018);
  transition: opacity 360ms ease, filter 520ms ease, transform 520ms ease;
}

html.js img.image-loading.is-loaded {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

html.js img.image-error {
  filter: grayscale(1);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(222, 217, 207, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

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

.brand-text {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  color: #33302b;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brass-dark);
  border-color: var(--brass);
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.button {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
}

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

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

.text-link {
  padding-left: 0;
  color: var(--brass-dark);
}

.text-link:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(86vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.84), rgba(10, 10, 10, 0.42) 48%, rgba(10, 10, 10, 0.1));
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 32px;
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 88px 0;
}

.section.compact {
  padding: 56px 0;
}

.band {
  background: var(--white);
}

.dark-band {
  background: #171717;
  color: var(--white);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header h2,
.page-title h1 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

.section-header p,
.page-title p,
.large-copy {
  color: var(--muted);
  font-size: 18px;
}

.dark-band .section-header p,
.dark-band .large-copy {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  background: #ddd7cb;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(160px, 1fr));
  gap: 14px;
}

.image-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.stat strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: var(--brass-dark);
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.feature-grid,
.product-grid,
.terms-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

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

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

.compact-features {
  margin: 28px 0 10px;
}

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

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

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.feature,
.product-card,
.term,
.contact-panel,
.spec-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature,
.term,
.contact-panel,
.spec-panel {
  padding: 26px;
}

.feature h3,
.term h3,
.contact-panel h3,
.spec-panel h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.feature p,
.term p,
.contact-panel p,
.spec-panel p,
.product-card p {
  color: var(--muted);
}

.product-card {
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(185, 133, 47, 0.45);
}

@keyframes page-progress {
  0% {
    transform: scaleX(0);
  }

  45% {
    transform: scaleX(0.72);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes image-spinner {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.product-card .thumb {
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #f3f0e9, #e7e1d6);
  overflow: hidden;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .product-body {
  padding: 18px;
}

.product-card h3 {
  min-height: 44px;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.25;
}

.refined-grid .product-card h3 {
  min-height: 0;
  margin-bottom: 0;
}

.refined-grid .thumb img {
  object-fit: contain;
  padding: 18px;
}

.product-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: #171717;
  color: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.74));
  z-index: 1;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-title {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.page-title p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.product-hero {
  min-height: 430px;
}

.product-hero::before {
  background: linear-gradient(90deg, rgba(15, 10, 6, 0.78), rgba(15, 10, 6, 0.34) 52%, rgba(15, 10, 6, 0.08));
}

.product-hero img {
  object-position: center;
}

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

.story-block {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.story-block img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.story-block div {
  padding: 24px;
}

.story-block h2 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.15;
}

.story-block p {
  color: var(--muted);
}

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

.production-gallery figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #222;
}

.production-gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.production-gallery figure:hover img {
  transform: scale(1.035);
}

.production-gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 4px;
  background: rgba(12, 12, 12, 0.72);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: start;
}

.detail-gallery {
  display: grid;
  gap: 16px;
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-kicker {
  margin-bottom: 10px;
  color: var(--brass-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}

.spec-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.spec-panel {
  margin: 24px 0;
}

.contact-panel .button {
  margin-top: 10px;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.spec-list span {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--brass-dark);
}

.contact-list span,
.contact-list a {
  color: var(--muted);
}

.footer {
  padding: 42px 0;
  background: #111;
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 4px;
  }

  .split,
  .contact-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .terms-grid,
  .story-grid,
  .production-gallery {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 76vh;
  }

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

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

@media (max-width: 620px) {
  .brand img {
    width: 118px;
  }

  .brand-text {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(44px, 16vw, 76px);
  }

  h2,
  .section-header h2,
  .page-title h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hero-content {
    padding: 62px 0 72px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.86), rgba(10, 10, 10, 0.58));
  }

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

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

  .button,
  .text-link {
    width: 100%;
  }

  .page-hero {
    min-height: 360px;
  }

  .page-title {
    padding: 54px 0;
  }

  .image-mosaic {
    grid-template-columns: 1fr;
  }

  .image-mosaic .mosaic-large {
    grid-column: auto;
  }

  .image-mosaic img,
  .production-gallery img,
  .production-gallery figure {
    min-height: 220px;
  }


  .spec-list li {
    display: block;
  }

  .spec-list strong {
    display: block;
    margin-top: 4px;
  }

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

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

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