:root{
  --white:#ffffff;
  --paper:#f5f4f1;
  --linen:#efeee9;
  --ink:#1a1a1a;
  --text:#333333;
  --muted:#76736d;
  --line:#d8d6cf;
  --dark:#2f2f2d;
  --pad:8vw;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--white);
  color:var(--text);
  font-family:Inter,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight:300;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{display:block;width:100%;height:100%;object-fit:cover}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}
button{cursor:pointer}
h1,h2,h3,p,figure{margin:0}

.site-nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:20;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  min-height:68px;
  padding:0 var(--pad);
  color:var(--ink);
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(18px);
}
.brand{
  font-size:12px;
  font-weight:400;
  letter-spacing:.38em;
  text-transform:uppercase;
}
.nav-links{
  display:flex;
  gap:32px;
  align-items:center;
  justify-content:center;
  color:var(--ink);
  font-size:11px;
  font-weight:300;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.nav-links a{padding:8px 0;border-bottom:1px solid transparent}
.nav-links a[aria-current="page"]{border-color:var(--ink)}
.nav-action{
  justify-self:end;
  border:0;
  background:transparent;
  color:var(--ink);
  font-size:11px;
  font-weight:300;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.mobile-menu-toggle{
  display:none;
  justify-self:end;
  border:0;
  background:transparent;
  color:var(--ink);
  font-size:11px;
  font-weight:300;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.mobile-direct-nav{
  display:none;
}
.mobile-menu-panel{
  position:fixed;
  inset:0;
  z-index:19;
  display:none;
  background:rgba(255,255,255,.98);
  color:var(--ink);
}
.mobile-menu-panel nav{
  min-height:100svh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:26px;
  padding:86px var(--pad) 56px;
  text-align:center;
}
.mobile-menu-panel a,
.mobile-menu-panel button{
  border:0;
  background:transparent;
  color:var(--ink);
  font-size:15px;
  font-weight:300;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.mobile-menu-panel.is-open{
  display:block;
}
body.mobile-menu-open{
  overflow:hidden;
}
body.admin-bar .site-nav{
  top:32px;
}
body.admin-bar .mobile-menu-panel{
  top:32px;
}

.hero{
  position:relative;
  min-height:100svh;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:var(--paper);
}
.hero img{
  position:absolute;
  inset:0;
  filter:saturate(.74) contrast(1.02) brightness(.9);
  transform:scale(1.015);
}
.hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.08);
}
.hero-line{
  position:relative;
  z-index:1;
  margin-top:48vh;
  color:rgba(255,255,255,.88);
  font-size:13px;
  font-weight:300;
  letter-spacing:.5em;
  line-height:1.8;
  text-align:center;
  transform:translateX(.25em);
}
.case-hero{
  padding:78px var(--pad) 42px;
  background:var(--paper);
}
.case-hero:after{display:none}
.case-stage{
  position:relative;
  width:min(40vw,620px);
  height:calc(100svh - 120px);
  min-height:700px;
  max-height:980px;
  margin:0;
  padding:0;
  border:0;
  border-radius:0;
  background:var(--linen);
  color:inherit;
  overflow:hidden;
  cursor:e-resize;
}
.case-stage img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 58%;
  filter:saturate(.82) contrast(1.04) brightness(.98);
  transform:none;
  transition:opacity .45s ease, transform .7s ease;
}
.case-stage:hover img{transform:scale(1.012)}
.case-stage .hero-line{
  position:absolute;
  left:50%;
  bottom:38px;
  margin:0;
  color:rgba(255,255,255,.9);
  text-shadow:0 1px 18px rgba(0,0,0,.22);
  transform:translateX(-50%);
  white-space:nowrap;
}
.case-meta{
  position:absolute;
  right:26px;
  bottom:24px;
  color:rgba(255,255,255,.82);
  font-size:10px;
  font-weight:300;
  letter-spacing:.16em;
  line-height:1.6;
  text-transform:uppercase;
  text-shadow:0 1px 14px rgba(0,0,0,.22);
}

.page-hero{
  min-height:72svh;
  display:flex;
  align-items:flex-end;
  padding:150px var(--pad) 9vw;
  background:var(--paper);
}
.page-hero.image{
  position:relative;
  overflow:hidden;
  color:var(--white);
}
.page-hero.image img{
  position:absolute;
  inset:0;
  filter:grayscale(1) contrast(1.04) brightness(.78);
}
.page-hero.image:after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.08);
}
.page-hero-inner{
  position:relative;
  z-index:1;
  width:min(900px,100%);
}
.kicker{
  margin-bottom:36px;
  color:var(--muted);
  font-size:12px;
  font-weight:300;
  letter-spacing:.2em;
  text-transform:uppercase;
}
.page-hero.image .kicker{color:rgba(255,255,255,.68)}
.title{
  color:var(--ink);
  font-size:clamp(42px,6vw,84px);
  font-weight:300;
  letter-spacing:0;
  line-height:1.05;
}
.page-hero.image .title{color:rgba(255,255,255,.9)}
.product-page-hero{
  min-height:auto;
  padding:110px var(--pad) 30px;
}
.product-page-hero .kicker{
  margin-bottom:18px;
}
.product-page-hero .title{
  font-size:clamp(32px,4vw,56px);
}
.quiet-copy{
  max-width:560px;
  color:var(--muted);
  font-size:14px;
  font-weight:300;
  line-height:1.85;
}

section{
  padding:130px var(--pad);
  background:var(--white);
}
.section-paper{background:var(--paper)}
.narrow{max-width:1080px;margin:0 auto}

