/* ============================================================================
   THE BIG MAN — mobile.css

   The phone house. Not the desktop site reflowed: a different document with a
   different shape. App shell — fixed top bar, fixed bottom tab bar, one
   scrolling column between them, and full-screen sheets instead of drawers.

   Everything expensive on desktop is absent here: no grain plate, no custom
   cursor, no full-bleed woven canvases, no preloader. What is left is
   photography, type and one thumb.
   ========================================================================== */

:root {
  --ink:        #08080A;
  --ink-2:      #0E0E11;
  --ink-3:      #16161A;
  --ink-4:      #1F1F24;

  --bone:       #EFE9DE;
  --bone-2:     #D5CCBC;
  --bone-3:     #A79C89;

  --brass:      #BCB196;
  --brass-lt:   #DFD6C0;
  --olive:      #646B4C;
  --olive-dk:   #454B33;
  --stone:      #CCC0AA;

  --f-display: "Cormorant Garamond", Georgia, serif;
  --f-ui:      "Jost", "Helvetica Neue", Arial, sans-serif;

  --gut:  1.15rem;
  --bar:  3.5rem;                                   /* top bar height        */
  --tabs: 4rem;                                     /* bottom tab bar height */
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);

  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.30, 1);

  --rule: 1px solid rgba(188, 177, 150, 0.14);
  --rule-soft: 1px solid rgba(239, 233, 222, 0.07);

  --radius: 14px;
}

/* ============================== reset =================================== */

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

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

body, h1, h2, h3, h4, h5, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0; padding: 0;
}
ul, ol { list-style: none; }
img, svg, canvas { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; background: none; border: none; }
button { cursor: pointer; -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-ui);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--bar) + var(--safe-t));
  padding-bottom: calc(var(--tabs) + var(--safe-b));
  min-height: 100svh;
}
body.is-locked { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.015em;
}

.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;
}
:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

.wrap { padding-inline: var(--gut); }
.muted { color: var(--bone-3); }

.eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-weight: 400;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; flex: none;
  background: linear-gradient(90deg, transparent, var(--brass));
}

/* ============================== top bar ================================= */

.appbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: calc(var(--bar) + var(--safe-t));
  padding: var(--safe-t) var(--gut) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: rgba(8, 8, 10, 0.86);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.appbar.is-stuck { border-bottom-color: rgba(188, 177, 150, 0.16); }

.appbar__brand { display: flex; align-items: center; gap: 0.55rem; }
.appbar__brand img { width: 30px; height: 30px; }
.appbar__brand b {
  font-family: var(--f-display);
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.appbar__acts { display: flex; align-items: center; gap: 0.15rem; }
.iconbtn {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  color: var(--bone-2);
  border-radius: 50%;
  transition: color 0.25s, background 0.25s;
}
.iconbtn svg { width: 19px; height: 19px; }
.iconbtn:active { background: rgba(188, 177, 150, 0.12); color: var(--brass-lt); }

/* ============================ bottom tabs =============================== */

.tabs {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  height: calc(var(--tabs) + var(--safe-b));
  padding-bottom: var(--safe-b);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(10, 10, 12, 0.94);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-top: 1px solid rgba(188, 177, 150, 0.16);
}
.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  color: var(--bone-3);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s;
}
.tab svg { width: 19px; height: 19px; stroke-width: 1.15; }
.tab.is-active { color: var(--brass-lt); }
.tab.is-active::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 22px; height: 2px;
  transform: translateX(-50%);
  background: var(--brass);
}
.tab:active { color: var(--bone); }

/* ============================== hero ==================================== */

.mhero {
  position: relative;
  min-height: calc(100svh - var(--bar) - var(--tabs) - var(--safe-t) - var(--safe-b));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem var(--gut) 1.5rem;
  overflow: hidden;
}
.mhero__bg { position: absolute; inset: 0; z-index: 0; }
.mhero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.mhero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,10,0.9) 0%, rgba(8,8,10,0.34) 26%, rgba(8,8,10,0.72) 56%, rgba(8,8,10,0.97) 84%);
}
.mhero > *:not(.mhero__bg) { position: relative; z-index: 1; }

.mhero .eyebrow { letter-spacing: 0.2em; font-size: 0.54rem; white-space: nowrap; }

.mhero h1 {
  font-size: clamp(2.3rem, 12.4vw, 3.4rem);
  line-height: 0.94;
  margin: 0.7rem 0 0.75rem;
}
.mhero h1 em {
  font-style: italic;
  color: var(--brass-lt);
  display: block;
}
.mhero p {
  color: var(--bone-2);
  font-weight: 200;
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 32ch;
}

