@font-face {
  font-family: Geologica;
  font-style: normal;
  font-weight: 400 600;
  font-display: optional;
  src: url("/fonts/geologica-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Geologica;
  font-style: normal;
  font-weight: 400 600;
  font-display: optional;
  src: url("/fonts/geologica-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Unbounded;
  font-style: normal;
  font-weight: 400 500;
  font-display: optional;
  src: url("/fonts/unbounded-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Unbounded;
  font-style: normal;
  font-weight: 400 500;
  font-display: optional;
  src: url("/fonts/unbounded-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root,
html[data-theme="light"] {
  color-scheme: light;
  --ink: #0b2f38;
  --paper: #f3f6f6;
  --surface: #ffffff;
  --bg: color-mix(in srgb, var(--ink) 10%, var(--paper));
  --muted: color-mix(in srgb, var(--ink) 72%, var(--paper));
  --line: color-mix(in srgb, var(--ink) 16%, var(--paper));
  --water: var(--ink);
  --water-2: var(--ink);
  --soft: color-mix(in srgb, var(--ink) 8%, var(--paper));
  --linen: var(--paper);
  --panel: #0b2f38;
  --panel-ink: #f3f6f6;
  --danger: var(--ink);
  --err: #e23b3b;
  --radius: 0;
  --max: 1180px;
  --header: 60px;
  --display: Unbounded, sans-serif;
  --sans: Geologica, "Segoe UI", sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #e6eef0;
  --paper: #12262c;
  --surface: #183038;
  --bg: #0a1b20;
  --muted: color-mix(in srgb, var(--ink) 72%, var(--paper));
  --line: color-mix(in srgb, var(--ink) 16%, var(--paper));
  --water: var(--ink);
  --water-2: var(--ink);
  --soft: color-mix(in srgb, var(--ink) 8%, var(--paper));
  --linen: var(--paper);
  --panel: #071014;
  --panel-ink: #e6eef0;
  --danger: var(--ink);
  --err: #ff5c5c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.012em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  min-width: 0;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 50;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 12px;
}

.skip:focus {
  top: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.35em;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.brand span {
  color: color-mix(in srgb, var(--ink) 88%, var(--paper));
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  text-decoration: none;
  color: color-mix(in srgb, var(--ink) 84%, var(--paper));
  font-size: 14px;
}

.nav a:hover {
  color: var(--ink);
}

.nav a.phone {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.tg-icon {
  width: 36px;
  height: 36px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.tg-icon:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.tg-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.lang {
  display: flex;
  border: 1px solid var(--line);
  background: var(--paper);
}

.lang a,
.lang button {
  border: 0;
  background: transparent;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.2;
}

.lang a[aria-current="page"],
.lang button[aria-pressed="true"] {
  background: #0b2f38;
  color: #f3f6f6;
}

html[data-theme="dark"] .lang a[aria-current="page"],
html[data-theme="dark"] .lang button[aria-pressed="true"] {
  background: #f3f6f6;
  color: #0b2f38;
}

.theme-toggle {
  width: 36px;
  height: 36px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.theme-toggle:hover {
  border-color: var(--ink);
}

.theme-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-icon-sun {
  display: none;
}

.theme-icon-moon {
  display: block;
}

html[data-theme="dark"] .theme-icon-sun {
  display: block;
}

html[data-theme="dark"] .theme-icon-moon {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
}

.btn:hover {
  background: var(--water-2);
}

.btn:focus-visible,
.lang button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--water);
  outline-offset: 2px;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: var(--paper);
}

.hero {
  padding: 32px 0 0;
}

.hero-shelf-note {
  margin: 16px 0 8px;
  font-size: 13px;
  color: var(--muted);
}

.hero-shelf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 8px;
}

.hero-shelf-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.hero-shelf-item span {
  font-size: 13px;
  color: var(--muted);
}

.hero-shelf-item strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
}

.hero-shelf-item[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}

.hero-shelf-item[aria-pressed="true"] span {
  color: color-mix(in srgb, var(--paper) 72%, transparent);
}

.hero-photo {
  position: relative;
  margin: 28px 0 0;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.hero-photo-scene {
  width: 100%;
  height: min(58vh, 640px);
  object-fit: cover;
  object-position: center 46%;
}

.hero-photo-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: 18px 28px;
  padding: 80px max(20px, calc((100% - var(--max)) / 2)) 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 16, 20, 0.28) 38%, rgba(7, 16, 20, 0.82) 100%);
  color: #f3f6f6;
}

.hero-photo-logo {
  width: clamp(112px, 16vw, 188px);
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
}

.hero-photo-copy {
  margin: 0;
  min-width: 0;
  max-width: 36em;
}

.hero-photo-line {
  margin: 0 0 12px;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.3;
  color: #f3f6f6;
}

.hero-photo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.hero-photo-chips li {
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, #f3f6f6 28%, transparent);
  font-size: 13px;
  color: color-mix(in srgb, #f3f6f6 88%, transparent);
}

.hero-photo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-photo-copy .btn {
  background: #f3f6f6;
  color: #0b2f38;
  border-color: #f3f6f6;
}

.hero-photo-copy .btn::after {
  display: none;
}

.hero-photo-copy .btn:hover {
  background: #fff;
  color: #0b2f38;
}

.hero-photo-copy .btn-ghost {
  background: transparent;
  color: #f3f6f6;
  border: 1px solid color-mix(in srgb, #f3f6f6 42%, transparent);
}

.hero-photo-copy .btn-ghost:hover {
  background: color-mix(in srgb, #f3f6f6 14%, transparent);
}

.hero-copy {
  max-width: none;
  margin-bottom: 28px;
}

.place {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

h1 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.lead {
  margin: 0 0 8px;
  max-width: 38em;
  color: var(--muted);
}

.jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 0 16px;
  font-size: 14px;
}

.jump a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.calc {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0;
  min-width: 0;
  scroll-margin-top: calc(var(--header) + 12px);
}

.calc-main {
  padding: 22px 24px 24px;
  min-width: 0;
}

.calc-aside {
  padding: 24px 22px;
  background: var(--panel);
  color: var(--panel-ink);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lead-copy {
  margin: 12px 0;
}

.lead-copy summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
}

.lead-copy textarea {
  margin-top: 8px;
}

.places,
.modes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}

.geo-far {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--muted);
}

.place-hint,
.extras-note {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--muted);
}

.extra-card,
.rooms button,
.types button,
.places button,
.modes button {
  transition: background 0.14s ease, border-color 0.14s ease, color 0.14s ease;
}

.places button,
.modes button {
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 44px;
  cursor: pointer;
  font-size: 14px;
}

.places button[aria-pressed="true"],
.modes button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.extras-h {
  margin: 12px 0 8px;
  font-size: 13px;
  color: var(--muted);
}

.rooms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.rooms[hidden],
#rooms-h[hidden],
#home-pane[hidden],
.extra-card[hidden],
.place-hint[hidden],
.regular-check[hidden] {
  display: none !important;
}

.rooms button {
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 72px;
  padding: 8px 4px;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}

.rooms button small,
.rooms button strong {
  display: block;
}

.rooms button small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.rooms button strong {
  margin-top: 4px;
  font-family: var(--display);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.rooms button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.rooms button[aria-pressed="true"] small,
.rooms button[aria-pressed="true"] strong {
  color: color-mix(in srgb, var(--paper) 78%, transparent);
}

.extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 4px;
  grid-auto-rows: 1fr;
}

.extra-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 6px 10px 6px 6px;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  min-width: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease;
}

.extra-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--ink) 35%, var(--line));
  box-shadow: 0 16px 36px color-mix(in srgb, var(--ink) 16%, transparent);
}