.series-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--white);
}
.series-item{
  display:block;
  min-width:0;
  background:var(--white);
  text-align:center;
}
.series-image{
  height:62vh;
  min-height:520px;
  overflow:hidden;
  background:var(--linen);
}
.series-image img{
  filter:saturate(.82) contrast(1.04);
  transition:transform 1.1s ease;
}
.series-item:hover img{transform:scale(1.02)}
.series-name{
  display:block;
  padding-top:24px;
  color:var(--ink);
  font-size:12px;
  font-weight:300;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.filter-row{
  display:flex;
  gap:0;
  padding:0 var(--pad) 34px;
  color:var(--muted);
  font-size:12px;
  font-weight:300;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.filter-row span{
  padding:0 18px;
  border-right:1px solid var(--line);
}
.filter-row span:first-child{padding-left:0;color:var(--ink)}
.filter-row span:last-child{border-right:0}
.wall-wrap{padding-left:0;padding-right:0}
.wall-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--white);
}
.wall-item{
  position:relative;
  height:44vw;
  min-height:430px;
  max-height:660px;
  overflow:hidden;
  background:var(--linen);
}
.wall-item img{
  filter:saturate(.82) contrast(1.04);
  transition:transform 1.1s ease, filter 1.1s ease;
}
.wall-item:hover img{transform:scale(1.02);filter:saturate(.72) contrast(1.08)}
.wall-label{
  position:absolute;
  left:26px;
  right:26px;
  bottom:24px;
  color:rgba(255,255,255,.9);
  font-size:11px;
  font-weight:300;
  letter-spacing:.18em;
  line-height:1.5;
  opacity:0;
  transform:translateY(8px);
  transition:opacity .45s ease, transform .45s ease;
  text-transform:uppercase;
}
.wall-item:hover .wall-label{opacity:1;transform:none}

.product-series-wrap{
  padding:0 var(--pad) 88px;
  background:var(--white);
}
.product-series-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--white);
}
.product-series-card{
  position:relative;
  display:block;
  aspect-ratio:7 / 10;
  height:auto;
  min-height:0;
  max-height:none;
  overflow:hidden;
  background:var(--linen);
}
.product-series-card:before{
  content:"";
  position:absolute;
  inset:-18px;
  background-image:var(--series-bg);
  background-position:center;
  background-size:cover;
  filter:blur(18px) saturate(.72) brightness(.86);
  transform:scale(1.04);
}
.product-series-card:after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.1);
  opacity:0;
  transition:opacity .45s ease;
}
.product-series-card img{
  position:relative;
  z-index:1;
  object-fit:cover;
  padding:0;
  filter:saturate(.82) contrast(1.03) brightness(.96);
  transition:transform .9s ease, filter .9s ease;
}
.product-series-card span{
  position:absolute;
  left:50%;
  bottom:42px;
  z-index:1;
  color:rgba(255,255,255,.92);
  font-size:16px;
  font-weight:300;
  letter-spacing:4px;
  line-height:1.4;
  opacity:0;
  text-align:center;
  transform:translate(-50%,8px);
  transition:opacity .45s ease, transform .45s ease;
  white-space:nowrap;
}
.product-series-card:hover:after,
.product-series-card:focus-visible:after{
  opacity:1;
}
.product-series-card:hover img,
.product-series-card:focus-visible img{
  transform:scale(1.012);
  filter:saturate(.76) contrast(1.04) brightness(.9);
}
.product-series-card:hover span,
.product-series-card:focus-visible span{
  opacity:1;
  transform:translate(-50%,0);
}

.collection-page{
  padding:118px var(--pad) 120px;
  background:var(--white);
}
.collection-head{
  display:grid;
  grid-template-columns:1fr auto;
  gap:40px;
  align-items:end;
  width:min(100%,1760px);
  margin:0 auto 52px;
}
.collection-back{
  display:inline-flex;
  margin-bottom:22px;
  color:var(--muted);
  font-size:12px;
  font-weight:300;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.collection-head h1{
  color:var(--ink);
  font-size:clamp(34px,4.6vw,62px);
  font-weight:300;
  letter-spacing:0;
  line-height:1;
}
.collection-head p{
  max-width:360px;
  color:var(--muted);
  font-size:12px;
  font-weight:300;
  letter-spacing:.06em;
  line-height:1.8;
  text-align:right;
}
.collection-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  width:min(100%,1760px);
  margin:0 auto;
  gap:56px 30px;
  padding:0;
}
.collection-card{
  display:grid;
  gap:0;
  min-width:0;
  color:var(--ink);
}
.collection-card-gallery{
  position:relative;
  overflow:hidden;
  background:var(--paper);
}
.collection-card-link{
  display:block;
  color:inherit;
}
.collection-card-track{
  display:flex;
  transform:translateX(0);
  transition:transform .55s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}
