:root {
  --ink: #161612;
  --ink-2: #292822;
  --ink-soft: #69665d;
  --paper: #f2efe8;
  --paper-2: #e8e3d9;
  --paper-3: #ded7ca;
  --white: #fff;
  --accent: #8d7357;
  --line: rgba(22, 22, 18, .16);
  --line-strong: rgba(22, 22, 18, .32);
  --line-light: rgba(255, 255, 255, .24);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page: min(calc(100vw - 80px), 1540px);
  --header-h: 82px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 24px 70px rgba(20, 18, 14, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
::selection { color: var(--paper); background: var(--ink); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 1px solid currentColor; outline-offset: 4px; }

.section-shell { width: var(--page); margin-inline: auto; }
.section-pad { padding-block: clamp(96px, 9vw, 154px); }
.section-pad-sm { padding-block: clamp(62px, 6vw, 96px); }

.eyebrow,
.micro-label {
  margin: 0;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1.25;
  text-transform: uppercase;
}
.eyebrow { margin-bottom: 22px; color: rgba(255,255,255,.78); }
.eyebrow-dark, .micro-label { color: var(--ink-soft); }
.micro-label.light { color: rgba(255,255,255,.62); }

.display-heading {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7.2vw, 8.2rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .86;
}

.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 22px 30px; }
.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 14px 25px 13px;
  font-size: .69rem;
  font-weight: 650;
  letter-spacing: .13em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s var(--ease);
}
.button:hover { transform: translateY(-1px); }
.button-light { color: var(--ink); background: var(--paper); }
.button-light:hover { color: var(--paper); border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.04); }
.button-dark { color: var(--paper); background: var(--ink); }
.button-dark:hover { color: var(--ink); border-color: var(--ink); background: transparent; }
.button:disabled { cursor: wait; opacity: .55; }

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-block: 7px;
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.text-link:hover::after { transform: scaleX(.25); }
.text-link span { transition: transform .3s var(--ease); }
.text-link:hover span { transform: translateX(4px); }
.text-link-light { color: var(--white); }

.icon-button,
.menu-button,
.header-search {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
}
.icon-button { display: grid; place-items: center; }
.icon-button svg,
.header-search svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

/* announcement + navigation */
.announcement {
  position: relative;
  z-index: 130;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 52px;
  color: var(--paper);
  background: #11110e;
  font-size: .61rem;
  font-weight: 550;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}
