:root {
  --ink: #070707;
  --muted: #6f6f6b;
  --paper: #ffffff;
  --soft: #f2f1ee;
  --line: rgba(7, 7, 7, 0.22);
  --header-h: 78px;
  --page: clamp(2rem, 3.55vw, 3rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
figure { margin: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  padding: 0 2rem;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.site-header.scrolled { border-color: rgba(7, 7, 7, 0.08); }
.brand { grid-column: 2; display: block; width: 140px; }
.brand img { height: 45px; object-fit: contain; }
.nav-edge {
  justify-self: start;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
.nav-right { justify-self: end; }
.nav-edge::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: 0.35rem;
  background: currentColor;
  transition: width 180ms ease;
}
.nav-edge:hover::after,
.nav-edge:focus-visible::after { width: 100%; }

.home-hero {
  position: relative;
  height: 100svh;
  min-height: 42rem;
  overflow: hidden;
  background: #fff;
  transform: translateY(50px) scale(0.65);
  transform-origin: center center;
  transition: transform 900ms cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}
.home-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #e7e6e3;
}
.home-hero.expanded { transform: translateY(50px) scale(1); }

.brand-intro {
  display: grid;
  grid-template-columns: minmax(12rem, 0.65fr) minmax(18rem, 1fr);
  gap: clamp(3rem, 9vw, 9rem);
  width: calc(100% - 2 * var(--page));
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) 0;
}
.brand-intro h1,
.collection-intro h2,
.collection-row h2,
.resource-title,
.collection-hero h1,
.collection-copy h2,
.contact h2 {
  margin: 0;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.brand-intro h1 { font-size: clamp(2.6rem, 4.1vw, 4.6rem); }
.brand-intro p {
  max-width: 44rem;
  margin: 0;
  align-self: end;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.collection-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.2rem;
  width: calc(100% - 2 * var(--page));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(7rem, 11vw, 11rem);
}
.collection-intro figure { align-self: start; overflow: hidden; }
.collection-intro-slider { position: relative; aspect-ratio: 1.75 / 1; background: #ecebe8; }
.collection-intro-slider img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}
.collection-intro-slider img.active { opacity: 1; }
.collection-intro > div { padding: 0 0 0 clamp(0rem, 2vw, 2rem); }
.carousel-controls { position: absolute; z-index: 2; right: 0.75rem; bottom: 0.75rem; display: flex; gap: 1px; }
.carousel-controls button { min-height: 44px; padding: 0.5rem 0.85rem; border: 0; background: rgba(255,255,255,.94); color: var(--ink); font: inherit; font-size: 0.875rem; cursor: pointer; }
.carousel-controls button:hover { background: #fff; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
.collection-intro h2 { font-size: clamp(2.4rem, 3.6vw, 3.2rem); }
.collection-intro p { max-width: 42rem; margin: 1.2rem 0 0; }

.collection-list { padding: 0 0 clamp(5rem, 9vw, 9rem); }
.collection-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  width: calc(100% - 4rem);
  margin: 0 auto;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}
.collection-row-copy {
  grid-column: 4 / 8;
  grid-row: 1;
  min-width: 0;
  padding: 0 3.5rem 0 1rem;
}
.collection-row.reverse .collection-row-copy {
  grid-column: 6 / 10;
  padding: 0 1rem 0 2.5rem;
}
.collection-row h2 { font-size: clamp(2.45rem, 3.25vw, 3.05rem); }
.collection-note {
  margin: 0.75rem 0 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.015em;
}
.collection-row-copy > p:not(.collection-note) { margin: 0; color: var(--muted); }
.collection-row figure {
  grid-column: 8 / 13;
  grid-row: 1;
  min-width: 0;
  margin: 0 1rem;
  overflow: hidden;
  background: #ecebe8;
}
.collection-row.reverse figure { grid-column: 1 / 6; }
.collection-row img {
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.collection-row:hover img { transform: scale(1.018); }
.mug-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  margin-top: 1.75rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease;
}
.mug-button:hover,
.mug-button:focus-visible { background: var(--ink); color: #fff; }

.resources {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.resource-block { min-height: 27rem; padding: clamp(3rem, 6vw, 6rem) var(--page); }
.resource-block + .resource-block { border-left: 1px solid var(--line); }
.resource-title { font-size: clamp(2rem, 3.1vw, 3.1rem); }
.resource-block p:not(.resource-title) { max-width: 31rem; margin: 1rem 0 0; color: var(--muted); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  min-height: 20rem;
  padding: 4rem 2rem 2.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}
.site-footer > div { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-label { width: max-content; margin-bottom: 0.8rem; font-weight: 600; }
.footer-office {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: 1.35rem;
  color: var(--muted);
}
.footer-office a { width: max-content; color: var(--ink); }
.footer-logo { width: 140px; }
.footer-right { align-items: flex-end; text-align: right; }

.collection-main { padding-top: var(--header-h); }
.family-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 7vw, 8rem);
  padding: clamp(3rem, 7vw, 7rem) var(--page) clamp(4rem, 8vw, 8rem);
}
.family-intro .back-link { display: inline-block; margin-bottom: clamp(3rem, 5vw, 5rem); }
.family-intro h1 { margin: 0; font-size: clamp(3.5rem, 6.5vw, 7rem); font-weight: 400; line-height: 1.05; letter-spacing: -0.035em; }
.family-description { align-self: end; max-width: 48rem; }
.family-description p { margin: 0; color: var(--muted); }
.family-description p + p { margin-top: 1.2rem; }
.collection-hero {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: calc(100svh - var(--header-h));
  background: #fff;
}
.collection-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2.5rem, 5vw, 5rem) var(--page);
}
.collection-hero h1 { font-size: clamp(4rem, 7vw, 7.25rem); }
.collection-hero-copy > p { max-width: 28rem; margin: 0; color: var(--muted); }
.collection-hero-media { overflow: hidden; background: #ecebe8; }
.collection-hero-media img { height: 100%; min-height: 42rem; object-fit: cover; }
.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.back-link { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; }
.collection-copy {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 9vw, 9rem);
  width: min(1160px, calc(100% - 2 * var(--page)));
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) 0;
}
.collection-copy h2 { max-width: 11ch; font-size: clamp(2.7rem, 4.5vw, 4.8rem); }
.collection-copy div { max-width: 40rem; }
.collection-copy p { margin-top: 0; color: var(--muted); }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.gallery figure { overflow: hidden; background: #ecebe8; }
.gallery img { height: min(68vw, 52rem); object-fit: cover; }
.gallery figure:last-child:nth-child(odd) { grid-column: 1 / -1; }
.gallery .original-photo img { height: auto; min-height: 0; object-fit: contain; }
.models { padding: clamp(5rem, 9vw, 8rem) var(--page); }
.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.section-heading h2 { margin: 0; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.section-heading span { font-size: 0.78rem; color: var(--muted); }
.model-list { border-top: 0; }
.model-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.5fr auto;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background 180ms ease;
}
.model-row span { color: var(--muted); }
.model-row::after {
  content: "\2197";
  grid-column: 4;
  color: var(--muted);
  text-align: right;
}
.model-row:hover,
.model-row:focus-visible { padding-left: 0.55rem; background: var(--soft); }

.family-products {
  padding: 0 var(--page) clamp(2rem, 4vw, 4rem);
}
.family-products-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}
.family-products-heading h2,
.product-heading h1,
.product-not-found h1 {
  margin: 0;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.family-products-heading h2 { font-size: clamp(2.8rem, 5vw, 5.6rem); }
.family-products-heading p { max-width: 32rem; margin: 0; color: var(--muted); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 7vw, 7rem) 2px;
}
.product-card { display: block; min-width: 0; }
.product-card-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: #f5f5f3;
}
.product-card-media img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-card-media img { transform: scale(1.025); }
.product-card-media.product-photo img { width: 100%; height: 100%; mix-blend-mode: normal; }
.product-card-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0 0;
}
.product-card-meta h3 { margin: 0; font-size: 1rem; font-weight: 500; }
.product-card-meta span { color: var(--muted); font-size: 0.8rem; }