.collection-card figure{
  flex:0 0 100%;
  aspect-ratio:3 / 4;
  height:auto;
  min-height:0;
  overflow:hidden;
}
.collection-card img{
  object-fit:cover;
  filter:saturate(.84) contrast(1.03) brightness(.97);
  transition:transform .75s ease, filter .75s ease;
}
.collection-card:hover img,
.collection-card:focus-visible img{
  transform:scale(1.018);
  filter:saturate(.78) contrast(1.04) brightness(.92);
}
.collection-card-arrow{
  position:absolute;
  top:50%;
  z-index:2;
  width:34px;
  height:52px;
  border:0;
  border-radius:0;
  background:transparent;
  color:rgba(26,26,26,.62);
  cursor:pointer;
  font-size:28px;
  font-weight:300;
  line-height:1;
  opacity:0;
  transform:translateY(-50%);
  transition:opacity .25s ease,background .25s ease,color .25s ease;
}
.collection-card-arrow.prev{left:8px}
.collection-card-arrow.next{right:8px}
.collection-card-gallery:hover .collection-card-arrow,
.collection-card-gallery:focus-within .collection-card-arrow{
  opacity:.72;
}
.collection-card-arrow:hover{
  background:transparent;
  color:var(--ink);
}
.collection-card-arrow:focus,
.collection-card-arrow:focus-visible{
  outline:0;
  box-shadow:none;
}
.collection-card-meta{
  display:grid;
  gap:8px;
  padding:16px 0 42px;
  color:var(--text);
  font-size:12px;
  font-weight:300;
  letter-spacing:.06em;
  line-height:1.55;
}
.collection-card-meta span:last-child{
  color:var(--muted);
}
.collection-pagination{
  display:flex;
  justify-content:center;
  gap:18px;
  width:min(100%,1760px);
  margin:36px auto 0;
  color:var(--muted);
  font-size:12px;
  font-weight:300;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.collection-pagination a,
.collection-pagination span{
  color:inherit;
}
.collection-pagination .current{
  color:var(--ink);
}

.product-editorial{
  display:grid;
  grid-template-columns:52% 48%;
  gap:0;
  padding-top:68px;
  background:var(--white);
}
.product-editorial-media{
  position:sticky;
  top:68px;
  align-self:start;
  min-height:calc(100vh - 68px);
  padding-left:calc(var(--pad) * .55);
  padding-right:4vw;
  background:var(--white);
  overflow:hidden;
}
.product-gallery-viewport{
  height:calc(100vh - 68px);
  overflow:hidden;
  background:var(--paper);
}
.product-gallery-track{
  display:flex;
  width:100%;
  height:100%;
  transform:translateX(0);
  transition:transform .65s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}
.product-editorial-media figure{
  flex:0 0 100%;
  height:100%;
  min-height:calc(100vh - 68px);
  background:var(--paper);
  overflow:hidden;
}
.product-editorial-media img{
  object-fit:cover;
  object-position:center;
  filter:saturate(.84) contrast(1.03) brightness(.97);
}
.product-gallery-arrow{
  position:absolute;
  top:50%;
  z-index:3;
  width:44px;
  height:68px;
  border:0;
  border-radius:0;
  background:transparent;
  color:rgba(26,26,26,.62);
  cursor:pointer;
  font-size:36px;
  font-weight:300;
  line-height:1;
  transform:translateY(-50%);
  transition:background .25s ease,color .25s ease;
}
.product-gallery-arrow.prev{left:calc(var(--pad) * .55 + 14px)}
.product-gallery-arrow.next{right:calc(4vw + 14px)}
.product-gallery-arrow:hover{
  background:transparent;
  color:var(--ink);
}
.product-gallery-arrow:focus,
.product-gallery-arrow:focus-visible{
  outline:0;
  box-shadow:none;
}
.product-gallery-count{
  position:absolute;
  right:calc(4vw + 18px);
  bottom:20px;
  z-index:3;
  color:rgba(255,255,255,.82);
  font-size:11px;
  font-weight:300;
  letter-spacing:.16em;
}
.product-editorial-info{
  min-height:calc(100vh - 68px);
  padding:0 var(--pad) 0 4vw;
  background:var(--white);
}
.product-editorial-inner{
  position:sticky;
  top:68px;
  min-height:calc(100vh - 68px);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding-top:64px;
}
.product-breadcrumb{
  margin-bottom:58px;
  color:var(--muted);
  font-size:12px;
  font-weight:300;
  letter-spacing:.08em;
}
.product-editorial h1{
  margin:0 0 26px;
  color:var(--ink);
  font-size:18px;
  font-weight:300;
  letter-spacing:0;
  line-height:1.4;
}
.product-subtitle{
  margin-bottom:34px;
  color:var(--muted);
  font-size:13px;
  font-weight:300;
  line-height:1.7;
}
.product-finish-row{
  display:flex;
  align-items:center;
  gap:14px;
  margin:0 0 34px;
  color:var(--text);
  font-size:13px;
  font-weight:300;
}
.finish-swatch{
  width:22px;
  height:22px;
  border:1px solid var(--ink);
  background:linear-gradient(135deg,#c7ad84,#8f6f48);
}
.product-spec-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px 28px;
  margin:0 0 36px;
}
.product-spec-list div{
  display:grid;
  gap:5px;
}
.product-spec-list dt{
  color:var(--muted);
  font-size:11px;
  font-weight:300;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.product-spec-list dd{
  margin:0;
  color:var(--text);
  font-size:13px;
  font-weight:300;
}
.product-waitlist{
  width:100%;
  min-height:42px;
  margin-bottom:34px;
  border:1px solid var(--ink);
  border-radius:0;
  background:transparent;
  color:var(--ink);
  font-size:13px;
  font-weight:300;
  letter-spacing:.04em;
}
.product-description{
  max-width:540px;
  margin:0 0 52px;
  color:var(--text);
  font-size:13px;
  font-weight:300;
  line-height:1.85;
}
.atelier-page{
  background:var(--white);
}
.atelier-opening{
  position:relative;
  min-height:78vh;
  display:grid;
  place-items:center;
  padding:68px 0 0;
  background:var(--ink);
}
.atelier-opening .hero-slot{
  position:absolute;
  inset:68px 0 0;
  width:100%;
  height:auto;
}
.atelier-opening p{
  position:relative;
  z-index:1;
  color:rgba(255,255,255,.88);
  font-size:14px;
  font-weight:300;
  letter-spacing:.34em;
  line-height:1.8;
  text-align:center;
  transform:translateX(.17em);
}
.atelier-photo-slot{
  position:relative;
  min-height:520px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.12),rgba(0,0,0,.08)),
    repeating-linear-gradient(90deg,rgba(26,26,26,.04) 0,rgba(26,26,26,.04) 1px,transparent 1px,transparent 18px),
    var(--linen);
  overflow:hidden;
}
.atelier-photo-slot:after{
  content:attr(data-photo-slot);
  position:absolute;
  left:28px;
  bottom:24px;
  color:rgba(51,51,51,.42);
  font-size:10px;
  font-weight:300;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.atelier-photo-slot.has-photo{
  background-image:var(--photo);
  background-position:center;
  background-size:cover;
  filter:grayscale(.82) saturate(.42) contrast(1.06) brightness(.92);
}
.atelier-photo-slot.has-photo:after{
  display:none;
}
.atelier-gallery.has-photo{
  background:var(--linen);
  cursor:e-resize;
  filter:none;
}
.atelier-gallery.is-left-zone{
  cursor:w-resize;
}
.atelier-gallery.is-right-zone{
  cursor:e-resize;
}
.atelier-gallery-viewport{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.atelier-gallery-track{
  display:flex;
  width:100%;
  height:100%;
  transform:translateX(0);
  transition:transform .7s cubic-bezier(.22,.61,.36,1);
}
.atelier-gallery-track img{
  flex:0 0 100%;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(.82) saturate(.42) contrast(1.06) brightness(.92);
  transform:scale(1);
  transition:filter .35s ease,transform .7s ease;
  will-change:transform;
}
.atelier-gallery:hover .atelier-gallery-track img{
  transform:scale(1.012);
}
.atelier-gallery-arrow{
  position:absolute;
  top:50%;
  z-index:2;
  width:38px;
  height:54px;
  border:0;
  border-radius:0;
  background:rgba(255,255,255,.12);
  color:rgba(255,255,255,.72);
  font-size:34px;
  font-weight:300;
  line-height:1;
  cursor:inherit;
  opacity:0;
  pointer-events:none;
  transform:translateY(-50%);
  transition:background .25s ease,color .25s ease,opacity .25s ease;
}
.atelier-gallery-arrow.prev{
  left:16px;
}
.atelier-gallery-arrow.next{
  right:16px;
}
.atelier-gallery:hover .atelier-gallery-arrow{
  opacity:.42;
}
.atelier-gallery.is-left-zone .atelier-gallery-arrow.prev,
.atelier-gallery.is-right-zone .atelier-gallery-arrow.next{
  opacity:.76;
}
.atelier-gallery-arrow:hover{
  background:rgba(255,255,255,.22);
  color:rgba(255,255,255,.96);
}
.atelier-gallery-arrow:focus-visible{
  outline:1px solid rgba(255,255,255,.8);
  outline-offset:3px;
}
.atelier-opening .atelier-photo-slot{
  min-height:0;
  filter:grayscale(1) brightness(.72);
}
.atelier-opening .atelier-photo-slot:after{
  color:rgba(255,255,255,.34);
}
.atelier-process{
  display:grid;
  gap:150px;
  padding:150px var(--pad);
  background:var(--white);
}
.atelier-process-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8vw;
  align-items:center;
}
.atelier-process-row.reverse .atelier-photo-slot{order:2}
.atelier-process-row.reverse p{order:1}
.atelier-process-row p{
  max-width:420px;
  color:var(--text);
  font-size:14px;
  font-weight:300;
  line-height:1.8;
}
.atelier-process-row.reverse p{
  justify-self:end;
}
.atelier-numbers{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:6vw;
  padding:150px var(--pad);
  background:var(--paper);
  text-align:center;
}
.atelier-number{
  color:var(--ink);
  font-size:clamp(56px,7vw,88px);
  font-weight:300;
  letter-spacing:0;
  line-height:1;
}
.atelier-number-label{
  margin-top:18px;
  color:var(--muted);
  font-size:12px;
  font-weight:300;
  letter-spacing:.2em;
  line-height:1.6;
  text-transform:uppercase;
}
.atelier-number-note{
  grid-column:1/-1;
  margin:46px 0 0;
  color:var(--muted);
  font-size:12px;
  font-weight:300;
  letter-spacing:.08em;
}
.atelier-credentials{
  padding:150px var(--pad);
  background:var(--white);
}
.atelier-section-label{
  margin:0 0 54px;
  color:var(--muted);
  font-size:12px;
  font-weight:300;
  letter-spacing:.2em;
  text-transform:uppercase;
}
.atelier-credential-list{
  display:grid;
  gap:34px;
  max-width:920px;
}
.atelier-credential-list .credential-entry{
  position:relative;
  display:grid;
  grid-template-columns:1fr 160px;
  gap:48px;
  align-items:center;
  padding-bottom:26px;
  border-bottom:1px solid var(--line);
  color:var(--ink);
  font-size:22px;
  font-weight:300;
  letter-spacing:.04em;
  text-decoration:none;
}
.atelier-credential-list .credential-entry>span:first-child{
  display:grid;
  gap:12px;
}
.atelier-credential-list small{
  color:var(--muted);
  font-size:12px;
  font-weight:300;
  letter-spacing:.12em;
}
.atelier-credential-list .certificate-thumb{
  height:110px;
  opacity:.42;
  overflow:hidden;
}
.atelier-credential-list .certificate-thumb:before,
.atelier-credential-list .certificate-thumb:after{
  content:none;
}
.atelier-credential-list .certificate-thumb img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
}
.atelier-credential-list .credential-entry:hover .certificate-thumb{
  opacity:.72;
  transform:none;
}
.atelier-credential-note{
  margin-top:46px;
  color:var(--muted);
  font-size:13px;
  font-weight:300;
}
.atelier-human{
  display:grid;
  grid-template-columns:.4fr .6fr;
  gap:8vw;
  align-items:center;
  padding:150px var(--pad);
  background:var(--paper);
}
.atelier-human p{
  color:var(--ink);
  font-size:clamp(24px,3vw,38px);
  font-weight:300;
  line-height:1.28;
}
.atelier-human .atelier-photo-slot{
  min-height:430px;
}
.atelier-logistics{
  display:grid;
  gap:36px;
  padding:150px var(--pad);
  background:var(--white);
  text-align:center;
}
.atelier-logistics .atelier-photo-slot{
  min-height:62vh;
}
.atelier-logistics p{
  color:var(--ink);
  font-size:14px;
  font-weight:300;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.atelier-inquiry{
  display:grid;
  place-items:center;
  gap:28px;
  min-height:220px;
  padding:60px var(--pad);
  background:var(--paper);
  text-align:center;
}
.atelier-inquiry p{
  color:var(--ink);
  font-size:20px;
  font-weight:300;
  line-height:1.6;
}
.atelier-inquiry button{
  min-height:46px;
  padding:0 28px;
  border:1px solid var(--ink);
  border-radius:0;
  background:transparent;
  color:var(--ink);
  font-size:13px;
  font-weight:300;
  letter-spacing:.04em;
}

.bespoke-page{
  background:var(--white);
}
.bespoke-hero{
  position:relative;
  height:70vh;
  min-height:560px;
  margin-top:68px;
  overflow:hidden;
  background:var(--linen);
}
.bespoke-hero img{
  filter:saturate(.54) contrast(1.04) brightness(.92);
}
.bespoke-hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(26,26,26,.12);
}
.bespoke-hero p{
  position:absolute;
  left:50%;
  bottom:13vh;
  z-index:1;
  width:min(86vw,860px);
  color:rgba(255,255,255,.92);
  font-size:14px;
  font-weight:300;
  letter-spacing:.22em;
  line-height:1.8;
  text-align:center;
  transform:translateX(-50%);
}
.bespoke-section{
  padding:150px var(--pad) 0;
  background:var(--white);
}
.bespoke-section-heading{
  display:grid;
  gap:22px;
  max-width:720px;
  margin-bottom:76px;
}
.bespoke-section-heading.centered{
  max-width:760px;
  margin-right:auto;
  margin-left:auto;
  text-align:center;
}
.bespoke-section-heading h1,
.bespoke-section-heading h2,
.scale-copy h2{
  color:var(--ink);
  font-size:clamp(34px,4.4vw,68px);
  font-weight:300;
  letter-spacing:0;
  line-height:1.08;
}
.species-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:34px 22px;
}
.species-grid figure,
.finish-grid figure,
.structure-grid figure{
  display:grid;
  gap:16px;
}
.species-grid img,
.finish-grid img,
.structure-grid img{
  aspect-ratio:1/1;
  height:auto;
  background:var(--linen);
  filter:saturate(.58) contrast(1.05) brightness(.94);
}
.species-grid figcaption,
.finish-grid figcaption,
.structure-grid figcaption{
  color:var(--muted);
  font-size:11px;
  font-weight:300;
  letter-spacing:.14em;
  line-height:1.5;
  text-align:center;
  text-transform:uppercase;
}
.species-note{
  margin:48px 0 0 auto;
  max-width:420px;
  color:var(--muted);
  font-size:13px;
  font-weight:300;
  line-height:1.8;
  text-align:right;
}
.bespoke-scale{
  position:relative;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:8vw;
  align-items:center;
  padding:160px var(--pad);
  background:var(--white);
  overflow:hidden;
}
.scale-image{
  min-height:660px;
  opacity:.18;
}
.scale-image img{
  filter:grayscale(1) contrast(1.05);
}
.scale-copy{
  position:relative;
  z-index:1;
  max-width:560px;
}
.scale-copy dl{
  display:grid;
  gap:38px;
  margin:68px 0 40px;
}
.scale-copy dl div{
  display:grid;
  gap:12px;
}
.scale-copy dt{
  color:var(--muted);
  font-size:12px;
  font-weight:300;
  letter-spacing:.2em;
  text-transform:uppercase;
}
.scale-copy dd{
  margin:0;
  color:var(--ink);
  font-size:clamp(32px,4vw,58px);
  font-weight:300;
  letter-spacing:0;
  line-height:1;
}
.scale-copy > p:last-child,
.replication-line{
  color:var(--muted);
  font-size:13px;
  font-weight:300;
  letter-spacing:.04em;
  line-height:1.9;
}
.replication-line{
  max-width:940px;
  margin:0 auto 76px;
  text-align:center;
}
.finish-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:34px 18px;
}
.structure-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:34px 18px;
  margin-top:86px;
}
.structure-grid-compact{
  grid-template-columns:repeat(2,1fr);
  max-width:920px;
  margin-right:auto;
  margin-left:auto;
}
.bespoke-process{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:42px;
  padding:160px var(--pad);
  background:var(--white);
}
.bespoke-process:before{
  content:"";
  position:absolute;
  top:185px;
  left:var(--pad);
  right:var(--pad);
  height:1px;
  background:var(--line);
}
.bespoke-process div{
  position:relative;
  display:grid;
  gap:34px;
  padding-top:54px;
}
.bespoke-process span{
  color:var(--muted);
  font-size:11px;
  font-weight:300;
  letter-spacing:.22em;
}
.bespoke-process p{
  max-width:260px;
  color:var(--ink);
  font-size:18px;
  font-weight:300;
  line-height:1.55;
}
.bespoke-inquiry{
  display:grid;
  place-items:center;
  gap:28px;
  min-height:250px;
  padding:64px var(--pad);
  background:var(--paper);
  text-align:center;
}
.bespoke-inquiry p{
  max-width:780px;
  color:var(--ink);
  font-size:20px;
  font-weight:300;
  line-height:1.65;
}
.bespoke-inquiry button{
  min-height:46px;
  padding:0 30px;
  border:1px solid var(--ink);
  border-radius:0;
  background:transparent;
  color:var(--ink);
  font-size:13px;
  font-weight:300;
  letter-spacing:.04em;
}