.extra-card img {
  width: 56px;
  height: 56px;
  flex: none;
  object-fit: cover;
  object-position: center;
}

.extra-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding: 0;
  font-size: 13px;
  line-height: 1.25;
  min-width: 0;
}

.extra-card-body strong {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--display);
  font-weight: 400;
}

.extra-card[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.extra-card[aria-pressed="true"] strong {
  color: color-mix(in srgb, var(--paper) 70%, transparent);
}

.extras {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}

.lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lines li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.lines li.is-total {
  border-bottom: 0;
  font-weight: 600;
  padding-top: 10px;
}

.lines strong {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.calc-row {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.calc-row label {
  font-size: 13px;
  color: var(--muted);
}

.area-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.area-line input[type="range"] {
  flex: 1;
  accent-color: var(--water);
}

.area-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0 10px;
  min-height: 44px;
}

.area-num-wrap span {
  color: var(--muted);
  font-size: 14px;
}

.area-num {
  width: 64px;
  border: 0;
  background: transparent;
  padding: 8px 0;
  font-family: var(--display);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}

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

.types button {
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 48px;
  padding: 8px 6px;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}

.types button small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.types button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.types button[aria-pressed="true"] small {
  color: color-mix(in srgb, var(--paper) 70%, transparent);
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
}

.regular-check {
  margin: 12px 0 4px;
  font-size: 14px;
  color: var(--ink);
}

.check input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex: none;
}

.total {
  display: grid;
  gap: 8px;
}

.total-label {
  color: color-mix(in srgb, var(--panel-ink) 62%, transparent);
  font-size: 13px;
}

.total-sum-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.total-sum {
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 46px);
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  line-height: 1.05;
}

