.piece figure {
  cursor: zoom-in;
}

.piece figure:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(13, 12, 11, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.image-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.image-lightbox img {
  max-width: min(88vw, 1000px);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.lightbox-open {
  overflow: hidden;
}

@media (min-width: 901px) {
  .intro {
    grid-template-columns: minmax(470px, 1.1fr) minmax(390px, 0.9fr);
    gap: clamp(55px, 8vw, 120px);
  }

  .intro h2,
  .collection-heading h2,
  .process h2,
  .maker h2,
  .care h2 {
    white-space: nowrap;
  }

  .intro h2 {
    font-size: clamp(3.3rem, 4vw, 4.3rem);
  }

  .intro-copy {
    max-width: 440px;
  }

  .collection {
    grid-template-columns: minmax(430px, 1.35fr) 1fr 1fr;
  }

  .collection-heading h2 {
    font-size: clamp(3.2rem, 3.8vw, 4.15rem);
  }

  .process-copy {
    padding-left: clamp(48px, 6.5vw, 105px);
    padding-right: clamp(48px, 6.5vw, 105px);
  }

  .process h2 {
    font-size: clamp(3.1rem, 3.7vw, 4.1rem);
  }

  .maker {
    grid-template-columns: minmax(610px, 1.25fr) minmax(360px, 0.75fr);
    gap: clamp(55px, 7vw, 105px);
  }

  .maker h2 {
    font-size: clamp(3.25rem, 3.8vw, 4.2rem);
  }

  .care {
    grid-template-columns: minmax(560px, 1.15fr) minmax(380px, 0.85fr);
    gap: clamp(55px, 7vw, 105px);
  }

  .care h2 {
    font-size: clamp(3.25rem, 3.8vw, 4.2rem);
  }
}

@media (max-width: 600px) {
  .image-lightbox {
    padding: 20px;
  }
}

/* Calm, readable contact area */
body {
  letter-spacing: 0.035em;
}

.contact {
  background: #e9e3da;
  color: var(--ink);
}

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

.contact .eyebrow {
  color: var(--red);
}

.contact .eyebrow::after {
  background: var(--red);
}

.contact form {
  max-width: 640px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid #d7cec1;
  background: rgba(252, 251, 248, 0.72);
}

.contact label {
  margin-bottom: 22px;
  color: #3f3a34;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.contact input,
.contact select,
.contact textarea {
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid #cfc4b6;
  border-radius: 2px;
  background: #fffefa;
  color: var(--ink);
}

.contact textarea {
  min-height: 130px;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(168, 15, 56, 0.1);
}

.contact button {
  border-color: #8f1738;
  background: #8f1738;
  color: #fff;
}

.form-error {
  color: #8f1738;
}

.form-success {
  border-color: #b7aa9b;
  color: var(--ink);
}

/* Seamless, user-scrollable collection */
.collection-carousel {
  display: block;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  overflow: hidden;
}

.collection-carousel .collection-heading {
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(320px, 0.8fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: end;
  max-width: 1440px;
  margin: 0 auto clamp(48px, 7vw, 88px);
  padding: 0 clamp(24px, 7.5vw, 116px);
}

.collection-carousel .collection-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.collection-carousel .collection-heading > div > p:first-child {
  max-width: 470px;
  margin: 0;
  color: #504b44;
  line-height: 2;
}

.collection-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  touch-action: pan-x;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.collection-viewport::-webkit-scrollbar { display: none; }

.collection-track {
  display: flex;
  gap: clamp(16px, 2vw, 30px);
  width: max-content;
  padding: 0 clamp(24px, 7.5vw, 116px) 30px;
}

.collection-carousel .piece {
  flex: 0 0 clamp(250px, 28vw, 420px);
  margin: 0;
}

.collection-carousel .piece:nth-child(3n + 2) {
  transform: translateY(34px);
}

.collection-carousel .piece p {
  background: var(--paper);
}

@media (max-width: 900px) {
  .process-image {
    display: none;
  }

  .collection-carousel .collection-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .collection-carousel .collection-heading .eyebrow {
    grid-column: 1;
  }

  .collection-carousel .piece {
    flex-basis: min(78vw, 360px);
  }

  .contact form {
    padding: 24px;
  }
}
