:root {
  --ink: #17201c;
  --muted: #65706a;
  --paper: #f7f4ee;
  --surface: #fffaf2;
  --sage: #667766;
  --clay: #a85f4b;
  --charcoal: #202420;
  --brass: #b78a4f;
  --line: rgba(23, 32, 28, 0.14);
  --shadow: 0 20px 60px rgba(23, 32, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(18, 24, 20, 0.7), rgba(18, 24, 20, 0));
}

.page-header {
  position: sticky;
  color: #fff;
  background: var(--charcoal);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  width: 154px;
  height: 78px;
  justify-content: center;
  padding: 0;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.38));
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 22, 19, 0.86) 0%, rgba(17, 22, 19, 0.58) 34%, rgba(17, 22, 19, 0.1) 72%),
    linear-gradient(0deg, rgba(17, 22, 19, 0.56) 0%, rgba(17, 22, 19, 0) 42%);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(68px, 11vw, 146px);
  font-weight: 500;
  line-height: 0.92;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(20px, 2.7vw, 34px);
  line-height: 1.18;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
}

.button.primary {
  color: #171c18;
  background: #f6d69c;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.intro,
.product-band,
.gallery-section,
.split-section,
.wholesale,
.cta-strip,
.contact-page {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  background: var(--surface);
}

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

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.intro > p,
.split-copy p,
.product-card p,
.step p,
.capability-list span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

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

.product-card,
.step {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.product-card h3,
.step h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.1;
}

.card-number,
.step span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--clay);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  color: #fff;
  background: var(--charcoal);
}

.split-copy p {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.68);
}

.capability-list {
  display: grid;
  gap: 14px;
}

.capability-list div {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-left: 4px solid var(--brass);
  background: rgba(255, 255, 255, 0.07);
}

.capability-list strong {
  font-size: 20px;
}

.capability-list span {
  color: rgba(255, 255, 255, 0.66);
}

.wholesale {
  background: #ece8de;
}

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

.step {
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

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

.gallery-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #1b201d;
  box-shadow: var(--shadow);
}

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

.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(15, 20, 17, 0.78), rgba(15, 20, 17, 0.08) 62%);
}

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

.gallery-wide {
  grid-column: span 2;
}

.gallery-card figcaption {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: grid;
  gap: 8px;
  color: #fff;
}

.gallery-card figcaption span {
  color: #f6d69c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-card figcaption strong {
  max-width: 560px;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.08;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background: linear-gradient(90deg, #344236, #7d4d42);
}

.cta-strip h2 {
  max-width: 900px;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 460px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  min-height: calc(100vh - 94px);
  color: #fff;
  background: linear-gradient(90deg, #344236, #7d4d42);
}

.contact-page h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 500;
  line-height: 0.98;
}

.contact-copy p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.contact-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-panel div {
  display: grid;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-panel span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-panel strong,
.contact-panel a:not(.button) {
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: #151915;
  font-size: 14px;
}

.footer-logo {
  width: 128px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.site-footer a {
  color: #f6d69c;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .brand {
    width: 132px;
    height: 68px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-image {
    object-position: 56% center;
  }

  .intro,
  .split-section,
  .contact-page,
  .product-grid,
  .gallery-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: auto;
  }

  .cta-strip,
  .contact-page,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .hero-copy {
    font-size: 20px;
  }

  .product-card,
  .step {
    min-height: auto;
  }
}
