:root {
  --ink: #1f2723;
  --muted: #68736d;
  --paper: #f7f5f0;
  --surface: #ffffff;
  --line: #ded8cb;
  --wood: #9c673e;
  --wood-dark: #5e3f2a;
  --teal: #1e6f68;
  --teal-dark: #174c48;
  --amber: #d99a35;
  --charcoal: #222826;
  --shadow: 0 18px 48px rgba(31, 39, 35, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  align-items: center;
  background: rgba(247, 245, 240, 0.92);
  border-bottom: 1px solid rgba(94, 63, 42, 0.12);
  display: flex;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 5vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 180ms ease, background 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(31, 39, 35, 0.08);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  align-items: center;
  background: var(--teal);
  color: white;
  display: inline-flex;
  font-weight: 800;
  height: 40px;
  justify-content: center;
  letter-spacing: 0;
  width: 40px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 1px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.5vw, 32px);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  color: #2e3834;
  position: relative;
}

.site-nav a::after {
  background: var(--teal);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  width: 100%;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 10px;
  width: 44px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 22px;
}

.hero {
  align-items: center;
  display: grid;
  min-height: min(760px, 92vh);
  overflow: hidden;
  position: relative;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 26, 23, 0.82) 0%, rgba(20, 26, 23, 0.56) 36%, rgba(20, 26, 23, 0.14) 72%),
    linear-gradient(0deg, rgba(20, 26, 23, 0.22), rgba(20, 26, 23, 0.02));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: white;
  margin: 0 auto;
  max-width: var(--max);
  padding: 116px clamp(20px, 5vw, 56px) 76px;
  position: relative;
  width: 100%;
}

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

.hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
  max-width: 800px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 23px);
  margin: 26px 0 0;
  max-width: 660px;
}

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

.btn {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  transition: background 160ms ease, border 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--teal);
  color: white;
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-light {
  background: white;
  color: var(--teal-dark);
}

.trust-band {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-band div {
  border-right: 1px solid var(--line);
  padding: 24px clamp(20px, 4vw, 52px);
}

.trust-band div:last-child {
  border-right: 0;
}

.trust-band strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.trust-band span {
  color: var(--muted);
  display: block;
  font-size: 14px;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: 86px clamp(20px, 5vw, 56px);
}

.section-intro {
  padding-bottom: 46px;
}

.split {
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0;
}

h3 {
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
}

p {
  color: var(--muted);
  margin: 0;
}

.split p + p {
  margin-top: 18px;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-heading > p {
  max-width: 470px;
}

.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  padding-bottom: 4px;
  white-space: nowrap;
}

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

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 6px 22px rgba(31, 39, 35, 0.04);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.product-card > div:last-child {
  padding: 22px;
}

.product-card p {
  font-size: 14px;
  margin-top: 10px;
}

.product-card ul {
  color: var(--muted);
  font-size: 13px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.product-card li + li {
  margin-top: 8px;
}

.product-media {
  aspect-ratio: 4 / 3;
  background-color: #d6cec0;
  position: relative;
}

.product-media::before,
.product-media::after {
  content: "";
  position: absolute;
}

.product-media-table::before {
  background: var(--wood);
  height: 18%;
  left: 14%;
  top: 42%;
  width: 72%;
}

.product-media-table::after {
  border-left: 9px solid var(--wood-dark);
  border-right: 9px solid var(--wood-dark);
  height: 30%;
  left: 24%;
  top: 58%;
  width: 52%;
}

.product-media-chair::before {
  border: 12px solid var(--teal);
  border-bottom: 0;
  height: 36%;
  left: 33%;
  top: 20%;
  width: 34%;
}

.product-media-chair::after {
  background: var(--wood);
  height: 14%;
  left: 28%;
  top: 56%;
  width: 44%;
}

.product-media-cabinet::before {
  background: var(--teal-dark);
  height: 42%;
  left: 13%;
  top: 40%;
  width: 74%;
}

.product-media-cabinet::after {
  background: linear-gradient(90deg, transparent 31%, rgba(255,255,255,0.45) 31%, rgba(255,255,255,0.45) 33%, transparent 33%, transparent 66%, rgba(255,255,255,0.45) 66%, rgba(255,255,255,0.45) 68%, transparent 68%);
  height: 42%;
  left: 13%;
  top: 40%;
  width: 74%;
}

.product-media-coffee::before {
  background: var(--wood);
  border-radius: 50%;
  height: 34%;
  left: 26%;
  top: 36%;
  width: 48%;
}

.product-media-coffee::after {
  border: 8px solid var(--teal-dark);
  border-top: 0;
  height: 20%;
  left: 32%;
  top: 68%;
  width: 36%;
}

.feature-section {
  background: #ece7dc;
  max-width: none;
}

.feature-section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

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

.process-grid article,
.capability-list article,
.scenario-grid article,
.quality-grid div {
  background: var(--surface);
  border: 1px solid rgba(94, 63, 42, 0.16);
  border-radius: var(--radius);
  padding: 24px;
}

.process-grid span {
  color: var(--amber);
  display: block;
  font-weight: 900;
  margin-bottom: 20px;
}

.process-grid p,
.capability-list p,
.scenario-grid p {
  font-size: 14px;
  margin-top: 10px;
}

.two-column {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.panel {
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 48px);
}

.panel-dark {
  background: var(--charcoal);
  color: white;
}

.panel-dark p {
  color: rgba(255, 255, 255, 0.76);
  margin: 20px 0 28px;
}

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

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

.quality-section {
  align-items: start;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.quality-section p {
  margin-top: 18px;
}

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

.quality-grid strong,
.quality-grid span {
  display: block;
}

.quality-grid strong {
  margin-bottom: 8px;
}

.quality-grid span {
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  background: var(--teal-dark);
  color: white;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  padding: 86px max(clamp(20px, 5vw, 56px), calc((100vw - var(--max)) / 2 + 56px));
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 18px;
  max-width: 520px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-lines a {
  color: white;
  font-weight: 800;
}

.rfq-form {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(22px, 4vw, 34px);
}

.rfq-form label {
  color: #34403b;
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
}

input,
select,
textarea {
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(30, 111, 104, 0.16);
}

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

.site-footer {
  align-items: center;
  background: var(--charcoal);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 56px);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    gap: 0;
    left: 0;
    padding: 10px 20px 22px;
    position: absolute;
    right: 0;
    top: 68px;
  }

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

  .site-nav a {
    padding: 13px 0;
  }

  .split,
  .section-heading,
  .two-column,
  .quality-section,
  .contact-section {
    display: grid;
    grid-template-columns: 1fr;
  }

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

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

  .section-heading {
    align-items: start;
    gap: 16px;
  }
}

@media (max-width: 680px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(20, 26, 23, 0.86), rgba(20, 26, 23, 0.52)),
      linear-gradient(0deg, rgba(20, 26, 23, 0.4), transparent);
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    display: grid;
  }

  .trust-band,
  .product-grid,
  .process-grid,
  .scenario-grid,
  .quality-grid,
  .rfq-form {
    grid-template-columns: 1fr;
  }

  .trust-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-bottom: 62px;
    padding-top: 62px;
  }

  .contact-section {
    padding-bottom: 62px;
    padding-top: 62px;
  }
}