.download-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  padding: clamp(4rem, 7vw, 7rem) var(--page);
  background: var(--soft);
}
.download-band h2 { max-width: 14ch; margin: 0; font-size: clamp(2.5rem, 4vw, 4.5rem); font-weight: 400; line-height: 1.06; letter-spacing: -0.035em; }
.download-band > div:last-child { max-width: 32rem; }
.download-band p { margin: 0; color: var(--muted); }

.product-main { padding-top: var(--header-h); }
.product-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  min-height: 28rem;
  padding: clamp(2.5rem, 5vw, 5rem) var(--page);
}
.product-heading .back-link { align-self: start; }
.product-heading > div { align-self: end; }
.product-heading h1 { max-width: 14ch; font-size: clamp(2.7rem, 7vw, 8rem); overflow-wrap: break-word; }
.product-media { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.product-media figure { min-width: 0; aspect-ratio: 1 / 1; background: #f2f2f0; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media .product-render { display: grid; place-items: center; }
.product-media .product-render img { width: 86%; height: 86%; object-fit: contain; mix-blend-mode: multiply; }
.product-media.product-photos figure { aspect-ratio: 1.42 / 1; }
.product-media.product-photos figure img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: normal; }
.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 9vw, 9rem) var(--page);
}
.product-finishes { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.finish-list { margin: 0; padding: 0; list-style: none; color: var(--muted); }
.finish-list li + li { margin-top: 0.25rem; }
.product-download { max-width: 34rem; }
.product-download > p:not(.eyebrow) { margin: 0; color: var(--muted); }
.technical-data { padding: clamp(4rem, 7vw, 7rem) var(--page); border-top: 1px solid var(--line); }
.technical-list { border-top: 0; }
.product-drawing { padding: 0 var(--page) clamp(4rem, 7vw, 7rem); }
.product-drawing > a { display: block; max-width: 64rem; margin: 2rem auto 0; }
.product-drawing img { height: clamp(20rem, 45vw, 40rem); object-fit: contain; }
.technical-source { color: var(--muted); font-size: 0.875rem; margin-top: 1.5rem; }
.technical-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.technical-row span { color: var(--muted); }
.technical-row strong { font-weight: 500; }
.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(4rem, 7vw, 7rem) var(--page);
  background: var(--soft);
}
.product-actions .mug-button { margin-top: 0; }
.text-link { border-bottom: 1px solid currentColor; }
.product-not-found { min-height: 70svh; padding: 12rem var(--page) 6rem; }
.product-not-found h1 { max-width: 14ch; font-size: clamp(3rem, 6vw, 7rem); }
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: clamp(6rem, 10vw, 10rem) var(--page);
  border-top: 1px solid var(--line);
}
.contact h2 { max-width: 11ch; font-size: clamp(2.8rem, 5vw, 5.5rem); }
.contact-details { align-self: end; max-width: 31rem; }
.contact-details p { margin: 0 0 1.5rem; color: var(--muted); }
.contact-line { display: block; padding: 1rem 0; border-top: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 1px solid var(--line); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (min-width: 821px) and (max-width: 1100px) {
  .collection-row-copy { grid-column: 3 / 8; padding-right: 2rem; }
  .collection-row.reverse .collection-row-copy { grid-column: 6 / 12; }
}

@media (max-width: 820px) {
  :root { --header-h: 66px; --page: 1.25rem; }
  .site-header { padding: 0 var(--page); }
  .brand { width: 94px; }
  .brand img { height: 34px; }
  .nav-edge { font-size: 0.7rem; }
  .home-hero {
    height: 82svh;
    min-height: 34rem;
    transform: translateY(34px) scale(0.84);
  }
  .home-hero.expanded { transform: translateY(34px) scale(1); }
  .home-hero img { width: 100%; height: 100%; object-fit: cover; }
  .brand-intro,
  .collection-intro,
  .collection-row,
  .collection-row.reverse,
  .collection-copy,
  .contact { grid-template-columns: 1fr; }
  .brand-intro { gap: 2rem; padding: 5rem 0; }
  .collection-intro { gap: 2rem; padding: 3rem 0 5rem; }
  .collection-intro > div { padding: 0; }
  .collection-row,
  .collection-row.reverse {
    width: calc(100% - 2 * var(--page));
    gap: 2.2rem;
    padding: 3.6rem 0;
  }
  .collection-row figure,
  .collection-row.reverse figure,
  .collection-row-copy,
  .collection-row.reverse .collection-row-copy {
    grid-column: 1;
    grid-row: auto;
    margin: 0;
    padding: 0;
  }
  .collection-row.reverse figure { order: 2; }
  .collection-row.reverse .collection-row-copy { order: 1; }
  .collection-row-copy { max-width: 31rem; }
  .resources { grid-template-columns: 1fr; }
  .resource-block { min-height: 23rem; }
  .resource-block + .resource-block { border-top: 1px solid var(--line); border-left: 0; }
  .site-footer { grid-template-columns: 1fr; align-items: start; min-height: 26rem; }
  .footer-logo { order: -1; }
  .footer-right { align-items: flex-start; text-align: left; }
  .collection-hero { grid-template-columns: 1fr; }
  .collection-hero-copy { min-height: 26rem; gap: 3.5rem; }
  .collection-hero-media img { height: 58svh; min-height: 28rem; }
  .gallery { grid-template-columns: 1fr; }
  .gallery figure:last-child:nth-child(odd) { grid-column: auto; }
  .gallery img { height: 75vw; min-height: 24rem; }
  .model-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .model-row::after { grid-column: 1; text-align: left; }
  .family-products-heading,
  .family-intro,
  .product-grid,
  .download-band,
  .product-heading,
  .product-media,
  .product-details { grid-template-columns: 1fr; }
  .family-products-heading { align-items: start; }
  .product-grid { gap: 3.5rem; }
  .product-heading { min-height: 24rem; gap: 4rem; }
  .family-intro { gap: 2.5rem; }
  .product-media figure { aspect-ratio: 1 / 1; }
  .product-details { gap: 4rem; }
  .product-finishes { grid-template-columns: 1fr; }
  .technical-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .product-actions { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .collection-row img { transition: none; }
  .collection-intro-slider img { transition: none; }
  .home-hero,
  .home-hero.expanded { transform: none; transition: none; }
}
