/* SPECTRUM — "studio black". Base tokens, type, buttons, header and footer. */

:root {
  --ink: #080C17;
  --deep: #0B1022;
  --panel: #0E1426;
  --row: #141B2D;
  --grid: #182036;
  --line: #1D2437;
  --line-2: #262F45;
  --line-3: #3A4358;
  --line-4: #4A5368;
  --text: #EDF0F5;
  --soft: #B3BAC8;
  --mist: #8C95A8;
  --dim: #6B748A;
  --gold: #C8A876;
  --alert: #F2A29B;
  --spectrum: linear-gradient(90deg, #EF8B8B, #F1B46C, #DCD46E, #86D5A5, #75C5E4, #8FA2F1, #C29CEF);
  --f-d: 'Archivo', 'IBM Plex Sans KR', 'Helvetica Neue', Arial, sans-serif;
  --f-s: 'Hahmlet', 'Noto Serif KR', 'Nanum Myeongjo', serif;
  --f-b: 'IBM Plex Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  --gutter: clamp(16px, 5.5vw, 80px);
  --container: 1600px;
  /* Left/right edge of the content column, for full-bleed sections that align inner text with it. */
  --edge: max(var(--gutter), calc((100vw - var(--container)) / 2));
  --header-h: 88px;
  --section: clamp(96px, 11vw, 160px);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--ink); -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html.menu-open { overflow: hidden; }
body { margin: 0; min-height: 100vh; background: var(--ink); color: var(--text); font-family: var(--f-b); font-size: 16px; line-height: 1.6; word-break: keep-all; overflow-wrap: break-word; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
[hidden] { display: none !important; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
button, input, textarea, select { font: inherit; color: inherit; letter-spacing: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::selection { background: var(--gold); color: var(--ink); }

.sr-only { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -120px; z-index: 100; padding: 12px 18px; background: var(--text); color: var(--ink); font-weight: 600; }
.skip-link:focus { top: 16px; color: var(--ink); }
.container { width: 100%; max-width: calc(var(--container) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.grid-12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; }

/* type */
.f-d { font-family: var(--f-d); font-stretch: 125%; }
.f-s { font-family: var(--f-s); }
.num { font-variant-numeric: tabular-nums; }
.eyebrow { font-family: var(--f-d); font-stretch: 125%; font-size: 12px; font-weight: 600; letter-spacing: 0.22em; line-height: 1.4; color: var(--gold); }
.label-d { font-family: var(--f-d); font-stretch: 125%; font-size: 12px; font-weight: 500; letter-spacing: 0.12em; color: var(--mist); }
.heading-xl, .heading-l, .heading-m, .heading-s { font-family: var(--f-s); font-weight: 300; text-wrap: balance; }
.heading-xl { font-size: clamp(38px, 4.4vw, 64px); line-height: 1.22; letter-spacing: -0.02em; }
.heading-l { font-size: clamp(34px, 3.9vw, 56px); line-height: 1.22; letter-spacing: -0.02em; }
.heading-m { font-size: clamp(30px, 3.1vw, 44px); line-height: 1.3; letter-spacing: -0.01em; }
.heading-s { font-size: clamp(26px, 2.6vw, 38px); line-height: 1.38; }
.lead { font-size: 16px; line-height: 1.9; color: var(--soft); }
.muted { color: var(--mist); }
.gold { color: var(--gold); }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px 40px; }
.section-head__title { display: flex; flex-direction: column; gap: 16px; }
.section-head__note { max-width: 380px; font-size: 14px; line-height: 1.7; color: var(--mist); text-align: right; }

/* buttons and links */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 56px; padding: 0 28px; border: 1px solid transparent; font-size: 15px; font-weight: 600; line-height: 1.25; text-align: left; transition: background-color 0.2s, color 0.2s, border-color 0.2s; }
.btn-primary { background: var(--text); color: var(--ink); }
.btn-primary:hover { background: var(--gold); color: var(--ink); }
.btn-line { border-color: var(--line-3); color: var(--text); font-weight: 500; }
.btn-line:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { border-color: var(--text); color: var(--text); font-weight: 500; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { min-height: 44px; padding: 0 22px; font-size: 14px; }
.btn-lg { min-height: 60px; padding: 0 32px; font-size: 16px; }
.btn-block { display: flex; width: 100%; justify-content: space-between; }
.btn[disabled] { opacity: 0.6; cursor: progress; }
.btn-tel { font-family: var(--f-d); font-stretch: 125%; letter-spacing: 0.04em; font-variant-numeric: tabular-nums; }
.icon-arrow { width: 16px; height: 16px; flex: none; }
.text-link { padding-bottom: 5px; border-bottom: 1px solid var(--line-4); font-size: 15px; font-weight: 500; }
.inline-link { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; min-height: 44px; font-size: 15px; font-weight: 500; }

/* header */
.site-header { position: relative; z-index: 20; background: var(--ink); border-bottom: 1px solid var(--line); }
.site-header.is-overlay { position: absolute; top: 0; left: 0; right: 0; background: transparent; border-bottom-color: transparent; }
.site-header__bar { display: flex; align-items: center; gap: clamp(32px, 5vw, 72px); height: var(--header-h); }
.site-header__logo { flex: none; }
.site-header__logo img { width: auto; height: 30px; }
.site-nav ul { display: flex; gap: clamp(24px, 2.8vw, 40px); }
.site-nav ul a { position: relative; display: block; padding: 10px 0; font-size: 15px; font-weight: 500; letter-spacing: -0.01em; color: var(--soft); }
.site-nav ul a:hover { color: var(--text); }
.site-nav ul a[aria-current] { color: var(--text); }
.site-nav ul a[aria-current]::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--spectrum); }
.site-nav__extra { display: none; }
.site-header__actions { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.site-header__tel { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; color: var(--mist); }
.menu-toggle { display: none; }

/* footer */
.site-footer { border-top: 1px solid var(--line); padding-block: 72px 36px; color: var(--mist); font-size: 14px; line-height: 1.75; }
.site-footer__grid { display: grid; grid-template-columns: 4fr 3fr 3fr 2fr; gap: 32px 24px; }
.site-footer__brand img { width: auto; height: 26px; margin-bottom: 18px; }
.site-footer__label { margin-bottom: 10px; font-family: var(--f-d); font-stretch: 125%; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; color: var(--gold); }
.site-footer__tel { color: var(--text); }
.site-footer a:hover { color: var(--gold); }
.site-footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 28px; margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; }
.site-footer__bottom p { display: flex; flex-wrap: wrap; gap: 4px 28px; }
.site-footer__copy { font-size: 12px; letter-spacing: 0.06em; }

/* sub page intro */
.page-intro { padding-top: 72px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--mist); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--line-3); }
.page-intro__row { margin-top: 56px; align-items: end; }
.page-intro__head { grid-column: span 7; display: flex; flex-direction: column; gap: 20px; }
.page-intro__lead { grid-column: 9 / span 4; font-size: 16px; line-height: 1.85; color: var(--soft); }
.page-title { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 20px; font-family: var(--f-s); font-size: clamp(40px, 4.2vw, 60px); font-weight: 300; line-height: 1.2; letter-spacing: -0.02em; }
.page-title__count { font-family: var(--f-d); font-stretch: 125%; font-size: 20px; font-weight: 500; letter-spacing: 0.06em; color: var(--mist); }

