:root {
  --ink: #111111;
  --text: #26211f;
  --muted: #716963;
  --faint: #9b928c;
  --red: #bd1f2d;
  --red-dark: #921723;
  --paper: #fbfaf8;
  --panel: #ffffff;
  --wash: #f1eeea;
  --canvas: #d8d0c7;
  --line: #dfd8d1;
  --line-strong: #c8beb6;
  --max: 1400px;
  --radius: 10px;
  --shadow: 0 24px 70px rgba(28, 20, 16, 0.12);
  --soft-shadow: 0 14px 38px rgba(28, 20, 16, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.024) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.018) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

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

button {
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2 + 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(251, 250, 248, 0.92);
  border-bottom: 1px solid rgba(223, 216, 209, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 194px;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 840;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand strong {
  color: var(--ink);
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #403934;
  font-size: 13px;
}

.nav a,
.header-cta,
.button,
.mobile-sample-cta {
  text-decoration: none;
}

.nav a {
  position: relative;
  padding: 26px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  opacity: 0;
  transform: scaleX(0.65);
  transition: opacity 160ms ease, transform 160ms ease;
}

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

.header-cta {
  min-height: 42px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 780;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(189, 31, 45, 0.18);
}

.hero {
  min-height: min(760px, calc(100dvh - 72px));
  padding: 58px max(28px, calc((100vw - var(--max)) / 2 + 28px)) 48px;
  display: grid;
  grid-template-columns: minmax(480px, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
  background:
    linear-gradient(90deg, transparent 0%, transparent 55%, rgba(216, 208, 199, 0.42) 55%, rgba(216, 208, 199, 0.42) 100%),
    radial-gradient(circle at 9% 18%, rgba(189, 31, 45, 0.07), transparent 28%),
    var(--paper);
}

.hero-copy {
  max-width: 760px;
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 820;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(54px, 5.7vw, 84px);
  line-height: 0.93;
  letter-spacing: -0.02em;
}

.hero-lede {
  margin: 26px 0 0;
  max-width: 570px;
  color: #3f3834;
  font-size: 19px;
  line-height: 1.54;
}

.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 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 790;
  white-space: nowrap;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button:active,
.header-cta:active {
  transform: translateY(1px);
}

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px rgba(189, 31, 45, 0.22);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--ink);
  box-shadow: var(--soft-shadow);
}

.hero-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.36fr);
  grid-template-rows: minmax(460px, 62vh);
  gap: 14px;
  align-items: stretch;
}

.hero-gallery figure,
.story-photo-grid figure,
.private-media,
.catalogue-gallery img,
.workshop-grid article,
.product-grid article,
.sample-form,
.contact-grid a {
  border-radius: var(--radius);
}

.hero-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.hero-gallery img,
.story-photo-grid img,
.workshop-grid img,
.product-grid img,
.private-media img,
.catalogue-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-photo::after,
.private-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(17, 17, 17, 0.34));
  pointer-events: none;
}

.hero-main-photo figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.68);
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-side-photo {
  align-self: end;
  height: 49%;
}

.buyer-strip {
  padding: 0 max(20px, calc((100vw - var(--max)) / 2 + 20px));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.buyer-strip a {
  min-height: 76px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.78);
  color: #2e2926;
  text-align: center;
  text-decoration: none;
  font-weight: 780;
}

.buyer-strip a:hover {
  color: var(--red);
  background: #fff;
}

.section {
  padding: 98px max(28px, calc((100vw - var(--max)) / 2 + 28px));
}

h2,
h3,
p,
figure {
  margin: 0;
}

h2 {
  max-width: 880px;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.018em;
}

.section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.66;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(620px, 1.22fr);
  gap: clamp(46px, 6vw, 90px);
  align-items: start;
  background: rgba(255, 255, 255, 0.7);
}

.story-head {
  position: sticky;
  top: 104px;
}

.story-head p {
  margin-top: 22px;
  max-width: 560px;
}

.story-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.story-photo-grid figure {
  position: relative;
  overflow: hidden;
  background: var(--wash);
  box-shadow: var(--soft-shadow);
}

.story-photo-grid figure:first-child {
  grid-column: span 2;
  min-height: 340px;
}

.story-photo-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.72);
  color: #fff;
  font-size: 13px;
  font-weight: 760;
}

.story-timeline {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--soft-shadow);
}

.story-timeline div {
  min-height: 166px;
  padding: 27px;
  background: #fff;
}