.announcement p { margin: 0; }
.announcement a { margin-left: 8px; color: rgba(255,255,255,.72); }
.announcement a:hover { color: #fff; }
.announcement-close { position: absolute; right: 18px; color: var(--paper); opacity: .7; }
.announcement-close:hover { opacity: 1; }
.announcement-close svg { width: 15px; height: 15px; }

.site-header {
  position: sticky;
  z-index: 120;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(22,22,18,.09);
  background: rgba(242,239,232,.94);
  backdrop-filter: blur(18px) saturate(130%);
  transition: transform .38s var(--ease), background-color .3s ease, box-shadow .3s ease;
}
.site-header.header-hidden { transform: translateY(-102%); }
.site-header.scrolled { box-shadow: 0 12px 35px rgba(22,22,18,.06); background: rgba(242,239,232,.98); }
.header-shell {
  display: grid;
  width: var(--page);
  min-height: var(--header-h);
  align-items: center;
  margin-inline: auto;
  grid-template-columns: minmax(200px, .8fr) auto minmax(200px, .8fr);
  gap: 34px;
}
.wordmark {
  justify-self: start;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-weight: 650;
  letter-spacing: .25em;
  line-height: 1;
  white-space: nowrap;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.4vw, 42px);
  font-size: .63rem;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.desktop-nav a { position: relative; padding-block: 12px; color: #39372f; }
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; justify-self: end; gap: clamp(17px, 1.8vw, 28px); }
.header-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.header-search svg { width: 17px; height: 17px; }
.header-trade {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-left: 1px solid var(--line);
  padding-left: clamp(17px, 1.8vw, 28px);
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.header-search:hover,
.header-trade:hover { opacity: .6; }
.menu-button { display: none; width: 30px; height: 30px; justify-self: start; }
.menu-button span:not(.sr-only) { display: block; width: 21px; height: 1px; background: currentColor; }
.menu-button span:nth-child(2) { width: 14px; margin-top: 6px; }

.mobile-menu {
  position: fixed;
  z-index: 230;
  top: 0;
  left: 0;
  display: flex;
  width: min(92vw, 560px);
  height: 100dvh;
  flex-direction: column;
  padding: 26px clamp(24px, 6vw, 52px) 38px;
  color: var(--paper);
  background: var(--ink);
  visibility: hidden;
  transform: translateX(-103%);
  transition: transform .52s var(--ease), visibility .52s ease;
}
.mobile-menu.open { visibility: visible; transform: translateX(0); }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 27px; border-bottom: 1px solid rgba(255,255,255,.16); }
.mobile-wordmark { font-size: 1.05rem; font-weight: 650; letter-spacing: .22em; }
.mobile-menu .icon-button { color: var(--paper); }
.mobile-nav { display: flex; flex: 1; flex-direction: column; justify-content: center; gap: 3px; }
.mobile-nav a { display: grid; align-items: baseline; padding: 8px 0; font-family: var(--serif); font-size: clamp(2.2rem, 8vw, 4rem); line-height: .95; grid-template-columns: 44px 1fr; }
.mobile-nav a:hover { color: #cfc5b7; }
.mobile-nav span { font-family: var(--sans); font-size: .52rem; letter-spacing: .15em; }
.mobile-menu-footer { display: flex; flex-wrap: wrap; gap: 16px 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); font-size: .61rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.mobile-menu-footer button { border: 0; padding: 0; color: inherit; background: transparent; font: inherit; letter-spacing: inherit; text-transform: inherit; }

.page-scrim {
  position: fixed;
  z-index: 210;
  inset: 0;
  visibility: hidden;
  background: rgba(10,10,8,.58);
  opacity: 0;
  transition: opacity .28s ease, visibility .28s ease;
}
.page-scrim.active { visibility: visible; opacity: 1; }
.search-panel {
  position: fixed;
  z-index: 240;
  top: 0;
  right: 0;
  width: min(100%, 680px);
  height: 100dvh;
  padding: clamp(30px, 5vw, 64px);
  overflow-y: auto;
  background: var(--paper);
  visibility: hidden;
  transform: translateX(103%);
  transition: transform .52s var(--ease), visibility .52s ease;
}
.search-panel.open { visibility: visible; transform: translateX(0); }
.search-panel-head { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.search-panel-head h2 { margin: 8px 0 0; font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 4.8rem); font-weight: 400; letter-spacing: -.04em; line-height: .92; }
.search-field { position: relative; margin-top: clamp(50px, 9vh, 90px); }
.search-field input { width: 100%; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; padding: 0 48px 18px 0; outline: 0; background: transparent; font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3rem); }
.search-field input::placeholder { color: #918c81; }
.search-submit { position: absolute; top: 8px; right: 0; display: grid; border: 0; padding: 5px; background: transparent; place-items: center; }
.search-submit svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.search-browse { margin-top: 58px; }
.search-links { display: grid; margin-top: 18px; border-top: 1px solid var(--line); }
.search-links a { display: flex; align-items: center; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: .78rem; letter-spacing: .05em; }
.search-links a span { transition: transform .3s var(--ease); }
.search-links a:hover span { transform: translateX(5px); }

.public-flashes { position: fixed; z-index: 500; top: 104px; right: 24px; width: min(420px, calc(100vw - 48px)); }
.public-flash { padding: 15px 18px; color: var(--paper); background: var(--ink); box-shadow: var(--shadow); font-size: .78rem; transition: opacity .35s ease, transform .35s var(--ease); }
.public-flash.error { color: #5a2119; background: #f3dcd6; }
.public-flash.hide { opacity: 0; transform: translateY(-10px); pointer-events: none; }

/* home hero */
.hero {
  position: relative;
  min-height: min(900px, calc(100svh - var(--header-h)));
  overflow: hidden;
  color: var(--white);
  background: #8f8679;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; animation: heroEnter 1.25s var(--ease) both; }
@keyframes heroEnter { from { opacity: .7; transform: scale(1.025); } to { opacity: 1; transform: scale(1); } }
.hero-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,14,11,.65) 0%, rgba(15,14,11,.30) 44%, rgba(15,14,11,.04) 72%), linear-gradient(0deg, rgba(12,11,9,.28) 0%, transparent 42%); }
.hero-content { position: relative; z-index: 2; display: flex; min-height: inherit; flex-direction: column; justify-content: center; padding-block: clamp(95px, 12vh, 150px) 96px; }
.hero-copy-block { max-width: 980px; }
.hero h1 { max-width: 920px; margin: 0; font-family: var(--serif); font-size: clamp(4.5rem, 9vw, 9.6rem); font-weight: 400; letter-spacing: -.06em; line-height: .82; text-wrap: balance; }
.hero-copy { max-width: 550px; margin: 34px 0 35px; color: rgba(255,255,255,.84); font-size: clamp(.98rem, 1.18vw, 1.17rem); line-height: 1.7; }
.hero-footnote { position: absolute; bottom: 32px; left: 0; display: flex; gap: 22px; font-size: .57rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.hero-footnote span + span::before { margin-right: 22px; color: rgba(255,255,255,.4); content: "/"; }
.hero-collection-card {
  position: absolute;
  z-index: 3;
  right: max(40px, calc((100vw - 1540px) / 2));
  bottom: 32px;
  display: grid;
  min-width: 260px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.42);
  gap: 6px;
}
.hero-collection-card strong { font-family: var(--serif); font-size: 1.38rem; font-weight: 400; }
.hero-collection-card small { display: flex; justify-content: space-between; color: rgba(255,255,255,.72); font-size: .61rem; letter-spacing: .08em; text-transform: uppercase; }

/* homepage content */
.brand-intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: clamp(60px, 10vw, 170px); align-items: end; }
.intro-copy { max-width: 560px; padding-bottom: 8px; }
.intro-copy p { margin: 0 0 18px; color: var(--ink-soft); line-height: 1.75; }
.intro-copy .lead { margin-bottom: 25px; color: var(--ink); font-family: var(--serif); font-size: clamp(1.65rem, 2.35vw, 2.45rem); line-height: 1.25; letter-spacing: -.02em; }
.intro-copy .text-link { margin-top: 18px; }