/* call-to-action band shared by the catalog and project pages */
.cta-band { margin-top: 140px; background: var(--panel); }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px 48px; padding-block: 72px; }
.cta-band__title { font-family: var(--f-s); font-size: clamp(26px, 2.4vw, 34px); font-weight: 300; line-height: 1.4; }
.cta-band__text { margin-top: 12px; font-size: 16px; line-height: 1.8; color: var(--soft); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 16px; }

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .grid-12 { grid-template-columns: minmax(0, 1fr); }
  .grid-12 > * { grid-column: 1 / -1 !important; }
  .section-head__note { text-align: left; }
  .site-header__logo img { height: 24px; }
  .site-header__actions { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-left: auto; margin-right: -10px; padding: 0; border: 0; background: none; }
  .menu-toggle__bars, .menu-toggle__bars::before, .menu-toggle__bars::after { display: block; width: 22px; height: 1.5px; background: var(--text); transition: transform 0.2s, background-color 0.2s; }
  .menu-toggle__bars { position: relative; }
  .menu-toggle__bars::before, .menu-toggle__bars::after { content: ""; position: absolute; left: 0; }
  .menu-toggle__bars::before { top: -7px; }
  .menu-toggle__bars::after { top: 7px; }
  .is-open .menu-toggle__bars { background: transparent; }
  .is-open .menu-toggle__bars::before { transform: translateY(7px) rotate(45deg); }
  .is-open .menu-toggle__bars::after { transform: translateY(-7px) rotate(-45deg); }
  .site-header.is-open { background: var(--ink); }
  .site-nav { display: none; }
  .is-open .site-nav { position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; z-index: 30; display: flex; flex-direction: column; justify-content: space-between; gap: 40px; padding: 16px var(--gutter) 40px; overflow-y: auto; background: var(--ink); }
  .is-open .site-nav ul { flex-direction: column; gap: 0; }
  .is-open .site-nav ul a { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 22px; color: var(--text); }
  .site-nav ul a[aria-current]::after { display: none; }
  .is-open .site-nav ul a[aria-current] { color: var(--gold); }
  .is-open .site-nav__extra { display: flex; flex-direction: column; gap: 12px; }
  .site-footer { padding-block: 56px 32px; }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__brand { grid-column: 1 / -1; }
  .page-intro { padding-top: 32px; }
  .page-intro__row { margin-top: 32px; gap: 16px; }
  .cta-band { margin-top: 96px; }
  .cta-band__inner { padding-block: 56px; }
}

/* Home: hero, crystal story, company story, collection rows, brand band, projects, process, inquiry band. */