.story-timeline strong {
  display: block;
  color: var(--red);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.story-timeline span {
  display: block;
  margin-top: 11px;
  color: #4d4641;
  line-height: 1.55;
}

.workshop-section {
  background:
    linear-gradient(180deg, rgba(241, 238, 234, 0.98), rgba(241, 238, 234, 0.72));
}

.workshop-copy {
  max-width: 880px;
}

.workshop-copy p,
.section-head p,
.private-copy p,
.catalogue > div > p,
.inquiry-copy p,
.contact-band p {
  margin-top: 20px;
  max-width: 680px;
}

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

.workshop-grid article {
  overflow: hidden;
  border: 1px solid rgba(223, 216, 209, 0.9);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.workshop-grid img {
  height: 292px;
}

.workshop-grid h3,
.product-grid h3 {
  padding: 18px 18px 0;
  color: var(--ink);
  font-size: 22px;
  letter-spacing: -0.01em;
}

.workshop-grid p,
.product-grid p {
  padding: 10px 18px 21px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.product-section {
  background:
    linear-gradient(180deg, #fff, rgba(241, 238, 234, 0.86));
  color: var(--text);
}

.product-section h2 {
  color: var(--ink);
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-head p {
  color: var(--muted);
}

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

.product-grid article {
  overflow: hidden;
  border: 1px solid rgba(223, 216, 209, 0.95);
  background: #fff;
  color: var(--text);
  min-height: 346px;
  box-shadow: var(--soft-shadow);
}

.product-grid .featured-product,
.product-grid article:nth-child(6) {
  grid-column: span 2;
}

.product-grid img {
  aspect-ratio: 1.42;
}

.product-grid .featured-product img,
.product-grid article:nth-child(6) img {
  aspect-ratio: 1.9;
}

.private-label,
.catalogue,
.inquiry,
.contact-band {
  display: grid;
  grid-template-columns: minmax(370px, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(46px, 6vw, 86px);
  align-items: center;
}

.private-label {
  background:
    radial-gradient(circle at 3% 14%, rgba(189, 31, 45, 0.08), transparent 30%),
    var(--paper);
}

.private-media {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.private-media img {
  height: 520px;
}

.process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0;
}

.process span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: #36302c;
  font-weight: 770;
}

.catalogue {
  background: rgba(255, 255, 255, 0.72);
}

.catalogue-gallery {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  grid-template-rows: 224px 224px;
  gap: 12px;
}

.catalogue-gallery img {
  border: 1px solid rgba(223, 216, 209, 0.9);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.catalogue-gallery img:first-child {
  grid-row: span 2;
}

.inquiry {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.04), transparent),
    var(--wash);
}

.inquiry h2 {
  color: var(--ink);
}

.inquiry p {
  color: var(--muted);
}

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

.contact-options a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  text-decoration: none;
  font-weight: 760;
}

.sample-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(223, 216, 209, 0.95);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: var(--shadow);
}

.sample-form label {
  display: grid;
  gap: 7px;
  color: #332d29;
  font-size: 13px;
  font-weight: 760;
}

.sample-form label:nth-of-type(6),
.sample-form button,
.sample-form .form-note {
  grid-column: 1 / -1;
}

.sample-form input,
.sample-form select,
.sample-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
  color: var(--text);
  outline: none;
}

.sample-form input:focus,
.sample-form select:focus,
.sample-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(189, 31, 45, 0.13);
}

.sample-form textarea {
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact-band {
  background: var(--red);
  color: #fff;
}

.contact-band h2 {
  color: #fff;
  font-size: clamp(32px, 3.4vw, 50px);
}

.contact-band p {
  color: rgba(255, 255, 255, 0.86);
}

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

.contact-grid a {
  min-height: 146px;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
}

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

.contact-grid span {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.45;
  word-break: break-word;
}

.site-footer {
  padding: 30px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: #111;
  color: #fff;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 6px;
  color: #b9b1aa;
}

.mobile-sample-cta {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 900px;
  }

  .hero h1 {
    max-width: 850px;
  }

  .hero-gallery {
    grid-template-rows: minmax(460px, 58vh);
  }

  .story-section,
  .private-label,
  .catalogue,
  .inquiry,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .story-head {
    position: static;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 60px;
    padding: 12px 20px;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding: 36px 20px 26px;
    gap: 28px;
    background: var(--paper);
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 58px);
    line-height: 0.95;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions .button {
    flex: 1 1 150px;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-main-photo {
    min-height: 360px;
  }

  .hero-side-photo {
    display: none;
  }

  .buyer-strip,
  .story-photo-grid,
  .story-timeline,
  .workshop-grid,
  .product-grid,
  .process,
  .contact-grid,
  .sample-form {
    grid-template-columns: 1fr;
  }

  .buyer-strip {
    padding: 0;
  }

  .buyer-strip a {
    justify-content: flex-start;
    min-height: 58px;
    padding: 16px 20px;
  }

  .section,
  .contact-band {
    padding: 66px 20px;
  }

  .story-photo-grid figure:first-child,
  .product-grid .featured-product,
  .product-grid article:nth-child(6) {
    grid-column: auto;
  }

  .story-photo-grid {
    grid-auto-rows: 250px;
  }

  .story-photo-grid figure:first-child {
    min-height: 300px;
  }

  .story-timeline div {
    min-height: auto;
    padding: 22px;
  }

  .workshop-grid img,
  .private-media img {
    height: 360px;
  }

  .product-grid .featured-product img,
  .product-grid article:nth-child(6) img,
  .product-grid img {
    aspect-ratio: 1.12;
  }

  .catalogue-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .catalogue-gallery img,
  .catalogue-gallery img:first-child {
    height: auto;
    grid-row: auto;
  }

  .site-footer {
    display: grid;
    padding: 26px 20px 86px;
  }

  .mobile-sample-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 30;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--red);
    color: #fff;
    font-weight: 780;
    box-shadow: 0 14px 34px rgba(21, 14, 12, 0.24);
  }
}