.detail{
  display:grid;
  grid-template-columns:60% 40%;
  gap:0;
  padding:68px 0 0;
  background:var(--white);
}
.detail-gallery img{
  height:100vh;
  min-height:720px;
  filter:saturate(.82) contrast(1.04);
}
.detail-info{
  position:relative;
  background:var(--white);
  min-height:100vh;
  padding:0 7vw;
}
.detail-inner{
  position:sticky;
  top:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:110px 0;
}
.product-title{
  color:var(--ink);
  font-size:clamp(32px,3.8vw,48px);
  font-weight:300;
  letter-spacing:0;
  line-height:1.12;
}
.hairline{
  width:100%;
  height:1px;
  margin:34px 0;
  background:var(--line);
}
.specs{
  display:grid;
  gap:14px;
  color:var(--text);
  font-size:12px;
  font-weight:300;
  letter-spacing:.08em;
  line-height:1.7;
}
.capacity-note{
  margin-top:42px;
  color:var(--muted);
  font-size:13px;
  font-weight:300;
  line-height:1.9;
}
.line-button{
  display:inline-flex;
  align-items:center;
  width:max-content;
  min-height:42px;
  margin-top:30px;
  padding:0 0 5px;
  border:0;
  border-bottom:1px solid var(--ink);
  border-radius:0;
  background:transparent;
  color:var(--ink);
  font-size:12px;
  font-weight:300;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.story-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9vw;
  align-items:center;
  min-height:76vh;
  margin-bottom:120px;
}
.story-row:last-child{margin-bottom:0}
.story-row.reverse .story-image{order:2}
.story-row.reverse .story-copy{order:1}
.story-image{
  height:58vh;
  min-height:520px;
  background:var(--linen);
}
.story-image img{filter:grayscale(1) contrast(1.06) brightness(.92)}
.story-copy{
  color:var(--ink);
  font-size:clamp(28px,3.6vw,46px);
  font-weight:300;
  letter-spacing:0;
  line-height:1.24;
}