.rooms { padding-top: 32px; background: var(--paper); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: clamp(42px, 5vw, 72px); }
.section-heading h2 { margin: 7px 0 0; font-family: var(--serif); font-size: clamp(3.4rem, 5.5vw, 6.2rem); font-weight: 400; letter-spacing: -.05em; line-height: .9; }
.room-grid { display: grid; min-height: 1120px; grid-template-columns: 1.35fr .8fr; grid-template-rows: 1fr .95fr; gap: 18px; }
.room-card { position: relative; min-height: 0; overflow: hidden; color: #fff; background: #767064; }
.room-card-feature { grid-row: 1 / 3; }
.room-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .6s ease; }
.room-card:hover img { transform: scale(1.025); filter: saturate(.94); }
.room-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,9,7,.62) 0%, rgba(10,9,7,.04) 55%); }
.room-label { position: absolute; right: 28px; bottom: 28px; left: 28px; display: grid; align-items: end; grid-template-columns: 46px 1fr auto 26px; gap: 16px; }
.room-index { align-self: center; color: rgba(255,255,255,.58); font-size: .59rem; letter-spacing: .15em; }
.room-label strong { font-family: var(--serif); font-size: clamp(2.2rem, 3vw, 4rem); font-weight: 400; letter-spacing: -.03em; line-height: .95; }
.room-label > span:not(.room-index) { max-width: 190px; color: rgba(255,255,255,.72); font-size: .68rem; line-height: 1.45; text-align: right; }
.room-label i { font-size: 1rem; font-style: normal; transition: transform .3s var(--ease); }
.room-card:hover .room-label i { transform: translate(3px,-3px); }