.total-m2 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
  color: color-mix(in srgb, var(--panel-ink) 72%, transparent);
}

.total-note {
  margin: 4px 0 0;
  font-size: 13px;
  color: color-mix(in srgb, var(--panel-ink) 58%, transparent);
}

.total-note.is-error,
#quick-status.is-error,
#copy-status.is-error {
  color: var(--err);
  font-weight: 600;
}

.req-label::after {
  content: " *";
  color: var(--err);
  font-weight: 700;
}

input.is-invalid,
.quick-row input.is-invalid,
.sheet input.is-invalid {
  border-color: var(--err) !important;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--err) 45%, transparent);
  outline: none;
}

.calc-aside .lines li {
  border-color: color-mix(in srgb, var(--panel-ink) 16%, transparent);
}

.calc-aside .calc-actions {
  flex-direction: column;
  margin-top: 18px;
  padding-top: 0;
}

.calc-aside .btn {
  width: 100%;
  background: var(--panel-ink);
  color: var(--panel);
}

.calc-aside .btn:hover {
  filter: brightness(0.94);
}

.calc-aside .btn-ghost {
  background: transparent;
  color: var(--panel-ink);
  border-color: color-mix(in srgb, var(--panel-ink) 32%, transparent);
}

.calc-aside .btn-ghost:hover {
  background: color-mix(in srgb, var(--panel-ink) 10%, transparent);
}

.calc-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.calc-contact {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.calc-aside .calc-contact .btn {
  width: auto;
  flex: 1;
}

.calc-aside .calc-contact .tg-icon {
  width: 48px;
  height: 48px;
  border-color: color-mix(in srgb, var(--panel-ink) 32%, transparent);
  color: var(--panel-ink);
}

.calc-aside .calc-contact .tg-icon:hover {
  border-color: var(--panel-ink);
}

.fear-row {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: color-mix(in srgb, var(--panel-ink) 70%, transparent);
}

.fear-row li {
  padding-left: 0;
}

.caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  padding: 6px 10px;
  font-size: 12px;
  color: var(--muted);
}

.section {
  padding: 64px 0;
  scroll-margin-top: calc(var(--header) + 12px);
}

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

h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.04em;
}

.sub {
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 42em;
}

.jobs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
}

.job {
  padding: 22px;
}

.job img {
  width: calc(100% + 44px);
  max-width: none;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin: -22px -22px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.job + .job {
  border-left: 1px solid var(--line);
}

.job h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.job p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
}

