:root {
  --ivory: #f8f3e9;
  --paper: #fffaf0;
  --linen: #ebe1d1;
  --sand: #d2c0a8;
  --ink: #221f1a;
  --muted: #746b5d;
  --charcoal: #343129;
  --champagne: #b99963;
  --sage: #697163;
  --line: rgba(34, 31, 26, 0.13);
  --shadow: 0 22px 70px rgba(65, 51, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(185, 153, 99, 0.13), transparent 34rem),
    linear-gradient(180deg, var(--ivory) 0%, #fbf8f1 45%, #f1e8da 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(34, 31, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 31, 26, 0.025) 1px, transparent 1px);
  background-size: 38px 38px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(34, 31, 26, 0.12);
  background: rgba(255, 250, 240, 0.8);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 45px rgba(65, 51, 31, 0.09);
}

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

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  background: #fffdf7;
}

.brand-mark img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand strong,
.footer span:first-child {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--ink);
  background: rgba(185, 153, 99, 0.11);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  cursor: pointer;
  background: #fffdf7;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(460px, 1.04fr);
  gap: 48px;
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  min-height: 660px;
  margin: 0 auto;
  padding: 70px 0 34px;
}

.hero-copy {
  max-width: 620px;
  padding-top: 18px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 4.55vw, 4.6rem);
  line-height: 1.08;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 3.6vw, 3.7rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-secondary {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.54);
}

.button-secondary:hover {
  background: #fffdf7;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid rgba(34, 31, 26, 0.12);
  box-shadow: var(--shadow);
  background: var(--linen);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(248, 243, 233, 0.22), transparent 44%);
}

.hero-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: 250px;
  padding: 18px;
  border: 1px solid rgba(255, 250, 240, 0.62);
  color: var(--paper);
  background: rgba(34, 31, 26, 0.72);
  backdrop-filter: blur(12px);
}

.hero-note span,
.product-list span,
.process span,
.intro-band span {
  display: block;
  margin-bottom: 8px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  line-height: 1.35;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band div {
  min-height: 118px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

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

.intro-band strong {
  display: block;
  max-width: 260px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.18;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 76px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading.narrow {
  display: block;
  max-width: 780px;
}

.product-layout,
.craft-grid,
.case-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.category-grid article {
  display: grid;
  min-height: 420px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.5);
}

.category-grid figure {
  position: relative;
  overflow: hidden;
  height: 190px;
  margin: 0 0 24px;
  border: 1px solid rgba(34, 31, 26, 0.1);
  background: rgba(235, 225, 209, 0.68);
}

.toned-media {
  position: relative;
  background: var(--linen);
}

.toned-media img {
  filter: saturate(0.74) sepia(0.14) brightness(1.04);
}

.toned-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(210, 192, 168, 0.16)),
    rgba(248, 243, 233, 0.08);
  mix-blend-mode: screen;
}

.company-media img {
  object-position: center;
}

.category-grid span,
.customer-grid span,
.sustainability-layout span {
  display: block;
  margin-bottom: 10px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-grid h3 {
  margin-bottom: 12px;
}

.category-grid p,
.customer-grid p,
.sustainability-layout p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.empty-media {
  position: relative;
  background:
    linear-gradient(135deg, rgba(34, 31, 26, 0.045) 25%, transparent 25%) 0 0 / 20px 20px,
    linear-gradient(135deg, transparent 75%, rgba(34, 31, 26, 0.04) 75%) 0 0 / 20px 20px,
    rgba(235, 225, 209, 0.66);
}

.empty-media::after {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(34, 31, 26, 0.15);
  content: "";
}

.feature-image,
.craft-image,
.case-image {
  overflow: hidden;
  min-height: 560px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--linen);
}

.product-list,
.case-stack {
  display: grid;
  gap: 14px;
}

.product-list article,
.process article,
.case-stack article {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.58);
}

.product-list p,
.process p,
.craft-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.customers-section {
  padding-top: 70px;
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.customer-grid article {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.44);
}

.craft-section {
  width: 100%;
  padding: 104px max(20px, calc((100% - 1180px) / 2));
  background: rgba(34, 31, 26, 0.94);
  color: var(--paper);
}

.craft-section .eyebrow,
.case-stack p {
  color: var(--champagne);
}

.craft-grid {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  margin-top: 44px;
}

.craft-copy {
  align-self: center;
}

.craft-copy p {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 250, 240, 0.73);
  font-size: 1.08rem;
}

.finish-list span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  color: var(--paper);
  background: rgba(255, 250, 240, 0.06);
  font-size: 0.88rem;
  font-weight: 700;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process article {
  min-height: 270px;
  border-top: 0;
  border-left: 0;
  background: rgba(255, 250, 240, 0.42);
}

.sustainability-section {
  padding-top: 78px;
}

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

.sustainability-layout article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.58);
}

.case-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
}

.case-stack article {
  display: grid;
  align-content: space-between;
}

.case-stack p {
  margin-bottom: 30px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-stack strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  font-weight: 600;
  line-height: 1.18;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 36px;
  width: min(1180px, calc(100% - 40px));
  margin: 30px auto 0;
  padding: 76px 0 86px;
  border-top: 1px solid var(--line);
}

.contact-copy h2 {
  max-width: 720px;
}

.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-quick-left {
  margin-top: 32px;
}

.contact-quick .button {
  min-width: 142px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  align-content: start;
  align-self: start;
  padding: 26px 30px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.66);
}

.contact-panel a,
.contact-panel address {
  display: block;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
}

.contact-panel span {
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-panel address {
  border-bottom: 0;
  color: var(--muted);
  font-weight: 500;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .site-header {
    width: calc(100% - 28px);
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 250, 240, 0.97);
  }

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

  .hero,
  .product-layout,
  .craft-grid,
  .case-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .customer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sustainability-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-copy {
    max-width: 680px;
    padding-top: 0;
  }

  h1 {
    font-size: clamp(2.75rem, 7vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 5.8vw, 3.2rem);
  }

  .hero-visual,
  .feature-image,
  .craft-image,
  .case-image {
    min-height: 380px;
  }

  .intro-band,
  .process,
  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .intro-band div:last-child {
    border-bottom: 0;
  }
}

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

  .brand small {
    display: none;
  }

  .hero,
  .section,
  .intro-band,
  .contact-section,
  .footer {
    width: calc(100% - 28px);
  }

  .hero {
    gap: 28px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3rem);
  }

  h2 {
    font-size: 2rem;
  }

  .hero-visual,
  .feature-image,
  .craft-image,
  .case-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .product-layout,
  .craft-grid,
  .case-layout,
  .contact-section {
    gap: 24px;
  }

  .category-grid,
  .customer-grid {
    grid-template-columns: 1fr;
  }

  .category-grid article,
  .customer-grid article,
  .sustainability-layout article {
    min-height: auto;
    padding: 22px;
  }

  .category-grid figure {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-note {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .section {
    padding: 48px 0 58px;
  }

  .product-list article,
  .process article,
  .case-stack article,
  .contact-panel {
    padding: 22px;
  }

  .craft-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .footer {
    display: grid;
  }
}