.mhero__acts { display: flex; gap: 0.5rem; margin-top: 1.15rem; }
.mhero__acts .btn { flex: 1 1 0; padding-inline: 0.6rem; font-size: 0.62rem; letter-spacing: 0.15em; }

.mstats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: var(--rule-soft);
}
.mstats b {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 300;
  display: block;
  line-height: 1;
  color: var(--brass-lt);
}
.mstats span {
  font-size: 0.53rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--bone-3);
  display: block;
  margin-top: 0.3rem;
  line-height: 1.35;
}

/* ============================== buttons ================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0 1.15rem;
  border: 1px solid var(--brass);
  color: var(--brass-lt);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: transform 0.18s var(--ease), background 0.25s, color 0.25s;
}
.btn:active { transform: scale(0.97); }
.btn--solid { background: var(--brass); color: var(--ink); border-color: var(--brass); font-weight: 400; }
.btn--wa { background: var(--olive); border-color: var(--olive); color: var(--bone); }
.btn--block { width: 100%; }
.btn svg { width: 15px; height: 15px; flex: none; }

/* ============================== sections ================================ */

.msec { padding: 2.6rem 0; }
.msec--tight { padding: 1.9rem 0; }
.msec__head { padding-inline: var(--gut); margin-bottom: 1.15rem; }
.msec__head h2 {
  font-size: 1.85rem;
  margin-top: 0.65rem;
  max-width: 15ch;
}
.msec__head p { color: var(--bone-3); font-size: 0.86rem; margin-top: 0.5rem; }

.msec__more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  color: var(--brass);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ====================== category tiles (circular rail) ================== */

.catrail {
  display: flex;
  gap: 0.95rem;
  overflow-x: auto;
  padding: 0.35rem var(--gut) 0.6rem;
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--gut);
  scrollbar-width: none;
}
.catrail::-webkit-scrollbar { display: none; }

.cattile {
  flex: none;
  width: 72px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.cattile__disc {
  width: 66px; height: 66px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(188, 177, 150, 0.28);
  background: var(--ink-3);
}
.cattile__disc .swatch, .cattile__disc canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.cattile__disc img { width: 100%; height: 100%; object-fit: cover; }
/* The labels run from "Suits" to "Evening Dress", so the row is given a fixed
   two-line slot and the counts stay on one baseline. */
.cattile span {
  font-size: 0.55rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--bone-2);
  line-height: 1.25;
  min-height: 2.5em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.cattile b {
  font-size: 0.55rem;
  color: var(--bone-3);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-top: -0.35rem;
}

/* ============================ card rails ================================ */

/* scroll-padding is load-bearing: without it the snap engine parks the first
   card against the container edge and eats the gutter. */
.rail {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding: 0.2rem var(--gut) 0.5rem;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gut);
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; flex: none; }

/* ============================== card ==================================== */

.mcard {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--ink-2);
  border: var(--rule-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s var(--ease);
}
.mcard:active { transform: scale(0.982); }
.mcard--rail { width: 63vw; max-width: 260px; }

/* Every part of the card is a <span> inside a <button>; aspect-ratio and the
   line clamp both need a block box to bite on. */
