@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap");

:root {
  --display-font: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ink: #2f291f;
  --ink-soft: #675a48;
  --cream: #fbf8f1;
  --paper: #fffdf8;
  --olive: #444a3b;
  --olive-deep: #2e352b;
  --taupe: #b8a48a;
  --gold: #c7a96a;
  --line: rgba(68, 74, 59, .18);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(49, 39, 27, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img,
video,
iframe {
  max-width: 100%;
}

.site {
  min-height: 100vh;
  overflow: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(251, 248, 241, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  min-width: 190px;
}

.brand strong {
  font-family: var(--display-font);
  font-size: 18px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brand span {
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 18px;
  font-family: var(--display-font);
  font-size: 13px;
}

.nav-links a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: currentColor;
}

.button,
.button-light,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 13px 19px 12px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--display-font);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.utility-dock {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(820px, calc(100% - 36px));
  margin: 0 auto clamp(28px, 5vw, 58px);
  padding: 10px;
  background: rgba(255, 253, 248, .88);
  border: 1px solid rgba(68, 74, 59, .18);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(49, 39, 27, .13);
  backdrop-filter: blur(14px);
}

.utility-dock a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(251, 248, 241, .82);
  border: 1px solid rgba(68, 74, 59, .12);
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--display-font);
  font-size: 13px;
}

.utility-dock a::after {
  content: "->";
  color: var(--taupe);
}

.button {
  background: var(--olive);
  color: var(--cream);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
  border-color: rgba(255, 255, 255, .42);
}

.button-outline {
  background: transparent;
  color: var(--olive-deep);
  border-color: rgba(68, 74, 59, .34);
}

.hero {
  min-height: 760px;
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.statement-band {
  padding: clamp(44px, 6vw, 82px) clamp(18px, 5vw, 72px);
  color: #fff8ed;
  background:
    linear-gradient(90deg, rgba(23, 21, 17, .98), rgba(35, 31, 26, .92)),
    radial-gradient(circle at 50% 50%, rgba(199, 169, 106, .18), transparent 48%);
  text-align: center;
}

.statement-band .ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
  color: var(--gold);
}

.statement-band .ornament::before,
.statement-band .ornament::after {
  content: "";
  width: min(72px, 18vw);
  height: 1px;
  background: currentColor;
}

.statement-band .ornament span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.statement-band p {
  max-width: 980px;
  margin: 0 auto;
  font-family: var(--display-font);
  font-size: clamp(38px, 6.4vw, 86px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.08;
}

.display {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .98;
  font-size: clamp(48px, 8.5vw, 122px);
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.5;
}

.fine {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.section {
  padding: clamp(42px, 6vw, 84px) clamp(18px, 5vw, 72px);
}

.section-title {
  margin: 0 0 24px;
  font-family: var(--display-font);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.05;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .86fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #ddd5c8;
  box-shadow: var(--shadow);
}

.media-card img,
.media-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tile {
  min-height: 270px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #ddd5c8;
  color: #fff;
  text-decoration: none;
}

.tile img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .5s ease;
}

.tile:hover img {
  transform: scale(1.055);
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.52));
}

.tile span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  font-family: var(--display-font);
  font-size: 24px;
  line-height: 1.05;
}

.route-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.route-row a {
  min-height: 128px;
  padding: 22px;
  background: var(--paper);
  text-decoration: none;
}

.route-row strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--display-font);
  font-size: 21px;
  font-weight: 400;
}

