@font-face { font-family: Manrope; font-weight: 400; src: url("fonts/Manrope-Regular.ttf") format("truetype"); font-display: swap; }
@font-face { font-family: Manrope; font-weight: 500; src: url("fonts/Manrope-Medium.ttf") format("truetype"); font-display: swap; }
@font-face { font-family: Manrope; font-weight: 600; src: url("fonts/Manrope-SemiBold.ttf") format("truetype"); font-display: swap; }
@font-face { font-family: Manrope; font-weight: 700; src: url("fonts/Manrope-Bold.ttf") format("truetype"); font-display: swap; }
@font-face { font-family: Manrope; font-weight: 800; src: url("fonts/Manrope-ExtraBold.ttf") format("truetype"); font-display: swap; }

:root {
  --bg: #f6f4f2;
  --paper: #fff;
  --ink: #161412;
  --graphite: #3a3734;
  --muted: #6d6863;
  --line: #e4dfda;
  --accent: #7a1f2b;
  --accent-soft: #f3e6e7;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: Manrope, "Avenir Next", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); }
.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
header.nav { order: 0; }
.hero { order: 1; }
.features { order: 2; }
.shots { order: 3; }
footer.site { order: 4; }
header.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; font-weight: 800; }
.brand img { width: 44px; height: 44px; border-radius: 12px; }
.nav-links { display: flex; gap: 18px; align-items: center; font-weight: 600; }
.nav-links a { color: var(--graphite); text-decoration: none; }
.lang { border: 1px solid var(--line); background: var(--bg); border-radius: 999px; padding: 6px 12px; font: inherit; font-weight: 700; cursor: pointer; }
.hero { padding: 48px 0 24px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
h1 { font-size: clamp(36px, 5vw, 64px); line-height: 1.05; letter-spacing: -.04em; margin: 0 0 16px; }
.lead { font-size: 20px; line-height: 1.45; color: var(--graphite); margin: 0 0 28px; max-width: 36rem; }
.kicker { color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 12px; }
.cta { display: inline-flex; align-items: center; gap: 12px; background: #111; color: #fff; text-decoration: none; border-radius: 14px; padding: 12px 16px; }
.cta small { display: block; font-size: 11px; opacity: .8; font-weight: 600; }
.cta b { font-size: 18px; }
.phones { display: flex; gap: 12px; justify-content: flex-end; }
.phone {
  position: relative;
  width: 210px;
  aspect-ratio: 460 / 996;
  height: auto;
  border-radius: 28px;
  overflow: hidden;
  border: 7px solid #1c1a18;
  background: #111;
  box-shadow: 0 18px 40px rgba(22,20,18,.16);
  flex: 0 0 auto;
}
.phone img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.phone.mid { width: 230px; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 12px 0 56px; }
.card { background: var(--bg); border: 1px solid var(--line); border-radius: 20px; padding: 22px; }
.card h3 { margin: 0 0 8px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); line-height: 1.45; }
.shots { padding: 8px 0 64px; }
.shots h2 { margin: 0 0 18px; }
.carousel-track {
  position: relative;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.carousel-dots { display: none; }
footer.site {
  border-top: 1px solid var(--line); padding: 28px 0 40px; color: var(--muted); font-size: 14px;
}
footer.site .row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
footer.site nav { display: flex; gap: 16px; flex-wrap: wrap; }
footer.site a { color: var(--graphite); }
.legal-note { margin-top: 14px; font-size: 12px; line-height: 1.5; max-width: 820px; }
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 50;
  background: #161412; color: #f4f1ee; border-radius: 18px; padding: 18px 20px;
  display: none; box-shadow: 0 16px 40px rgba(0,0,0,.28); max-width: 720px; margin: 0 auto;
}
.cookie.open { display: block; }
.cookie p { margin: 0 0 12px; font-size: 14px; line-height: 1.45; }
.cookie .actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.cookie button {
  background: #fff; color: #161412; border: 0; border-radius: 999px; padding: 10px 16px;
  font: inherit; font-weight: 800; cursor: pointer;
}
.cookie a { color: #e8b4ba; }
.legal-page { padding: 24px 0 64px; max-width: 800px; }
.legal-page h1 { font-size: 36px; }
.legal-page h2 { margin: 28px 0 8px; font-size: 22px; }
.legal-page p, .legal-page li { color: var(--graphite); line-height: 1.55; }
.dot {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: #d4cfc9;
  cursor: pointer;
}
.dot.is-on { width: 22px; background: var(--accent); }

@media (max-width: 900px) {
  html, body { overflow-x: hidden; }
  .wrap { width: min(1120px, calc(100% - 28px)); }
  header.nav { padding: 14px 0; gap: 10px; }
  .brand img { width: 36px; height: 36px; }
  .nav-links { gap: 12px; font-size: 14px; }
  .nav-links a[href="/privacy"] { display: none; }
  .hero { grid-template-columns: 1fr; padding: 16px 0 8px; gap: 20px; }
  .hero .phones { display: none; }
  h1 { font-size: clamp(28px, 8.4vw, 40px); }
  .lead { font-size: 16px; margin-bottom: 20px; }
  .shots { order: 2; padding: 4px 0 28px; }
  .features { order: 3; grid-template-columns: 1fr; padding-bottom: 40px; }
  .shots h2 { margin-bottom: 12px; font-size: 24px; }
  .carousel-track {
    gap: 12px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    padding: 0;
    scrollbar-width: none;
  }
  .carousel-track::-webkit-scrollbar { display: none; }
  .carousel-track .phone.shot {
    flex: 0 0 100%;
    width: 100%;
    height: min(52vh, 420px);
    aspect-ratio: auto;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--bg);
    box-shadow: none;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .carousel-track .phone.shot img {
    object-fit: contain;
    object-position: center;
  }
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }
}