.mcard__media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink-3);
  overflow: hidden;
}
.mcard__media img { width: 100%; height: 100%; object-fit: cover; }
.mcard__media .card__render, .mcard__media .swatch { position: absolute; inset: 0; }
.mcard__no {
  position: absolute;
  top: 0.55rem; left: 0.55rem;
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  padding: 0.24rem 0.45rem;
  background: rgba(8, 8, 10, 0.62);
  backdrop-filter: blur(6px);
  color: var(--brass);
  border-radius: 2px;
}
.mcard__body { display: block; padding: 0.75rem 0.8rem 0.9rem; }
.mcard__cat {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}
.mcard__name {
  font-family: var(--f-display);
  font-size: 1.06rem;
  line-height: 1.15;
  margin: 0.3rem 0 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Two columns of ~170 px: the cloth name gets whatever the lead time does not,
   and truncates rather than wrapping the row onto a second line. */
.mcard__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.45rem;
  font-size: 0.6rem;
  color: var(--bone-3);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.mcard__meta b {
  color: var(--bone-2);
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.mcard__meta > span { flex: none; }

/* ============================ book grid ================================= */

.mgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding-inline: var(--gut);
  align-items: stretch;
}
/* A one-line name next to a two-line one must not shorten its card. */
.mgrid > .mcard { display: flex; flex-direction: column; }
.mgrid > .mcard .mcard__body { flex: 1 1 auto; display: flex; flex-direction: column; }
.mgrid > .mcard .mcard__meta { margin-top: auto; padding-top: 0.35rem; }
.mgroup__head {
  padding: 1.7rem var(--gut) 0.9rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.mgroup__head em {
  font-family: var(--f-display);
  font-style: normal;
  color: var(--brass);
  font-size: 0.85rem;
}
.mgroup__head h2 { font-size: 1.45rem; }
.mgroup__head span { margin-left: auto; font-size: 0.6rem; color: var(--bone-3); letter-spacing: 0.12em; }

/* ============================== filters ================================= */

.filterbar {
  position: sticky;
  top: calc(var(--bar) + var(--safe-t));
  z-index: 40;
  background: rgba(8, 8, 10, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: var(--rule-soft);
  padding-top: 0.6rem;
}
.msearch {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 var(--gut) 0.6rem;
  padding: 0 0.8rem;
  height: 42px;
  border: var(--rule);
  border-radius: 999px;
  background: var(--ink-2);
  color: var(--bone-3);
}
.msearch svg { width: 15px; height: 15px; flex: none; }
.msearch input {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--bone);
  font-size: 0.86rem;
}
.msearch input::placeholder { color: var(--bone-3); }
.msearch input::-webkit-search-cancel-button { -webkit-appearance: none; }

.chips {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0 var(--gut) 0.65rem;
  scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none;
  padding: 0.42rem 0.85rem;
  border: 1px solid rgba(188, 177, 150, 0.24);
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--bone-3);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.chip sup { font-size: 0.52rem; opacity: 0.7; margin-left: 0.28rem; }
.chip[aria-pressed="true"] {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
}
.mcount {
  padding: 0 var(--gut) 0.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--bone-3);
  text-transform: uppercase;
}
.mcount b { color: var(--brass-lt); font-weight: 400; }

.mempty { padding: 3.5rem var(--gut); text-align: center; }
.mempty h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.mempty p { color: var(--bone-3); font-size: 0.86rem; }

/* ============================== tenets ================================== */

.tenet {
  border-top: var(--rule-soft);
  padding: 1.05rem var(--gut);
}
.tenet__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
  color: var(--bone);
}
.tenet__q em {
  font-family: var(--f-display);
  font-style: normal;
  color: var(--brass);
  font-size: 0.82rem;
  flex: none;
}
.tenet__q h3 { font-size: 1.12rem; flex: 1 1 auto; }
.tenet__q i {
  flex: none;
  width: 11px; height: 11px;
  border-right: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s var(--ease);
}
.tenet.is-open .tenet__q i { transform: rotate(-135deg) translate(-3px, -3px); }
.tenet__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.36s var(--ease);
}
.tenet.is-open .tenet__a { grid-template-rows: 1fr; }
.tenet__a > div { overflow: hidden; }
.tenet__a p {
  color: var(--bone-3);
  font-size: 0.86rem;
  padding-top: 0.7rem;
  padding-left: calc(0.82rem + 0.8rem);
}

/* ============================== mills =================================== */

.mill {
  width: 76vw;
  max-width: 300px;
  border: var(--rule-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
}
.mill__cloth { height: 96px; position: relative; overflow: hidden; background: var(--ink-3); }
.mill__cloth .swatch, .mill__cloth canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.mill__body { padding: 0.85rem 0.9rem 1rem; }
.mill__seat { font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brass); }
.mill__name { font-size: 1.2rem; margin: 0.3rem 0 0.45rem; }
.mill__note { font-size: 0.8rem; color: var(--bone-3); line-height: 1.55; }
.mill__bunches {
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  color: var(--bone-2);
  margin-top: 0.7rem;
  padding-top: 0.6rem;
  border-top: var(--rule-soft);
}

/* ============================== steps =================================== */

.steps { padding-inline: var(--gut); }
.step {
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: 0.85rem;
  padding: 1rem 0;
  border-top: var(--rule-soft);
  position: relative;
}
.step__n {
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--brass);
  line-height: 1.3;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.28rem; }
.step p { font-size: 0.83rem; color: var(--bone-3); }
.step__t {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.53rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-2);
  border: var(--rule-soft);
  padding: 0.18rem 0.5rem;
  border-radius: 2px;
}