.hero { position: relative; display: flex; align-items: center; min-height: clamp(620px, 92vh, 860px); overflow: hidden; }
.hero__media { position: absolute; top: 0; right: 0; bottom: 0; width: 61%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 45% 50%; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 0%, rgba(8, 12, 23, 0) 30%), linear-gradient(0deg, var(--ink) 0%, rgba(8, 12, 23, 0) 26%); }
.hero__rays { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.hero__inner { position: relative; z-index: 2; padding-block: calc(var(--header-h) + 56px) 96px; }
.hero__copy { display: flex; flex-direction: column; gap: 28px; max-width: 620px; }
.hero__title { font-family: var(--f-s); font-size: clamp(40px, 4.6vw, 66px); font-weight: 300; line-height: 1.2; letter-spacing: -0.02em; }
.hero__lead { max-width: 540px; font-size: 17px; line-height: 1.8; color: var(--soft); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 32px; margin-top: 12px; }

/* crystal story: the stage stays in view while the five steps scroll past (see story.js) */
.story { border-top: 1px solid var(--line); }
.story-intro { padding-block: 120px 48px; align-items: end; }
.story-intro__head { grid-column: span 7; display: flex; flex-direction: column; gap: 20px; }
.story-intro__lead { grid-column: 9 / span 4; font-size: 16px; line-height: 1.85; color: var(--soft); }
.scrolly { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.stage { position: sticky; top: 0; align-self: start; height: 100vh; overflow: hidden; background: var(--ink); }
.layer { position: absolute; inset: 0; }
.layer img { width: 100%; height: 100%; object-fit: cover; }
.layer-macro { opacity: var(--macro, 1); }
.layer-fixture { display: grid; place-items: center; opacity: var(--fixture, 0); }
/* The fixture photo is 1,599px wide: capping it at 800 CSS px keeps it sharp on 2x screens. */
.layer-fixture img { width: min(100%, 800px); height: auto; object-fit: contain; transform: scale(var(--fixture-zoom, 1)); will-change: transform; -webkit-mask-image: radial-gradient(ellipse 70% 72% at 50% 50%, #000 60%, transparent 100%); mask-image: radial-gradient(ellipse 70% 72% at 50% 50%, #000 60%, transparent 100%); }
.layer-detail { opacity: var(--detail, 0); }
.layer-detail img { transform: scale(var(--detail-zoom, 1.06)); will-change: transform; }
.layer-macro::after, .layer-detail::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 12, 23, 0) 60%, #080C17 100%), linear-gradient(0deg, rgba(8, 12, 23, 0.9) 0%, rgba(8, 12, 23, 0) 38%); }
.layer-diagram { display: grid; place-items: center; opacity: var(--diagram, 0); }
.layer-diagram svg { width: min(80%, 620px); max-height: 82%; height: auto; overflow: visible; }
.stage-index { position: absolute; left: var(--edge); bottom: 40px; display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.stage-index li { display: flex; align-items: center; gap: 12px; color: var(--mist); transition: color 0.3s; }
.stage-index li::before { content: ""; width: 16px; height: 1px; background: currentColor; transition: width 0.3s, background-color 0.3s; }
.stage-index li.on { color: var(--text); }
.stage-index li.on::before { width: 36px; background: var(--gold); }
.stage-caption { position: absolute; right: 28px; bottom: 40px; font-family: var(--f-d); font-stretch: 125%; font-size: 11px; letter-spacing: 0.14em; color: var(--soft); }
.stage-caption--macro { opacity: var(--macro, 1); }
.stage-caption--fixture { opacity: var(--caption, 0); }
.story-steps { padding-right: var(--edge); }
.story-step { display: flex; flex-direction: column; justify-content: center; gap: 18px; min-height: 100vh; padding: 12vh 0 12vh 56px; }
.story-step__num { font-family: var(--f-d); font-stretch: 125%; font-size: 12px; font-weight: 500; letter-spacing: 0.14em; color: var(--mist); }
.story-step__title { font-family: var(--f-s); font-size: clamp(26px, 2.5vw, 38px); font-weight: 300; line-height: 1.38; text-wrap: balance; }
.story-step__text { max-width: 32em; font-size: 16px; line-height: 1.9; color: var(--soft); }
.story-step__note { max-width: 32em; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; line-height: 1.8; color: var(--mist); }
.story-step__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* company story */
.company { padding-top: 140px; align-items: center; }
.company__photo { grid-column: span 6; overflow: hidden; background: var(--deep); }
.company__photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.company__copy { grid-column: 8 / span 5; display: flex; flex-direction: column; gap: 24px; }
.company__copy .lead { line-height: 1.9; }
.moves { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding-top: 20px; border-top: 1px solid var(--line); }
.moves dt { font-size: 13px; color: var(--mist); }
.moves dt.is-now { color: var(--gold); }
.moves dd { margin-top: 6px; font-size: 15px; }

/* collection rows (four products per category) */
.collection { padding-top: var(--section); }
.collection__rows { display: flex; flex-direction: column; gap: 56px; margin-top: 56px; }
.collection-row { padding-top: 28px; border-top: 1px solid var(--line); }
.collection-row__head { grid-column: span 3; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.collection-row__title { font-family: var(--f-d); font-stretch: 125%; font-size: 20px; font-weight: 600; letter-spacing: 0.04em; }
.collection-row__sub { font-size: 15px; color: var(--soft); }
.collection-row__head .inline-link { margin-top: 8px; font-size: 14px; }
.collection-row__cards { grid-column: span 9; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }

/* product card (also used in the catalog) */
.card__link { display: flex; flex-direction: column; gap: 20px; height: 100%; color: var(--text); }
.card__media { display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--deep); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.card__link:hover .card__media img { transform: scale(1.04); }
.card__text { display: flex; flex-direction: column; gap: 8px; }
.card__name { min-height: 2.6em; font-family: var(--f-d); font-stretch: 125%; font-size: 15px; font-weight: 600; letter-spacing: 0.04em; line-height: 1.3; }
.card__link:hover .card__name { color: var(--gold); }
.card__meta { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--mist); }
.card__no { font-family: var(--f-d); font-stretch: 125%; letter-spacing: 0.08em; }
.card__price { font-size: 13px; color: var(--gold); }
.card--compact .card__link { gap: 16px; }
.card--compact .card__text { gap: 6px; }
.card--compact .card__name { font-size: 12px; letter-spacing: 0.03em; }
.card--compact .card__meta { font-size: 12px; }

/* why spectrum */
.brand-band { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); min-height: 560px; margin-top: var(--section); background: var(--deep); }
.brand-band__media { position: relative; overflow: hidden; min-height: 320px; }
.brand-band__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.brand-band__copy { display: flex; flex-direction: column; justify-content: center; gap: 28px; padding: 72px max(var(--edge), clamp(40px, 8.3vw, 120px)) 72px clamp(40px, 6.7vw, 96px); }
.brand-band__statement { max-width: 560px; font-family: var(--f-s); font-size: clamp(24px, 2.4vw, 34px); font-weight: 300; line-height: 1.55; text-wrap: balance; }
.brand-band__text { max-width: 460px; font-size: 16px; line-height: 1.85; color: var(--soft); }

/* projects mosaic */
.home-projects { padding-top: var(--section); }
.mosaic { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 24px; margin-top: 48px; }
.mosaic__side { display: grid; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 24px; }
.tile { display: flex; flex-direction: column; gap: 18px; color: var(--text); }
.tile__media { position: relative; flex: 1 1 auto; min-height: clamp(200px, 17.2vw, 248px); overflow: hidden; background: var(--deep); }
.mosaic > .tile .tile__media { min-height: clamp(320px, 38.8vw, 558px); }
.tile__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.tile:hover .tile__media img { transform: scale(1.03); }
.tile__caption { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 4px 12px; }
.tile__name { font-family: var(--f-d); font-stretch: 125%; font-size: 16px; font-weight: 600; letter-spacing: 0.04em; }
.tile:hover .tile__name { color: var(--gold); }
.tile__place { font-size: 14px; color: var(--mist); }

/* process */
.process { margin-top: var(--section); padding-top: 56px; border-top: 1px solid var(--line); }
.process__head { grid-column: span 4; display: flex; flex-direction: column; gap: 16px; }
.process__list { grid-column: span 8; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 24px; }
.process__list li { display: flex; flex-direction: column; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.process__ko { font-size: 22px; font-weight: 500; }

/* inquiry band */
.inquiry-band { margin-top: var(--section); background: var(--panel); }
.inquiry-band__inner { padding-block: clamp(72px, 7.6vw, 110px); align-items: end; }
.inquiry-band__copy { grid-column: span 7; display: flex; flex-direction: column; gap: 20px; }
.inquiry-band__title { font-family: var(--f-s); font-size: clamp(30px, 3.2vw, 46px); font-weight: 300; line-height: 1.35; text-wrap: balance; }
.inquiry-band__copy .lead { max-width: 520px; line-height: 1.8; }
.inquiry-band__side { grid-column: 9 / span 4; display: flex; flex-direction: column; gap: 24px; }
.contact-lines { display: flex; flex-direction: column; gap: 4px; padding-top: 20px; border-top: 1px solid var(--line-2); }
.contact-lines__label { font-size: 13px; color: var(--mist); }
.contact-lines__tel { font-family: var(--f-d); font-stretch: 125%; font-size: 26px; font-weight: 500; letter-spacing: 0.04em; font-variant-numeric: tabular-nums; }
.contact-lines__mail { font-size: 14px; color: var(--soft); }

@media (max-width: 1100px) {
  .collection-row__head { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; align-items: baseline; gap: 4px 16px; }
  .collection-row__head .inline-link { margin: 0 0 0 auto; }
  .collection-row__cards { grid-column: 1 / -1; }
  .process__head, .process__list { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero { flex-direction: column; align-items: stretch; min-height: 0; }
  .hero__media { position: relative; width: 100%; height: clamp(340px, 108vw, 520px); }
  .hero__media::before { content: ""; position: absolute; inset: 0 0 auto; z-index: 1; height: 120px; background: linear-gradient(180deg, rgba(8, 12, 23, 0.75), rgba(8, 12, 23, 0)); }
  .hero__media::after { background: linear-gradient(0deg, var(--ink) 0%, rgba(8, 12, 23, 0) 40%); }
  .hero__inner { padding-block: 0 64px; margin-top: -24px; }
  .hero__lead br { display: none; }
  .story-intro { padding-block: 72px 32px; }
  .scrolly { display: block; }
  .stage { z-index: 2; height: 56vh; border-bottom: 1px solid var(--line); }
  .layer-diagram svg { width: min(86%, 420px); }
  .stage-index { left: 16px; bottom: 14px; flex-direction: row; gap: 14px; font-size: 12px; }
  .stage-index li::before { display: none; }
  .stage-index li.on { color: var(--gold); }
  .stage-caption { display: none; }
  .story-steps { position: relative; z-index: 1; padding-inline: var(--gutter); }
  .story-step { justify-content: flex-end; min-height: 72vh; padding: 0 0 10vh; }
  .company { padding-top: 80px; gap: 32px; }
  .collection__rows { gap: 40px; margin-top: 40px; }
  .collection-row { gap: 20px; }
  .collection-row__cards { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: minmax(150px, 44%); gap: 16px; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); scrollbar-width: none; }
  .collection-row__cards::-webkit-scrollbar { display: none; }
  .collection-row__cards > li { scroll-snap-align: start; }
  .brand-band { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  /* min-height would turn into a 512px minimum width through the aspect ratio */
  .brand-band__media { min-width: 0; min-height: 0; aspect-ratio: 16 / 10; }
  .brand-band__copy { padding: 56px var(--gutter) 64px; gap: 20px; }
  .mosaic { grid-template-columns: minmax(0, 1fr); gap: 32px; margin-top: 32px; }
  .mosaic__side { grid-template-rows: none; gap: 32px; }
  .tile__media, .mosaic > .tile .tile__media { min-height: 0; aspect-ratio: 4 / 3; }
  .process { padding-top: 40px; gap: 32px; }
  .process__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 16px; }
  .process__ko { font-size: 19px; }
  .inquiry-band__inner { gap: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .stage-index li, .stage-index li::before, .card__media img, .tile__media img { transition: none; }
}

/* Catalog: category tabs, search, product grid, product detail, projects. */

.catalog-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 40px; margin-top: 56px; border-bottom: 1px solid var(--line); }
.cat-tabs { display: flex; gap: clamp(24px, 2.8vw, 40px); overflow-x: auto; scrollbar-width: none; }
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tabs a { position: relative; display: flex; align-items: baseline; gap: 8px; padding: 18px 0; font-size: 16px; font-weight: 500; white-space: nowrap; color: var(--soft); }
.cat-tabs a:hover { color: var(--text); }
.cat-tabs a[aria-current="page"] { color: var(--text); }
.cat-tabs a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--text); }
.cat-tabs__count { font-family: var(--f-d); font-stretch: 125%; font-size: 12px; letter-spacing: 0.06em; color: var(--mist); }
.search { position: relative; width: 280px; margin-block: 8px; }
.search input { width: 100%; height: 44px; padding: 0 16px 0 44px; border: 1px solid var(--line-2); border-radius: 0; background: transparent; font-size: 14px; }
.search input::placeholder { color: var(--mist); }
.search input:hover, .search input:focus { border-color: var(--line-4); outline: none; }
.search input:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.search input::-webkit-search-cancel-button { filter: invert(0.7); }
.search svg { position: absolute; left: 16px; top: 50%; width: 16px; height: 16px; color: var(--mist); transform: translateY(-50%); pointer-events: none; }
.catalog { padding-top: 40px; }
.catalog__status { font-size: 14px; color: var(--mist); }
.catalog__empty { padding: 72px 0; font-size: 16px; color: var(--soft); text-align: center; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 64px 24px; margin-top: 32px; }

/* product detail */
.product { padding-top: 40px; align-items: start; }
.product__gallery { grid-column: span 7; display: flex; flex-direction: column; gap: 12px; }
.product__stage { aspect-ratio: 1 / 1; overflow: hidden; background: var(--deep); }
.product__stage img { width: 100%; height: 100%; object-fit: cover; }
.product__thumbs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.thumb { display: block; width: 100%; aspect-ratio: 1 / 1; padding: 0; overflow: hidden; border: 0; background: var(--deep); opacity: 0.6; transition: opacity 0.2s; }
.thumb:hover, .thumb[aria-current="true"] { opacity: 1; }
.thumb[aria-current="true"] { outline: 1px solid var(--text); outline-offset: -1px; }
.thumb:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.product__info { grid-column: 9 / span 4; display: flex; flex-direction: column; gap: 32px; padding-top: 8px; }
.product__head { display: flex; flex-direction: column; gap: 16px; }
.product__name { font-family: var(--f-d); font-stretch: 125%; font-size: clamp(26px, 2.4vw, 34px); font-weight: 600; line-height: 1.15; letter-spacing: 0.01em; }
.product__summary { font-size: 16px; line-height: 1.8; color: var(--soft); }
.price-box { display: flex; flex-direction: column; gap: 6px; padding-block: 22px; border-block: 1px solid var(--line); }
.price-box__row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.price-box__label { font-size: 14px; color: var(--mist); }
.price-box__value { font-family: var(--f-s); font-size: 24px; font-weight: 400; }
.price-box__note { font-size: 13px; line-height: 1.7; color: var(--mist); text-align: right; }
.spec-list { display: flex; flex-direction: column; font-size: 15px; }
.spec-list > div { display: flex; justify-content: space-between; gap: 16px; padding-block: 12px; border-bottom: 1px solid var(--row); }
.spec-list > div:last-child { border-bottom: 0; }
.spec-list dt { flex: none; color: var(--mist); }
.spec-list dd { text-align: right; }
.product__actions { display: flex; flex-direction: column; gap: 12px; }
.product__hint { font-size: 13px; color: var(--mist); }
.detail { padding-top: 140px; }
.detail__head { grid-column: span 4; display: flex; flex-direction: column; gap: 16px; }
.detail__body { grid-column: 6 / span 7; display: flex; flex-direction: column; gap: 24px; }
.detail__text { font-size: 16px; line-height: 1.9; color: var(--soft); white-space: pre-line; }
.detail__photos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.detail__photos figure { aspect-ratio: 1 / 1; overflow: hidden; background: var(--deep); }
.detail__photos img { width: 100%; height: 100%; object-fit: cover; }
.related { padding-top: 140px; }
.related .product-grid { margin-top: 48px; }

/* projects */
.projects { display: flex; flex-direction: column; padding-top: 72px; }
.project { align-items: stretch; }
.project + .project { margin-top: 120px; padding-top: 120px; border-top: 1px solid var(--line); }
.project__media { grid-column: span 8; display: block; overflow: hidden; background: var(--deep); }
.project__media img { width: 100%; height: 100%; min-height: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.project__media:hover img { transform: scale(1.03); }
.project__body { grid-column: span 4; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; }
.project--reverse .project__media { grid-column: 5 / span 8; grid-row: 1; }
.project--reverse .project__body { grid-column: 1 / span 4; grid-row: 1; }
.project__head { display: flex; flex-direction: column; gap: 14px; }
.project__name { font-family: var(--f-d); font-stretch: 125%; font-size: 26px; font-weight: 600; line-height: 1.2; letter-spacing: 0.01em; }
.project__ko { font-size: 15px; color: var(--soft); }
.project__facts { margin-top: 12px; font-size: 14px; }
.project__facts > div { padding-block: 11px; border-top: 1px solid var(--line); border-bottom: 0; }
.project__facts > div:last-child { border-bottom: 1px solid var(--line); }
.project__more { display: flex; flex-direction: column; gap: 14px; }
.project__thumbs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.project__thumbs img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.project-intro__facts { grid-column: 9 / span 4; font-size: 14px; }
.project-photos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; padding-top: 72px; }
.project-photos figure { overflow: hidden; background: var(--deep); }
.project-photos figure:first-child { grid-column: 1 / -1; }
.project-photos img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.project-photos figure:first-child img { aspect-ratio: 16 / 9; }
.pager { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; margin-top: 96px; padding-top: 32px; border-top: 1px solid var(--line); }
.pager a { display: flex; flex-direction: column; gap: 6px; }
.pager a:last-child { margin-left: auto; text-align: right; }
.pager__label { font-size: 13px; color: var(--mist); }
.pager__name { font-family: var(--f-d); font-stretch: 125%; font-size: 16px; font-weight: 600; letter-spacing: 0.04em; }

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

@media (max-width: 900px) {
  .catalog-bar { margin-top: 32px; border-bottom: 0; }
  .cat-tabs { width: calc(100% + 2 * var(--gutter)); margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); border-bottom: 1px solid var(--line); }
  .search { width: 100%; }
  .catalog { padding-top: 16px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 16px; margin-top: 20px; }
  .card__link { gap: 14px; }
  .card__name { font-size: 13px; }
  .card__meta { flex-wrap: wrap; font-size: 12px; }
  .product { padding-top: 24px; gap: 32px; }
  .product__thumbs { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
  .price-box__note { text-align: left; }
  .detail, .related { padding-top: 96px; }
  .detail { gap: 24px; }
  .detail__photos { gap: 12px; }
  .related .product-grid { margin-top: 32px; }
  .projects { padding-top: 40px; }
  .project { gap: 24px; }
  .project + .project { margin-top: 72px; padding-top: 72px; }
  .project--reverse .project__media, .project--reverse .project__body { grid-row: auto; }
  .project__media img { aspect-ratio: 4 / 3; }
  .project-photos { grid-template-columns: minmax(0, 1fr); gap: 16px; padding-top: 40px; }
  .project-photos figure:first-child img { aspect-ratio: 4 / 3; }
  .pager { margin-top: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  .project__media img, .thumb { transition: none; }
}

/* About, contact form, privacy policy and error pages. */

/* about */
.about-move { padding-top: clamp(72px, 8.3vw, 120px); }
.page-title .f-d { font-size: clamp(30px, 3.4vw, 48px); font-weight: 600; letter-spacing: 0.01em; line-height: 1.15; }
.route { display: flex; align-items: center; gap: 20px; }
.route__label { font-family: var(--f-d); font-stretch: 125%; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; white-space: nowrap; }
.route__label.is-now { color: var(--gold); }
.route__line { flex-grow: 1; height: 1px; background: var(--spectrum); }
.route svg { color: #C29CEF; }
.places { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 40px; }
.place { display: flex; flex-direction: column; gap: 28px; }
.place__media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--deep); }
.place__media img { width: 100%; height: 100%; object-fit: cover; }
.place__plate { position: relative; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; padding: clamp(24px, 3vw, 40px); background: radial-gradient(120% 90% at 85% 10%, #1B2544 0%, rgba(11, 16, 34, 0) 60%), var(--deep); }
.place__plate::before { content: ""; position: absolute; left: clamp(24px, 3vw, 40px); right: clamp(24px, 3vw, 40px); top: 50%; height: 1px; background: var(--spectrum); opacity: 0.7; }
.place__plate-name { font-family: var(--f-d); font-stretch: 125%; font-size: clamp(28px, 3.4vw, 48px); font-weight: 600; letter-spacing: 0.04em; line-height: 1.1; }
.place__plate-floor { font-family: var(--f-d); font-stretch: 125%; font-size: 13px; font-weight: 500; letter-spacing: 0.14em; color: var(--gold); }
.place__text { display: flex; flex-direction: column; gap: 12px; }
.place__label { font-size: 14px; font-weight: 600; color: var(--mist); }
.place__label.is-now { color: var(--gold); }
.place__title { font-family: var(--f-s); font-size: clamp(24px, 2.3vw, 32px); font-weight: 400; line-height: 1.4; }
.place__text .lead { max-width: 540px; }
.wide-photo { height: clamp(260px, 33vw, 480px); margin-top: var(--section); overflow: hidden; background: var(--deep); }
.wide-photo img { width: 100%; height: 100%; object-fit: cover; }
.work { padding-top: var(--section); }
.work__head { align-items: end; }
.work__head > div { grid-column: span 7; display: flex; flex-direction: column; gap: 16px; }
.work__head > p { grid-column: 9 / span 4; }
.work__steps { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 24px; margin-top: 64px; }
.work__steps li { display: flex; flex-direction: column; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.work__ko { font-size: 26px; font-weight: 500; }
.work__en { font-family: var(--f-d); font-stretch: 125%; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; color: var(--mist); }
.values { padding-top: var(--section); }
.values__media { grid-column: span 5; display: flex; flex-direction: column; gap: 20px; }
.values__frame { aspect-ratio: 1 / 1; overflow: hidden; background: var(--deep); }
.values__frame img { width: 100%; height: 100%; object-fit: cover; }
.caption { font-family: var(--f-d); font-stretch: 125%; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; color: var(--mist); }
.values__list { grid-column: 7 / span 6; }
.value { display: flex; flex-direction: column; gap: 16px; padding-block: 48px; border-top: 1px solid var(--line); }
.value:first-child { padding-top: 0; border-top: 0; }
.value:last-child { padding-bottom: 0; }
.value__title { font-family: var(--f-s); font-size: clamp(24px, 2.3vw, 32px); font-weight: 300; line-height: 1.45; }
.value .lead { max-width: 560px; }
.visit { padding-block: var(--section); }
.visit__info { grid-column: span 4; display: flex; flex-direction: column; gap: 32px; }
.info-list { display: flex; flex-direction: column; gap: 20px; }
.info-list > div { display: flex; flex-direction: column; gap: 4px; padding-top: 16px; border-top: 1px solid var(--line); }
.info-list dt { font-size: 13px; color: var(--mist); }
.info-list dd { font-size: 16px; line-height: 1.7; }
.info-list__tel { font-family: var(--f-d); font-stretch: 125%; font-size: 18px; letter-spacing: 0.04em; font-variant-numeric: tabular-nums; }
.map-panel { grid-column: 6 / span 7; align-self: start; margin: 0; background: var(--panel); }
.map-art svg { display: block; width: 100%; height: auto; }
.map-art--tall { display: none; }
.map-panel__credit { flex-basis: 100%; font-size: 12px; color: var(--dim); }
.map-panel__credit a { text-decoration: underline; text-underline-offset: 2px; }
.map-panel__map--placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; aspect-ratio: 4 / 3; background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px); background-size: 56px 56px; }
.map-panel__label { padding: 8px 12px; background: var(--text); color: var(--ink); font-family: var(--f-d); font-stretch: 125%; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; white-space: nowrap; }
.map-panel__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 24px; padding: 18px 24px 22px; border-top: 1px solid var(--line-2); }
.map-panel__caption { font-size: 14px; line-height: 1.6; color: var(--soft); }
.map-panel__caption strong { margin-right: 10px; font-weight: 600; color: var(--gold); }
.map-panel__links { display: flex; flex-wrap: wrap; gap: 10px; }
.map-panel__links .btn { background: var(--ink); }

/* contact */
.contact { padding-block: 72px var(--section); align-items: start; }
.inquiry, .inquiry-done { grid-column: span 7; }
.inquiry { display: flex; flex-direction: column; gap: 36px; }
.field { display: flex; flex-direction: column; gap: 10px; min-width: 0; margin: 0; padding: 0; border: 0; }
.field__label { padding: 0; font-size: 14px; font-weight: 500; }
.field__opt { margin-left: 6px; font-size: 13px; font-weight: 400; color: var(--mist); }
.req { color: var(--gold); }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; }
.input { width: 100%; min-height: 52px; padding: 13px 16px; border: 1px solid var(--line-2); border-radius: 0; background: var(--panel); font-size: 15px; line-height: 1.6; transition: border-color 0.2s; -webkit-appearance: none; appearance: none; }
.input::placeholder { color: var(--dim); }
.input:hover { border-color: var(--line-4); }
.input:focus { border-color: var(--text); outline: none; }
.input:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
textarea.input { min-height: 200px; resize: vertical; }
.input[aria-invalid="true"] { border-color: var(--alert); }
.field__error { font-size: 13px; color: var(--alert); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; }
.chip input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.chip span { display: inline-flex; align-items: center; min-height: 44px; padding: 0 20px; border: 1px solid var(--line-3); font-size: 15px; color: var(--soft); transition: background-color 0.2s, color 0.2s, border-color 0.2s; }
.chip input:hover + span { border-color: var(--line-4); color: var(--text); }
.chip input:checked + span { border-color: var(--text); background: var(--text); color: var(--ink); font-weight: 600; }
.chip input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.dropzone { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; min-height: 88px; padding: 18px 24px; border: 1px dashed var(--line-3); transition: border-color 0.2s, background-color 0.2s; }
.dropzone.is-over { border-color: var(--gold); background: var(--panel); }
.dropzone__text { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--soft); }
.dropzone__text svg { width: 20px; height: 20px; flex: none; }
.dropzone input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.dropzone:focus-within .btn { outline: 2px solid var(--gold); outline-offset: 2px; }
.file-list { display: flex; flex-direction: column; gap: 8px; }
.file-list li { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: var(--panel); font-size: 14px; }
.file-list__name { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-list__size { flex: none; font-size: 13px; color: var(--mist); font-variant-numeric: tabular-nums; }
.file-list__remove { flex: none; min-height: 32px; padding: 0 10px; border: 1px solid var(--line-3); background: none; font-size: 13px; color: var(--soft); }
.file-list__remove:hover { border-color: var(--alert); color: var(--alert); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; flex-direction: column; gap: 12px; }
.check { position: relative; display: inline-flex; align-items: center; gap: 12px; font-size: 15px; cursor: pointer; }
.check input { position: absolute; left: 0; top: 50%; width: 22px; height: 22px; margin: 0; opacity: 0; transform: translateY(-50%); cursor: pointer; }
.check__box { display: flex; align-items: center; justify-content: center; flex: none; width: 22px; height: 22px; border: 1px solid var(--line-4); background: var(--panel); }
.check__box svg { width: 12px; height: 12px; opacity: 0; }
.check input:checked + .check__box { border-color: var(--text); background: var(--text); color: var(--ink); }
.check input:checked + .check__box svg { opacity: 1; }
.check input:focus-visible + .check__box { outline: 2px solid var(--gold); outline-offset: 2px; }
.check input[aria-invalid="true"] + .check__box { border-color: var(--alert); }
.consent__details summary { display: inline-block; font-size: 14px; color: var(--mist); border-bottom: 1px solid var(--line-3); cursor: pointer; list-style: none; }
.consent__details summary::-webkit-details-marker { display: none; }
.consent__details summary:hover { color: var(--gold); }
.consent__details[open] summary { margin-bottom: 12px; }
.consent__box { padding: 16px 20px; background: var(--panel); font-size: 14px; line-height: 1.8; color: var(--soft); }
.consent__box li { display: flex; gap: 10px; }
.consent__box li::before { content: "—"; flex: none; color: var(--gold); }
.consent__box a { color: var(--text); border-bottom: 1px solid var(--line-4); }
.form-footer { display: flex; flex-direction: column; gap: 20px; padding-top: 28px; border-top: 1px solid var(--line); }
.form-footer__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.form-status { min-height: 1.6em; font-size: 14px; line-height: 1.6; color: var(--soft); }
.form-status.is-error { color: var(--alert); }
.turnstile { min-height: 65px; }
.inquiry-done { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding: clamp(32px, 4vw, 56px); background: var(--panel); outline: none; }
.inquiry-done__title { font-family: var(--f-s); font-size: clamp(28px, 2.8vw, 38px); font-weight: 300; line-height: 1.35; }
.contact-aside { grid-column: 9 / span 4; display: flex; flex-direction: column; gap: 32px; padding: 40px; background: var(--panel); }
.contact-aside__tel { font-family: var(--f-d); font-stretch: 125%; font-size: clamp(22px, 2.1vw, 30px); font-weight: 500; letter-spacing: 0.03em; white-space: nowrap; font-variant-numeric: tabular-nums; }
.contact-aside__block { display: flex; flex-direction: column; gap: 8px; }
.contact-aside__block + .contact-aside__block { padding-top: 24px; border-top: 1px solid var(--line-2); }
.contact-aside .info-list > div { padding-top: 0; border-top: 0; }
.tips { display: flex; flex-direction: column; gap: 8px; font-size: 14px; line-height: 1.6; color: var(--soft); }
.tips li { display: flex; gap: 10px; }
.tips li::before { content: "—"; flex: none; color: var(--gold); }

/* privacy policy */
.prose { max-width: 860px; padding-block: 56px var(--section); }
.prose h2 { margin-top: 56px; font-size: 20px; font-weight: 600; line-height: 1.5; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { font-size: 15px; line-height: 1.9; color: var(--soft); }
.prose p { margin-top: 12px; }
.prose ul { margin-top: 12px; padding-left: 1.2em; list-style: disc; }
.prose li + li { margin-top: 4px; }
.prose a { color: var(--text); border-bottom: 1px solid var(--line-4); }
.prose strong { color: var(--text); font-weight: 500; }
.table-scroll { margin-top: 16px; overflow-x: auto; }
.prose table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 14px; line-height: 1.7; }
.prose th, .prose td { padding: 10px 14px; border: 1px solid var(--line-2); text-align: left; vertical-align: top; color: var(--soft); }
.prose th { background: var(--panel); color: var(--text); font-weight: 500; }

/* 404 and sent */
.message-page { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 24px; min-height: 62vh; padding-block: 96px; }
.message-page__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

@media (max-width: 1100px) {
  .work__steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 24px; }
}