.job .sum {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.job .sum small {
  display: block;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
}

.job-cta {
  margin-top: 14px;
  width: 100%;
}

.price-subh {
  margin: 28px 0 10px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.price-quote {
  margin: 0 0 8px;
  max-width: 52em;
  color: var(--muted);
  font-size: 14px;
}

.price-foot {
  margin: 10px 0 0;
  max-width: 46em;
  color: var(--muted);
  font-size: 13px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--paper);
}

.price-m2 th:first-child,
.price-m2 td:first-child {
  position: sticky;
  left: 0;
  background: var(--paper);
  z-index: 1;
}

.price-m2 td:not(:first-child),
.price-m2 th:not(:first-child) {
  white-space: nowrap;
}

.price-group td {
  padding-top: 16px;
  font-size: 13px;
  color: var(--muted);
  text-align: left;
  background: var(--soft);
  font-weight: 600;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

th,
td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

th {
  color: var(--muted);
  font-weight: 500;
}

td:not(:first-child),
th:not(:first-child) {
  text-align: right;
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mosaic figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  min-width: 0;
}

.mosaic img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mosaic-wide {
  grid-column: span 1;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery-mosaic figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  min-width: 0;
}

.gallery-mosaic img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-mosaic figcaption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  padding: 4px 8px;
  font-size: 12px;
  color: var(--ink);
}

.gear-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
}

.gear-split img {
  width: 100%;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-more {
  margin-top: 16px;
}

.mosaic figcaption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  padding: 4px 8px;
  font-size: 12px;
  color: var(--ink);
}

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

.compare {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #cfd8db;
  aspect-ratio: 16 / 9;
  user-select: none;
}

.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.compare .after {
  z-index: 0;
}

.compare .before {
  z-index: 1;
  clip-path: inset(0 48% 0 0);
}

.compare input[type="range"] {
  position: absolute;
  inset: auto 0 10px;
  width: calc(100% - 24px);
  margin: 0 12px;
  accent-color: var(--paper);
  z-index: 2;
}

.compare .tag {
  position: absolute;
  top: 10px;
  z-index: 2;
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  color: #f4fbfc;
  font-size: 11px;
  padding: 3px 8px;
}

.compare .tag-before {
  left: 10px;
}

.compare .tag-after {
  right: 10px;
}

.compare figcaption {
  position: absolute;
  left: 10px;
  bottom: 32px;
  z-index: 2;
  color: #f4fbfc;
  font-size: 13px;
  text-shadow: 0 1px 8px #142024;
}

.kit-diff {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin: 0 0 20px;
}

.kit-diff p {
  margin: 0;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 14px;
}

.rooms-kit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--paper);
}

.rooms-kit article {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.rooms-kit article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.rooms-kit h3 {
  margin: 0 0 12px;
}

.rooms-kit ul,
.kit-out ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rooms-kit li,
.kit-out li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.rooms-kit li:last-child,
.kit-out li:last-child {
  border-bottom: 0;
}

.quick-call {
  width: 100%;
}

.quick-label {
  display: block;
  font-size: 12px;
  margin: 0 0 6px;
  color: color-mix(in srgb, var(--panel-ink) 70%, transparent);
}

.quick-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) auto;
  gap: 8px;
  align-items: stretch;
}

.quick-row input {
  min-width: 0;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid color-mix(in srgb, var(--panel-ink) 32%, transparent);
  background: transparent;
  color: var(--panel-ink);
}

.calc-aside .quick-row .btn {
  width: auto;
  min-width: 132px;
}

.kits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
}

.kits article {
  padding: 22px;
}

.kits article + article {
  border-left: 1px solid var(--line);
}

.kits h3,
.kit-out h3 {
  margin: 0 0 12px;
}

.kits ul,
.kit-out ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kits li,
.kit-out li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.kits li:last-child,
.kit-out li:last-child {
  border-bottom: 0;
}

