:root {
  color-scheme: light;
  --ink: #15211d;
  --muted: #5d6a64;
  --paper: #f7f4ef;
  --paper-2: #ede7dc;
  --teal: #1b6f70;
  --teal-dark: #0e3538;
  --wood: #9b6238;
  --brass: #c2904c;
  --line: rgba(21, 33, 29, 0.14);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(12, 24, 22, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 0 40px;
  background: rgba(247, 244, 239, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
}

.site-header[data-elevated="true"] {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 32px rgba(21, 33, 29, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
}

.brand__logo--full {
  width: 220px;
  height: auto;
}

.brand__logo--mark {
  display: none;
  width: 44px;
  height: 44px;
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal-dark);
}

.language {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.language__btn {
  width: 44px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.language__btn.is-active {
  color: var(--white);
  background: var(--teal-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  height: calc(100svh - 154px);
  max-height: 760px;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero__veil {
  z-index: -1;
  background: rgba(15, 25, 22, 0.5);
}

.hero__content {
  width: min(1180px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--white);
}

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

.hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
}

.hero__lead {
  width: min(640px, 100%);
  margin: 22px 0 0;
  font-size: 22px;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.btn--primary {
  color: #172019;
  background: var(--brass);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #d1a362;
}

.btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.08);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--white);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 14px;
  width: min(650px, 100%);
  margin: 42px 0 0;
}

.hero__stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero__stats dt {
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.hero__stats dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 750;
}

.intro-band {
  background: var(--teal-dark);
  color: var(--white);
}

.intro-band__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px 0;
}

.intro-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.45;
  font-weight: 750;
}

.section {
  padding: 92px 0;
}

.section__grid,
.section--split,
.product-grid,
.contact-section,
.site-footer,
.section--audience,
.logo-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.logo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 46px;
  align-items: center;
  padding: 74px 0;
}

.logo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.logo-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(12, 24, 22, 0.08);
}

.logo-card img {
  width: min(100%, 390px);
  height: auto;
}

.logo-card--banner img {
  width: 100%;
  border-radius: 8px;
}

.logo-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 48px;
  align-items: start;
}

.section__grid--craft {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.section__copy h2,
.contact-section h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.1;
}

.section__copy p:not(.eyebrow),
.contact-section__copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.material-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.material-panel__sample {
  position: relative;
  min-height: 190px;
  border: 1px solid rgba(21, 33, 29, 0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--paper-2);
}

.material-panel__sample::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 19, 18, 0.02), rgba(7, 19, 18, 0.35));
}

.material-panel__sample img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.material-panel__sample span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(15, 25, 22, 0.72);
  font-size: 13px;
  font-weight: 850;
}

.sample--oak img {
  object-position: 68% center;
}

.sample--lacquer img {
  object-position: center center;
}

.sample--stone img {
  object-position: center center;
}

.sample--walnut img {
  object-position: center center;
}

.process-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-card,
.kitchen-list article,
.audience-grid article,
.detail-grid article,
.snap-workflow article,
.rep-card,
.partner-callout {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-card {
  padding: 22px;
}

.process-card span {
  color: var(--teal);
  font-weight: 900;
}

.process-card h3,
.kitchen-list h3,
.audience-grid h3 {
  margin: 18px 0 0;
  font-size: 20px;
}

.process-card p,
.kitchen-list p,
.audience-grid p,
.detail-grid p,
.snap-workflow p,
.rep-card p,
.partner-callout p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.detail-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.detail-grid article {
  padding: 26px;
}

.detail-grid h3,
.snap-workflow h3,
.rep-card h3,
.partner-callout h3 {
  margin: 0;
  font-size: 20px;
}

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

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

.section--dark {
  background: #0e2224;
  color: var(--white);
}

.section--dark .section__copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 46px;
  align-items: center;
}

.product-logo {
  width: min(100%, 340px);
  height: auto;
  margin: 0 0 28px;
}

.snap-points {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.snap-points p {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
}

.product-shots {
  position: relative;
  min-height: 620px;
}

.shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

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

.shot figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(7, 17, 18, 0.76);
  font-size: 13px;
  font-weight: 850;
}

.shot--main {
  inset: 0 4% auto 0;
  height: 430px;
}

.shot--secondary {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 280px;
}

.snap-workflow {
  width: min(1180px, calc(100% - 48px));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.snap-workflow article {
  padding: 22px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.snap-workflow span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--brass);
  font-weight: 900;
}

.snap-workflow p {
  color: rgba(255, 255, 255, 0.76);
}

.section--representatives {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.representatives__intro {
  max-width: 760px;
}

.concept-note {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.rep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.rep-card {
  padding: 24px;
}

.rep-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.rep-card p {
  font-size: 15px;
}

.partner-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.35fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 14px;
  padding: 26px;
  background: #fffaf0;
}

.partner-callout p {
  margin: 0;
}

.section--audience {
  display: grid;
  gap: 36px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.audience-grid article {
  padding: 26px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
  padding: 92px 0;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf7;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    gap: 14px;
    padding: 0 24px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .language {
    justify-self: end;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero__lead {
    font-size: 19px;
  }

  .intro-band__inner,
  .logo-section,
  .section__grid--craft,
  .section--split,
  .product-grid,
  .audience-grid,
  .contact-section,
  .process-grid,
  .detail-grid,
  .snap-workflow,
  .rep-grid,
  .partner-callout {
    grid-template-columns: 1fr;
  }

  .process-grid {
    margin-top: 34px;
  }

  .product-shots {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .shot {
    position: relative;
  }

  .shot--main,
  .shot--secondary {
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .partner-callout {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 0 14px;
  }

  .brand__logo--full {
    display: none;
  }

  .brand__logo--mark {
    display: block;
  }

  .site-nav {
    top: 64px;
    left: 14px;
    right: 14px;
  }

  .hero {
    height: calc(100svh - 126px);
    min-height: 500px;
  }

  .hero__content,
  .intro-band__inner,
  .logo-section,
  .section__grid,
  .section--split,
  .product-grid,
  .contact-section,
  .site-footer,
  .section--audience,
  .process-grid,
  .detail-grid,
  .snap-workflow,
  .section--representatives {
    width: min(100% - 28px, 1180px);
  }

  .hero__content {
    justify-content: flex-end;
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .hero__stats div {
    padding: 10px 12px;
  }

  .hero__stats dt {
    font-size: 22px;
  }

  .section {
    padding: 64px 0;
  }

  .section__copy h2,
  .contact-section h2 {
    font-size: 30px;
  }

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

  .material-panel__sample {
    min-height: 130px;
  }

  .material-panel__sample img {
    min-height: 130px;
  }

  .contact-section {
    padding: 64px 0;
  }

  .contact-form {
    padding: 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}