/* ============================== quote =================================== */

.mquote {
  padding: 2.8rem var(--gut);
  text-align: center;
  border-block: var(--rule-soft);
  background: linear-gradient(180deg, rgba(22,22,26,0.55), rgba(8,8,10,0));
}
.mquote blockquote { font-family: var(--f-display); font-size: 1.62rem; line-height: 1.22; }
.mquote blockquote em { font-style: italic; color: var(--brass-lt); }
.mquote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}

/* =============================== faq ==================================== */

.mfaq { border-top: var(--rule-soft); }
.mfaq__item { border-bottom: var(--rule-soft); padding-inline: var(--gut); }
.mfaq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-block: 0.95rem;
  font-family: var(--f-display);
  font-size: 1.05rem;
  line-height: 1.2;
}
.mfaq__item summary::-webkit-details-marker { display: none; }
.mfaq__item summary::after {
  content: "";
  margin-left: auto;
  flex: none;
  width: 9px; height: 9px;
  border-right: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s var(--ease);
}
.mfaq__item[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.mfaq__item p {
  font-size: 0.83rem;
  color: var(--bone-3);
  line-height: 1.7;
  padding-bottom: 0.95rem;
}
.mfaq__item p a { color: var(--bone-2); border-bottom: 1px solid rgba(188,177,150,0.3); }

.mfaq__also {
  padding: 1.4rem var(--gut) 0;
  font-size: 0.76rem;
  line-height: 1.85;
  color: var(--bone-3);
}
.mfaq__also b { color: var(--brass); font-weight: 400; }

/* ============================== studio ================================== */

.studio { padding-inline: var(--gut); }
.studio__card {
  border: var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(22,22,26,0.85), rgba(8,8,10,0.4));
}
.studio__row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border-bottom: var(--rule-soft);
}
.studio__row:last-child { border-bottom: 0; }
.studio__row svg { width: 17px; height: 17px; color: var(--brass); flex: none; }
.studio__row span {
  font-size: 0.53rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-3);
  display: block;
}
.studio__row b { font-weight: 300; font-size: 0.9rem; color: var(--bone); display: block; line-height: 1.5; }
.studio__row i { margin-left: auto; color: var(--brass); font-style: normal; font-size: 0.7rem; }

.studio__acts { display: grid; gap: 0.55rem; margin-top: 1rem; }

/* ============================== form ==================================== */

