:root {
  --ink: #111318;
  --muted: #5e6571;
  --line: #dde2e8;
  --paper: #fbfbf8;
  --white: #ffffff;
  --red: #f04d3d;
  --red-dark: #c8271c;
  --cyan: #28a8b8;
  --green: #6ca96c;
  --shadow: 0 24px 70px rgba(17, 19, 24, .17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(251, 251, 248, .9);
  border-bottom: 1px solid rgba(221, 226, 232, .82);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  border-radius: 50%;
}

.nav-links {
  gap: clamp(14px, 2vw, 28px);
  color: #303540;
  font-size: 15px;
  font-weight: 720;
}

.nav-links a {
  padding: 10px 0;
}

.lang-toggle {
  width: 48px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #101217;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 10, 12, .83), rgba(9, 10, 12, .36) 54%, rgba(9, 10, 12, .18)),
    linear-gradient(0deg, rgba(9, 10, 12, .73), rgba(9, 10, 12, .02) 45%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 72px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffcc52;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(42px, 7.2vw, 86px);
  line-height: .98;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .87);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 42px rgba(240, 77, 61, .28);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .1);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin: 46px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(18px);
}

.hero-facts div {
  padding: 18px;
  background: rgba(255, 255, 255, .08);
}

.hero-facts dt {
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 6px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 950;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 28px;
}

.section-heading h2,
.split h2,
.contact h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(30px, 4.8vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 19, 24, .06);
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: #eef8f9;
  color: #087c8a;
  font-weight: 950;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.info-card p,
.split-copy p,
.contact p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .85fr);
  gap: 40px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.split-copy p {
  max-width: 690px;
  margin-top: 18px;
}

.price-note {
  margin-top: 26px;
  padding: 18px;
  border-left: 5px solid var(--green);
  background: #f1f7ef;
  border-radius: 0 8px 8px 0;
}

.price-note strong,
.price-note span {
  display: block;
}

.price-note span {
  margin-top: 6px;
  color: #3f5740;
}

.steps {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 14px;
  border-radius: 8px;
  background: #f5f6f8;
}

.step span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 950;
}

.step p {
  margin: 0;
  font-weight: 760;
}

.full {
  width: 100%;
}

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

.compact {
  display: block;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 10px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #d8dde2;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact p {
  margin-top: 18px;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-panel a {
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-panel span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-panel strong {
  display: block;
  margin-top: 12px;
  font-size: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 72px) 104px;
  background: #111318;
  color: var(--white);
}

.site-footer p {
  max-width: 720px;
  color: rgba(255, 255, 255, .68);
}

.footer-links {
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 32;
  display: none;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 8px;
  background: rgba(17, 19, 24, .92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 950;
}

.mobile-cta a:first-child {
  background: var(--red);
}

.lightbox {
  width: min(1120px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(5, 6, 8, .84);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  background: #111318;
}

.lightbox-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 920px) {
  .site-header {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 94svh;
  }

  .hero-content {
    width: min(100% - 28px, 720px);
    padding-top: 112px;
    padding-bottom: 42px;
  }

  .hero-facts,
  .info-grid,
  .split,
  .contact,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(100% - 28px, 720px);
    padding: 62px 0;
  }

  .section-heading {
    display: block;
  }

  .info-card {
    min-height: auto;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 178px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .site-footer {
    display: block;
  }

  .footer-links {
    margin-top: 22px;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 520px) {
  .brand span {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 17px;
  }

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

  .hero-facts div {
    padding: 14px;
  }

  .gallery {
    grid-auto-rows: 152px;
  }

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