:root {
  --ivory: #f3efe7;
  --paper: #fbf9f5;
  --ink: #1c1b19;
  --muted: #6d675f;
  --taupe: #a99d8c;
  --bronze: #8b6c46;
  --line: rgba(28, 27, 25, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--bronze); outline-offset: 4px; }

.site-header {
  height: 92px;
  padding: 0 clamp(24px, 4.4vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
}
.wordmark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 3.4vw, 50px);
  letter-spacing: -0.055em;
  justify-self: start;
}
.desktop-nav { display: flex; gap: clamp(25px, 3.2vw, 52px); align-items: center; }
.desktop-nav a {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  position: relative;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  height: 1px;
  background: var(--bronze);
  left: 0;
  right: 100%;
  bottom: -7px;
  transition: right .3s ease;
}
.desktop-nav a:hover::after { right: 0; }
.nav-group { position: relative; }
.nav-group > button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 12px 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  cursor: pointer;
}
.nav-group > button span { color: var(--bronze); margin-left: 5px; }
.nav-panel {
  position: absolute;
  top: 42px;
  left: -26px;
  width: 310px;
  padding: 24px 26px 27px;
  background: rgba(251,249,245,.98);
  border-top: 2px solid var(--bronze);
  box-shadow: 0 18px 40px rgba(37,31,24,.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.nav-panel-right { left: auto; right: -26px; }
.nav-group:hover .nav-panel, .nav-group:focus-within .nav-panel { opacity: 1; visibility: visible; transform: none; }
.nav-panel > p { margin: 0 0 16px; color: var(--bronze); text-transform: uppercase; letter-spacing: .15em; font-size: 9px; }
.desktop-nav .nav-panel a {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
}
.desktop-nav .nav-panel a:last-child { border-bottom: 0; }
.desktop-nav .nav-panel a::after { display: none; }
.nav-panel small { color: var(--bronze); font-family: Arial, Helvetica, sans-serif; font-size: 8px; letter-spacing: .12em; }
.header-action {
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}
.header-action:hover { color: var(--paper); background: var(--bronze); transform: rotate(-8deg); }
.header-action svg, .button svg, .text-link svg, .project-open svg { width: 18px; height: 18px; }
svg path { stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  min-height: 900px;
  display: grid;
  grid-template-columns: minmax(470px, 44%) 1fr;
  padding-top: 92px;
  position: relative;
}
.hero-copy {
  padding: 106px clamp(36px, 4.7vw, 76px) 58px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  animation: fade-up .8s both;
}
.eyebrow {
  margin: 0 0 24px;
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
}
.eyebrow i, .sourcing-cities i, .ticker i { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }
.hero h1, .section h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}
.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(64px, 5.7vw, 88px);
  line-height: .93;
}
.hero-intro {
  max-width: 480px;
  margin: 28px 0 0;
  color: var(--muted);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; }