.mform { display: grid; gap: 0.75rem; padding-inline: var(--gut); }
.mfield { position: relative; }
.mfield label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.4rem;
}
.mfield input, .mfield select, .mfield textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.6rem 0.85rem;
  background: var(--ink-2);
  border: var(--rule-soft);
  border-radius: 8px;
  color: var(--bone);
  font-size: 0.92rem;
}
.mfield textarea { min-height: 88px; resize: vertical; }
.mfield select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%),
                    linear-gradient(135deg, var(--brass) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.mfield input:focus, .mfield select:focus, .mfield textarea:focus {
  outline: none;
  border-color: rgba(188, 177, 150, 0.5);
}
.mform__two { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.mform__note { font-size: 0.7rem; color: var(--bone-3); text-align: center; }

/* ============================== sheet =================================== */

.sheet {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
  pointer-events: none;
}
.sheet.is-open { visibility: visible; pointer-events: auto; }

.sheet__scrim {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 6, 0.7);
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}
.sheet.is-open .sheet__scrim { opacity: 1; }

.sheet__panel {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 94svh;
  background: var(--ink);
  border-radius: 18px 18px 0 0;
  border-top: 1px solid rgba(188, 177, 150, 0.2);
  transform: translateY(100%);
  transition: transform 0.42s var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sheet.is-open .sheet__panel { transform: none; }

.sheet__grab {
  height: 26px;
  display: grid;
  place-items: center;
  flex: none;
  touch-action: none;
}
.sheet__grab::before {
  content: "";
  width: 38px; height: 4px;
  border-radius: 99px;
  background: rgba(188, 177, 150, 0.34);
}
.sheet__close {
  position: absolute;
  top: 30px; right: 12px;
  z-index: 3;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(8, 8, 10, 0.66);
  border: 1px solid rgba(188, 177, 150, 0.3);
  backdrop-filter: blur(8px);
  color: var(--bone);
}
.sheet__close svg { width: 13px; height: 13px; }
.sheet__body {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5.6rem;
}
.sheet__foot {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.7rem var(--gut) calc(0.7rem + var(--safe-b));
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(14px);
  border-top: var(--rule-soft);
  display: flex;
  gap: 0.55rem;
}
.sheet__foot .btn { flex: 1 1 auto; }
.sheet__foot .btn--icon { flex: 0 0 52px; padding: 0; }

/* --- gallery inside the sheet ------------------------------------------- */

.mgal { position: relative; background: var(--ink-3); }
.mgal__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.mgal__track::-webkit-scrollbar { display: none; }
.mgal__slide {
  flex: none;
  width: 100%;
  scroll-snap-align: center;
  aspect-ratio: 4 / 5;
}
.mgal__slide img { width: 100%; height: 100%; object-fit: cover; }
.mgal__dots {
  position: absolute;
  bottom: 0.7rem; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 0.32rem;
}
.mgal__dots i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(239, 233, 222, 0.32);
  transition: background 0.25s, width 0.25s;
}
.mgal__dots i.on { background: var(--brass-lt); width: 16px; border-radius: 99px; }
.mgal__cap {
  position: absolute;
  left: 0; right: 0; bottom: 1.6rem;
  padding-inline: var(--gut);
  pointer-events: none;
}
.mgal__cap p:first-child {
  font-size: 0.53rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.sheet__note {
  padding: 0.8rem var(--gut) 0;
  font-size: 0.8rem;
  color: var(--bone-3);
  line-height: 1.6;
}

.sheet__head { padding: 1.1rem var(--gut) 0; }
.sheet__head h2 { font-size: 1.72rem; margin: 0.4rem 0 0.3rem; }
.sheet__head > p { font-size: 0.74rem; color: var(--bone-3); letter-spacing: 0.05em; }

.specs {
  margin: 1.2rem var(--gut) 0;
  border: var(--rule-soft);
  border-radius: 10px;
  overflow: hidden;
}
.specs div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 0.85rem;
  border-bottom: var(--rule-soft);
  font-size: 0.78rem;
}
.specs div:last-child { border-bottom: 0; }
.specs dt { color: var(--bone-3); font-size: 0.55rem; letter-spacing: 0.16em; text-transform: uppercase; }
.specs dd { text-align: right; color: var(--bone-2); }

.sheet__block { padding: 1.5rem var(--gut) 0; }
.sheet__block h3 {
  font-family: var(--f-ui);
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.sheet__list li {
  display: flex;
  gap: 0.6rem;
  padding: 0.45rem 0;
  border-bottom: var(--rule-soft);
  font-size: 0.83rem;
  color: var(--bone-2);
}
.sheet__list li span { color: var(--brass); flex: none; }
.sheet__prose { font-size: 0.86rem; color: var(--bone-2); line-height: 1.66; }

/* ============================== toast =================================== */

.mtoast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--tabs) + var(--safe-b) + 0.9rem);
  z-index: 120;
  transform: translate(-50%, 130%);
  background: var(--brass);
  color: var(--ink);
  padding: 0.62rem 1.1rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  max-width: calc(100vw - 2rem);
  text-align: center;
  transition: transform 0.4s var(--ease-out);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.mtoast.on { transform: translate(-50%, 0); }

/* ============================== footer ================================== */

.mfoot {
  border-top: var(--rule-soft);
  padding: 2rem var(--gut) 2.4rem;
  text-align: center;
}
.mfoot img { width: 52px; height: 52px; margin: 0 auto 0.9rem; }
.mfoot address {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--bone-3);
  line-height: 1.7;
}
.mfoot__links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 1.2rem 0;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.mfoot__fine { font-size: 0.6rem; color: var(--bone-3); letter-spacing: 0.08em; margin-top: 1rem; }
.mfoot__switch {
  margin-top: 1.1rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  border-bottom: 1px solid rgba(188, 177, 150, 0.34);
  padding-bottom: 3px;
}

/* ============================== motion ================================== */

.up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.up.in { opacity: 1; transform: none; }

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

/* A wide phone in landscape, or a small tablet that asked for this site. */
@media (min-width: 620px) {
  .mgrid { grid-template-columns: repeat(3, 1fr); }
  .mhero h1 { font-size: 3.6rem; }
  .sheet__panel { max-width: 560px; left: 50%; transform: translate(-50%, 100%); border-radius: 18px 18px 0 0; }
  .sheet.is-open .sheet__panel { transform: translate(-50%, 0); }
}