.credentials{
  display:grid;
  grid-template-columns:.42fr .58fr;
  gap:8vw;
  align-items:start;
}
.credential-list{display:grid;gap:34px}
.credential-item{
  position:relative;
  display:grid;
  grid-template-columns:1fr 180px;
  gap:42px;
  align-items:center;
  padding-bottom:28px;
  border-bottom:1px solid var(--line);
  color:var(--ink);
  font-size:24px;
  font-weight:300;
  letter-spacing:.04em;
}
.certificate-thumb{
  height:124px;
  border:1px solid var(--line);
  background:var(--paper);
  opacity:0;
  filter:grayscale(1);
  transform:translateX(10px);
  transition:opacity .45s ease, transform .45s ease;
}
.certificate-thumb:before,
.certificate-thumb:after{
  content:"";
  display:block;
  width:70%;
  height:1px;
  margin:38px auto 0;
  background:var(--line);
}
.certificate-thumb:after{width:42%;margin-top:18px}
.credential-item:hover .certificate-thumb{opacity:.78;transform:none}
.credential-note{
  margin-top:42px;
  color:var(--muted);
  font-size:13px;
  font-weight:300;
  line-height:1.8;
}

.figures{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:6vw;
  text-align:center;
}
.figure-number{
  color:var(--ink);
  font-size:clamp(54px,7vw,86px);
  font-weight:300;
  letter-spacing:0;
  line-height:1;
}
.figure-label{
  margin-top:18px;
  color:var(--muted);
  font-size:12px;
  font-weight:300;
  letter-spacing:.18em;
  line-height:1.7;
  text-transform:uppercase;
}
.closing-line{
  max-width:760px;
  margin:86px auto 0;
  color:var(--ink);
  font-size:18px;
  font-weight:300;
  line-height:1.8;
  text-align:center;
}