.kit-out {
  margin-top: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.kit-out li {
  color: var(--muted);
}

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

.chips span {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 8px 12px;
  font-size: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.steps li {
  list-style: none;
  padding: 22px;
}

.steps li + li {
  border-left: 1px solid var(--line);
}

.steps ol {
  margin: 0;
  padding: 0;
  display: contents;
}

.steps strong {
  display: block;
  font-family: var(--display);
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--muted);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 110px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.foot-links a {
  text-decoration: none;
  color: var(--ink);
}

.foot-links a:hover {
  text-decoration: underline;
}

.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  backdrop-filter: blur(16px) saturate(1.15);
  border-top: 1px solid var(--line);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
}

.sticky .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky .sum {
  font-family: var(--display);
  font-size: 18px;
  color: var(--ink);
}

.sticky .muted {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

.sheet {
  position: relative;
  margin: auto;
  width: min(480px, calc(100% - 24px));
  max-height: min(92vh, 760px);
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px;
}

.sheet::backdrop {
  background: color-mix(in srgb, var(--ink) 46%, transparent);
}

.sheet-x {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  width: 36px;
  height: 36px;
  cursor: pointer;
  color: var(--muted);
}

.sheet h2 {
  font-size: 22px;
}

.sheet label {
  display: block;
  margin: 12px 0 6px;
  font-size: 13px;
  color: var(--muted);
}

.sheet input,
.sheet textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 10px 12px;
}

.date-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 8px;
}

.date-chip {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.date-chip[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

#lead-date {
  min-height: 48px;
  font-size: 16px;
}

.quick-call .date-chips {
  margin-top: 8px;
}

.sheet textarea {
  min-height: 90px;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
}

.check-row input {
  width: auto;
  accent-color: var(--ink);
}

.sheet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.sheet-actions .btn:first-child {
  flex: 1 1 100%;
}

.sheet-actions .btn,
.sheet-actions a.btn {
  flex: 1 1 calc(50% - 8px);
}

.warn {
  margin: 12px 0 0;
  padding: 10px 12px;
  background: #f4ebe6;
  color: var(--danger);
  font-size: 13px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  min-width: 44px;
  min-height: 36px;
  cursor: pointer;
}

@media (min-width: 901px) {
  .sticky {
    display: none;
  }

  .site-footer {
    padding-bottom: 28px;
  }

  .header-cta {
    display: none;
  }

  .nav-home {
    display: none;
  }

  .nav > a[aria-current="page"] {
    color: var(--ink);
  }
}

@media (max-width: 900px) {
  .header-back {
    display: none;
  }

  .page-more-grid,
  .scope-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-photo-scene {
    height: 420px;
  }

  .hero-photo-ui {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
    padding: 72px 16px 84px;
  }

  .hero-photo-logo {
    width: 88px;
  }

  .hero-photo-actions {
    flex-direction: column;
  }

  .hero-photo-actions .btn {
    width: 100%;
  }

  .hero-shelf {
    grid-template-columns: 1fr;
  }

  .quick-row {
    grid-template-columns: 1fr;
  }

  .calc-aside .quick-row .btn {
    width: 100%;
  }

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

  .calc-aside {
    border-top: 1px solid color-mix(in srgb, var(--paper) 16%, transparent);
  }

  .lead {
    margin-bottom: 12px;
  }

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

  .kits,
  .kit-diff,
  .rooms-kit,
  .steps {
    grid-template-columns: 1fr;
  }

  .rooms-kit article:nth-child(odd) {
    border-right: 0;
  }

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

  .compare {
    aspect-ratio: 4 / 3;
  }

  .job + .job,
  .kits article + article,
  .steps li + li {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav.is-open {
    display: flex;
  }

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

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

  .rooms button {
    min-height: 64px;
    font-size: 14px;
  }

  .mosaic,
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .gear-split {
    grid-template-columns: 1fr;
  }

  .types button {
    min-height: 52px;
    padding: 6px 4px;
    font-size: 13px;
  }

  .calc-actions {
    flex-direction: column;
  }

  h1 {
    font-size: clamp(26px, 8vw, 32px);
    animation: none;
    filter: none;
    opacity: 1;
    transform: none;
  }

  .header-phone {
    font-size: 13px;
  }

  .day,
  .day article {
    min-width: 0;
  }

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

  .kit-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .kit-tab {
    flex: none;
  }

  .hotspot-stage {
    aspect-ratio: 4 / 3;
  }

  .hotspot-tip {
    min-width: 148px;
    font-size: 12px;
  }

  .page-compare {
    aspect-ratio: 4 / 3;
  }

  .calc-aside {
    contain: paint;
  }

  .sticky .btn {
    min-height: 44px;
    padding: 0 12px;
    font-size: 14px;
  }

  .sticky-tel {
    min-width: 52px;
    padding: 0 8px;
  }

  .sheet {
    width: calc(100% - 16px);
    max-height: min(96dvh, 100%);
  }
}

html,
body {
  overflow-x: clip;
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}

.job h3 a {
  text-decoration: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 0;
  background: transparent;
}

.trust-grid article {
  padding: 8px 28px 8px 0;
}

.trust-grid article + article {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.trust-grid .trust-t {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.vs-table th,
.vs-table td {
  text-align: left;
}

.vs-table td:last-child,
.vs-table th:last-child {
  font-weight: 600;
}

.band {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 28px 24px;
}

.band h2 {
  margin-bottom: 8px;
}

.band p {
  margin: 0;
  max-width: 42em;
  color: var(--muted);
}

.svc-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  object-position: center;
  margin: 0 0 14px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.geo-h {
  margin: 22px 0 10px;
  font-size: 16px;
}

.svc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
  font-size: 15px;
}

.svc-links a {
  color: var(--muted);
  text-decoration: none;
}

.svc-links a:hover {
  color: var(--ink);
}

.svc-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.svc-card {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
}

.svc-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.svc-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.svc-card:hover {
  border-color: var(--ink);
}

.header-back {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.header-back:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .header-back {
    display: none;
  }
}

.crumb {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--muted);
}

.crumb a {
  color: var(--muted);
}

.crumb-back {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin: 0 0 20px;
}

.back-home {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.back-home:hover {
  text-decoration: underline;
}

.crumb-here {
  color: var(--muted);
  font-size: 14px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
}

.page-more {
  margin: 8px 0 32px;
}

.page-more h2 {
  margin-bottom: 12px;
}

.page-more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.page-more-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
  color: var(--ink);
}

.page-more-card span {
  color: var(--muted);
  font-size: 13px;
}

.page-more-card strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
}

.page-more-card:hover {
  border-color: var(--ink);
}

.prose {
  max-width: 42em;
}

.page-note {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.scope-grid,
.how-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 28px;
}

.scope-card,
.how-card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 18px;
}