.route-row span {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.footer-mark {
  padding: 36px clamp(18px, 5vw, 72px);
  color: var(--cream);
  background: var(--olive-deep);
  font-family: var(--display-font);
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.35;
}

.footer-mark small {
  display: block;
  margin-top: 14px;
  color: rgba(251, 248, 241, .7);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.editorial {
  background: var(--cream);
}

.editorial .hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.editorial .hero-image {
  height: min(74vh, 760px);
}

.editorial .caption-line {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.editorial .caption-line::before {
  content: "";
  width: 56px;
  height: 1px;
  background: var(--taupe);
}

.workroom {
  background: #f4efe5;
}

.workroom .hero {
  min-height: 720px;
}

.workroom-shell {
  display: grid;
  grid-template-columns: minmax(270px, .8fr) minmax(0, 1.2fr);
  gap: 22px;
}

.workroom-panel {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.workroom-panel h2 {
  margin: 0 0 16px;
  font-family: var(--display-font);
  font-size: 32px;
  font-weight: 400;
}

.workroom-list {
  display: grid;
  gap: 12px;
}

.workroom-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: #f9f5ed;
  border: 1px solid var(--line);
  text-decoration: none;
}

.workroom-list strong {
  font-family: var(--display-font);
  font-size: 21px;
  font-weight: 400;
}

.atlas {
  background: #fbfaf5;
}

.atlas .hero {
  min-height: 470px;
  padding-top: clamp(38px, 5vw, 66px);
  padding-bottom: clamp(38px, 5vw, 66px);
  text-align: center;
}

.atlas .lead {
  margin-left: auto;
  margin-right: auto;
}

.atlas-board {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  grid-auto-rows: 250px;
  gap: 14px;
}

.atlas-board .tile:nth-child(1) {
  grid-row: span 2;
}

.atlas-board .tile:nth-child(4) {
  grid-column: span 2;
}

.film {
  color: #fff8ed;
  background: #171511;
}

.film .nav {
  background: rgba(23, 21, 17, .82);
  border-bottom-color: rgba(255,255,255,.14);
}

.film .brand span,
.film .lead,
.film .fine {
  color: rgba(255, 248, 237, .72);
}

.film .button-outline {
  color: #fff8ed;
  border-color: rgba(255,255,255,.34);
}

.film-stage {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.film-frame {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  background: #000;
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
}

.film-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.embedded-film {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  color: #fff8ed;
  background: #171511;
}

.embedded-film .lead,
.embedded-film .fine {
  color: rgba(255, 248, 237, .74);
}

.embedded-film .film-frame {
  box-shadow: none;
}

.atlas-v6 {
  background: var(--cream);
}

.atlas-v6 .site {
  min-height: auto;
}

.statement-band-compact {
  padding: 12px clamp(18px, 5vw, 72px) 14px;
}

.statement-band-compact .ornament {
  margin-bottom: 5px;
  transform: scale(.72);
}

.statement-band-compact p {
  font-size: clamp(26px, 3.6vw, 48px);
  line-height: .98;
}

.hero-search-only {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 290px;
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.hero-search-only .fabric-search {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}

.embedded-film-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  padding: clamp(28px, 4vw, 46px) clamp(18px, 5vw, 72px);
  color: var(--ink);
  background: var(--cream);
}

.no-film-panel {
  min-height: 330px;
}

.embedded-film-compact .film-frame {
  width: 100%;
  box-shadow: 0 18px 46px rgba(49, 39, 27, .12);
  border-color: rgba(68, 74, 59, .18);
}

.film-actions {
  width: 100%;
  max-width: 1040px;
}

.film-actions .fabric-search {
  width: 100%;
  margin-top: 0;
}

.film-actions .actions {
  justify-content: center;
  margin-top: 14px;
}

.text-actions {
  gap: 20px;
}

.text-actions a {
  color: var(--olive);
  font-family: var(--display-font);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  border-bottom: 1px solid rgba(68, 74, 59, .48);
  padding-bottom: 3px;
}

.text-actions a:hover {
  border-bottom-color: var(--olive);
}

.inline-statement {
  margin: clamp(22px, 3vw, 34px) 0 0;
  color: #1f1a13;
  font-family: var(--display-font);
  font-size: clamp(36px, 4.8vw, 68px);
  font-style: italic;
  font-weight: 400;
  line-height: .98;
  text-align: center;
}

.minimal {
  background: #fffdf8;
}

.minimal .nav {
  position: relative;
  background: #fffdf8;
}

.minimal .hero {
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.minimal .display {
  max-width: 980px;
  margin: 0 auto;
}

.kicker {
  margin: 0 0 16px;
  color: var(--olive);
  font-family: var(--display-font);
  font-size: 18px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.minimal .lead {
  margin-left: auto;
  margin-right: auto;
}

.minimal-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.minimal-menu a {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.minimal-menu a:nth-child(3n),
.minimal-menu a:last-child {
  border-right: 0;
}

.minimal-menu a:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.minimal-menu .active-variation {
  color: var(--cream);
  background: var(--olive);
}

.minimal-menu strong {
  display: block;
  font-family: var(--display-font);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
  line-height: 1;
}

.minimal-menu em {
  display: block;
  margin-top: 12px;
  color: var(--olive);
  font-family: var(--display-font);
  font-size: 18px;
  font-style: italic;
}

.minimal-menu .active-variation em {
  color: #f2e6cf;
}

.minimal-menu span {
  display: block;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.minimal-menu .active-variation span {
  color: rgba(251, 248, 241, .82);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fabric-search {
  display: flex;
  width: min(760px, 100%);
  margin-top: 28px;
  background: var(--paper);
  border: 1px solid rgba(68, 74, 59, .22);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(49, 39, 27, .08);
}

.fabric-search input {
  min-width: 0;
  flex: 1;
  height: 56px;
  padding: 0 22px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 16px;
  outline: 0;
}

.fabric-search button {
  min-width: 150px;
  border: 0;
  background: var(--olive);
  color: var(--cream);
  font-family: var(--display-font);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.fabric-search button:hover {
  background: var(--olive-deep);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.filter-bar button {
  min-height: 36px;
  padding: 9px 14px;
  border: 1px solid rgba(68, 74, 59, .24);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--display-font);
  cursor: pointer;
}

.filter-bar button.is-active,
.filter-bar button:hover {
  background: var(--olive);
  color: var(--cream);
}

.collection-grid .tile.is-hidden {
  display: none;
}

.search-results {
  display: none;
  margin-top: 18px;
  padding: 18px;
  background: rgba(255, 253, 248, .86);
  border: 1px solid rgba(68, 74, 59, .15);
  border-radius: 8px;
}

.search-results.is-visible {
  display: block;
}

.search-results a {
  display: inline-flex;
  margin-top: 12px;
}

.drawer-trigger {
  display: none;
}

.drawer-toggle {
  display: none;
}

.drawer-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  width: min(420px, 92vw);
  padding: 28px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: -24px 0 70px rgba(49, 39, 27, .2);
  transform: translateX(105%);
  transition: transform .3s ease;
}

.drawer-toggle:checked ~ .drawer-panel {
  transform: translateX(0);
}

.drawer-panel label {
  display: inline-flex;
  margin-bottom: 28px;
  cursor: pointer;
  color: var(--ink-soft);
}

.drawer-panel h2 {
  margin: 0 0 16px;
  font-family: var(--display-font);
  font-size: 34px;
  font-weight: 400;
}

.drawer-panel p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.center-actions {
  justify-content: center;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .editorial .hero,
  .split,
  .workroom-shell,
  .film-stage,
  .embedded-film {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .editorial .hero-image {
    height: 520px;
  }

  .collection-grid,
  .route-row,
  .minimal-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atlas-board {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
}

@media (max-width: 620px) {
  .nav {
    padding: 16px;
  }

  .nav-links {
    gap: 8px 12px;
    font-size: 12px;
  }

  .hero,
  .section {
    padding: 34px 16px;
  }

  .display {
    font-size: clamp(40px, 14vw, 70px);
  }

  .lead {
    font-size: 16px;
  }

  .utility-dock {
    grid-template-columns: 1fr;
    width: auto;
    margin: 0 16px 28px;
  }

  .fabric-search {
    border-radius: 8px;
    flex-direction: column;
  }

  .fabric-search input,
  .fabric-search button {
    width: 100%;
  }

  .editorial .hero-image {
    height: 420px;
  }

  .collection-grid,
  .route-row,
  .minimal-menu,
  .atlas-board {
    grid-template-columns: 1fr;
  }

  .atlas-board .tile,
  .atlas-board .tile:nth-child(1),
  .atlas-board .tile:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .minimal-menu a {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