.cap-head{margin-bottom:92px;text-align:center}
.cap-visual{
  height:68vh;
  min-height:620px;
  margin-bottom:28px;
  background:var(--linen);
}
.cap-visual img{filter:saturate(.78) contrast(1.03)}
.caption{
  color:var(--muted);
  font-size:12px;
  font-weight:300;
  letter-spacing:.14em;
  line-height:1.7;
  text-align:center;
  text-transform:uppercase;
}
.cap-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8vw;
  align-items:center;
  margin-top:130px;
}
.cap-row img{
  height:62vh;
  min-height:520px;
  filter:grayscale(.55) saturate(.52) contrast(1.06);
}
.cap-copy{
  color:var(--ink);
  font-size:clamp(26px,3vw,42px);
  font-weight:300;
  letter-spacing:0;
  line-height:1.28;
}
.custom-cta{
  display:grid;
  place-items:center;
  min-height:168px;
  margin-top:130px;
  border:0;
  border-radius:0;
  background:var(--dark);
  color:var(--white);
  font-size:15px;
  font-weight:300;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.documents{text-align:center}
.doc-stack{
  display:grid;
  justify-items:center;
  gap:80px;
}
.doc-sheet{width:min(500px,100%)}
.doc-paper{
  display:block;
  width:100%;
  max-height:650px;
  border:1px solid var(--line);
  background:var(--paper);
  filter:grayscale(.45) saturate(.72);
  opacity:.76;
  object-fit:contain;
}
.doc-mark{
  width:86px;
  height:86px;
  margin:0 auto 56px;
  border:1px solid #b8b5ad;
}
.doc-line{height:1px;margin:22px auto;background:#c8c5bd}
.doc-line:nth-child(2){width:72%}
.doc-line:nth-child(3){width:56%}
.doc-line:nth-child(4){width:84%;margin-top:72px}
.doc-line:nth-child(5){width:80%}
.doc-line:nth-child(6){width:64%}
.doc-label{
  margin-top:18px;
  color:var(--muted);
  font-size:11px;
  font-weight:300;
  letter-spacing:.16em;
  line-height:1.7;
  text-transform:uppercase;
}
.download-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  margin-top:96px;
  padding:0 30px;
  border:1px solid var(--ink);
  border-radius:0;
  background:transparent;
  color:var(--ink);
  font-size:12px;
  font-weight:300;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.contact{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:100vh;
  padding:68px 0 0;
  background:var(--white);
}
.contact-image{
  position:sticky;
  top:68px;
  height:calc(100vh - 68px);
  background:var(--linen);
}
.contact-image img{filter:grayscale(.85) contrast(1.02) brightness(.9)}
.contact-panel{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:calc(100vh - 68px);
  padding:130px var(--pad);
}
.contact-form{
  display:grid;
  gap:30px;
  margin-top:58px;
}
.field{
  width:100%;
  min-height:48px;
  border:0;
  border-bottom:1px solid var(--line);
  border-radius:0;
  outline:0;
  background:transparent;
  color:var(--ink);
  font-size:14px;
  font-weight:300;
}
textarea.field{
  min-height:124px;
  padding-top:16px;
  resize:vertical;
}
.field::placeholder{color:#8a8780;opacity:1}
.form-message{
  min-height:24px;
  color:var(--muted);
  font-size:13px;
  font-weight:300;
  line-height:1.8;
  opacity:0;
  transition:opacity .5s ease;
}
.form-message.show{opacity:1}

.site-footer{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  padding:58px var(--pad) 38px;
  border-top:1px solid var(--line);
  background:var(--paper);
  color:var(--muted);
  font-size:10px;
  font-weight:300;
  letter-spacing:.12em;
  line-height:1.9;
  text-transform:uppercase;
}
.footer-links{
  display:flex;
  gap:24px;
  justify-content:flex-end;
  flex-wrap:wrap;
}
.footer-certs{
  grid-column:1/-1;
  padding-top:22px;
  border-top:1px solid var(--line);
  font-size:9px;
  letter-spacing:.18em;
}
.footer-copy{
  grid-column:1/-1;
  color:var(--ink);
  font-size:13px;
  letter-spacing:.04em;
  line-height:1.4;
  text-align:center;
  text-transform:none;
}

.drawer{
  position:fixed;
  inset:0;
  z-index:50;
  pointer-events:none;
}
.drawer-backdrop{
  position:absolute;
  inset:0;
  background:rgba(245,244,241,.68);
  opacity:0;
  transition:opacity .45s ease;
}
.drawer-panel{
  position:absolute;
  top:0;
  right:0;
  width:min(520px,100%);
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:82px 64px;
  background:var(--white);
  transform:translateX(100%);
  transition:transform .55s ease;
}
.drawer.open{pointer-events:auto}
.drawer.open .drawer-backdrop{opacity:1}
.drawer.open .drawer-panel{transform:none}
.drawer-close{
  position:absolute;
  top:28px;
  right:30px;
  border:0;
  background:transparent;
  color:var(--ink);
  font-size:22px;
  font-weight:300;
  line-height:1;
}

@media (max-width:980px){
  :root{--pad:6vw}
  .site-nav{grid-template-columns:1fr auto;min-height:62px}
  .nav-links,
  .nav-action{display:none}
  .mobile-menu-toggle{display:block}
  .mobile-direct-nav{
    position:fixed;
    top:62px;
    left:0;
    right:0;
    z-index:20;
    display:flex;
    justify-content:space-between;
    gap:18px;
    min-height:42px;
    padding:0 var(--pad);
    align-items:center;
    background:rgba(255,255,255,.74);
    backdrop-filter:blur(18px);
    border-top:1px solid rgba(216,214,207,.55);
    border-bottom:1px solid rgba(216,214,207,.55);
    color:var(--ink);
    font-size:10px;
    font-weight:300;
    letter-spacing:.14em;
    line-height:1;
    overflow-x:auto;
    text-transform:uppercase;
    white-space:nowrap;
  }
  body.admin-bar .mobile-direct-nav{
    top:94px;
  }
  .brand{font-size:11px;letter-spacing:.28em}
  .hero-line{
    width:min(320px,88vw);
    margin-top:44vh;
    font-size:12px;
    letter-spacing:.32em;
  }
  .case-hero{padding-top:118px;padding-bottom:54px}
  .case-stage{
    width:min(72vw,560px);
    height:80vh;
    min-height:600px;
  }
  .case-stage .hero-line{
    width:min(300px,78vw);
    bottom:54px;
    white-space:normal;
  }
  section{padding-top:110px;padding-bottom:110px}
  .series-grid,
  .wall-grid,
  .credentials,
  .figures,
  .cap-row,
  .contact,
  .story-row,
  .detail{
    grid-template-columns:1fr;
  }
  .product-series-grid,
  .collection-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .series-image,
  .wall-item,
  .story-image,
  .cap-visual,
  .cap-row img{
    height:72vh;
    min-height:460px;
  }
  .product-series-card,
  .collection-card figure{
    height:auto;
    min-height:0;
  }
  .product-series-wrap{padding-bottom:110px}
  .product-page-hero{
    padding:92px var(--pad) 26px;
  }
  .product-series-card{
    min-height:0;
  }
  .product-series-card span{
    left:auto;
    right:20px;
    bottom:20px;
    font-size:12px;
    letter-spacing:2px;
    opacity:.62;
    transform:none;
  }
  .product-series-card:hover span,
  .product-series-card:focus-visible span{
    transform:none;
  }
  .collection-head{
    grid-template-columns:1fr;
    gap:22px;
    margin-bottom:34px;
  }
  .collection-head p{
    max-width:100%;
    text-align:left;
  }
  .collection-grid{
    gap:42px 16px;
  }
  .collection-card-meta{
    padding:12px 0 28px;
    font-size:11px;
    letter-spacing:.04em;
  }
  .product-editorial{
    grid-template-columns:1fr;
  }
  .product-editorial-media{
    position:relative;
    top:auto;
    min-height:0;
    padding:104px 0 0;
  }
  .product-gallery-viewport{
    height:72svh;
    min-height:560px;
  }
  .product-editorial-media figure{
    min-height:0;
  }
  .product-gallery-arrow{
    width:42px;
    height:62px;
    font-size:34px;
  }
  .product-gallery-arrow.prev{left:10px}
  .product-gallery-arrow.next{right:10px}
  .product-gallery-count{
    right:16px;
    bottom:18px;
  }
  .product-editorial-info{
    min-height:auto;
    padding:0 var(--pad) 110px;
  }
  .product-editorial-inner{
    position:relative;
    top:auto;
    min-height:auto;
    padding-top:70px;
  }
  .atelier-process,
  .atelier-numbers,
  .atelier-credentials,
  .atelier-human,
  .atelier-logistics{
    padding-top:110px;
    padding-bottom:110px;
  }
  .atelier-process-row,
  .atelier-human{
    grid-template-columns:1fr;
  }
  .atelier-process-row.reverse .atelier-photo-slot,
  .atelier-process-row.reverse p{
    order:initial;
  }
  .atelier-process-row.reverse p{
    justify-self:start;
  }
  .atelier-gallery-arrow{
    width:42px;
    height:58px;
    font-size:32px;
  }
  .atelier-numbers{
    grid-template-columns:1fr;
    gap:70px;
  }
  .atelier-credential-list .credential-entry{
    grid-template-columns:1fr;
    font-size:20px;
  }
  .atelier-credential-list .certificate-thumb{
    display:none;
  }
  .bespoke-hero{
    height:66vh;
    min-height:520px;
  }
  .bespoke-section{
    padding-top:110px;
  }
  .species-grid,
  .finish-grid,
  .structure-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .bespoke-scale,
  .bespoke-process{
    grid-template-columns:1fr;
  }
  .bespoke-scale{
    padding-top:110px;
    padding-bottom:110px;
  }
  .scale-image{
    min-height:460px;
  }
  .bespoke-process{
    gap:44px;
    padding-top:110px;
    padding-bottom:110px;
  }
  .bespoke-process:before{
    display:none;
  }
  .bespoke-process div{
    padding-top:0;
    border-top:1px solid var(--line);
  }
  .detail-gallery img{height:82vh;min-height:520px}
  .detail-info{padding:0 var(--pad)}
  .detail-inner{position:relative;min-height:auto;padding:110px 0}
  .story-row.reverse .story-image,
  .story-row.reverse .story-copy{order:initial}
  .credential-item{grid-template-columns:1fr;font-size:20px}
  .certificate-thumb{display:none}
  .figures{gap:72px}
  .contact-image{position:relative;top:0;height:62vh}
  .contact-panel{min-height:auto}
  .site-footer{grid-template-columns:1fr}
  .footer-links{justify-content:flex-start}
  .drawer-panel{padding:82px 34px}
}

@media (max-width:782px){
  body.admin-bar .site-nav{
    top:46px;
  }
  body.admin-bar .mobile-direct-nav{
    top:108px;
  }
  body.admin-bar .mobile-menu-panel{
    top:46px;
  }
  .mobile-menu-panel nav{
    min-height:calc(100svh - 46px);
  }
}

@media (max-width:620px){
  .filter-row{overflow-x:auto;white-space:nowrap}
  .series-image,
  .wall-item,
  .story-image,
  .cap-visual,
  .cap-row img{
    height:68vh;
    min-height:390px;
  }
  .product-series-grid,
  .collection-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .product-series-card,
  .collection-card figure{
    height:auto;
    min-height:0;
  }
  .collection-page{
    padding-top:118px;
    padding-bottom:86px;
  }
  .collection-head h1{
    font-size:clamp(42px,14vw,64px);
  }
  .collection-head p{
    font-size:11px;
    line-height:1.65;
  }
  .collection-card-arrow{
    opacity:.68;
    width:28px;
    height:44px;
    background:transparent;
    font-size:24px;
  }
  .page-hero{min-height:68svh}
  .product-page-hero{
    min-height:auto;
    padding-bottom:22px;
  }
  .product-series-card{
    min-height:0;
  }
  .case-stage{
    width:84vw;
    height:78vh;
    min-height:540px;
  }
  .case-meta{
    right:18px;
    bottom:16px;
  }
  .bespoke-hero p{
    bottom:9vh;
    font-size:12px;
    letter-spacing:.18em;
  }
  .bespoke-section-heading{
    margin-bottom:54px;
  }
  .bespoke-section-heading h1,
  .bespoke-section-heading h2,
  .scale-copy h2{
    font-size:34px;
  }
  .species-grid,
  .finish-grid,
  .structure-grid{
    gap:28px 12px;
  }
  .scale-copy dl{
    margin-top:50px;
  }
  .bespoke-inquiry p{
    font-size:18px;
  }
  .doc-paper{height:540px;padding:58px 42px}
}