.collection-feature { display: grid; min-height: 760px; grid-template-columns: minmax(0, 1.25fr) minmax(430px, .75fr); background: var(--paper-2); }
.collection-image { overflow: hidden; }
.collection-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.collection-image:hover img { transform: scale(1.02); }
.collection-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 8vw, 140px); }
.collection-number { margin: 0 0 45px; color: var(--ink-soft); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; }
.collection-copy h2 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(4.6rem, 7vw, 8rem); font-weight: 400; letter-spacing: -.06em; line-height: .82; }
.collection-copy > p:not(.eyebrow):not(.collection-number) { max-width: 500px; margin: 0 0 38px; color: var(--ink-soft); line-height: 1.75; }
.collection-copy .button { align-self: flex-start; }

.products { background: var(--paper); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(34px, 3.2vw, 56px) clamp(14px, 1.5vw, 26px); }
.product-card { min-width: 0; }
.product-card-link { display: block; }
.product-image-wrap { position: relative; aspect-ratio: .82; overflow: hidden; background: #e4dfd5; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .85s var(--ease), filter .5s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.025); filter: saturate(.95); }
.product-badges { position: absolute; top: 14px; left: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.product-tag { padding: 7px 9px 6px; color: var(--ink); background: rgba(242,239,232,.92); font-size: .56rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(8px); }
.product-tag.muted { color: var(--paper); background: rgba(22,22,18,.78); }
.product-view { position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: space-between; padding: 15px 17px; color: var(--paper); background: rgba(22,22,18,.92); font-size: .6rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; opacity: 0; transform: translateY(100%); transition: opacity .32s ease, transform .32s var(--ease); }
.product-card:hover .product-view { opacity: 1; transform: translateY(0); }
.product-info { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding-top: 16px; }
.product-copy > span { display: block; margin-bottom: 5px; color: var(--ink-soft); font-size: .59rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.product-info h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.4rem, 1.55vw, 1.9rem); font-weight: 400; letter-spacing: -.02em; line-height: 1.08; }
.product-info > p { flex: 0 0 auto; margin: 3px 0 0; font-size: .73rem; }

.philosophy { display: grid; min-height: 860px; color: var(--paper); background: var(--ink); grid-template-columns: 1fr 1fr; }
.philosophy-media { min-height: 700px; overflow: hidden; }
.philosophy-media img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 8vw, 140px); }
.philosophy-copy h2 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(4.5rem, 7vw, 8.3rem); font-weight: 400; letter-spacing: -.06em; line-height: .82; }
.philosophy-copy > p:not(.eyebrow) { max-width: 560px; margin: 0 0 42px; color: rgba(255,255,255,.68); line-height: 1.75; }
.philosophy-list { margin: 0 0 38px; }
.philosophy-list > div { display: grid; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.15); grid-template-columns: 48px 1fr; gap: 15px; }
.philosophy-list > div:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.philosophy-list dt { color: rgba(255,255,255,.42); font-size: .58rem; letter-spacing: .12em; }
.philosophy-list dd { display: grid; margin: 0; grid-template-columns: 1fr 1.25fr; gap: 24px; }
.philosophy-list strong { font-size: .71rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.philosophy-list span { color: rgba(255,255,255,.57); font-size: .74rem; line-height: 1.55; }

.trade-home { background: var(--paper); }
.trade-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); gap: clamp(70px, 10vw, 170px); align-items: end; }
.trade-copy h2 { margin: 0 0 30px; font-family: var(--serif); font-size: clamp(4.1rem, 6.5vw, 7.5rem); font-weight: 400; letter-spacing: -.055em; line-height: .84; }
.trade-copy > p:not(.eyebrow) { max-width: 590px; margin: 0 0 35px; color: var(--ink-soft); font-size: 1rem; line-height: 1.75; }
.trade-benefits { border-top: 1px solid var(--line); }
.trade-benefits > div { display: grid; padding: 23px 0; border-bottom: 1px solid var(--line); grid-template-columns: 52px 1fr; gap: 10px 20px; }
.trade-benefits > div > span { color: var(--ink-soft); font-size: .58rem; letter-spacing: .12em; grid-row: 1 / 3; }
.trade-benefits h3 { margin: 0; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.trade-benefits p { margin: 0; color: var(--ink-soft); font-size: .77rem; line-height: 1.55; }

.contact-feature { display: grid; min-height: 690px; grid-template-columns: 1.15fr .85fr; background: var(--paper-2); }
.contact-feature-media { overflow: hidden; }
.contact-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.contact-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(65px, 8vw, 135px); }
.contact-feature-copy h2 { margin: 0 0 26px; font-family: var(--serif); font-size: clamp(3.9rem, 6vw, 7rem); font-weight: 400; letter-spacing: -.055em; line-height: .86; }
.contact-feature-copy > p:not(.eyebrow) { max-width: 500px; margin: 0 0 35px; color: var(--ink-soft); line-height: 1.75; }
.contact-feature-copy .button { align-self: flex-start; }

