/* Matt Royal — clean, bright, Scandinavian */
:root {
  --bg: #f3f3f1;
  --paper: #fbfbfa;
  --stone: #e8e8e5;
  --ink: #151515;
  --ink-2: #45443f;
  --muted: #6b6a65;
  --line: #dcdcd8;
  --brand: #3e2723;
  --r: 4px;
  --pad: clamp(20px, 5vw, 72px);
  --max: 1440px;
  --font: 'Commissioner', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, video, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 300; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: 1.2rem; font-weight: 400; letter-spacing: -0.01em; }
p { margin: 0; }
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding-top: clamp(80px, 11vw, 160px); }
.section--tight { padding-top: 40px; }
.eyebrow { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 1.1rem; }
.display { font-size: clamp(2.4rem, 5.6vw, 5rem); font-weight: 300; letter-spacing: -0.035em; line-height: 1.02; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--ink-2); max-width: 46ch; font-weight: 300; }
.muted { color: var(--muted); }
.fine { font-size: .78rem; color: var(--muted); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; height: 50px; padding: 0 28px; background: var(--ink); color: #fff; border-radius: var(--r); font-size: .88rem; font-weight: 500; letter-spacing: .02em; transition: background .3s, color .3s, border-color .3s; border: 1px solid var(--ink); }
.btn:hover { background: var(--brand); border-color: var(--brand); }
.btn:active, .chips button:active, .pill:active, .tabs button:active, .round:active { transform: scale(.98); }
h1, h2, h3 { text-wrap: balance; } p { text-wrap: pretty; }
.btn--line { background: transparent; color: var(--ink); }
.btn--line:hover { background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; }
.btn--light:hover { background: transparent; color: #fff; border-color: #fff; }
.link { font-size: .88rem; font-weight: 500; border-bottom: 1px solid currentColor; padding-bottom: 2px; }

.rv { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------------------------------------------------------------- nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(247, 245, 241, .92); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid var(--line); transition: background .4s, border-color .4s, color .4s; }
.nav--over { position: fixed; left: 0; right: 0; background: transparent; border-color: transparent; color: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
.nav--over.is-solid { background: rgba(247, 245, 241, .92); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-color: var(--line); color: var(--ink); }
.nav__in { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav__logo .logo { width: 150px; height: auto; color: var(--brand); transition: color .4s; }
.nav--over:not(.is-solid) .nav__logo .logo { color: #fff; }
.nav__links { display: flex; gap: 2rem; font-size: .86rem; }
.nav__links a { position: relative; padding: 4px 0; }
.nav__links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 1.2rem; }
.lang { display: flex; align-items: center; gap: .35rem; font-size: .78rem; letter-spacing: .06em; }
.lang span { opacity: .4; }
.lang button { opacity: .5; padding: 6px 2px; }
.lang button[aria-pressed="true"] { opacity: 1; font-weight: 600; }
.nav__burger { display: none; width: 40px; height: 40px; position: relative; }
.nav__burger span { position: absolute; left: 9px; right: 9px; height: 1.5px; background: currentColor; transition: transform .3s; }
.nav__burger span:first-child { top: 16px; } .nav__burger span:last-child { top: 23px; }
.menu-open .nav__burger span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .nav__burger span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
@media (max-width: 980px) {
  .nav__burger { display: block; }
  .nav__links { position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: var(--bg); color: var(--ink); flex-direction: column; gap: 0; padding: 12px var(--pad); font-size: 1.6rem; font-weight: 300; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .menu-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .menu-open .nav--over { background: var(--bg); color: var(--ink); }
  .menu-open .nav--over .nav__logo .logo { color: var(--brand); }
  .nav__logo .logo { width: 124px; }
}

/* ---------------------------------------------------------------- hero */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; background: #d9d3cb; overflow: hidden; }
.hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 62%, rgba(0,0,0,.35) 100%); pointer-events: none; }
.hero__cta { position: absolute; left: 0; right: 0; bottom: 12%; display: flex; justify-content: center; }
.hero__pause { position: absolute; right: var(--pad); bottom: 32px; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; }
.hero__pause span { position: absolute; inset: 0; margin: auto; width: 10px; height: 12px; border-left: 3px solid #fff; border-right: 3px solid #fff; }
.hero__pause.paused span { width: 0; height: 0; border: 0; border-left: 11px solid #fff; border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 15px; margin-top: 12px; }

/* ---------------------------------------------------------------- intro */
.intro { padding-top: clamp(90px, 11vw, 160px); display: grid; grid-template-columns: 6fr 5fr; gap: clamp(32px, 6vw, 110px); align-items: end; }
.intro .display { margin-bottom: 1.6rem; max-width: 14ch; }
.intro__img { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; background: var(--stone); transform: translateY(12%); }
.intro__img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .intro { grid-template-columns: 1fr; } .intro__img { transform: none; aspect-ratio: 4 / 3; } }

.head { margin-bottom: 2.8rem; max-width: 22ch; }
.head--row { max-width: none; }
.head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; }

/* ---------------------------------------------------------------- collections bento */
.bento { display: grid; grid-template-columns: 5fr 4fr 3fr; grid-template-rows: 300px 300px; gap: 12px; }
.bento__cell { position: relative; overflow: hidden; background: var(--stone); color: #fff; isolation: isolate; }
.bento__cell--0 { grid-row: span 2; }
.bento__cell--1 { grid-column: span 2; }
.bento__cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; transition: transform 1.4s var(--ease); }
.bento__cell::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(20,20,20,.55), rgba(20,20,20,0) 55%); }
.bento__cell:hover img { transform: scale(1.04); }
.bento__txt { position: absolute; left: 24px; right: 24px; bottom: 22px; }
.bento__txt h3 { font-size: clamp(1.5rem, 2.4vw, 2.2rem); font-weight: 300; }
.bento__txt p { opacity: .88; font-size: .92rem; margin-top: .2rem; }
.bento__txt span { display: inline-block; margin-top: .7rem; font-size: .8rem; border-bottom: 1px solid rgba(255,255,255,.6); }
.bento__cell--1 { transition-delay: .06s; } .bento__cell--2 { transition-delay: .12s; } .bento__cell--3 { transition-delay: .18s; }
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 220px 220px; }
  .bento__cell--0 { grid-row: auto; grid-column: span 2; }
  .bento__cell--1 { grid-column: span 2; }
}