@media (max-width: 900px) {
  .route { gap: 12px; }
  .places { grid-template-columns: minmax(0, 1fr); gap: 48px; margin-top: 32px; }
  .place { gap: 20px; }
  .work__head { gap: 16px; }
  .work__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 16px; margin-top: 40px; }
  .work__ko { font-size: 21px; }
  .values { gap: 40px; }
  .value { padding-block: 36px; }
  .visit { gap: 40px; }
  .contact { padding-top: 40px; gap: 56px; }
  .field-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .inquiry { gap: 28px; }
  .dropzone { padding: 16px; }
  .dropzone__text { font-size: 14px; }
  .form-footer__row .btn { width: 100%; justify-content: space-between; }
  .contact-aside { padding: 28px var(--gutter); margin-inline: calc(-1 * var(--gutter)); }
  .prose { padding-top: 32px; }
}

@media (max-width: 700px) {
  .map-art--wide { display: none; }
  .map-art--tall { display: block; }
  .map-panel { margin-inline: calc(-1 * var(--gutter)); }
  .map-panel__foot { padding-inline: var(--gutter); }
  .map-panel__links { width: 100%; }
  .map-panel__links .btn { flex: 1 1 0; justify-content: space-between; padding-inline: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .input, .chip span, .dropzone { transition: none; }
}
