: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 img { aspect-ratio: 1.75 / 1; object-fit: cover; }
.collection-intro div { padding: 0 0 0 clamp(0rem, 2vw, 2rem); }
.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); }
.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; }
.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;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.model-row span { color: var(--muted); }
.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; }
}

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