:root {
  --ink: #07141f;
  --ink-2: #0c1c2a;
  --card: #101f2d;
  --line: rgba(255, 255, 255, 0.1);
  --text: #e8eef4;
  --mute: #8fa3b5;
  --brand: #2dd4bf;
  --brand-deep: #0f766e;
  --sand: #f4f7f5;
  --wrap: 1180px;
  --display: "Syne", "Segoe UI", sans-serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--ink);
  font: 16.5px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brand); text-underline-offset: 3px; }
a:hover { color: #fff; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 40;
  background: var(--brand);
  color: #042f2e;
  padding: 10px 14px;
  font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

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

.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  padding: 16px 0 0;
}
.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: #fff;
  color: #07141f;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.mark svg { width: 28px; height: 28px; }
.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(7, 20, 31, 0.55);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
}
.menu a {
  color: #d7e2ec;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.menu a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.menu a[aria-current="page"] {
  background: #fff;
  color: #07141f;
}
.menu .phone {
  border: 1px solid rgba(255,255,255,0.18);
  margin-left: 4px;
}
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  padding: 0;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: drift 22s ease-in-out infinite alternate;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,20,31,0.35) 0%, rgba(7,20,31,0.2) 35%, rgba(7,20,31,0.92) 100%),
    radial-gradient(900px 420px at 80% 10%, rgba(45,212,191,0.18), transparent 55%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--wrap), calc(100% - 32px));
  margin: 0 auto;
  padding: 140px 0 72px;
  animation: rise .9s ease both;
}
.kicker {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232,238,244,0.72);
  font-weight: 600;
}
.hero h1 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  color: var(--brand);
  display: block;
}
.hero-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-end;
  justify-content: space-between;
}
.lead {
  margin: 0;
  max-width: 34rem;
  color: rgba(232,238,244,0.86);
  font-size: 1.1rem;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-fill { background: #fff; color: #07141f; }
.btn-fill:hover { background: var(--brand); color: #042f2e; }
.btn-line {
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  background: transparent;
}
.btn-line:hover { border-color: var(--brand); color: var(--brand); }

.block {
  padding: 88px 0;
}
.block-head {
  max-width: 46rem;
  margin-bottom: 40px;
}
.block-head h2,
.page-head h1,
.cta h2,
.foot-name {
  font-family: var(--display);
  letter-spacing: -0.03em;
}
.block-head h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
}
.block-head h2 span,
.page-head h1 span { color: var(--brand); }
.intro {
  margin: 18px 0 0;
  color: var(--mute);
  font-size: 1.05rem;
}

.cuts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cut {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  transition: border-color .25s ease, transform .25s ease;
}
.cut:hover {
  border-color: rgba(45,212,191,0.45);
  transform: translateY(-3px);
}
.cut .num {
  color: var(--brand);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
}
.cut h3 {
  margin: 16px 0 10px;
  font-size: 1.25rem;
  color: #fff;
}
.cut p { margin: 0; color: var(--mute); }

.windows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.window {
  overflow: hidden;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .25s ease;
}
.window:hover { transform: translateY(-4px); }
.win-art {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #0a1a26;
  display: block;
}
.win-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.window:hover .win-art img { transform: scale(1.05); }
.win-art::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, var(--card));
  pointer-events: none;
}
.win-body { padding: 8px 24px 24px; }
.win-meta {
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.window h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: #fff;
}
.window p { margin: 0; color: var(--mute); font-size: 0.95rem; }
.link-more {
  display: inline-block;
  margin-top: 22px;
  font-weight: 700;
  text-decoration: none;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 8px;
}
table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}
th, td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  color: var(--mute);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
td strong { color: #fff; font-weight: 700; }
td { color: #c5d3df; }

.mix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mix article {
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px;
}
.mix h3 { margin: 0 0 10px; color: #fff; font-size: 1.3rem; }
.mix p { margin: 0; color: var(--mute); }

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.faq details {
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 18px 20px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin: 12px 0 0; color: var(--mute); }

.cta {
  border-radius: 32px;
  padding: clamp(32px, 5vw, 56px);
  background:
    radial-gradient(600px 220px at 90% 0%, rgba(255,255,255,0.18), transparent 50%),
    linear-gradient(135deg, #0f766e, #134e4a 55%, #115e59);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.cta .kicker { color: rgba(255,255,255,0.75); }
.cta h2 {
  margin: 10px 0 0;
  max-width: 16ch;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
}
.cta .btn-fill { background: #07141f; color: #fff; }
.cta .btn-fill:hover { background: #000; color: #fff; }

.page-head {
  padding: 148px 0 28px;
}
.crumbs {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--mute);
}
.crumbs a { color: inherit; text-decoration: none; }
.page-head h1 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02;
  text-transform: uppercase;
  color: #fff;
}
.page-head .lead {
  margin-top: 18px;
  color: var(--mute);
}

.prose { max-width: 46rem; padding-bottom: 40px; }
.prose p { color: var(--mute); }
.steps { display: grid; gap: 14px; margin: 28px 0; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
}
.step b {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--brand);
}
.step h2 { margin: 0 0 8px; font-size: 1.2rem; color: #fff; text-transform: none; font-family: var(--sans); }
.step p { margin: 0; }

.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-bottom: 48px;
}
.dest {
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.dest-photo {
  height: 220px;
  overflow: hidden;
  background: #0a1a26;
}
.dest-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.dest:hover .dest-photo img { transform: scale(1.04); }
.dest-body { padding: 22px 24px 26px; }
.dest .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dest h2 {
  margin: 12px 0 10px;
  font-family: var(--display);
  font-size: 1.5rem;
  color: #fff;
  text-transform: none;
}
.dest p, .dest li { color: var(--mute); }
.dest ul { margin: 12px 0 0; padding-left: 18px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-bottom: 64px;
}
.panel {
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px;
}
.panel h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  color: #fff;
  font-size: 1.5rem;
}
.panel p, .panel li { color: var(--mute); }
.panel a { color: var(--brand); }
.form { display: grid; gap: 12px; }
.form label { font-size: 13px; font-weight: 700; color: #d7e2ec; }
.form input, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: #fff;
  background: rgba(255,255,255,0.03);
}
.form button {
  border: 0;
  border-radius: 999px;
  min-height: 52px;
  background: #fff;
  color: #07141f;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.form button:hover { background: var(--brand); }
.note {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(45,212,191,0.12);
  color: #99f6e4;
}

.doc { max-width: 46rem; padding-bottom: 72px; }
.doc h2 {
  margin: 28px 0 10px;
  font-family: var(--display);
  font-size: 1.25rem;
  color: #fff;
}
.doc p, .doc li { color: var(--mute); }

.foot {
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
  background: #050e16;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 28px;
}
.foot-name {
  margin: 0 0 12px;
  font-size: 1.6rem;
  color: #fff;
}
.foot a, .foot span {
  display: block;
  color: var(--mute);
  text-decoration: none;
  margin: 8px 0;
}
.foot a:hover { color: var(--brand); }
.foot strong { color: #fff; }
.legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: #6b8092;
}

.notfound { padding: 160px 0 120px; max-width: 40rem; }
.notfound h1 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes drift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

@media (max-width: 960px) {
  .cuts, .windows, .mix, .faq, .dest-grid, .contact-grid, .foot-grid {
    grid-template-columns: 1fr;
  }
  .cta { flex-direction: column; align-items: flex-start; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
  .menu {
    display: none;
    position: absolute;
    right: 16px;
    top: 72px;
    flex-direction: column;
    align-items: stretch;
    min-width: 230px;
    border-radius: 24px;
    padding: 10px;
    background: rgba(12,28,42,0.96);
  }
  .menu.open { display: flex; }
  .menu .phone { margin-left: 0; }
}