/* ---------------------------------------------------------------- 3D inside */
.inside { position: relative; height: 380vh; margin-top: clamp(80px, 11vw, 160px); }
.inside__sticky { position: sticky; top: 0; height: 100vh; height: 100dvh; max-width: var(--max); margin: 0 auto; padding: 96px var(--pad) 40px; display: grid; grid-template-columns: minmax(280px, 4fr) 8fr; gap: 2rem; align-items: center; overflow: hidden; }
.inside__copy h2 { margin-bottom: .8rem; }
.inside__hint { font-size: .9rem; margin-bottom: 1.6rem; transition: opacity .4s; }
.inside.open .inside__hint { opacity: 0; }
.inside__stage { position: relative; height: 100%; min-height: 0; }
.inside__stage canvas { width: 100%; height: 100%; display: block; }
.inside .btn { margin-top: 1.8rem; }
.layers { list-style: none; margin: 0; padding: 0; counter-reset: l; border-top: 1px solid var(--line); }
.layers li { display: flex; gap: .9rem; padding: .6rem 0; border-bottom: 1px solid var(--line); font-size: .9rem; color: var(--ink-2); transition: color .3s, padding .3s; }
.layers li span { color: var(--muted); font-variant-numeric: tabular-nums; font-size: .78rem; padding-top: .15rem; }
.inside.open .layers li { color: #b7b1aa; }
.inside .layers li.on, .layers li.on { color: var(--ink); padding-left: .5rem; }
.inside .layers li.on span { color: var(--brand); }
.no3d { height: auto; } .no3d .inside__sticky { position: static; height: auto; } .no3d .inside__stage { display: none; }
@media (max-width: 900px) {
  .inside { height: 340vh; }
  .inside__sticky { grid-template-columns: 1fr; grid-template-rows: auto 1fr; padding-top: 88px; gap: .5rem; align-items: start; }
  .inside__copy h2 { font-size: 1.7rem; }
  .inside .layers, .inside .btn, .inside__hint { display: none; }
  .inside.open .layers { display: block; border: 0; }
  .inside.open .layers li { display: none; border: 0; }
  .inside.open .layers li.on { display: flex; padding-left: 0; font-size: 1.05rem; }
}

/* ---------------------------------------------------------------- cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 40px 16px; }
.card { display: flex; flex-direction: column; }
.card__img { aspect-ratio: 4 / 3; background: #fff; overflow: hidden; display: grid; place-items: center; }
.card__img img { width: 100%; height: 100%; object-fit: contain; padding: 6%; transition: transform .9s var(--ease); mix-blend-mode: multiply; }
.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding-top: 1rem; display: flex; flex-direction: column; gap: .15rem; flex: 1; }
.card__col { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.card h3 { font-size: 1.35rem; margin-top: .1rem; }
.card__tag { font-size: .85rem; color: var(--ink-2); }
.card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: .8rem; padding-top: .8rem; border-top: 1px solid var(--line); }
.card__price { font-size: .95rem; font-weight: 500; }
.card__price small { font-weight: 400; color: var(--muted); font-size: .78rem; }
.firm__bar { display: flex; gap: 3px; }
.firm__bar i { width: 14px; height: 4px; background: var(--line); border-radius: 1px; }
.firm__bar i.on { background: var(--brand); }
.firm__lbl { display: flex; justify-content: space-between; font-size: .72rem; color: var(--muted); margin-top: .4rem; }

/* ---------------------------------------------------------------- categories strip */
.strip { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(220px, 24vw, 340px); gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 var(--pad) 12px; scroll-padding: 0 var(--pad); scrollbar-width: none; }
.strip::-webkit-scrollbar { display: none; }
@media (min-width: 1440px) { .strip { padding-left: calc((100vw - var(--max)) / 2 + var(--pad)); } }
.strip__item { scroll-snap-align: start; display: flex; flex-direction: column; gap: .8rem; }
.strip__img { aspect-ratio: 3 / 4; overflow: hidden; background: var(--stone); }
.strip__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.strip__item:hover img { transform: scale(1.05); }
.strip__item span { font-size: 1.05rem; }
.strip-nav { display: flex; gap: 8px; }
.round { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; background: var(--paper); transition: border-color .25s, transform .2s; }
.round:hover { border-color: var(--ink); }
.round svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
@media (max-width: 700px) { .strip-nav { display: none; } }

/* ---------------------------------------------------------------- editions */
.editions { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.editions__img { margin: 0; aspect-ratio: 5 / 4; overflow: hidden; background: var(--stone); }
.editions__img img { width: 100%; height: 100%; object-fit: cover; }
.editions__txt { display: grid; gap: 2.6rem; }
.edition { display: flex; flex-direction: column; gap: .6rem; padding-top: 1.4rem; border-top: 1px solid var(--ink); }
.edition h3 { font-size: 1.7rem; font-weight: 300; }
.edition p { color: var(--ink-2); max-width: 44ch; font-weight: 300; }
.edition .link { align-self: flex-start; margin-top: .4rem; }
@media (max-width: 860px) { .editions { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- company */
.timeline { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--ink); }
.timeline li { padding: 1.4rem 1.2rem 0 0; }
.timeline b { display: block; font-weight: 300; font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.03em; margin-bottom: .5rem; }
.timeline p { color: var(--ink-2); font-size: .92rem; font-weight: 300; }
.certs { list-style: none; padding: 0; margin: 3rem 0 0; display: flex; gap: .5rem; flex-wrap: wrap; }
.certs li { border: 1px solid var(--line); padding: .45rem .9rem; font-size: .76rem; letter-spacing: .08em; color: var(--ink-2); border-radius: 99px; }
@media (max-width: 900px) { .timeline { grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; } }

.band { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding: clamp(36px, 5vw, 64px); background: var(--stone); }
.band h2 { max-width: 20ch; }

/* ---------------------------------------------------------------- list page */
.phero { height: 46vh; min-height: 320px; background: var(--stone) center/cover no-repeat; position: relative; display: flex; align-items: flex-end; }
.phero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.42), rgba(0,0,0,0) 65%); }
.phero__txt { position: relative; color: #fff; width: 100%; padding-bottom: 40px; }
.phero .lead { color: rgba(255,255,255,.9); margin-top: .6rem; }
.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.4rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.toolbar__r { display: flex; align-items: center; gap: 1.2rem; font-size: .86rem; }
.chips { display: flex; gap: .4rem; flex-wrap: wrap; }
.chips button { height: 38px; padding: 0 16px; border: 1px solid var(--line); border-radius: 99px; font-size: .86rem; transition: all .25s; background: var(--paper); }
.chips button:hover { border-color: var(--ink); }
.chips button[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.select select { height: 38px; border: 1px solid var(--line); border-radius: var(--r); padding: 0 34px 0 12px; background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231f1d1b' fill='none'/%3E%3C/svg%3E") right 12px center no-repeat; appearance: none; font-size: .86rem; }

/* ---------------------------------------------------------------- product */
.pdp { padding-top: 28px; }
.crumb { display: flex; gap: .6rem; font-size: .8rem; color: var(--muted); margin-bottom: 24px; flex-wrap: wrap; }
.crumb b { color: var(--ink); font-weight: 500; }
.crumb a:hover { color: var(--ink); }
.pdp__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(320px, 4fr); gap: clamp(28px, 4vw, 72px); align-items: start; }
.pdp__media { position: sticky; top: 96px; }
.tabs { display: inline-flex; background: var(--stone); padding: 4px; border-radius: 99px; margin-bottom: 14px; }
.tabs button { height: 36px; padding: 0 18px; border-radius: 99px; font-size: .84rem; color: var(--ink-2); }
.tabs button[aria-selected="true"] { background: var(--paper); color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.gallery__main { background: #fff; aspect-ratio: 4 / 3; display: grid; place-items: center; overflow: hidden; }
.gallery__main img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.gallery__thumbs { display: flex; gap: 8px; margin-top: 8px; overflow-x: auto; }
.gallery__thumbs button { flex: 0 0 96px; aspect-ratio: 4 / 3; background: #fff; border: 1px solid transparent; }
.gallery__thumbs button[aria-current="true"] { border-color: var(--ink); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.stage3d { position: relative; aspect-ratio: 4 / 3; background: transparent; }
.stage3d::before, .inside__stage::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%); background-size: 220% 100%; animation: shimmer 1.4s linear infinite; transition: opacity .5s; }
.is-ready::before { opacity: 0; animation: none; }
@keyframes shimmer { from { background-position: 120% 0; } to { background-position: -120% 0; } }
@media (prefers-reduced-motion: reduce) { .stage3d::before, .inside__stage::before { animation: none; } }
.stage3d canvas { width: 100%; height: 100%; cursor: grab; touch-action: none; }
.stage3d canvas:active { cursor: grabbing; }
.stage3d__bar { position: absolute; left: 14px; top: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; gap: .5rem; height: 38px; padding: 0 14px; background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 99px; font-size: .84rem; }
.pill svg { width: 16px; }
.pill[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.pill--group { padding: 3px; gap: 2px; }
.pill--group button { height: 30px; padding: 0 10px; border-radius: 99px; font-size: .8rem; }
.pill--group button[aria-pressed="true"] { background: var(--ink); color: #fff; }
.stage3d__hint { position: absolute; right: 16px; bottom: 12px; font-size: .75rem; color: var(--muted); }
.pdp__info h1 { font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 300; letter-spacing: -0.035em; }
.pdp__line { font-size: 1.1rem; color: var(--ink-2); font-weight: 300; margin-top: .4rem; }
.pdp__tag { font-size: .92rem; color: var(--ink-2); margin-top: 1rem; font-weight: 500; }
.pdp__price { font-size: 1.6rem; font-weight: 400; margin-top: 1.2rem; }
.pdp__price small { font-size: .9rem; color: var(--muted); }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 1.8rem 0; border-top: 1px solid var(--line); }
.fact { padding: .9rem 0; border-bottom: 1px solid var(--line); }
.fact--wide { grid-column: 1 / -1; }
.fact dt { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .35rem; }
.fact dd { margin: 0; font-size: 1rem; }
.fact dd small { color: var(--muted); font-size: .76rem; }
.fact .firm__bar i { flex: 1; height: 5px; }
.pdp__desc { color: var(--ink-2); font-weight: 300; line-height: 1.75; }
.sub { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin: 2rem 0 .8rem; }
.layers--pdp li { cursor: pointer; }
.layers--pdp li:hover { color: var(--ink); }
.pdp__ctas { display: flex; gap: 10px; margin-top: 2rem; flex-wrap: wrap; }
.pdp__ctas .btn { flex: 1; min-width: 160px; }
@media (max-width: 980px) {
  .pdp__grid { grid-template-columns: 1fr; }
  .pdp__media { position: static; }
}

/* ---------------------------------------------------------------- stores */
.page-head { padding: clamp(56px, 8vw, 110px) 0 36px; }
.page-head .lead { margin-top: 1rem; }
.stores { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.store { padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.store p { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.store h3 { font-size: 1.45rem; margin: .3rem 0 .6rem; }
.store a { font-size: .9rem; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.store a:hover { border-color: var(--ink); }
.contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding-bottom: 40px; }
.contact h3 { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
@media (max-width: 700px) { .contact { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- footer */
.foot { margin-top: clamp(90px, 12vw, 170px); background: var(--stone); padding: 64px var(--pad) 28px; font-size: .88rem; }
.foot__in { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.foot .logo { width: 150px; color: var(--brand); margin-bottom: 1rem; }
.foot__brand p { color: var(--ink-2); margin-bottom: .6rem; }
.foot__col { display: flex; flex-direction: column; gap: .45rem; }
.foot__col h4 { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: .5rem; }
.foot__col a { color: var(--ink-2); }
.foot__col a:hover { color: var(--ink); }
.foot__bar { max-width: var(--max); margin: 56px auto 0; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--muted); font-size: .78rem; }
@media (max-width: 800px) { .foot__in { grid-template-columns: 1fr 1fr; } .foot__brand { grid-column: 1 / -1; } }

/* ---------------------------------------------------------------- mobile fixes */
.pdp__grid, .pdp__media, .pdp__info { min-width: 0; }
@media (max-width: 980px) { .pdp__grid { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 760px) {
  /* comfortable tap targets (44px) */
  .lang button { min-width: 40px; min-height: 44px; }
  .foot__col a, .foot__brand a { display: inline-flex; align-items: center; min-height: 44px; }
  .foot__col { gap: 0; }
  .store a, .contact a { display: inline-flex; align-items: center; min-height: 44px; }
  .crumb a { display: inline-flex; align-items: center; min-height: 40px; }
  .head--row .link { display: inline-flex; align-items: center; min-height: 44px; }
  .nav__logo { display: inline-flex; align-items: center; min-height: 44px; }
  /* small labels no smaller than 12px */
  .eyebrow, .card__col, .fact dt, .firm__lbl, .store p, .sub, .foot__col h4 { font-size: .78rem; }
  .gallery__thumbs button { flex-basis: 76px; }
  .hero__pause { width: 44px; height: 44px; }
}

/* 3D controls sit below the model on phones, not on top of it */
@media (max-width: 760px) {
  .stage3d { aspect-ratio: auto; display: flex; flex-direction: column; }
  .stage3d canvas { aspect-ratio: 4 / 3; height: auto; order: 1; }
  .stage3d__bar { position: static; order: 2; justify-content: center; margin-top: 12px; gap: 10px; }
  .stage3d__bar .pill { height: 44px; }
  .pill--group button { min-width: 48px; height: 38px; }
  .stage3d__hint { position: static; order: 3; text-align: center; margin-top: 8px; }
  .stage3d::before { bottom: auto; aspect-ratio: 4 / 3; }
}
