:root {
  --bg: #000000;
  --paper: #111111;
  --ink: #f3f3f3;
  --mute: #9a9a9a;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #d0d0d0;
  --blue-2: #ffffff;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display: "Figtree", "Segoe UI", sans-serif;
  --sans: "Figtree", "Segoe UI", sans-serif;
  --page: 1440px;
  --gutter: 48px;
  --inset: max(24px, calc((100% - var(--page)) / 2));
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
p { margin: 0; }

.skip {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 120;
  padding: 10px 14px;
  background: var(--blue);
  color: #fff;
}
.skip:focus { top: 12px; }

.wrap { width: min(var(--page), calc(100% - var(--gutter))); margin-inline: auto; }

.kicker {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  padding-left: 26px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a3a3a3;
}
.kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.btn-fire { background: #fff; color: #000; }
.btn-fire:hover { background: #d8d8d8; }
.btn-ghost { border: 1px solid currentColor; }

.bar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 0 var(--inset);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-family: var(--display);
}
.logo img {
  width: 36px;
  height: 36px;
  object-fit: cover;
}
.menu {
  display: flex;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.menu a {
  position: relative;
  padding-bottom: 4px;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.menu a[aria-current="page"]::after,
.menu a:hover::after { transform: scaleX(1); }
.menu a[aria-current="page"],
.menu a:hover { color: #fff; }
.bar-call {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.burger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 8px 12px;
  cursor: pointer;
}

.hero { position: relative; overflow: hidden; }
.hero-track {
  position: relative;
  height: min(88svh, 860px);
  background: #000;
}
.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
  pointer-events: none;
}
.hero-slide.is-on {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.hero-card {
  position: absolute;
  left: 4vw;
  bottom: 7vh;
  z-index: 3;
  max-width: 460px;
  padding: 32px 34px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.hero-card h1 { font-size: clamp(32px, 4.4vw, 48px); margin-bottom: 12px; }
.hero-card p { color: var(--mute); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.hero-nav:hover { background: rgba(0, 0, 0, 0.75); }
.hero-nav.prev { left: 16px; }
.hero-nav.next { right: 16px; }
.hero-dots {
  position: absolute;
  right: 4vw;
  bottom: 28px;
  z-index: 4;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}
.hero-dots button.is-on { background: #fff; }

.home-about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 88px 0 72px;
}
.about-photo {
  margin: 0;
  overflow: hidden;
}
.home-about img,
.about-photo img {
  width: 100%;
  height: min(520px, 62vh);
  object-fit: cover;
  object-position: center 70%;
}
.home-about h2 { font-size: clamp(32px, 4.4vw, 48px); margin-bottom: 16px; }
.home-about p { color: var(--mute); max-width: 46ch; margin-bottom: 14px; }
.about-points {
  margin: 8px 0 28px;
  padding: 0;
  list-style: none;
  color: var(--ink);
}
.about-points li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.home-about .btn-ghost { color: #fff; }

.shots {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 10px;
  padding: 10px 10px 0;
}
.shot {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  color: #fff;
}
.shot img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center 82%;
  transition: transform 0.8s var(--ease);
}
.shot:hover img { transform: scale(1.05); }
.shot span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 10px;
  background: rgba(15, 20, 24, 0.72);
  font-size: 13px;
  font-weight: 500;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: end;
  padding: 80px 0 64px;
}
.intro h2 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 16px; }
.intro p { color: var(--mute); max-width: 46ch; }
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.facts li {
  padding: 22px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--mute);
  font-size: 14px;
}
.facts b {
  display: block;
  font-family: var(--display);
  font-size: 40px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}

.systems { padding: 8px 0 88px; }
.systems-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 16px;
  margin-bottom: 20px;
}
.systems-head > div { margin-right: auto; }
.systems-head h2 { font-size: clamp(36px, 5vw, 64px); }
.systems-head a { color: #fff; font-weight: 600; font-size: 15px; }
.sys {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 10px;
  min-height: 620px;
  align-items: stretch;
}
.sys-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
.sys-btn {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 22px 20px 24px;
  overflow: hidden;
  text-align: left;
  background: #0c0c0c;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.sys-btn:hover { border-color: rgba(255, 255, 255, 0.35); }
.sys-num {
  flex: none;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #777;
  padding-top: 4px;
}
.sys-txt h3 { font-size: 22px; margin-bottom: 8px; }
.sys-txt p { color: var(--mute); font-size: 14px; line-height: 1.45; }
.sys-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #000;
}
.sys-btn.is-on {
  background: #fff;
  border-color: #fff;
  color: #000;
}
.sys-btn.is-on .sys-num,
.sys-btn.is-on .sys-txt p { color: #555; }
.sys-btn.is-on .sys-bar {
  animation: sysfill 4.8s linear forwards;
}
@keyframes sysfill { to { width: 100%; } }
.sys-stage {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background: #111;
}
.sys-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s var(--ease);
}
.sys-stage img.is-on {
  opacity: 1;
  z-index: 1;
  animation: syszoom 4.8s linear forwards;
}
@keyframes syszoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.sys-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 10px 16px;
  padding: 48px 24px 22px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
}
.sys-cap b {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #cfcfcf;
}
.sys-cap strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-right: auto;
}
.sys-cap a {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 2px;
}

.how { background: var(--paper); padding: 72px 0; }
.how-head { margin-bottom: 28px; }
.how-head h2 { font-size: clamp(32px, 4vw, 48px); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.how-grid article { background: var(--bg); }
.how-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 58%;
}
.how-grid article:nth-child(3) img { object-position: center 42%; }
.how-grid b {
  display: block;
  padding: 16px 16px 0;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0.12em;
}
.how-grid h3 { font-size: 26px; padding: 4px 16px 6px; }
.how-grid p { padding: 0 16px 20px; color: var(--mute); font-size: 15px; }

.compare {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 32px;
  align-items: center;
  padding: 80px 0;
}
.compare-copy h2 { font-size: clamp(32px, 4vw, 48px); margin: 8px 0 12px; }
.compare-copy p { color: var(--mute); }
.ba {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  background: #111;
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.ba-after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 48%;
  overflow: hidden;
}
.ba-after img { width: 100%; max-width: none; object-position: center 55%; }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48%;
  width: 2px;
  background: #fff;
}
.ba-handle::after {
  content: "⟷";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: grid;
  place-items: center;
}
.ba-tag {
  position: absolute;
  top: 16px;
  padding: 6px 10px;
  background: #111;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ba-tag.l { left: 14px; }
.ba-tag.r { right: 14px; }

.cta {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-items: end;
  color: #fff;
}
.cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 78%;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.12) 100%);
}
.cta > div {
  position: relative;
  z-index: 1;
  width: min(var(--page), calc(100% - var(--gutter)));
  max-width: 720px;
  margin-inline: var(--inset) auto;
  padding: 64px 0;
}
.cta .kicker { color: #c9d8ee; }
.cta h2 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 12px; }
.cta-phone {
  display: inline-block;
  margin: 18px 0 8px;
  font-family: var(--display);
  font-size: clamp(32px, 6vw, 56px);
}
.cta .btn-ghost { color: #fff; }

.site-foot {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding: 40px var(--inset);
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 14px;
  background: var(--paper);
}
.site-foot strong { color: var(--ink); }
.site-foot a:hover { color: var(--blue); }
.wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 55;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.wa::before,
.wa::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  pointer-events: none;
}

