:root {
  color-scheme: light;
  --paper: #f5f7f1;
  --ink: #121412;
  --muted: #62695f;
  --line: #d8dfd1;
  --surface: #fffef8;
  --forest: #12372e;
  --wine: #ff5d3f;
  --clay: #2367ff;
  --lime: #d8ff4f;
  --shadow: 0 24px 80px rgba(18, 20, 18, 0.12);
  --soft-shadow: 0 18px 42px rgba(18, 20, 18, 0.08);
  --tight-shadow: 0 10px 24px rgba(18, 20, 18, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 254, 248, 0.72), rgba(245, 247, 241, 0.96) 38%),
    linear-gradient(135deg, rgba(216, 255, 79, 0.13), transparent 34%),
    var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(216, 223, 209, 0.82);
  background: rgba(255, 254, 248, 0.84);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), 0 14px 34px rgba(18, 20, 18, 0.05);
  backdrop-filter: blur(22px) saturate(1.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 25px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 43%, var(--ink) 44%, var(--ink) 56%, transparent 57%),
    var(--lime);
  box-shadow: 8px 0 0 -3px var(--wine);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
}

nav a,
.text-button {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header .outline-button {
  justify-self: end;
}

.header-controls {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-select {
  position: relative;
  display: inline-grid;
  align-items: center;
}

.language-select::after {
  content: "";
  position: absolute;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-2px);
  pointer-events: none;
}

.language-select select {
  appearance: none;
  min-height: 42px;
  min-width: 82px;
  border: 1px solid rgba(18, 20, 18, 0.16);
  border-radius: 6px;
  background: rgba(255, 254, 248, 0.76);
  color: var(--ink);
  padding: 0 32px 0 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.language-select select:focus {
  border-color: rgba(18, 20, 18, 0.42);
  box-shadow: 0 0 0 4px rgba(216, 255, 79, 0.26);
}

.outline-button,
.primary-button,
.primary-link,
.text-button,
.filter-button,
.close-button {
  min-height: 42px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 0 16px;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.outline-button:hover,
.filter-button:hover,
.close-button:hover {
  transform: translateY(-1px);
  border-color: var(--ink);
  box-shadow: var(--tight-shadow);
}

.outline-button.dark {
  border-color: rgba(255, 254, 248, 0.42);
  color: #fffef8;
}

.primary-button,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fffef8;
  border-color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.primary-button:hover,
.primary-link:hover {
  transform: translateY(-1px);
  background: var(--wine);
  border-color: var(--wine);
}

.primary-button.light {
  background: #fffef8;
  color: var(--ink);
  border-color: #fffef8;
}

.text-button {
  border: 0;
  padding: 0;
  background: transparent;
}

.kicker {
  margin: 0 0 10px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showroom-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(216, 255, 79, 0.28), transparent 32%),
    linear-gradient(135deg, transparent 0 58%, rgba(35, 103, 255, 0.08) 58% 100%);
}

.hero-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #dde4d5;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 20, 18, 0.18), transparent 42%),
    linear-gradient(180deg, transparent 68%, rgba(18, 20, 18, 0.22));
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(32px, 6vw, 84px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 254, 248, 0.98)),
    linear-gradient(135deg, rgba(216, 255, 79, 0.14), transparent 42%),
    var(--surface);
}

.hero-content::before {
  content: "";
  position: absolute;
  top: clamp(22px, 4vw, 48px);
  right: clamp(22px, 4vw, 48px);
  width: 92px;
  height: 12px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  opacity: 0.16;
}

.hero-content h1,
.section-title h2,
.lookbook-copy h2,
.contact-band h2,
.drawer-copy h2,
.dialog-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-content p:not(.kicker) {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip div {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px clamp(18px, 4vw, 42px);
  background: rgba(255, 254, 248, 0.72);
}

.intro-strip strong {
  font-size: 15px;
}

.intro-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.collection-section,
.materials-section {
  padding: clamp(52px, 7vw, 98px) clamp(18px, 4vw, 54px);
}

.collection-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  row-gap: 22px;
  background:
    linear-gradient(180deg, rgba(255, 254, 248, 0.54), transparent 28%),
    linear-gradient(135deg, transparent 0 72%, rgba(35, 103, 255, 0.08) 72% 100%);
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.collection-section .section-title {
  display: grid;
  align-items: start;
  justify-content: start;
  gap: 12px;
  margin: 0;
  max-width: 760px;
}

.section-title h2,
.lookbook-copy h2,
.contact-band h2,
.drawer-copy h2,
.dialog-heading h2 {
  font-size: clamp(32px, 4vw, 56px);
}

.collection-section .section-title h2 {
  max-width: none;
  font-size: clamp(42px, 4.6vw, 74px);
  line-height: 0.94;
}

.collection-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: end;
  justify-self: stretch;
  width: 100%;
  gap: 12px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(216, 223, 209, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 255, 79, 0.14), transparent 46%),
    rgba(255, 254, 248, 0.82);
  box-shadow: 0 18px 44px rgba(18, 20, 18, 0.06);
}