/* footer */
.site-footer { color: var(--paper); background: #11110e; }
.footer-top { display: grid; padding-block: clamp(76px, 8vw, 125px) 70px; grid-template-columns: minmax(340px, 1.2fr) minmax(520px, .8fr); gap: clamp(70px, 10vw, 170px); }
.footer-statement h2 { margin: 18px 0 22px; font-family: var(--serif); font-size: clamp(3.6rem, 5.6vw, 6.7rem); font-weight: 400; letter-spacing: -.055em; line-height: .84; }
.footer-statement > p:not(.micro-label) { max-width: 470px; margin: 0 0 27px; color: rgba(255,255,255,.58); line-height: 1.7; }
.footer-email { display: inline-flex; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 5px; font-size: .7rem; letter-spacing: .08em; }
.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; align-content: start; }
.footer-column { display: grid; align-content: start; gap: 11px; }
.footer-column h3 { margin: 0 0 10px; color: rgba(255,255,255,.42); font-size: .59rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.75); font-size: .77rem; }
.footer-column a:hover { color: #fff; }
.footer-wordmark-wrap { overflow: hidden; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); padding-block: 20px 24px; }
.footer-wordmark-large { display: block; font-size: clamp(4.3rem, 10.4vw, 10rem); font-weight: 650; letter-spacing: .18em; line-height: .82; white-space: nowrap; }
.footer-bottom { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.45); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 25px; }
.footer-bottom a:hover { color: #fff; }

.toast { position: fixed; z-index: 510; right: 24px; bottom: 24px; max-width: min(420px, calc(100vw - 48px)); padding: 15px 18px; color: var(--paper); background: var(--ink); box-shadow: var(--shadow); font-size: .76rem; opacity: 0; pointer-events: none; transform: translateY(16px); transition: opacity .25s ease, transform .25s var(--ease); }
.toast.show { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1260px) {
  :root { --page: min(calc(100vw - 54px), 1540px); }
  .header-shell { grid-template-columns: 1fr auto 1fr; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .wordmark { justify-self: center; }
  .header-actions { justify-self: end; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .room-grid { min-height: 980px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  :root { --header-h: 74px; }
  .section-pad { padding-block: 92px; }
  .header-trade { display: none; }
  .hero { min-height: 790px; }
  .hero-content { justify-content: end; padding-bottom: 120px; }
  .hero-wash { background: linear-gradient(0deg, rgba(12,11,9,.76) 0%, rgba(12,11,9,.12) 70%), linear-gradient(90deg, rgba(12,11,9,.3), transparent 72%); }
  .hero-collection-card { display: none; }
  .intro-grid, .trade-grid { grid-template-columns: 1fr; gap: 55px; }
  .intro-copy { max-width: 650px; }
  .room-grid { min-height: 0; grid-template-columns: 1fr 1fr; grid-template-rows: 600px 540px; }
  .room-card-feature { grid-row: auto; }
  .room-card-wide { grid-column: 1 / -1; }
  .collection-feature, .philosophy, .contact-feature { grid-template-columns: 1fr; }
  .collection-image, .philosophy-media, .contact-feature-media { min-height: 70vw; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1fr; gap: 70px; }
  .footer-links-grid { max-width: 720px; }
}

@media (max-width: 640px) {
  :root { --page: calc(100vw - 32px); --header-h: 68px; }
  html { scroll-padding-top: 80px; }
  .announcement { min-height: 38px; padding-inline: 34px; font-size: .52rem; }
  .announcement a { display: none; }
  .announcement-close { right: 12px; }
  .header-shell { gap: 10px; }
  .wordmark { font-size: .97rem; letter-spacing: .19em; }
  .header-search span { display: none; }
  .header-search svg { width: 19px; height: 19px; }
  .mobile-menu { width: 100%; }
  .search-panel { width: 100%; padding: 28px 20px; }
  .public-flashes { top: 84px; right: 16px; width: calc(100vw - 32px); }

  .hero { min-height: calc(100svh - var(--header-h)); }
  .hero-image { object-position: 48% center; }
  .hero-content { padding-block: 90px 84px; }
  .hero h1 { font-size: clamp(3.65rem, 18vw, 5.8rem); line-height: .84; }
  .hero-copy { margin-block: 24px 28px; font-size: .91rem; }
  .hero .button-row { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero .button { width: 100%; }
  .hero-footnote { display: none; }

  .section-pad { padding-block: 76px; }
  .display-heading { font-size: clamp(3.3rem, 15vw, 5rem); }
  .intro-grid { gap: 40px; }
  .intro-copy .lead { font-size: 1.6rem; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 38px; }
  .section-heading h2 { font-size: clamp(3.2rem, 14vw, 4.7rem); }

  .room-grid { display: flex; min-height: 0; flex-direction: column; }
  .room-card { min-height: 500px; }
  .room-label { right: 20px; bottom: 22px; left: 20px; grid-template-columns: 35px 1fr 22px; }
  .room-label > span:not(.room-index) { display: none; }
  .room-label strong { font-size: 2.5rem; }

  .collection-image, .philosophy-media, .contact-feature-media { min-height: 520px; }
  .collection-copy, .philosophy-copy, .contact-feature-copy { padding: 68px 16px; }
  .collection-copy h2, .philosophy-copy h2, .contact-feature-copy h2, .trade-copy h2 { font-size: clamp(3.7rem, 17vw, 5.2rem); }

  .product-grid { grid-template-columns: 1fr; gap: 44px; }
  .product-image-wrap { aspect-ratio: .84; }
  .product-view { opacity: 1; transform: none; padding-block: 13px; }
  .product-info h3 { font-size: 1.6rem; }

  .philosophy-list dd { grid-template-columns: 1fr; gap: 6px; }
  .trade-grid { gap: 50px; }
  .trade-copy .button-row { align-items: flex-start; flex-direction: column; }
  .trade-copy .button { width: 100%; }

  .footer-top { padding-top: 72px; gap: 62px; }
  .footer-statement h2 { font-size: 3.75rem; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-wordmark-large { font-size: 15vw; letter-spacing: .13em; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 24px; }
}

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