.page-head {
  min-height: 48vh;
  display: grid;
  align-items: end;
  padding: 18vh 6vw 7vh;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.page-head img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: brightness(0.48);
}
.page-head > div { position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(40px, 7vw, 76px); max-width: 16ch; }
.page-head .kicker { color: #c9d8ee; }

.slab {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 70vh;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.slab:nth-child(even) { grid-template-columns: 0.85fr 1.15fr; }
.slab:nth-child(even) img { order: 2; }
.slab img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center 78%;
}
.slab-copy {
  padding: 7vh 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slab-copy b { color: var(--blue); font-size: 14px; letter-spacing: 0.14em; }
.slab-copy h2 { font-size: clamp(32px, 4vw, 48px); margin: 10px 0 14px; }
.slab-copy p { color: var(--mute); max-width: 44ch; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag {
  border: 1px solid var(--line);
  padding: 7px 11px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 30px);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin-top: 10px; color: var(--mute); max-width: 62ch; }

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 170px;
  gap: 8px;
  padding: 8px;
}
.tile {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  grid-row: span 2;
  cursor: zoom-in;
}
.tile.wide { grid-column: span 8; }
.tile.tall { grid-row: span 3; }
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transition: transform 0.8s var(--ease);
}
.tile:hover img { transform: scale(1.06); }
.tile figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-weight: 600;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 6vw 8px;
}
.filter {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
}
.filter.is-on,
.filter:hover { background: #fff; border-color: #fff; color: #000; }
.hidden { display: none !important; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.stat {
  padding: 40px 24px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat b {
  display: block;
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
}
.stat span { color: var(--mute); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}
.about-block {
  min-height: 40vh;
  padding: 7vh 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line);
}
.about-block:nth-child(odd) { border-right: 1px solid var(--line); }
.about-block h2 { font-size: clamp(28px, 3.5vw, 42px); margin: 10px 0 12px; }
.about-block p { color: var(--mute); max-width: 44ch; }

.film {
  overflow: hidden;
  background: #000;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.film-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: film 42s linear infinite;
}
.film-track img {
  width: 280px;
  height: 180px;
  object-fit: cover;
}
@keyframes film {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 100svh;
}
.contact-side {
  padding: 18vh 6vw 8vh;
  background:
    linear-gradient(180deg, rgba(12, 20, 28, 0.25), rgba(12, 20, 28, 0.78)),
    url("../img/saha/saha-16.jpg") center 62%/cover;
  color: #fff;
}
.contact-side h1 { font-size: clamp(40px, 7vw, 72px); }
.contact-side a.phone {
  display: block;
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 42px);
}
.form {
  padding: 18vh 7vw 8vh;
  background: var(--paper);
}
.form h2 { font-size: 36px; margin-bottom: 22px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-bottom-color: #fff; }
.form-ok { display: none; margin-bottom: 16px; color: #1f7a4c; }
.map {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: grayscale(0.4);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.9);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1200px, 92vw); max-height: 84vh; }
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.lightbox-caption {
  max-width: 90vw;
  color: #cfcfcf;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: min(var(--page), calc(100% - var(--gutter)));
  margin: 36px auto 88px;
}
.gallery figure {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: zoom-in;
  background: #111;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery figure:hover img { transform: scale(1.05); }
@media (max-width: 1080px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

.pad { padding: 64px 0; }

.areas {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--line);
}
.areas-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 8px;
}
.areas-grid {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.areas-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 10px 22px;
  background: #0a0a0a;
  border: 1px solid var(--line);
  text-align: center;
}
.areas-grid svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #c4a35a;
  stroke-width: 1.7;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.areas-grid span {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.areas-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.slogan {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: -0.03em;
  color: #c4a35a;
}
.site-foot .slogan {
  margin: 8px 0 6px;
  font-size: 16px;
  color: #c4a35a;
}
.contact-side .slogan {
  display: block;
  margin: 8px 0 22px;
  font-size: 22px;
}
.areas-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 15px;
  color: var(--mute);
}
.areas-contact a:hover { color: #c4a35a; }

.ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0a0a;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}
.ticker-track span {
  flex: none;
  padding: 16px 32px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #cfcfcf;
  white-space: nowrap;
}
.ticker-track span::after {
  content: "·";
  margin-left: 32px;
  color: #555;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-slide.is-on img {
  animation: herozoom 5.2s linear forwards;
}
@keyframes herozoom {
  from { transform: scale(1); }
  to { transform: scale(1.03); }
}
.hero-in {
  animation: rise 0.9s var(--ease) both;
}
.hero-card .kicker.hero-in { animation-delay: 0.12s; }
.hero-card h1.hero-in { animation-delay: 0.26s; }
.hero-card > p.hero-in { animation-delay: 0.4s; }
.hero-actions.hero-in { animation-delay: 0.54s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.hero-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  height: 3px;
  background: rgba(255, 255, 255, 0.16);
}
.hero-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: #fff;
  animation: herofill 5.2s linear forwards;
}
@keyframes herofill { to { width: 100%; } }
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 4;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  margin: 8px auto 0;
  background: rgba(255, 255, 255, 0.55);
  transform-origin: top;
  animation: scrolldrop 2s var(--ease) infinite;
}
@keyframes scrolldrop {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}
.hero-nav {
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.hero-nav:hover { transform: scale(1.08); }
.hero-dots button {
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), width 0.25s var(--ease);
}
.hero-dots button.is-on {
  width: 22px;
  border-radius: 8px;
}