.catalog-search {
  display: grid;
  gap: 8px;
}

.catalog-search span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-search input {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 254, 248, 0.96)),
    rgba(255, 254, 248, 0.94);
  color: var(--ink);
  padding: 0 18px;
  outline: none;
  font-weight: 750;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.catalog-search input:focus {
  border-color: rgba(18, 20, 18, 0.42);
  box-shadow: 0 0 0 4px rgba(216, 255, 79, 0.28);
}

.clear-search {
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 248, 0.9);
  color: var(--muted);
  padding: 0 18px;
  font-weight: 850;
}

.clear-search:hover {
  border-color: rgba(18, 20, 18, 0.36);
  color: var(--ink);
}

.filter-bar {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid rgba(216, 223, 209, 0.78);
  border-radius: 8px;
  background: rgba(255, 254, 248, 0.55);
  scrollbar-width: thin;
}

.search-summary {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.filter-button {
  flex: 0 0 auto;
  color: var(--muted);
  background: rgba(255, 254, 248, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.filter-button.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: #fffef8;
  background:
    linear-gradient(135deg, rgba(216, 255, 79, 0.1), transparent 30%),
    var(--forest);
}

.showroom-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.collection-empty {
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 248, 0.72);
  color: var(--muted);
  text-align: center;
  box-shadow: var(--soft-shadow);
}

.collection-empty strong {
  color: var(--ink);
  font-size: 20px;
}

.showroom-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 254, 248, 0.98)),
    var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 16px 36px rgba(18, 20, 18, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.showroom-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 21, 20, 0.32);
  box-shadow: var(--shadow);
}

.showroom-card button {
  width: 100%;
  display: grid;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(216, 255, 79, 0.22), transparent 46%),
    #e5eadf;
  overflow: hidden;
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.card-media img {
  transition: transform 260ms ease;
}

.showroom-card:hover img {
  transform: scale(1.035);
}

.card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-body h3 {
  min-height: 48px;
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}

.card-body p {
  min-height: 46px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--muted);
  background: rgba(255, 254, 248, 0.74);
  font-size: 12px;
  font-weight: 800;
}

.lookbook-section {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 0.85fr;
  gap: 18px;
  padding: clamp(24px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(216, 255, 79, 0.11), transparent 28%),
    linear-gradient(160deg, #0d1f1b, var(--forest) 58%, #16291f);
  color: #fffef8;
}

.lookbook-copy {
  display: grid;
  align-content: center;
  min-height: 520px;
  padding: clamp(22px, 4vw, 48px);
}

.lookbook-copy .kicker {
  color: var(--lime);
}

.lookbook-image {
  position: relative;
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.lookbook-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 254, 248, 0.22);
  pointer-events: none;
}

.lookbook-image.tall {
  min-height: 620px;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.materials-section .section-title {
  display: grid;
  align-items: start;
  justify-content: start;
  gap: 12px;
  max-width: 980px;
}

.materials-section .section-title .kicker {
  margin: 0;
}

.materials-section .section-title h2 {
  max-width: 900px;
}

.materials-grid article {
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 254, 248, 0.98)),
    var(--surface);
  box-shadow: var(--soft-shadow);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.materials-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 20, 18, 0.28);
  box-shadow: var(--shadow);
}

.materials-grid span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.materials-grid h3 {
  margin: 0;
  font-size: 24px;
}

.materials-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: 24px;
  padding: clamp(34px, 6vw, 76px) clamp(18px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 93, 63, 0.98), #d83e73 48%, var(--clay)),
    linear-gradient(90deg, rgba(255, 254, 248, 0.16), transparent);
  color: #fffef8;
}

.contact-band .kicker {
  color: #f0c7cf;
}

.contact-grid,
.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-list {
  grid-template-columns: 1fr;
}