.button {
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  border: 1px solid var(--bronze);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.button-primary { background: var(--bronze); color: var(--paper); }
.button-primary:hover { background: #6f5334; transform: translateY(-2px); }
.button-secondary { color: var(--bronze); }
.button-secondary:hover { background: rgba(139, 108, 70, .08); transform: translateY(-2px); }
.button svg { transition: transform .3s ease; }
.button:hover svg, .text-link:hover svg { transform: translateX(4px); }
.sourcing-cities {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 14px;
}
.fine-rule { width: 42px; height: 1px; background: var(--bronze); margin-right: 4px; }
.material-swatches { position: absolute; bottom: 58px; right: 42px; display: flex; gap: 5px; }
.swatch { width: 46px; height: 46px; border: 1px solid rgba(28, 27, 25, .08); }
.stone { background: linear-gradient(140deg, #d9d1c5, #f4f0e9 42%, #c8bdaf); }
.oak { background: repeating-linear-gradient(90deg, #d4b891 0 3px, #c8a67d 4px 6px); }
.linen { background: #c7bbae; background-image: radial-gradient(#eee6db 1px, transparent 1px); background-size: 4px 4px; }
.bronze { background: linear-gradient(135deg, #a1845f, #67503a); }
.hero-media { overflow: hidden; position: relative; min-height: 808px; animation: clip-in 1s .15s both; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; animation: image-settle 10s ease-out both; }
.media-label {
  position: absolute;
  right: 26px;
  bottom: 22px;
  color: white;
  display: flex;
  gap: 14px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  text-shadow: 0 1px 7px rgba(0,0,0,.5);
}
.ticker {
  min-height: 74px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  padding: 0 4vw;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 10px;
}
.section { padding: 120px clamp(24px, 5vw, 80px); }
.section-kicker { display: flex; gap: 22px; color: var(--bronze); text-transform: uppercase; letter-spacing: .16em; font-size: 10px; }
.section-kicker span:first-child { color: var(--muted); }
.studio { background: var(--paper); }
.studio-statement { display: grid; grid-template-columns: 1.5fr 1fr; gap: 10vw; margin-top: 75px; align-items: end; }
.studio h2 { font-size: clamp(52px, 7vw, 104px); line-height: .95; margin: 0; max-width: 780px; }
.studio-statement p { font-family: Georgia, 'Times New Roman', serif; color: var(--muted); font-size: 19px; line-height: 1.6; margin: 0 0 26px; }
.text-link { display: inline-flex; align-items: center; gap: 18px; color: var(--bronze); border-bottom: 1px solid var(--bronze); padding-bottom: 8px; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.text-link svg { transition: transform .3s ease; }
.projects { background: var(--ivory); }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 5vw; align-items: start; }
.section-heading h2 { font-size: clamp(50px, 5vw, 78px); line-height: 1; max-width: 780px; margin: -8px 0 75px; }
.project-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(24px, 4vw, 64px); align-items: end; }
.project-card .image-holder { position: relative; overflow: hidden; }
.project-large .image-holder { aspect-ratio: 4/3; }
.project-small .image-holder { aspect-ratio: 3/4; }
.project-card img { height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.project-card:hover img { transform: scale(1.025); }
.crop-detail img { object-position: 70% center; }
.project-open {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(251, 249, 245, .94);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.project-open:hover { background: var(--bronze); color: white; transform: rotate(5deg); }
.project-meta { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); padding-top: 17px; margin-top: 17px; }
.project-meta h3 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-size: 27px; margin: 0 0 4px; }
.project-meta p, .project-meta > span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .11em; margin: 0; }

.studio-numbers {
  margin-top: 115px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.studio-numbers div { display: grid; grid-template-columns: 52px 1fr; gap: 14px; padding: 24px 7% 0 0; }
.studio-numbers strong { color: var(--bronze); font-size: 11px; font-weight: 500; letter-spacing: .14em; }
.studio-numbers span { color: var(--muted); font-family: Georgia, 'Times New Roman', serif; font-size: 15px; line-height: 1.5; }

.services { background: #e9e3d9; }
.services-heading h2 { margin-bottom: 92px; }
.service-list { border-top: 1px solid var(--line); }
.service-row {
  min-height: 148px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 70px minmax(220px, 1.05fr) minmax(300px, .95fr) 60px;
  gap: 35px;
  align-items: center;
  transition: background .35s ease, padding .35s ease;
}
.service-row:hover { background: rgba(251, 249, 245, .55); padding: 0 24px; }
.service-row > span { color: var(--bronze); font-size: 10px; letter-spacing: .14em; }
.service-row h3 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(30px, 3vw, 45px); font-weight: 400; letter-spacing: -.035em; margin: 0; }
.service-row p { color: var(--muted); font-family: Georgia, 'Times New Roman', serif; font-size: 16px; line-height: 1.55; max-width: 510px; margin: 0; }
.service-row > a { width: 46px; height: 46px; border: 1px solid var(--bronze); border-radius: 50%; display: grid; place-items: center; justify-self: end; transition: background .3s ease, color .3s ease, transform .3s ease; }
.service-row > a:hover { background: var(--bronze); color: white; transform: rotate(45deg); }
.service-row svg { width: 18px; }

.film-section { min-height: min(820px, 82vw); position: relative; background: #1d1c1a; color: white; overflow: hidden; }
.video-holder { position: absolute; inset: 0; }
.video-holder::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(19,18,16,.88) 0%, rgba(19,18,16,.52) 38%, rgba(19,18,16,.1) 76%); }
.video-holder video { width: 100%; height: 100%; object-fit: cover; opacity: .82; }
.film-copy { position: relative; z-index: 2; min-height: min(820px, 82vw); width: min(660px, 58%); display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(24px, 7vw, 110px); }
.film-copy h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(52px, 6vw, 88px); line-height: .97; font-weight: 400; letter-spacing: -.055em; margin: 8px 0 28px; }
.film-copy > p:not(.eyebrow) { max-width: 460px; color: rgba(255,255,255,.72); font-family: Georgia, 'Times New Roman', serif; font-size: 18px; line-height: 1.55; }
.film-control { margin-top: 25px; width: fit-content; border: 0; background: none; color: white; display: flex; align-items: center; gap: 15px; padding: 0; text-transform: uppercase; font-size: 10px; letter-spacing: .16em; cursor: pointer; }
.film-control > span { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; display: grid; place-items: center; position: relative; }
.pause-icon::before, .pause-icon::after { content: ''; position: absolute; width: 1px; height: 11px; top: 16px; background: white; }
.pause-icon::before { left: 17px; }.pause-icon::after { right: 17px; }
.play-icon::before { content: ''; position: absolute; top: 14px; left: 17px; border-left: 10px solid white; border-top: 7px solid transparent; border-bottom: 7px solid transparent; }
.video-corner { position: absolute; z-index: 2; right: 34px; bottom: 28px; display: flex; gap: 18px; text-transform: uppercase; font-size: 9px; letter-spacing: .16em; }

.sourcing { background: #25231f; color: #f6f1e7; }
.sourcing-intro { display: grid; grid-template-columns: 1.3fr .7fr; gap: 10vw; align-items: end; }
.section-kicker.light { color: #c6a67c; }
.section-kicker.light span:first-child { color: rgba(255,255,255,.45); }
.sourcing h2 { font-size: clamp(58px, 7vw, 105px); line-height: .92; margin: 70px 0 0; max-width: 850px; }
.sourcing-intro > div:last-child > p { color: rgba(255,255,255,.68); font-family: Georgia, 'Times New Roman', serif; font-size: 18px; line-height: 1.6; margin: 0 0 32px; }
.source-badge { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); padding: 17px 0; text-transform: uppercase; letter-spacing: .14em; font-size: 9px; color: rgba(255,255,255,.55); }
.source-badge strong { color: #c6a67c; font-size: 11px; font-weight: 500; }
.sourcing-visual { margin-top: 100px; aspect-ratio: 16/8.5; overflow: hidden; position: relative; }
.sourcing-visual img { width: 100%; height: 100%; object-fit: cover; }
.sourcing-caption { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; padding: 18px 22px; background: linear-gradient(transparent, rgba(0,0,0,.42)); font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }
.material-categories { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid rgba(255,255,255,.18); border-top: 0; }
.material-categories a { min-height: 75px; display: grid; place-items: center; text-align: center; padding: 12px; border-right: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.66); text-transform: uppercase; letter-spacing: .12em; font-size: 9px; transition: color .3s ease, background .3s ease; }
.material-categories a:hover { color: white; background: rgba(255,255,255,.08); }
.material-categories a:last-child { border-right: 0; }
.sourcing-process { margin-top: 115px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.sourcing-process article { padding: 24px 36px 0 0; }
.sourcing-process article > span { color: #c6a67c; font-size: 10px; letter-spacing: .15em; }
.sourcing-process h3 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-size: 25px; margin: 27px 0 15px; }
.sourcing-process p { color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.65; }

.principle { background: var(--paper); text-align: center; min-height: 700px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.principle .section-kicker { align-self: stretch; text-align: left; }
.principle blockquote { max-width: 1070px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(48px, 6vw, 86px); line-height: 1.04; letter-spacing: -.05em; margin: 100px auto 36px; }
.principle > p { color: var(--bronze); text-transform: uppercase; letter-spacing: .16em; font-size: 10px; }

.contact { background: var(--ivory); display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; }
.contact-copy h2 { font-size: clamp(54px, 5.4vw, 84px); line-height: .96; margin: 65px 0 30px; }
.contact-copy > p { color: var(--muted); font-family: Georgia, 'Times New Roman', serif; font-size: 18px; line-height: 1.6; max-width: 520px; }
.contact-copy > a { margin-top: 45px; display: inline-flex; align-items: center; gap: 16px; color: var(--bronze); font-family: Georgia, 'Times New Roman', serif; font-size: 20px; border-bottom: 1px solid var(--bronze); padding-bottom: 8px; }
.contact-copy > a svg { width: 18px; }
.contact-form { padding-top: 2px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-form label { display: block; margin-bottom: 30px; }
.contact-form label > span { display: block; color: var(--bronze); text-transform: uppercase; letter-spacing: .14em; font-size: 9px; margin-bottom: 10px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; color: var(--ink); padding: 13px 0; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--bronze); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9a948b; opacity: 1; }
.form-submit { margin-top: 10px; cursor: pointer; min-width: 290px; }
.form-note { color: var(--muted); font-size: 10px; margin: 15px 0 0; }
.form-success { border-left: 2px solid var(--bronze); padding: 12px 16px; margin: 20px 0 0; color: #5f4a31; background: rgba(139,108,70,.08); font-family: Georgia, 'Times New Roman', serif; }

footer { background: #181714; color: #f4efe5; padding: 80px clamp(24px, 5vw, 80px) 30px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 40px; padding-bottom: 75px; }
.footer-mark { color: #f4efe5; }
.footer-top p { margin: 0; color: rgba(255,255,255,.55); font-family: Georgia, 'Times New Roman', serif; font-size: 17px; line-height: 1.5; max-width: 390px; }
.back-top { justify-self: end; display: inline-flex; gap: 15px; align-items: center; text-transform: uppercase; letter-spacing: .14em; font-size: 9px; }
.back-top svg { width: 18px; transform: rotate(-90deg); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); padding-top: 25px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .12em; font-size: 9px; }
.footer-bottom div { display: flex; gap: 30px; color: rgba(255,255,255,.7); }
.footer-bottom > span:last-child { justify-self: end; }

/* Shared inner-page system */
.site-header-solid {
  position: relative;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.detail-hero {
  min-height: 790px;
  display: grid;
  grid-template-columns: 48% 52%;
  background: var(--paper);
}
.detail-hero-copy {
  padding: 105px clamp(36px, 6vw, 96px) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.detail-index {
  position: absolute;
  right: 38px;
  top: 42px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 9px;
}
.detail-hero h1, .gallery-hero h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(68px, 7vw, 112px);
  line-height: .9;
  letter-spacing: -.06em;
  font-weight: 400;
}
.detail-hero-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.4;
  margin: 38px 0 42px;
}
.detail-hero-copy .text-link { width: fit-content; }
.detail-hero-image { position: relative; overflow: hidden; }
.detail-hero-image img { width: 100%; height: 100%; object-fit: cover; animation: image-settle 9s ease-out both; }
.sibling-nav {
  min-height: 78px;
  display: flex;
  align-items: stretch;
  padding: 0 clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
  overflow-x: auto;
}
.sibling-nav a {
  min-width: max-content;
  padding: 0 clamp(17px, 2.1vw, 34px);
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 9px;
}
.sibling-nav a:first-child { border-left: 1px solid var(--line); }
.sibling-nav a:hover, .sibling-nav a.active { color: var(--paper); background: var(--bronze); }
.detail-intro { background: var(--paper); }
.detail-intro-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 9vw;
  align-items: start;
}
.detail-intro h2 {
  margin: 0;
  font-size: clamp(52px, 6vw, 90px);
  line-height: .96;
}
.detail-intro-grid > div > p {
  margin: 8px 0 50px;
  color: var(--muted);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px;
  line-height: 1.65;
}
.detail-highlights { border-top: 1px solid var(--line); }
.detail-highlights span {
  min-height: 61px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
}
.detail-highlights small { color: var(--bronze); font-family: Arial, Helvetica, sans-serif; font-size: 8px; letter-spacing: .15em; }
.category-section { background: #e9e3d9; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.furniture-categories .category-grid { grid-template-columns: repeat(4, 1fr); }
.category-card {
  min-height: 420px;
  padding: 28px clamp(22px, 2.5vw, 38px) 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: background .3s ease;
}
.category-card:hover { background: rgba(251,249,245,.55); }
.category-card > span { color: var(--bronze); font-size: 9px; letter-spacing: .14em; }
.category-card h3 { margin: 40px 0 24px; font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-size: clamp(29px, 2.7vw, 42px); letter-spacing: -.04em; }
.category-card ul { list-style: none; padding: 0; margin: 0 0 35px; }
.category-card li { display: flex; justify-content: space-between; gap: 15px; padding: 8px 0; border-bottom: 1px solid rgba(28,27,25,.1); color: var(--muted); font-size: 12px; }
.category-card li svg { width: 12px; opacity: .5; }
.category-card > a { margin-top: auto; display: inline-flex; align-items: center; gap: 15px; color: var(--bronze); text-transform: uppercase; letter-spacing: .13em; font-size: 9px; }
.category-card > a svg { width: 15px; }
.detail-media-split { min-height: 690px; display: grid; grid-template-columns: 58% 42%; background: #25231f; color: white; }
.detail-media-image { overflow: hidden; }
.detail-media-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) brightness(.8); }
.detail-media-copy { padding: clamp(65px, 9vw, 130px) clamp(32px, 6vw, 90px); display: flex; flex-direction: column; justify-content: center; }
.detail-media-copy h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(46px, 5vw, 76px); line-height: .98; font-weight: 400; letter-spacing: -.05em; margin: 12px 0 30px; }
.detail-media-copy > p:not(.eyebrow) { color: rgba(255,255,255,.65); font-family: Georgia, 'Times New Roman', serif; font-size: 17px; line-height: 1.6; margin: 0 0 35px; }
.detail-media-copy .button { width: fit-content; color: #d4b88f; border-color: #b09167; }
.detail-process { background: var(--paper); }
.light-process { border-color: var(--line); }
.light-process article > span { color: var(--bronze); }
.light-process h3 { color: var(--ink); }
.light-process p { color: var(--muted); }
.detail-cta { text-align: center; background: var(--ivory); }
.detail-cta .eyebrow { justify-content: center; }
.detail-cta h2 { max-width: 980px; margin: 35px auto 55px; font-size: clamp(55px, 7vw, 100px); line-height: .95; }
.detail-cta > div { display: flex; align-items: center; justify-content: center; gap: 35px; }
.detail-cta > div > a:last-child { display: inline-flex; align-items: center; gap: 12px; color: var(--bronze); border-bottom: 1px solid var(--bronze); padding-bottom: 6px; font-family: Georgia, 'Times New Roman', serif; font-size: 17px; }
.detail-cta > div > a:last-child svg { width: 15px; }

/* Gallery */
.gallery-hero { min-height: 560px; padding-top: 130px; background: var(--paper); display: grid; grid-template-columns: .42fr 1fr; gap: 7vw; align-items: start; }
.gallery-hero > div:last-child { max-width: 970px; }
.gallery-hero h1 { font-size: clamp(70px, 8vw, 122px); }
.gallery-hero p { max-width: 620px; color: var(--muted); font-family: Georgia, 'Times New Roman', serif; font-size: 19px; line-height: 1.6; margin: 35px 0 0; }
.gallery-content { padding-top: 0; background: var(--ivory); }
.gallery-toolbar { min-height: 85px; display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gallery-toolbar button { border: 0; background: transparent; color: var(--muted); padding: 10px 16px; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; cursor: pointer; }
.gallery-toolbar button:hover, .gallery-toolbar button.active { color: white; background: var(--bronze); }
.gallery-toolbar > span { margin-left: auto; color: var(--muted); text-transform: uppercase; letter-spacing: .13em; font-size: 9px; }
.gallery-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px clamp(24px, 5vw, 80px); margin-top: 70px; align-items: start; }
.gallery-card { border: 0; background: none; color: inherit; padding: 0; text-align: left; cursor: pointer; }
.gallery-card-1 .gallery-image, .gallery-card-4 .gallery-image { aspect-ratio: 4/5; }
.gallery-card-2 { width: 82%; margin-left: auto; }
.gallery-image { display: block; position: relative; overflow: hidden; aspect-ratio: 4/3; }
.gallery-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.gallery-image video { width: 100%; height: 100%; object-fit: cover; }
.gallery-card:hover img { transform: scale(1.025); }
.gallery-play { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; background: rgba(251,249,245,.9); color: var(--bronze); font-style: normal; text-transform: uppercase; letter-spacing: .13em; font-size: 8px; }
.gallery-meta { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); margin-top: 15px; padding-top: 16px; }
.gallery-meta > span { display: flex; flex-direction: column; gap: 5px; }
.gallery-meta strong { font-family: Georgia, 'Times New Roman', serif; font-size: 24px; font-weight: 400; }
.gallery-meta small { color: var(--muted); text-transform: uppercase; letter-spacing: .13em; font-size: 8px; }
.gallery-meta svg { width: 20px; }
.gallery-admin-note { margin-top: 120px; border-top: 1px solid var(--line); padding-top: 55px; display: grid; grid-template-columns: .5fr 1fr .75fr; gap: 6vw; }
.gallery-admin-note > span { color: var(--bronze); text-transform: uppercase; letter-spacing: .14em; font-size: 9px; }
.gallery-admin-note h2 { margin: 0; font-size: clamp(44px, 5vw, 72px); line-height: 1; }
.gallery-admin-note p { margin: 8px 0 0; color: var(--muted); font-family: Georgia, 'Times New Roman', serif; font-size: 17px; line-height: 1.6; }
.gallery-modal { position: fixed; inset: 0; z-index: 40; display: grid; place-items: center; padding: 65px; background: rgba(20,19,17,.94); }
.gallery-modal[hidden] { display: none !important; }
.gallery-modal > button { position: absolute; top: 22px; right: 28px; border: 1px solid rgba(255,255,255,.5); background: transparent; color: white; padding: 10px 15px; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; cursor: pointer; }
.gallery-modal > div { width: min(1120px, 90vw); max-height: 84vh; }
.gallery-modal img, .gallery-modal video { width: 100%; max-height: 74vh; object-fit: contain; background: #111; }
.gallery-modal p { display: flex; justify-content: space-between; color: white; font-family: Georgia, 'Times New Roman', serif; }
.gallery-modal p span { color: rgba(255,255,255,.55); }
.gallery-empty { padding: 55px 0; color: var(--muted); font-family: Georgia, 'Times New Roman', serif; font-size: 18px; }

@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes clip-in { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0); } }
@keyframes image-settle { from { transform: scale(1.025); } to { transform: scale(1); } }

@media (max-width: 1100px) {
  .desktop-nav { gap: 22px; }
  .desktop-nav a { font-size: 15px; }
  .nav-group > button { font-size: 15px; }
  .hero { grid-template-columns: 48% 52%; }
  .hero-copy { padding-left: 36px; padding-right: 36px; }
  .hero h1 { font-size: 66px; }
  .material-swatches { display: none; }
  .service-row { grid-template-columns: 45px 1fr 1fr 50px; gap: 20px; }
  .sourcing-process { grid-template-columns: 1fr 1fr; gap: 55px 0; }
  .contact { gap: 6vw; }
  .furniture-categories .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .site-header { height: 76px; padding: 0 20px; grid-template-columns: 1fr auto; position: absolute; }
  .desktop-nav { display: none; }
  .wordmark { font-size: 37px; }
  .header-action { display: none; }
  .menu-toggle { display: flex; width: 40px; height: 40px; border: 1px solid var(--bronze); border-radius: 50%; background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 5px; position: relative; z-index: 12; }
  .menu-toggle span { width: 14px; height: 1px; background: currentColor; transition: transform .3s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .mobile-nav { position: fixed; display: flex; flex-direction: column; inset: 0; padding: 112px 22px 32px; background: var(--paper); z-index: 11; transform: translateY(-105%); transition: transform .5s cubic-bezier(.7,0,.2,1); }
  .mobile-nav { overflow-y: auto; }
  .mobile-nav.is-open { transform: translateY(0); }
  .mobile-nav a { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(42px, 13vw, 64px); line-height: 1.12; letter-spacing: -.045em; }
  .mobile-nav .mobile-nav-label { margin: 32px 0 8px; color: var(--bronze); text-transform: uppercase; letter-spacing: .15em; font-size: 9px; }
  .mobile-nav .mobile-sub-link { font-size: clamp(25px, 7.5vw, 38px); line-height: 1.25; padding: 2px 0; }
  .hero { display: flex; flex-direction: column; padding-top: 76px; }
  .hero-copy { order: 1; padding: 70px 22px 38px; min-height: 645px; }
  .hero h1 { font-size: clamp(55px, 15vw, 76px); max-width: 680px; }
  .hero-intro { font-size: 17px; }
  .hero-media { order: 2; min-height: 72vh; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .sourcing-cities { margin-top: 55px; flex-wrap: wrap; }
  .ticker { justify-content: flex-start; overflow: hidden; white-space: nowrap; padding: 0 22px; }
  .section { padding: 85px 22px; }
  .studio-statement, .section-heading, .project-grid { grid-template-columns: 1fr; }
  .studio-statement { margin-top: 50px; gap: 42px; }
  .studio-numbers { grid-template-columns: 1fr; margin-top: 80px; gap: 28px; }
  .section-heading h2 { margin: 40px 0 50px; }
  .project-grid { gap: 55px; }
  .project-small { width: 82%; margin-left: auto; }
  .service-row { min-height: auto; grid-template-columns: 34px 1fr 40px; gap: 12px; padding: 30px 0; }
  .service-row:hover { padding: 30px 12px; }
  .service-row p { grid-column: 2 / 4; }
  .service-row > a { grid-column: 3; grid-row: 1; width: 38px; height: 38px; }
  .film-section, .film-copy { min-height: 760px; }
  .film-copy { width: 100%; padding: 70px 22px; justify-content: flex-end; }
  .video-holder::after { background: linear-gradient(0deg, rgba(19,18,16,.9) 0%, rgba(19,18,16,.42) 65%, rgba(19,18,16,.18)); }
  .video-holder video { object-position: 68% center; }
  .video-corner { display: none; }
  .sourcing-intro { grid-template-columns: 1fr; gap: 50px; }
  .sourcing h2 { margin-top: 48px; font-size: clamp(55px, 15vw, 78px); }
  .sourcing-visual { margin-top: 70px; aspect-ratio: 4/5; }
  .material-categories { grid-template-columns: 1fr 1fr; }
  .material-categories a { border-bottom: 1px solid rgba(255,255,255,.18); }
  .material-categories a:nth-child(2n) { border-right: 0; }
  .sourcing-process { grid-template-columns: 1fr; margin-top: 80px; gap: 40px; }
  .principle { min-height: 650px; }
  .principle blockquote { margin-top: 75px; }
  .contact { grid-template-columns: 1fr; gap: 75px; }
  .contact-copy h2 { margin-top: 48px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit { min-width: 0; }
  .footer-top, .footer-bottom { grid-template-columns: 1fr; gap: 38px; }
  .back-top, .footer-bottom > span:last-child { justify-self: start; }
  .footer-bottom div { flex-wrap: wrap; gap: 20px; }

  .detail-hero { display: flex; flex-direction: column; min-height: 0; }
  .detail-hero-copy { min-height: 590px; padding: 78px 22px 55px; }
  .detail-index { top: 30px; right: 22px; }
  .detail-hero h1 { font-size: clamp(62px, 18vw, 88px); }
  .detail-hero-image { min-height: 64vh; }
  .sibling-nav { padding: 0; min-height: 68px; }
  .detail-intro-grid { grid-template-columns: 1fr; gap: 42px; margin-top: 50px; }
  .category-grid, .furniture-categories .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 360px; }
  .detail-media-split { grid-template-columns: 1fr; }
  .detail-media-image { min-height: 62vh; }
  .detail-media-copy { padding: 70px 22px; }
  .detail-media-copy .button { width: 100%; }
  .detail-cta > div { flex-direction: column; }
  .gallery-hero { min-height: 590px; padding-top: 90px; grid-template-columns: 1fr; gap: 50px; }
  .gallery-hero h1 { font-size: clamp(60px, 17vw, 86px); }
  .gallery-toolbar { overflow-x: auto; }
  .gallery-toolbar > span { display: none; }
  .gallery-grid { grid-template-columns: 1fr; gap: 55px; }
  .gallery-card-2 { width: 100%; }
  .gallery-admin-note { grid-template-columns: 1fr; gap: 28px; }
  .gallery-modal { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