.btn {
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: translateX(-180%);
  pointer-events: none;
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { animation: shine 0.7s ease; }
.btn-fire::after { animation: shine 2.8s var(--ease) 0.8s 1; }
.btn-ghost:hover { background: #fff; color: #000; }
@keyframes shine {
  to { transform: translateX(320%); }
}

.bar { animation: bardrop 0.7s var(--ease) both; }
@keyframes bardrop {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: none; }
}

[data-reveal].is-in .kicker::before {
  animation: linein 0.7s var(--ease) 0.15s forwards;
}
.hero-card .kicker::before {
  animation: linein 0.7s var(--ease) 0.35s forwards;
}
@keyframes linein {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.about-photo.is-in img { animation: aboutzoom 14s linear infinite alternate; }
@keyframes aboutzoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.about-points li {
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
[data-reveal].is-in .about-points li { opacity: 1; transform: none; }
[data-reveal].is-in .about-points li:nth-child(1) { transition-delay: 0.12s; }
[data-reveal].is-in .about-points li:nth-child(2) { transition-delay: 0.22s; }
[data-reveal].is-in .about-points li:nth-child(3) { transition-delay: 0.32s; }

.facts li { transition: background 0.3s var(--ease), transform 0.3s var(--ease); }
.facts li:hover { background: #161616; transform: translateY(-4px); }

.sys-cap.is-pop strong,
.sys-cap.is-pop b {
  animation: capin 0.45s var(--ease);
}
@keyframes capin {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.how-grid article {
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.how-grid article:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.how-grid img {
  clip-path: inset(12% 12% 12% 12%);
  transition: transform 0.8s var(--ease), clip-path 0.9s var(--ease);
}
.how-grid article.is-in img { clip-path: inset(0); }
.how-grid article:hover img { transform: scale(1.08); }

.ba-handle::after {
  animation: pulse 1.8s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.14); }
}

.cta > img { animation: ctazoom 16s linear infinite alternate; }
@keyframes ctazoom {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

.wa { animation: wapop 2.4s var(--ease) infinite; }
.wa::before { animation: waring 2.4s var(--ease) infinite; }
.wa::after { animation: waring 2.4s var(--ease) 1.2s infinite; }
@keyframes wapop {
  0%, 70%, 100% { transform: scale(1); }
  80% { transform: scale(1.1); }
}
@keyframes waring {
  0% { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(1.7); opacity: 0; }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--d, 0) * 120ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

.cover {
  padding: 80px 0 72px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.cover-head h2 {
  font-size: clamp(32px, 5vw, 56px);
  max-width: 16ch;
}
.cities {
  overflow: hidden;
  margin: 36px 0 40px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.cities-track {
  display: flex;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: cities 32s linear infinite;
}
.cities:hover .cities-track { animation-play-state: paused; }
.cities-track li {
  flex: none;
  font-family: var(--display);
  font-size: clamp(36px, 7.2vw, 88px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-right: 0.45em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);
  transition: color 0.35s var(--ease), -webkit-text-stroke 0.35s var(--ease);
}
.cities-track li.is-on,
.cities-track li:hover {
  color: #fff;
  -webkit-text-stroke: 1px transparent;
}
@keyframes cities {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.cover-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}
.cover-foot p { color: var(--mute); max-width: 46ch; margin: 0; }

@media (max-width: 1080px) {
  .shots, .intro, .how-grid, .compare, .home-about,
  .slab, .slab:nth-child(even), .about-grid, .contact, .site-foot, .stats, .row {
    grid-template-columns: 1fr;
  }
  .shots { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .sys {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .sys-stage { min-height: 380px; order: -1; }
  .sys-side { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .sys-cap strong { font-size: 22px; }
  .slab:nth-child(even) img { order: 0; }
  .about-block:nth-child(odd) { border-right: 0; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .tile, .tile.wide, .tile.tall { grid-column: span 12; grid-row: span 2; }
  .ba { min-height: 360px; }
  .form, .contact-side { padding-top: 14vh; }
  .hero-card { left: 16px; right: 16px; max-width: none; bottom: 52px; padding: 22px; }
  .hero-track { height: 78svh; }
  .hero-nav { width: 40px; height: 40px; font-size: 24px; }
  .hero-dots { left: 16px; right: auto; bottom: 18px; }
  .hero-scroll { display: none; }
  .cities-track li { font-size: clamp(32px, 12vw, 56px); }
  .home-about img,
  .about-photo img { height: 280px; }
  .bar-call { display: none; }
  .burger { display: inline-flex; }
  .menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 12px;
    right: 12px;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: #111;
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  }
  .menu.is-open { display: flex; }
  .menu a { padding: 10px 8px; }
}

@media (max-width: 900px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .how-grid, .facts { grid-template-columns: 1fr; }
  .wrap { width: min(var(--page), calc(100% - 32px)); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .sys-stage img.is-on { transform: none; }
  .hero-progress i { width: 100%; }
  .ticker-track { transform: none; }
  .cities-track { transform: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .about-points li { opacity: 1; transform: none; }
  .how-grid img { clip-path: none; }
}

/* —— homepage: atelier, not template —— */
body.home {
  font-size: 16px;
  letter-spacing: 0.01em;
}
body.home .kicker {
  padding-left: 0;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #c4a35a;
}
body.home .kicker::before { display: none; }
body.home .btn {
  border-radius: 0;
  letter-spacing: 0.02em;
  font-weight: 500;
  min-height: 46px;
}
body.home .btn::after { display: none; }
body.home .btn:hover { transform: none; }
body.home .hero-card .btn-fire { background: #fff; color: #111; }
body.home .hero-card .btn-fire:hover { background: #c4a35a; color: #111; }
body.home .btn-ghost { border-color: rgba(255, 255, 255, 0.4); }
body.home .btn-ghost:hover { background: #fff; color: #000; }

body.home .bar {
  background: rgba(0, 0, 0, 0.55);
  border-bottom-color: transparent;
  min-height: 64px;
}
body.home .logo {
  font-family: var(--display);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.04em;
}
body.home .menu {
  gap: 16px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
body.home .menu a::after { display: none; }
body.home .menu a[aria-current="page"] {
  color: #c4a35a;
  font-style: italic;
  font-family: var(--display);
  font-size: 15px;
}
body.home .bar-call {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
}

body.home .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 42%, transparent 68%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 28%, rgba(0, 0, 0, 0.55) 100%);
}
body.home .hero-card {
  left: var(--inset);
  bottom: 9vh;
  max-width: 640px;
  padding: 0;
  background: none;
  box-shadow: none;
}
body.home .hero-card h1 {
  font-size: clamp(42px, 7.2vw, 88px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.96;
  margin-bottom: 16px;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}
body.home .hero-card p {
  color: #ece8e1;
  max-width: 42ch;
  font-size: 17px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}
body.home .hero-card .kicker { color: #c4a35a; }
body.home .hero-nav {
  top: auto;
  bottom: 9vh;
  margin-top: 0;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
}
body.home .hero-nav:hover {
  background: none;
  transform: none;
  color: #c4a35a;
}
body.home .hero-nav.prev { left: auto; right: calc(var(--inset) + 72px); }
body.home .hero-nav.next { right: var(--inset); }
body.home .hero-dots {
  flex-direction: column;
  align-items: flex-end;
  right: var(--inset);
  bottom: 18vh;
  gap: 4px;
}
body.home .hero-dots button {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.16em;
}
body.home .hero-dots button.is-on {
  width: auto;
  border-radius: 0;
  background: none;
  color: #c4a35a;
}
body.home .hero-progress { height: 1px; background: rgba(255, 255, 255, 0.12); }
body.home .hero-progress i { background: #c4a35a; }
body.home .hero-scroll {
  left: var(--inset);
  bottom: auto;
  top: 28%;
  transform: none;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.38em;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--display);
  font-style: italic;
  font-size: 11px;
  text-transform: none;
}
body.home .hero-scroll::after { display: none; }

body.home .ticker-track span {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: none;
  font-size: 15px;
  color: #cfc8bb;
}
body.home .ticker-track span::after { color: #c4a35a; content: "—"; }

body.home .areas { padding: 96px 0 48px; border-bottom: 0; }
body.home .areas-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px 72px;
  align-items: end;
}
body.home .areas-title {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  margin: 8px 0 18px;
}
body.home .areas-lead {
  color: var(--mute);
  max-width: 36ch;
  margin-bottom: 28px;
}
body.home .areas-index {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  columns: 2;
  column-gap: 28px;
}
body.home .areas-index li {
  break-inside: avoid;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
}
body.home .areas-index i {
  font-style: italic;
  font-size: 13px;
  color: #c4a35a;
  min-width: 1.6em;
}
body.home .areas-shot {
  margin: 0;
  position: relative;
}
body.home .areas-shot img {
  width: 100%;
  height: min(640px, 78vh);
  object-fit: cover;
  object-position: center 70%;
}
body.home .areas-shot figcaption,
body.home .about-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 24px;
  margin: 0;
  padding: 10px 16px;
  background: #000;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: #c4a35a;
}
body.home .areas-contact {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

body.home .about-photo { position: relative; }
body.home .about-photo img {
  width: 88%;
  height: min(560px, 68vh);
}
body.home .home-about h2 {
  font-size: clamp(36px, 4.8vw, 58px);
  max-width: 12ch;
}

body.home .facts {
  border: 0;
}
body.home .facts li {
  border: 0;
  border-top: 1px solid var(--line);
  padding: 18px 0 20px;
}
body.home .facts li:hover {
  background: none;
  transform: none;
}
body.home .facts b {
  font-weight: 400;
  font-style: italic;
  font-size: 44px;
  color: #c4a35a;
}

body.home .sys {
  gap: 28px;
}
body.home .sys-side {
  grid-template-rows: auto auto;
  align-content: center;
  gap: 0;
}
body.home .sys-btn {
  background: transparent;
  border-color: transparent;
  border-bottom: 1px solid var(--line);
  padding-left: 0;
}
body.home .sys-btn.is-on {
  background: transparent;
  border-color: transparent;
  border-bottom-color: #c4a35a;
  color: #fff;
}
body.home .sys-btn.is-on .sys-num,
body.home .sys-btn.is-on .sys-txt p { color: #c4a35a; }
body.home .sys-bar { background: #c4a35a; height: 1px; }
body.home .sys-num { font-style: italic; font-weight: 400; }

body.home .how {
  background: #0a0a0a;
  padding: 100px 0 88px;
}
body.home .how-head h2 {
  font-size: clamp(42px, 6vw, 72px);
}
body.home .how-grid {
  gap: 28px;
  align-items: start;
}
body.home .how-grid article {
  background: none;
  position: relative;
}
body.home .how-grid article:hover {
  transform: none;
  box-shadow: none;
}
body.home .how-grid article:nth-child(2) { margin-top: 64px; }
body.home .how-grid article:nth-child(3) { margin-top: 28px; }
body.home .how-n {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  color: rgba(196, 163, 90, 0.35);
  margin-bottom: 8px;
}
body.home .how-grid img {
  height: 240px;
  clip-path: none;
}
body.home .how-grid article:nth-child(1) img { height: 320px; }
body.home .how-grid article:nth-child(4) img { height: 340px; }
body.home .how-grid article:hover img { transform: none; }
body.home .how-grid h3 {
  font-size: 28px;
  padding: 14px 0 6px;
  font-weight: 500;
}
body.home .how-grid p { padding: 0; }

body.home .cities-track li {
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.16);
  -webkit-text-stroke: 0;
}
body.home .cities-track li.is-on,
body.home .cities-track li:hover {
  color: #c4a35a;
  -webkit-text-stroke: 0;
}

body.home .cta-phone { font-style: italic; font-weight: 400; color: #c4a35a; }
body.home .wa { border-radius: 4px; }
body.home .wa::before,
body.home .wa::after { border-radius: 4px; }

@media (max-width: 1080px) {
  body.home .areas-split,
  body.home .how-grid { grid-template-columns: 1fr 1fr; }
  body.home .how-grid article:nth-child(2),
  body.home .how-grid article:nth-child(3) { margin-top: 0; }
  body.home .hero-scroll { display: none; }
  body.home .hero-nav { display: none; }
  body.home .hero-dots {
    flex-direction: row;
    bottom: 18px;
    right: 16px;
    left: auto;
  }
  body.home .hero-card { left: 16px; right: 16px; max-width: none; bottom: 56px; }
  body.home .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.15) 36%, rgba(0, 0, 0, 0.82) 100%);
  }
  body.home .about-photo img { width: 100%; }
  body.home .areas-shot img { height: 380px; }
}
@media (max-width: 640px) {
  body.home .areas-split,
  body.home .how-grid { grid-template-columns: 1fr; }
  body.home .areas-index { columns: 1; }
  body.home .how-grid article:nth-child(1) img,
  body.home .how-grid article:nth-child(4) img { height: 220px; }
  body.home .hero-card h1 { font-size: 40px; }
}

body.home .page-head {
  min-height: min(72vh, 640px);
  padding: 24vh var(--inset) 8vh;
}
body.home .page-head img {
  filter: none;
  object-position: center 74%;
}
body.home .page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.28) 48%, transparent 74%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 32%, rgba(0, 0, 0, 0.4) 100%);
}
.page-lead {
  margin-top: 16px;
  max-width: 38ch;
  color: #d8d4cc;
  font-size: 17px;
}

.svc article {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}
.svc article:first-child { border-top: 0; padding-top: 80px; }
.svc article:nth-child(even) { grid-template-columns: 0.85fr 1.15fr; }
.svc article:nth-child(even) img { order: 2; }
.svc img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 62%;
}
.svc article:first-child img { object-position: center 42%; }
.svc article:nth-child(4) img { object-position: center 82%; }
.svc b {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: #c4a35a;
  font-size: 15px;
  margin-bottom: 8px;
}
.svc h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 14px;
}
.svc p { color: var(--mute); max-width: 42ch; }

.faq-title {
  font-size: clamp(36px, 5vw, 56px);
  margin: 8px 0 28px;
}
body.home .faq summary {
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 26px);
}

body.home .stats {
  width: min(var(--page), calc(100% - var(--gutter)));
  margin-inline: auto;
}
body.home .about-grid {
  width: min(var(--page), calc(100% - var(--gutter)));
  margin-inline: auto;
}
body.home .about-block {
  min-height: 0;
  padding: 64px 40px;
}
body.home .stat b { font-weight: 600; font-size: clamp(36px, 4vw, 56px); }

.about-story {
  padding: 56px 0 32px;
  align-items: start;
}
.about-story h2 { max-width: 14ch; }
.about-story p { max-width: 54ch; }
.about-way {
  padding: 48px 0 20px;
}
.about-way h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 6px 0 0;
}

.blog-list {
  padding: 28px 0 72px;
}
.blog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #111;
}
.blog-meta {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  color: #c4a35a;
  font-size: 14px;
}
.blog-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 8px 0 10px;
  max-width: 22ch;
}
.blog-card p { color: var(--mute); max-width: 58ch; margin: 0 0 12px; }
.blog-more { color: #c4a35a; font-size: 15px; }
.post-body {
  width: min(var(--page), calc(100% - var(--gutter)));
  max-width: none;
  padding: 48px 0 8px;
}
.post-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  margin: 0 0 64px;
}
.post-split.is-flip figure { order: -1; }
.post-split-copy h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 8px 0 14px;
  max-width: 16ch;
}
.post-split-copy p {
  color: #d0d0d0;
  margin: 0 0 14px;
  max-width: 46ch;
}
.post-split-copy a { color: #c4a35a; }
.post-split-copy ul {
  color: #d0d0d0;
  margin: 0 0 16px;
  padding-left: 1.15em;
}
.post-split-copy li { margin: 6px 0; }
.post-split figure { margin: 0; }
.post-split img {
  width: 100%;
  height: min(460px, 58vh);
  object-fit: cover;
  background: #111;
}
.post-body h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  margin: 32px 0 12px;
}
.post-body p { color: #d0d0d0; margin: 0 0 16px; }
.post-body a { color: #c4a35a; }
.post-body ul {
  color: #d0d0d0;
  margin: 0 0 20px;
  padding-left: 1.2em;
}
.post-body li { margin: 6px 0; }
.post-nav { margin: 8px 0 36px; padding-top: 22px; border-top: 1px solid var(--line); }
.blog-more-row { padding: 12px 0 64px; }
.blog-more-row h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 6px 0 24px;
}
.blog-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-more-grid a {
  display: block;
  padding: 22px 20px;
  background: #111;
  border: 1px solid var(--line);
}
.blog-more-grid b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.blog-more-grid span { color: #c4a35a; font-style: italic; font-size: 14px; }
@media (max-width: 1080px) {
  .blog-card { grid-template-columns: 1fr; gap: 16px; }
  .blog-card img { height: 220px; }
  .blog-more-grid { grid-template-columns: 1fr; }
  .post-split,
  .post-split.is-flip { grid-template-columns: 1fr; }
  .post-split.is-flip figure { order: 0; }
  .post-split img { height: 280px; }
}

/* —— phone & small tablet —— */
@media (max-width: 1080px) {
  :root { --gutter: 32px; --inset: 20px; }
  .bar {
    padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right));
    padding-top: env(safe-area-inset-top);
  }
  .menu {
    top: 100%;
    left: 0;
    right: 0;
    z-index: 70;
    padding: 8px 16px calc(16px + env(safe-area-inset-bottom));
    background: #000;
    border: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
    max-height: calc(100svh - 64px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .menu.is-open {
    min-height: calc(100svh - 64px);
    background: #000;
  }
  .menu a {
    padding: 14px 6px;
    font-size: 18px;
    white-space: normal;
  }
  body.home .menu { gap: 0; font-size: 17px; }
  .burger {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  body.is-nav-open { overflow: hidden; }
  body.is-nav-open .bar { background: #000; }

  .svc article,
  .svc article:nth-child(even) { grid-template-columns: 1fr; gap: 20px; }
  .svc article:nth-child(even) img { order: 0; }
  .svc article { padding: 40px 0; }
  .svc article:first-child { padding-top: 40px; }
  .svc img { height: 240px; }
}

@media (max-width: 720px) {
  .sys-side { grid-template-columns: 1fr; }
  .sys-btn { padding: 16px 0; }
  .sys-stage { min-height: 240px; height: 240px; }
  .sys-cap { padding: 28px 16px 14px; }
  .sys-cap strong { font-size: 20px; }
}

@media (max-width: 640px) {
  :root { --gutter: 24px; --inset: 16px; }
  body { font-size: 16px; }
  .wrap { width: min(var(--page), calc(100% - 32px)); }

  .hero-track { height: min(70svh, 620px); }
  .hero-card {
    left: 16px;
    right: 16px;
    bottom: 64px;
    max-width: none;
    padding: 0;
  }
  body.home .hero-card {
    left: 16px;
    right: 16px;
    bottom: 64px;
  }
  body.home .hero-card h1 {
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.06;
    margin-bottom: 10px;
  }
  body.home .hero-card p { font-size: 15px; max-width: none; }
  .hero-actions { margin-top: 16px; }
  .hero-actions .btn { min-height: 44px; }
  body.home .hero-dots {
    bottom: 14px;
    right: 16px;
    left: auto;
  }
  .hero-progress { bottom: 0; }

  .ticker-track span { padding: 12px 20px; font-size: 14px; }

  body.home .areas { padding: 48px 0 28px; }
  body.home .areas-split { gap: 24px; }
  body.home .areas-title { font-size: 34px; }
  body.home .areas-lead { margin-bottom: 16px; }
  body.home .areas-index { margin-bottom: 20px; }
  body.home .areas-index li { font-size: 18px; padding: 8px 0; }
  body.home .areas-shot img { height: 240px; }
  body.home .areas-shot figcaption,
  body.home .about-photo figcaption {
    right: auto;
    left: 0;
    bottom: 0;
    font-size: 13px;
    padding: 8px 12px;
  }
  body.home .areas-contact { margin-top: 24px; gap: 10px 16px; font-size: 14px; }

  .home-about { padding: 44px 0 36px; gap: 24px; }
  .home-about h2,
  body.home .home-about h2 {
    font-size: 32px;
    max-width: none;
  }
  .home-about img,
  .about-photo img,
  body.home .about-photo img {
    width: 100%;
    height: 220px;
  }

  .intro { padding: 48px 0 36px; gap: 24px; }
  .intro h2 { font-size: 32px; }
  .facts { grid-template-columns: 1fr 1fr; }
  body.home .facts b { font-size: 32px; }

  .systems { padding: 8px 0 48px; }
  .systems-head h2 { font-size: 32px; }
  body.home .sys { gap: 16px; }
  body.home .how { padding: 52px 0 44px; }
  body.home .how-head h2 { font-size: 34px; }
  body.home .how-n { font-size: 36px; }
  body.home .how-grid h3 { font-size: 22px; padding: 10px 0 4px; }
  body.home .how-grid img,
  body.home .how-grid article:nth-child(1) img,
  body.home .how-grid article:nth-child(4) img { height: 200px; }

  .cover-head h2 { font-size: 28px; }
  .cover-foot { gap: 14px; }
  .compare { padding: 48px 0; }
  .ba { min-height: 260px; }

  .cta { min-height: 0; }
  .cta > div {
    width: min(var(--page), calc(100% - 32px));
    margin-inline: auto;
    padding: 48px 0 80px;
  }
  .cta h2 { font-size: 32px; }
  .cta-phone { font-size: 26px; }
  .cta .hero-actions { flex-direction: column; align-items: stretch; }
  .cta .btn { width: 100%; max-width: 360px; }

  .site-foot {
    gap: 22px;
    padding: 32px 16px calc(28px + env(safe-area-inset-bottom));
  }
  .wa {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }

  .page-head,
  body.home .page-head {
    min-height: 48svh;
    padding: 16svh 20px 7vh;
  }
  .page-head h1 { font-size: clamp(30px, 9vw, 40px); max-width: 14ch; }
  .page-lead { font-size: 15px; max-width: none; }

  .stat { padding: 22px 12px; }
  .faq { padding: 0; }
  .faq-title { font-size: 32px; }
  body.home .faq summary { font-size: 18px; }

  .stats { grid-template-columns: 1fr 1fr; }
  body.home .about-block { padding: 32px 0; }
  .about-block { min-height: 0; padding: 32px 0; }
  .about-story { padding: 36px 0 20px; }
  .about-way { padding: 28px 0 8px; }
  .about-way h2 { font-size: 32px; }
  .film { padding: 16px 0; }
  .film-track { gap: 12px; }
  .film-track img { width: 200px; height: 128px; }

  .contact-side,
  .form { padding: 36px 20px 48px; }
  .contact-side h1 { font-size: 32px; }
  .contact-side a.phone { font-size: 26px; }
  .form h2 { font-size: 28px; }
  .map { height: 240px; }

  .gallery { margin: 24px auto 64px; gap: 6px; }
  .lightbox { padding: 12px; }
  .lightbox-close { top: 10px; right: 10px; }

  .blog-list { padding: 12px 0 48px; }
  .blog-card { padding: 22px 0; gap: 12px; }
  .blog-card img { height: 200px; }
  .blog-card h2 { max-width: none; font-size: 24px; }
  .post-body { padding: 28px 0 8px; }
  .post-split { gap: 20px; margin-bottom: 40px; }
  .post-split img { height: 220px; }
  .post-split-copy h2 { max-width: none; font-size: 26px; }
  .blog-more-row { padding: 8px 0 48px; }
  .blog-more-row h2 { font-size: 28px; }
}