.scope-card h3,
.how-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
}

.scope-card p,
.how-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.how-n {
  display: block;
  font-family: var(--display);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.page-hero h2 {
  margin: 28px 0 12px;
}

.prose p {
  margin: 0 0 14px;
  color: var(--muted);
}

.prose h2 {
  margin-top: 28px;
}

.page-hero {
  padding: 36px 0 12px;
}

.shot-wrap {
  margin: 24px 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.shot-wrap img,
.shot {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: var(--paper);
}

.page-compare {
  margin: 24px 0;
  aspect-ratio: 16 / 9;
}

.kit-shot {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
  background: var(--soft);
  margin: 0 0 14px;
  border: 1px solid var(--line);
}

.kit-all-note {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  max-width: 46em;
}

.kit-hotspots article {
  padding: 0 0 16px;
}

.kit-hotspots h3,
.kit-hotspots .kit-list {
  padding: 0 16px;
}

.kit-hotspots h3 {
  margin-top: 12px;
}

.rooms-kit:not(.is-single) .kit-list {
  display: none;
}

.hotspot-stage {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: visible;
  background: var(--soft);
}

.hotspot-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.kit-hotspots [data-kit-panel="live"] img,
.kit-hotspots [data-kit-panel="bed"] img {
  object-position: left center;
}

.hotspot {
  position: absolute;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hotspot::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #f3f6f6;
  box-shadow: 0 0 0 2px #0b2f38;
}

.hotspot::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, #f3f6f6 70%, transparent);
  animation: hotspot-pulse 2.6s ease-out infinite;
}

@keyframes hotspot-pulse {
  0% {
    transform: scale(0.72);
    opacity: 0.85;
  }
  70%,
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.hotspot-tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  min-width: 168px;
  max-width: min(240px, 70vw);
  padding: 10px 12px;
  background: var(--panel);
  color: var(--panel-ink);
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 8px 24px color-mix(in srgb, #000 28%, transparent);
}

.hotspot:hover,
.hotspot:focus-visible,
.hotspot[aria-expanded="true"] {
  z-index: 4;
}

.hotspot:hover .hotspot-tip,
.hotspot:focus-visible .hotspot-tip,
.hotspot[aria-expanded="true"] .hotspot-tip {
  opacity: 1;
}

.hotspot[data-tip="down"] .hotspot-tip {
  bottom: auto;
  top: calc(100% + 8px);
}

.hotspot[data-tip="left"] .hotspot-tip {
  left: 0;
  transform: translateX(-88%);
}

.hotspot[data-tip="right"] .hotspot-tip {
  left: 100%;
  transform: none;
}

@media (max-width: 900px) {
  .hotspot-stage {
    aspect-ratio: 4 / 3;
  }

  .kit-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

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

  .svc-cards {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .day article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

}

.calc-aside {
  position: relative;
  overflow: hidden;
}

.calc-aside::before,
.calc-aside::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
}

.calc-aside::before {
  width: 70%;
  height: 90%;
  top: -24%;
  right: -20%;
  background: radial-gradient(circle, color-mix(in srgb, #3a6d74 26%, transparent), transparent 72%);
  animation: water-drift 22s ease-in-out infinite;
}

.calc-aside::after {
  width: 48%;
  height: 60%;
  bottom: -18%;
  left: -14%;
  background: radial-gradient(circle, color-mix(in srgb, #2c555c 18%, transparent), transparent 74%);
  animation: water-drift 28s ease-in-out infinite reverse;
}

.calc-aside .btn::after {
  display: none;
}

.calc-aside > * {
  position: relative;
  z-index: 1;
}

@keyframes water-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translate(-18%, 12%) scale(1.25);
    opacity: 1;
  }
}

.brand span {
  display: inline-block;
  animation: brand-breathe 5.5s ease-in-out infinite;
}

@keyframes brand-breathe {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.72;
  }
}

.extra-card img {
  transition: transform 0.7s ease;
}

.extra-card:hover img {
  transform: scale(1.06);
}

.btn {
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, color-mix(in srgb, var(--paper) 35%, transparent) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: btn-sheen 7.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-sheen {
  0%,
  70% {
    transform: translateX(-130%);
  }
  88%,
  100% {
    transform: translateX(130%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-in {
  animation: reveal-up 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: none;
  }
}

.kit-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.kit-tab {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.kit-tab[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.rooms-kit.is-single {
  grid-template-columns: 1fr;
}

.rooms-kit.is-single article {
  border-right: 0;
}

.day {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
  margin-top: 20px;
}

.day article {
  padding: 18px 16px;
}

.day article + article {
  border-left: 1px solid var(--line);
}

.day strong {
  display: block;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.day p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.btn:hover {
  transform: translateY(-2px);
}

.mosaic img,
.gallery-mosaic img {
  transition: transform 1.1s ease;
}

.mosaic figure:hover img,
.gallery-mosaic a:hover img {
  transform: scale(1.05);
}

.total-sum {
  transition: opacity 0.18s ease, transform 0.18s ease;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .extra-card,
  .rooms button,
  .types button,
  .modes button,
  .btn,
  .mosaic img,
  .total-sum {
    transition: none;
  }

  .calc-aside::before,
  .calc-aside::after,
  .brand span,
  .btn::after,
  h1,
  .reveal,
  .hotspot::after {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .extra-card:hover {
    transform: none;
    box-shadow: none;
  }
}
