:root {
  --ink: #111111;
  --charcoal: #242424;
  --graphite: #3d3f40;
  --mist: #f4f5f3;
  --paper: #ffffff;
  --wood: #8a5d3b;
  --moss: #4f5f49;
  --line: rgba(17, 17, 17, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: var(--paper);
  background: linear-gradient(rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0));
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: var(--paper);
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 0;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34) 52%, rgba(0, 0, 0, 0.1));
}

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

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(70px, 11vh, 112px) clamp(18px, 7vw, 92px);
}

.hero-logo {
  width: min(460px, 80vw);
  margin-bottom: 34px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
}

.eyebrow,
.section-kicker,
.product-status {
  margin: 0 0 14px;
  color: var(--wood);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #dbc1a7;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 7vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.2;
}

p {
  color: color-mix(in srgb, var(--ink) 72%, white);
  line-height: 1.7;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.section,
.band {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 68px);
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(160px, 280px) minmax(0, 760px);
  gap: clamp(28px, 7vw, 80px);
  align-items: start;
}

.intro p {
  max-width: 780px;
  font-size: 1.08rem;
}

.section-heading,
.split,
.contact,
.faq-layout,
.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.section-heading {
  margin-bottom: 34px;
  align-items: end;
}

.text-link {
  justify-self: end;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(250px, 27vw);
  gap: 12px;
}

.feature-tile {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  background: var(--charcoal);
}

.feature-tile.tall {
  grid-column: span 2;
  grid-row: span 2;
}

.feature-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.feature-tile:hover img {
  transform: scale(1.045);
}

.feature-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68));
}

.feature-tile div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--paper);
}

.feature-tile span {
  display: block;
  margin-bottom: 6px;
  color: #dbc1a7;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.service-list article,
.ai-helper,
.contact-form,
.product-card {
  border: 1px solid var(--line);
  background: var(--paper);
}

.service-list article {
  padding: 28px;
}

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

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.product-body {
  padding: 24px;
}

.product-price {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.about {
  align-items: center;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stat-row span {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  line-height: 1.35;
}

.stat-row strong {
  display: block;
  font-size: 1.2rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-email {
  margin-top: 18px;
  color: var(--ink);
  font-weight: 800;
}

.contact-email a {
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.social-list a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.social-list a[aria-disabled="true"] {
  color: #808080;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  background: var(--paper);
}

summary {
  padding: 20px;
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.ai-helper {
  position: sticky;
  top: 100px;
  padding: 24px;
}

.ai-helper input {
  margin-bottom: 12px;
}

.ai-answer {
  min-height: 84px;
  margin-top: 16px;
  padding: 16px;
  color: var(--graphite);
  background: var(--mist);
  line-height: 1.6;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 52px 18px;
  color: var(--paper);
  text-align: center;
  background: var(--ink);
}

.site-footer img {
  width: min(330px, 82vw);
  padding: 12px;
  background: var(--paper);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 920px) {
  .site-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle {
    display: block;
  }

  .intro,
  .section-heading,
  .split,
  .contact,
  .faq-layout,
  .about {
    grid-template-columns: 1fr;
  }

  .text-link {
    justify-self: start;
  }

  .gallery-grid,
  .inventory-grid,
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .feature-tile.tall {
    grid-column: span 2;
  }

  .ai-helper {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand span {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    margin-bottom: 48px;
  }

  .hero-logo {
    width: min(310px, 82vw);
  }

  .gallery-grid,
  .inventory-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .feature-tile.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .feature-tile {
    min-height: 330px;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }
}
