/* RE:FORMA - re-forma.store */

:root {
  --ink: #111;
  --body: #333;
  --muted: #8d8d8d;
  --line: #ecebe8;
  --tile: #f5f4f1;
  --paper: #fff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Libre Franklin', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --pad: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
}

img { max-width: 100%; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--muted); }

.wrap { max-width: 1440px; margin: 0 auto; padding: 0 var(--pad); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; font-size: 12px;
}
.skip-link:focus { left: 8px; top: 8px; color: #fff; }

/* ---------- header ---------- */

.site-header {
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
}

.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; padding-bottom: 24px;
}

.logo {
  font-family: var(--serif); font-size: 30px; letter-spacing: 0.04em;
  color: var(--ink); display: inline-flex; align-items: baseline; line-height: 1;
}
.logo:hover { color: var(--ink); }
.logo i { font-weight: 300; font-style: italic; }
.logo b { font-weight: 500; }
.logo .colon { font-weight: 500; margin: 0 2px; }

.nav { display: flex; gap: 34px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.nav a[aria-current="page"] { border-bottom: 1px solid var(--ink); padding-bottom: 2px; }

.nav-extra { display: none; }

.nav-toggle {
  display: none; align-items: center; gap: 12px; height: 40px; margin-right: -8px; padding: 0 8px;
  background: none; border: 0; cursor: pointer; color: var(--ink);
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle-icon { position: relative; width: 22px; height: 10px; display: block; }
.nav-toggle-icon span {
  position: absolute; left: 0; right: 0; height: 1px; background: var(--ink);
  transition: transform .3s ease, top .3s ease;
}
.nav-toggle-icon span:first-child { top: 0; }
.nav-toggle-icon span:last-child { top: 9px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:first-child { top: 5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:last-child { top: 5px; transform: rotate(-45deg); }

/* ---------- generic blocks ---------- */

.crumbs {
  display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); padding-top: 28px;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--ink); }
.crumbs .here { color: var(--ink); }

.sec-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  border-bottom: 1px solid var(--ink); padding-bottom: 10px; margin-bottom: 28px;
}
.sec-head h2 { font-family: var(--serif); font-size: 26px; color: var(--ink); }
.sec-head .count { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

.eyebrow { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

.link-ul {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--ink); align-self: flex-start;
  padding-bottom: 1px;
}
.link-ul:hover { color: var(--muted); border-color: var(--muted); }

/* ---------- home ---------- */

/* hero: zdjęcie zawsze w całości w oknie przeglądarki, mniejszy odstęp od menu */
.hero {
  display: grid; grid-template-columns: minmax(280px, 4fr) minmax(0, 7fr);
  gap: 56px; align-items: start; padding: 40px 0 56px;
}
.hero-text { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.hero-text h1 { font-family: var(--serif); font-size: 44px; line-height: 1.15; color: var(--ink); max-width: 20em; }
.hero-text p { font-size: 15px; line-height: 1.85; max-width: 36em; text-wrap: pretty; }
.hero-media {
  width: 420px; max-width: 100%; height: 420px; flex: none; background: var(--tile);
  display: flex; align-items: center; justify-content: center;
}
.hero-media img { max-height: 370px; max-width: 88%; object-fit: contain; }

.hero-photo { margin: 0; min-width: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.hero-photo img {
  display: block; width: auto; height: auto; max-width: 100%;
  /* wysokość okna − menu (~83 px) − odstęp nad zdjęciem − podpis */
  max-height: calc(100vh - 83px - 40px - 48px);
  max-height: calc(100svh - 83px - 40px - 48px);
}
.hero-photo figcaption { font-size: 11px; color: var(--muted); align-self: stretch; text-align: right; }

.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 72px; }
.tile { border: 1px solid var(--line); display: flex; flex-direction: column; }
.tile:hover { color: var(--ink); }
.tile:hover .link-ul { color: var(--muted); border-color: var(--muted); }
.tile-img { background: var(--tile); height: 320px; display: flex; align-items: center; justify-content: center; }
.tile-img img { width: auto; height: auto; max-height: 280px; max-width: 80%; object-fit: contain; }
.tile-img.is-wide img { max-height: 250px; max-width: 88%; }
.tile-body { padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.tile-body h2 { font-family: var(--serif); font-size: 34px; color: var(--ink); }
.tile-body p { font-size: 13px; line-height: 1.7; }
.tile-body .link-ul { margin-top: 6px; }

/* ---------- category intro ---------- */

.page-head {
  display: grid; grid-template-columns: minmax(280px, 4fr) minmax(0, 7fr);
  gap: 56px; align-items: start;
  padding: 40px 0 56px; border-bottom: 1px solid var(--line);
}
.page-head-text { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.page-head-text .crumbs { padding-top: 0; margin-bottom: 4px; }
.page-head-text h1 { font-family: var(--serif); font-size: 56px; line-height: 1.05; color: var(--ink); }
.page-head-text .meta { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); }
.page-head-text p.lead { font-size: 15px; line-height: 1.8; max-width: 34em; text-wrap: pretty; }
.page-head-media { margin: 0; min-width: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.page-head-media img {
  display: block; width: auto; height: auto; max-width: 100%;
  max-height: calc(100vh - 83px - 40px - 48px);
  max-height: calc(100svh - 83px - 40px - 48px);
}
.page-head-media figcaption { align-self: stretch; text-align: right; }
.page-head-media figcaption, .caption { font-size: 11px; color: var(--muted); }

.section { padding: 56px 0; }
.section + .section { border-top: 1px solid var(--line); }

/* ---------- product cards ---------- */

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px; }

.card { display: flex; flex-direction: column; gap: 14px; }
.card-img {
  background: var(--tile); height: 300px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.card-img img { max-height: 280px; max-width: 88%; object-fit: contain; }
.card-img .ref-no {
  position: absolute; top: 12px; left: 12px;
  font-size: 9px; letter-spacing: 0.18em; color: var(--muted);
}
.card-txt { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.card-txt h3 { font-family: var(--serif); font-size: 22px; color: var(--ink); }

.card-title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.card-title-row h3 { font-size: 20px; }
.card-title-row .ref { font-size: 10px; letter-spacing: 0.16em; color: var(--muted); }

.spec {
  display: grid; grid-template-columns: auto 1fr; gap: 4px 16px;
  margin: 0; font-size: 11px; line-height: 1.6;
}
.spec dt { color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.spec dd { margin: 0; }

.card-foot {
  margin-top: auto; display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; border-top: 1px solid var(--line); padding-top: 8px;
}
.card-foot .price { font-size: 14px; color: var(--ink); }
.card-foot .price-note { font-size: 12px; color: var(--muted); }

.dims, .note { display: none; }

.footnote { margin-top: 20px; font-size: 11px; color: var(--muted); }

/* ---------- USM model cards (smaller window) ---------- */

.card--model .card-img { height: 240px; }
.card--model .card-img img { max-height: 210px; }

/* ---------- alcove ---------- */

.alcove { display: flex; gap: 40px; align-items: flex-start; }
.alcove-img {
  flex: 1; background: var(--tile); height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.alcove-img img { max-height: 300px; max-width: 92%; object-fit: contain; }
.alcove-txt { width: 360px; max-width: 100%; flex: none; display: flex; flex-direction: column; gap: 16px; }
.alcove-txt h3 { font-family: var(--serif); font-size: 32px; line-height: 1.1; color: var(--ink); }
.alcove-txt .ref-no { font-size: 9px; letter-spacing: 0.18em; color: var(--muted); }
.alcove-txt .spec { gap: 5px 16px; }
.alcove-txt .card-foot { padding-top: 10px; }
.alcove-txt .card-foot .price { font-size: 16px; }

/* ---------- gallery ---------- */

.gal { position: relative; }
.gal-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  background: #fff; color: var(--ink); border: 0; cursor: pointer;
  font-size: 18px; line-height: 1; font-family: var(--sans);
  padding: 0; user-select: none;
}
.gal-nav:hover, .gal-nav:focus-visible { background: var(--ink); color: #fff; outline: none; }
.gal-nav.prev { left: 10px; }
.gal-nav.next { right: 10px; }
.gal-count {
  position: absolute; bottom: 10px; right: 12px;
  font-size: 9px; letter-spacing: 0.14em; color: var(--muted);
}

/* ---------- palette ---------- */

.palette { margin-top: 36px; border-top: 1px solid var(--line); padding-top: 22px; }
.palette > summary {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; list-style: none; padding-bottom: 6px;
}
.palette > summary::-webkit-details-marker { display: none; }
.palette > summary .label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.palette > summary .arrow { font-size: 14px; line-height: 1; color: var(--ink); }
.palette[open] > summary .arrow { transform: rotate(180deg); }
.swatches { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 40px; padding-top: 22px; }
.swatches li { display: flex; align-items: center; gap: 12px; font-size: 12px; }
.swatches i { width: 22px; height: 22px; flex: none; border: 1px solid var(--line); }

/* ---------- footer ---------- */

.site-footer { background: var(--ink); color: #fff; }
.site-footer .wrap {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 32px;
  padding-top: 48px; padding-bottom: 48px;
}
.site-footer .logo { font-size: 26px; color: #fff; }
.site-footer .logo:hover { color: #fff; }
.footer-cols { display: flex; gap: 48px; font-size: 11px; line-height: 1.9; color: var(--muted); }
.footer-cols a { color: var(--muted); }
.footer-cols a:hover { color: #fff; }

.footer-legal {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid #2a2a2a; padding-top: 18px; padding-bottom: 24px;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.site-footer .footer-legal { padding-top: 18px; padding-bottom: 24px; align-items: center; }
.footer-legal a { color: var(--muted); border-bottom: 1px solid #333; }
.footer-legal a:hover { color: #fff; }

/* ---------- polityka prywatności ---------- */

.legal { display: grid; grid-template-columns: minmax(220px, 4fr) minmax(0, 7fr); gap: 56px; padding: 40px 0 88px; }
.legal-head { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 124px; align-self: start; }
.legal-head .crumbs { padding-top: 0; }
.legal-head h1 { font-family: var(--serif); font-size: 52px; line-height: 1.05; color: var(--ink); }
.legal-head .meta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.legal-body { max-width: 44em; display: flex; flex-direction: column; gap: 40px; }
.legal-body section { display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--line); padding-top: 22px; }
.legal-body section:first-child { border-top-color: var(--ink); }
.legal-body h2 { font-family: var(--serif); font-size: 26px; line-height: 1.2; color: var(--ink); display: flex; gap: 14px; align-items: baseline; }
.legal-body h2 span { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; color: var(--muted); }
.legal-body p, .legal-body li { font-size: 14px; line-height: 1.85; text-wrap: pretty; }
.legal-body ul { display: flex; flex-direction: column; gap: 6px; }
.legal-body li { padding-left: 20px; position: relative; }
.legal-body li::before { content: "-"; position: absolute; left: 0; color: var(--muted); }
.legal-body a { border-bottom: 1px solid var(--line); }
.legal-body a:hover { color: var(--ink); border-color: var(--ink); }
.legal-contact { background: var(--tile); padding: 24px 28px; display: grid; grid-template-columns: 88px 1fr; gap: 8px 20px; margin: 4px 0 0; font-size: 14px; }
.legal-contact dt { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }
.legal-contact dd { margin: 0; color: var(--ink); }

@media (max-width: 1100px) {
  .legal { grid-template-columns: 1fr; gap: 32px; }
  .legal-head { position: static; }
}
@media (max-width: 900px) {
  .legal { padding: 18px 0 48px; gap: 24px; }
  .legal-head { gap: 14px; }
  .legal-head h1 { font-size: 36px; }
  .legal-body { gap: 28px; }
  .legal-body h2 { font-size: 22px; }
  .legal-body p, .legal-body li { font-size: 13.5px; line-height: 1.8; }
  .legal-contact { grid-template-columns: 1fr; gap: 2px; padding: 18px 20px; }
  .legal-contact dd + dt { margin-top: 10px; }
  .footer-legal { flex-direction: column; gap: 8px; }
}

/* ---------- 404 ---------- */

.notfound { padding: 120px 0; display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.notfound h1 { font-family: var(--serif); font-size: 48px; color: var(--ink); }

/* ================= tablet ================= */

@media (max-width: 1300px) {
  :root { --pad: 40px; }

  .hero { gap: 40px; padding: 32px 0 48px; grid-template-columns: minmax(260px, 4fr) minmax(0, 6fr); }
  .hero-media { width: 340px; height: 340px; }
  .hero-media img { max-height: 300px; }
  .hero-text h1 { font-size: 40px; }

  .page-head { gap: 40px; padding-top: 32px; grid-template-columns: minmax(260px, 4fr) minmax(0, 6fr); }
  .page-head-text h1 { font-size: 46px; }

  .alcove { gap: 28px; }
  .alcove-txt { width: 320px; }
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; gap: 28px; }
  .hero-media { width: 100%; max-width: 560px; height: 380px; align-self: center; }
  .hero-photo { align-items: flex-start; }
  .hero-photo figcaption { text-align: left; }
  .hero-photo img { max-height: none; width: 100%; }

  .page-head { grid-template-columns: 1fr; gap: 28px; }
  .page-head-media { align-items: flex-start; }
  .page-head-media figcaption { text-align: left; }
  .page-head-media img { width: 100%; max-height: none; }

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

  .alcove { flex-direction: column; }
  .alcove-img { width: 100%; }
  .alcove-txt { width: 100%; max-width: 660px; }

  .swatches { gap: 10px 28px; }
}

/* ================= mobile ================= */

@media (max-width: 900px) {
  :root { --pad: 20px; }

  body { font-size: 14px; }

  .site-header .wrap { padding-top: 10px; padding-bottom: 10px; min-height: 60px; }
  .logo { font-size: 24px; position: relative; z-index: 2; }

  .nav-toggle { display: inline-flex; position: relative; z-index: 2; }

  /* pełnoekranowe menu */
  .nav {
    position: fixed; left: 0; right: 0; top: 60px; bottom: 0; z-index: 1;
    height: calc(100vh - 60px); height: calc(100dvh - 60px);
    background: var(--paper); border-top: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 0;
    padding: 12px 20px calc(24px + env(safe-area-inset-bottom));
    font-family: var(--serif); font-size: 34px; letter-spacing: 0; text-transform: none; line-height: 1.1;
    overflow-y: auto; overscroll-behavior: contain;
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
  }
  .nav.is-open { visibility: visible; opacity: 1; transform: none; transition: opacity .25s ease, transform .25s ease; }
  .nav > a { padding: 18px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; }
  .nav > a::after { content: "\2192"; font-family: var(--sans); font-size: 16px; color: var(--muted); }
  .nav > a[aria-current="page"] { border-bottom: 1px solid var(--line); padding-bottom: 18px; font-style: italic; }
  .nav > a[aria-current="page"]::after { content: "\2022"; color: var(--ink); }

  .nav-extra {
    display: flex; flex-direction: column; gap: 6px; margin-top: auto; padding-top: 32px;
    font-family: var(--sans); font-size: 13px; line-height: 1.6; color: var(--muted);
  }
  .nav-extra .eyebrow { margin-bottom: 4px; }
  .nav-extra a { color: var(--ink); }

  body.nav-open { overflow: hidden; }

  .crumbs { padding-top: 16px; font-size: 9px; letter-spacing: 0.18em; gap: 8px; }
  .page-head-text .crumbs { padding-top: 0; margin-bottom: 0; }

  .hero { gap: 16px; padding: 16px 0 24px; border-bottom: 1px solid var(--line); }
  .hero-photo { order: -1; }
  .hero-text { gap: 16px; }
  .hero-text h1 { font-size: 32px; line-height: 1.1; }
  .hero-text p { font-size: 13.5px; line-height: 1.8; }
  .hero-media { width: 100%; height: 300px; order: -1; }
  .hero-media img { max-height: 260px; }

  .tiles { grid-template-columns: 1fr; gap: 16px; padding: 24px 0 40px; }
  .tile-img { height: 220px; }
  .tile-img img { max-height: 190px; }
  .tile-img.is-wide img { max-height: 170px; max-width: 92%; }
  .tile-body { padding: 18px; gap: 8px; }
  .tile-body h2 { font-size: 28px; }
  .tile-body p { font-size: 12px; }

  .page-head { gap: 20px; padding: 18px 0 28px; }
  .page-head-text { gap: 14px; }
  .page-head-text h1 { font-size: 36px; }
  .page-head-text .meta { font-size: 11px; letter-spacing: 0.16em; }
  .page-head-text p.lead { font-size: 14px; line-height: 1.75; }

  .section { padding: 32px 0; }

  .sec-head { margin-bottom: 20px; padding-bottom: 8px; flex-direction: column; align-items: flex-start; gap: 2px; }
  .sec-head h2 { font-size: 22px; }
  .sec-head .count { font-size: 9px; letter-spacing: 0.18em; }

  .grid3 { grid-template-columns: 1fr; gap: 20px; }

  .card-img { height: 260px; }
  .card-img img { max-height: 240px; }
  .card-txt h3, .card-title-row h3 { font-size: 20px; }

  /* compact list for the six USM configurations */
  .card--model { flex-direction: row; gap: 14px; align-items: flex-start; }
  .card--model .card-img { width: 96px; height: 96px; flex: none; }
  .card--model .card-img img { max-height: 84px; max-width: 88%; }
  .card--model .card-txt { gap: 4px; }
  .card--model .card-title-row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .card--model .card-title-row .ref { display: none; }
  .card--model .card-title-row h3 { font-size: 18px; }
  .card--model .spec { display: none; }
  .card--model .dims { display: block; font-size: 11px; color: var(--body); }
  .card--model .note { display: block; font-size: 11px; color: var(--muted); }
  .card--model .card-foot { border-top: 0; padding-top: 2px; margin-top: 2px; }
  .card--model .card-foot .price-note { display: none; }

  .alcove { flex-direction: column; gap: 14px; }
  .alcove-img { width: 100%; height: 220px; }
  .alcove-img img { max-height: 190px; }
  .alcove-txt { width: 100%; gap: 12px; }
  .alcove-txt h3 { font-size: 20px; }

  .gal-nav { width: 36px; height: 36px; }

  .palette { margin-top: 20px; padding-top: 18px; }
  .palette > summary .label { font-size: 9px; }
  .swatches { grid-template-columns: 1fr 1fr; gap: 8px 14px; padding-top: 16px; }
  .swatches li { gap: 8px; font-size: 10px; }
  .swatches i { width: 16px; height: 16px; }

  .site-footer .wrap {
    flex-direction: column; align-items: flex-start; gap: 12px;
    padding-top: 24px; padding-bottom: 24px;
  }
  .site-footer .logo { font-size: 22px; }
  .footer-cols { flex-direction: column; gap: 0; }

  .notfound { padding: 60px 0; }
  .notfound h1 { font-size: 34px; }
}

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

@media print {
  .site-header { position: static; }
  .nav-toggle, .gal-nav { display: none; }
}

/* ================= showroom ================= */


.showroom-facts {
  display: grid; grid-template-columns: 88px 1fr; gap: 10px 20px; margin: 4px 0 0;
  border-top: 1px solid var(--ink); padding-top: 18px; font-size: 13px; line-height: 1.6;
}
.showroom-facts dt { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }
.showroom-facts dd { margin: 0; color: var(--ink); }

.showroom-cta { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: 6px; }
.btn {
  display: inline-block; background: var(--ink); color: #fff;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 15px 26px; border: 1px solid var(--ink);
}
.btn:hover { background: transparent; color: var(--ink); }

.showroom-map { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.showroom-map { width: 100%; align-items: stretch; }
.map-frame {
  position: relative; width: 100%; background: var(--tile); overflow: hidden;
  height: calc(100vh - 83px - 40px - 48px);
  height: calc(100svh - 83px - 40px - 48px);
  min-height: 420px; max-height: 760px;
}
.map-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  filter: grayscale(1) contrast(1.05) brightness(1.02);
  transition: filter .5s ease;
}
.map-frame:hover iframe, .map-frame:focus-within iframe { filter: none; }
.showroom-map figcaption { text-align: left; }
.showroom-map figcaption { font-size: 11px; color: var(--muted); }
.showroom-map figcaption a { color: var(--muted); border-bottom: 1px solid var(--line); }
.showroom-map figcaption a:hover { color: var(--ink); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 0; padding: 0; list-style: none; }
.steps li { display: flex; flex-direction: column; gap: 10px; }
.step-no { font-family: var(--serif); font-size: 44px; line-height: 1; color: var(--muted); font-weight: 300; }
.steps h3 { font-family: var(--serif); font-size: 24px; color: var(--ink); }
.steps p { font-size: 13px; line-height: 1.75; max-width: 30em; }

.showroom-links { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 72px; }
.showroom-link {
  background: var(--tile); padding: 32px; display: flex; flex-direction: column; gap: 10px;
  transition: background .3s ease;
}
.showroom-link:hover { background: var(--line); color: var(--ink); }
.showroom-link-title { font-family: var(--serif); font-size: 38px; line-height: 1.1; color: var(--ink); }

@media (max-width: 1100px) {
  .map-frame { height: auto; min-height: 0; max-height: none; aspect-ratio: 16 / 11; }
  .steps { gap: 20px; }
}

@media (max-width: 900px) {
  .showroom-facts { grid-template-columns: 76px 1fr; font-size: 13px; }
  .map-frame { aspect-ratio: 1 / 1; }
  .map-frame iframe { filter: none; }
  .steps { grid-template-columns: 1fr; gap: 22px; }
  .step-no { font-size: 34px; }
  .steps h3 { font-size: 22px; }
  .showroom-links { grid-template-columns: 1fr; gap: 16px; padding: 20px 0 32px; }
  .showroom-link { padding: 22px; }
  .showroom-link-title { font-size: 30px; }
}
