:root {
  --bg: #e8e2d6;
  --bg-2: #f4efe6;
  --paper: #fbf7f0;
  --ink: #16140f;
  --muted: #5c574c;
  --line: #d4cdbf;
  --forest: #2f4a3c;
  --forest-2: #3d5c4a;
  --copper: #c24e24;
  --copper-2: #a83f1b;
  --white: #fffdf8;
  --shadow: 0 24px 50px rgba(22, 20, 15, 0.12);
  --radius: 22px;
  --header: 76px;
  --bar: 78px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Unbounded", "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--bar) + env(safe-area-inset-bottom));
}

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

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

button,
.btn {
  font-family: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
.display {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(32px, 5vw, 56px);
  max-width: 14ch;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 46ch;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(232, 226, 214, 0.78);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
}

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

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}

.logo strong {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.05em;
}

.logo span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.header-phone small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d8f5b;
  box-shadow: 0 0 0 5px rgba(61, 143, 91, 0.16);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  cursor: pointer;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
}

.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-btn span::before {
  top: -6px;
}

.menu-btn span::after {
  top: 6px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--copper);
  color: white;
}

.btn-primary:hover {
  background: var(--copper-2);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.btn-dark:hover {
  background: #2a261f;
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.28);
}

.btn-ghost:hover {
  background: rgba(255, 253, 248, 0.08);
}

.btn-viber {
  background: #7360f2;
  color: white;
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 0 0 36px 36px;
  color: var(--paper);
}

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

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 20, 15, 0.18) 0%, rgba(22, 20, 15, 0.72) 72%),
    linear-gradient(90deg, rgba(22, 20, 15, 0.55), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 0 64px;
}

.hero h1 {
  font-size: clamp(40px, 8vw, 92px);
  max-width: 11ch;
  margin: 18px 0 22px;
}

.hero p {
  max-width: 42ch;
  font-size: 18px;
  color: rgba(251, 247, 240, 0.82);
}

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

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(251, 247, 240, 0.16);
}

.hero-meta b {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.hero-meta span {
  color: rgba(251, 247, 240, 0.7);
  font-size: 14px;
}

/* Sections */

.section {
  padding: 96px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
}

.services {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-body {
  padding: 28px;
}

.card h3 {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
}

.service-stack {
  display: grid;
  gap: 18px;
}

.service-mini {
  padding: 28px;
}

.service-mini h3 {
  font-size: 22px;
}

/* Why */

.why {
  background: var(--ink);
  color: var(--paper);
  border-radius: 36px;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.why-copy {
  padding: 64px 48px;
}

.why .kicker,
.why .lead {
  color: #c9c1b3;
}

.why h2 {
  margin: 16px 0 18px;
}

.why-list {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.why-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid rgba(251, 247, 240, 0.1);
}

.why-item b {
  font-family: var(--display);
  color: #e2b089;
}

.why-item p {
  color: #c9c1b3;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 14px;
}

.shot {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: zoom-in;
  border: 0;
  padding: 0;
  background: #cfc7b8;
}

.shot:first-child {
  grid-row: 1 / span 2;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shot:hover img {
  transform: scale(1.04);
}

.shot span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(22, 20, 15, 0.62);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px 20px 28px;
  min-height: 220px;
}

.step em {
  font-family: var(--display);
  font-style: normal;
  font-size: 28px;
  color: var(--copper);
}

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

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

/* FAQ / contact */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 22px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

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

.contact-card {
  background: var(--forest);
  color: var(--paper);
  border-radius: 28px;
  padding: 40px 36px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.contact-card h2 {
  max-width: 12ch;
  margin: 12px 0 16px;
}

.phone-xl {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.05em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.phone-xl:hover {
  color: #e7c9a8;
}

.phone-xl.phone-viber {
  margin-top: 18px;
}

.phone-caption {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d7e0d6;
}

.messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-note {
  color: #d7e0d6;
}

/* Footer & bar */

.footer {
  padding: 28px 0 18px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(22, 20, 15, 0.94);
  backdrop-filter: blur(16px);
}

.callbar a {
  flex: 1;
  min-height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
}

.callbar .call {
  background: var(--copper);
}

.callbar .vb {
  background: #7360f2;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(14, 12, 10, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  border-radius: 16px;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  font-size: 22px;
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: var(--bg-2);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--line);
  }

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

  .menu-btn {
    display: block;
  }

  .header-phone {
    display: none;
  }

  .hero-meta,
  .services,
  .why-grid,
  .gallery-grid,
  .steps,
  .split,
  .footer {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-rows: none;
  }

  .shot,
  .shot:first-child {
    height: 240px;
    grid-row: auto;
  }

  .why-photo img {
    min-height: 280px;
  }

  .why-copy {
    padding: 36px 24px 48px;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .callbar {
    display: flex;
  }

  .hero {
    min-height: 88svh;
    border-radius: 0 0 24px 24px;
  }
}

@media (min-width: 901px) {
  body {
    padding-bottom: 0;
  }
}
