:root {
  --legacy-paper: #fbfaf8;
  --legacy-white: #fff;
  --legacy-ink: #111;
  --legacy-muted: #77736e;
  --legacy-faint: #aaa6a0;
  --legacy-line: #dedbd6;
  --legacy-serif: "Cormorant Garamond", Didot, "Bodoni MT", Georgia, serif;
  --legacy-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { color-scheme: light; }
body {
  min-height: 100vh;
  margin: 0;
  background: var(--legacy-paper);
  color: var(--legacy-ink);
  font-family: var(--legacy-serif);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
:focus-visible { outline: 2px solid var(--legacy-ink); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  translate: 0 -180%;
  background: var(--legacy-white);
  padding: 10px 14px;
  font-family: var(--legacy-sans);
  font-size: .8rem;
}
.skip-link:focus { translate: 0; }

.legacy-header {
  position: relative;
  z-index: 30;
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--legacy-line);
  background: rgba(251, 250, 248, .98);
  padding: 0 clamp(22px, 5vw, 72px);
}
.wordmark {
  position: relative;
  z-index: 42;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: .38em;
  text-decoration: none;
}
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 42px); }
.desktop-nav a {
  color: #4c4945;
  font-size: .68rem;
  letter-spacing: .2em;
  text-decoration: none;
  text-transform: uppercase;
}
.desktop-nav a[aria-current="page"] { color: var(--legacy-ink); }
.desktop-nav a:hover { text-decoration: underline; text-underline-offset: 6px; }

.menu { display: none; }
.menu summary {
  position: relative;
  z-index: 42;
  width: 44px;
  height: 44px;
  border: 1px solid var(--legacy-line);
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
}
.menu summary::-webkit-details-marker { display: none; }
.menu-icon,
.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1px;
  background: var(--legacy-ink);
  content: "";
}
.menu-icon { top: 21px; }
.menu-icon::before { top: -6px; left: 0; }
.menu-icon::after { top: 6px; left: 0; }
.menu[open] .menu-icon { background: transparent; }
.menu[open] .menu-icon::before { top: 0; rotate: 45deg; }
.menu[open] .menu-icon::after { top: 0; rotate: -45deg; }
.menu-sheet {
  position: fixed;
  z-index: 40;
  inset: 34px 0 0;
  display: grid;
  min-height: calc(100dvh - 34px);
  align-content: center;
  background: var(--legacy-white);
  padding: 112px 30px 44px;
  text-align: center;
}
.menu-sheet nav { display: grid; gap: 12px; }
.menu-sheet nav a {
  font-size: clamp(1.8rem, 8vw, 3.2rem);
  letter-spacing: .08em;
  line-height: 1.16;
  text-decoration: none;
}
.menu-sheet .office-link {
  margin-top: 20px;
  font-family: var(--legacy-sans);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.menu-signature {
  margin: clamp(54px, 10vh, 100px) 0 0;
  color: var(--legacy-faint);
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.legacy-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(68px, 10vw, 140px) clamp(20px, 6vw, 88px) clamp(84px, 12vw, 160px);
}
.legacy-main::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.88), rgba(235,233,229,.4) 50%, rgba(255,255,255,.88));
  content: "";
}
.collection-hero { width: min(1120px, 100%); margin: 0 auto; }
.catalog-kicker {
  margin: 0 0 22px;
  color: #8e8a85;
  font-size: clamp(.68rem, 1.3vw, .88rem);
  letter-spacing: .48em;
  text-transform: uppercase;
}
.collection-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  font-weight: 400;
  letter-spacing: .14em;
  line-height: 1.08;
  text-transform: uppercase;
}
.collection-hero h1 span { display: block; margin-left: clamp(28px, 9vw, 140px); }
.collection-hero--indice h1 {
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  letter-spacing: .34em;
  line-height: 1.45;
}
.collection-hero--indice h1 span { display: inline; margin-left: 0; }
.hero-rule { width: 112px; height: 1px; margin: clamp(34px, 5vw, 60px) 0; background: var(--legacy-ink); }
.hero-copy {
  max-width: 690px;
  margin: 0;
  color: #56524d;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  font-style: italic;
  line-height: 1.55;
}

.construction-card {
  position: relative;
  width: min(1020px, 100%);
  margin: clamp(60px, 10vw, 130px) auto 0;
  border: 1px solid rgba(17,17,17,.14);
  background: rgba(255,255,255,.82);
  padding: clamp(28px, 6vw, 74px);
  overflow: hidden;
}
.construction-card::after {
  position: absolute;
  top: 0;
  right: clamp(28px, 6vw, 78px);
  width: 1px;
  height: 72px;
  background: var(--legacy-ink);
  content: "";
}
.card-kicker {
  margin: 0 0 16px;
  color: #8c8883;
  font-size: .69rem;
  letter-spacing: .42em;
  text-transform: uppercase;
}
.construction-card h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.25;
}
.construction-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--legacy-muted);
  font-family: var(--legacy-sans);
  font-size: clamp(.92rem, 1.6vw, 1.05rem);
  line-height: 1.75;
}
.category-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(32px, 7vw, 96px);
  margin: clamp(34px, 6vw, 64px) 0 0;
  padding: 0;
  list-style: none;
}
.category-preview li {
  display: flex;
  min-height: clamp(74px, 8vw, 104px);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--legacy-line);
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
}
.category-preview small {
  color: var(--legacy-faint);
  font-family: var(--legacy-sans);
  font-size: .55rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.legacy-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(38px, 6vw, 62px); }
.legacy-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--legacy-ink);
  background: var(--legacy-ink);
  color: var(--legacy-white);
  padding: 12px 24px;
  font-family: var(--legacy-sans);
  font-size: .66rem;
  letter-spacing: .22em;
  text-decoration: none;
  text-transform: uppercase;
}
.legacy-button--line { background: transparent; color: var(--legacy-ink); }
.legacy-button:hover { background: var(--legacy-white); color: var(--legacy-ink); }
.legacy-button--line:hover { background: var(--legacy-ink); color: var(--legacy-white); }
.construction-note {
  margin: 26px 0 0;
  color: var(--legacy-faint);
  font-family: var(--legacy-sans);
  font-size: .72rem;
  line-height: 1.6;
}

.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; }

@media (max-width: 760px) {
  .legacy-header { min-height: 74px; padding-inline: 18px; }
  .desktop-nav { display: none; }
  .menu { display: block; }
  .legacy-main { padding-inline: 18px; }
  .collection-hero h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); letter-spacing: .1em; }
  .collection-hero h1 span { margin-left: 12px; }
  .collection-hero--indice h1 { font-size: clamp(1.05rem, 4.6vw, 1.35rem); letter-spacing: .28em; }
  .collection-hero--indice h1 span { margin-left: 0; }
  .construction-card::after { right: 32px; height: 46px; }
  .category-preview { grid-template-columns: 1fr; }
  .legacy-actions { display: grid; }
  .legacy-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@media print {
  .legacy-header, .legacy-actions, .site-footer { display: none !important; }
  .legacy-main { padding: 20px; }
  .construction-card { box-shadow: none; }
}

.material-note {
  margin: 14px 0 0;
  color: #9a968f;
  font-family: var(--legacy-sans);
  font-size: .82rem;
  letter-spacing: .04em;
}
.category-preview li a {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: inherit;
  text-decoration: none;
}
.category-preview li a:hover span { text-decoration: underline; text-underline-offset: .22em; }
.category-preview li a:hover small { color: var(--legacy-ink); }