.contact-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 254, 248, 0.34);
  border-radius: 8px;
  background: rgba(255, 254, 248, 0.12);
  color: #fffef8;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 254, 248, 0.18);
  border-color: rgba(255, 254, 248, 0.62);
  box-shadow: 0 16px 36px rgba(18, 20, 18, 0.15);
}

.contact-list .contact-card {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.contact-list .contact-card:hover {
  background: rgba(216, 255, 79, 0.14);
  border-color: rgba(18, 20, 18, 0.28);
}

.contact-card.is-compact {
  min-height: 82px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.contact-card[data-tone="green"] .contact-icon {
  background: #3ee577;
}

.contact-card[data-tone="blue"] .contact-icon {
  background: #6ba5ff;
}

.contact-card[data-tone="ink"] .contact-icon {
  background: var(--ink);
  color: #fffef8;
}

.contact-card[data-tone="lime"] .contact-icon {
  background: var(--lime);
}

.contact-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.contact-copy strong {
  font-size: 15px;
}

.contact-copy span {
  color: inherit;
  opacity: 0.78;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.detail-drawer {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  justify-items: end;
  background: rgba(20, 18, 16, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.detail-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  width: min(1240px, 100%);
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 254, 248, 1)),
    var(--surface);
  box-shadow: -30px 0 80px rgba(18, 20, 18, 0.18);
  transform: translateX(24px);
  transition: transform 180ms ease;
  overflow-y: auto;
}

.detail-drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.close-button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 40px;
  padding: 0;
  background: rgba(255, 250, 242, 0.86);
}

.drawer-media {
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(216, 255, 79, 0.16), transparent 44%),
    #e5eadf;
}

.drawer-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(28px, 5vw, 64px);
}

.drawer-copy p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.detail-gallery {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: #e5eadf;
}

.gallery-main {
  min-height: 0;
  overflow: hidden;
}

.gallery-empty {
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 850;
  background:
    linear-gradient(135deg, rgba(216, 255, 79, 0.16), transparent 40%),
    #e5eadf;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  background: rgba(255, 254, 248, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}

.gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  padding: 0;
}

.gallery-thumb.is-active {
  border-color: var(--wine);
}

.gallery-thumb img {
  transition: transform 160ms ease;
}

.gallery-thumb:hover img {
  transform: scale(1.05);
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.detail-specs article {
  display: grid;
  gap: 6px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 248, 0.86);
  box-shadow: 0 10px 24px rgba(18, 20, 18, 0.05);
}

.detail-specs span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-specs strong {
  color: var(--ink);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.detail-section {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.detail-section h3 {
  margin: 0;
  font-size: 18px;
}

.detail-checklist {
  display: grid;
  gap: 9px;
}

.detail-checklist div {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(216, 223, 209, 0.72);
}

.detail-checklist div > span {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: inset 0 0 0 5px var(--ink);
}

.detail-checklist p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

dialog {
  width: min(680px, calc(100vw - 28px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(21, 21, 20, 0.44);
}

.dialog-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.dialog-heading .close-button {
  position: static;
  flex: 0 0 40px;
}

.contact-context {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(216, 255, 79, 0.16);
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 1380px) {
  .collection-section .section-title h2 {
    font-size: clamp(38px, 5vw, 58px);
  }
}

@media (max-width: 1080px) {
  .showroom-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lookbook-section {
    grid-template-columns: 1fr 1fr;
  }

  .lookbook-copy {
    grid-column: 1 / -1;
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .showroom-hero,
  .drawer-panel {
    grid-template-columns: 1fr;
  }

  .showroom-hero {
    min-height: auto;
  }

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

  .intro-strip,
  .materials-grid,
  .lookbook-section {
    grid-template-columns: 1fr;
  }

  .showroom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-section {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .collection-section .section-title,
  .collection-tools {
    justify-self: stretch;
  }

  .collection-section .section-title h2 {
    max-width: none;
  }

  .drawer-panel {
    overflow-y: auto;
  }

  .drawer-media {
    min-height: auto;
  }

  .detail-gallery {
    position: static;
    min-height: auto;
  }

  .gallery-main img {
    min-height: 420px;
  }

  .contact-band {
    display: grid;
    grid-template-columns: 1fr;
  }

  .collection-tools {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
  }

  .site-header .outline-button {
    display: none;
  }

  .hero-content {
    padding: 30px 18px;
  }

  .showroom-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    display: grid;
  }

  .collection-section,
  .materials-section {
    padding-inline: 14px;
  }

  .collection-tools,
  .filter-bar {
    padding: 10px;
  }

  .collection-section .section-title h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .detail-specs,
  .gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
