:root {
  --bg: #f6f1e8;
  --bg-2: #fffdf8;
  --ink: #16130f;
  --muted: #6d655c;
  --gold: #c4a056;
  --gold-2: #e4cc8a;
  --gold-3: #8f6e2e;
  --line: rgba(22, 19, 15, 0.12);
  --dark: #1c1814;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(80, 58, 20, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 64px;
}

.topbar__brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-3);
  white-space: nowrap;
}

.topbar__nav {
  display: none;
  gap: 18px;
  margin-left: 12px;
  font-size: 14px;
  font-weight: 600;
}

.topbar__nav a:hover {
  color: var(--gold-3);
}

.topbar__contacts {
  margin-left: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  font-size: 13px;
  font-weight: 600;
}

.chip:hover {
  border-color: var(--gold);
}

.chip--stub,
.lead__links .chip--stub,
.footer__contacts .chip--stub {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.hero {
  padding: 36px 0 20px;
}

.hero__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--gold-3);
  letter-spacing: 0.04em;
}

.hero__role {
  font-family: Unbounded, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero h1,
.section h2,
.split__body h2,
.lead h2,
.about h2 {
  font-family: Unbounded, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--gold-3);
}

.hero__lead,
.about__text p,
.split__body p,
.lead__copy p,
.card p,
.steps p {
  color: var(--muted);
}

.hero__lead {
  max-width: 48ch;
  margin-bottom: 22px;
}

.hero__actions,
.hero__facts,
.platforms__row,
.cards,
.steps,
.checks,
.lead__links,
.about,
.lead__grid,
.footer__inner {
  display: grid;
  gap: 12px;
}

.hero__actions {
  grid-template-columns: 1fr;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.btn--gold {
  color: #1a1408;
  background: linear-gradient(180deg, var(--gold-2), var(--gold) 48%, var(--gold-3));
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--ink);
}

.btn--full {
  width: 100%;
}

.hero__facts {
  grid-template-columns: 1fr;
  padding-top: 8px;
}

.hero__facts li {
  list-style: none;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.hero__facts strong {
  display: block;
  font-family: Unbounded, sans-serif;
  font-size: 16px;
  color: var(--ink);
}

.hero__photo,
.about__photo,
.split__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split__media img,
.lead__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__photo img,
.about__photo img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.platforms {
  padding: 10px 0 30px;
}

.platforms__row {
  grid-template-columns: repeat(2, 1fr);
}

.platforms__row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-2);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 56px 0;
}

.section--about {
  background: var(--bg-2);
}

.section--dark {
  background: var(--dark);
  color: #f6f1e8;
}

.section--dark p,
.section--dark h2 {
  color: #f6f1e8;
}

.section--dark .steps p {
  color: #cfc6b8;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 8px;
}

.eyebrow--light {
  color: var(--gold);
}

.section h2,
.split__body h2,
.lead h2,
.about h2 {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 22px;
}

.cards,
.steps {
  grid-template-columns: 1fr;
}

.card,
.steps article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}

.steps article {
  background: #26211c;
  border-color: rgba(255, 255, 255, 0.08);
}

.card__num {
  font-family: Unbounded, sans-serif;
  color: var(--gold-3);
  font-size: 13px;
  margin-bottom: 8px;
}

.card h3,
.steps h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.split {
  display: grid;
}

.split__media img {
  aspect-ratio: 16 / 11;
  object-position: center 30%;
}

.split__body {
  padding: 40px 20px 56px;
}

.checks {
  margin: 8px 0 22px;
}

.checks li {
  list-style: none;
  padding-left: 22px;
  position: relative;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.about {
  gap: 28px;
  align-items: center;
}

.about__text p + p {
  margin-top: 12px;
}

.lead {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
}

.lead__bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}

.lead__grid {
  position: relative;
  gap: 28px;
}

.form,
.lead__links a,
.lead__links span {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form {
  display: grid;
  gap: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: transparent;
}

.form__note,
.form__ok,
.footer,
.footer a {
  font-size: 13px;
  color: var(--muted);
}

.form__ok {
  color: var(--gold-3);
  font-weight: 700;
}

.form__status {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.form__status[hidden] {
  display: none;
}

.form__status.is-ok {
  color: var(--gold-3);
}

.form__status.is-err {
  color: #9a3b2f;
}

.form__status.is-wait {
  color: var(--muted);
}

.lead__links a,
.lead__links span {
  padding: 14px 16px;
  font-weight: 700;
}

.lead__links span.is-stub,
.footer__contacts span.is-stub {
  opacity: 0.55;
}

.footer {
  padding: 28px 0 110px;
  border-top: 1px solid var(--line);
}

.footer__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: var(--gold-3);
}

.footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer__legal {
  margin-top: 18px;
}

.footer__reqs {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer__reqs-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--gold-3);
  margin-bottom: 8px;
}

.footer__reqs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  list-style: none;
}

.footer__reqs li {
  font-size: 13px;
  letter-spacing: 0.02em;
}

.footer__reqs span {
  color: var(--gold-3);
  font-weight: 700;
  margin-right: 6px;
}

.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(28, 24, 20, 0.96);
}

.sticky a {
  flex: 1;
  color: #1a1408;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border-radius: 999px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.sticky a.sticky--ghost {
  background: transparent;
  color: #f6f1e8;
  border: 1px solid rgba(246, 241, 232, 0.35);
}

@media (min-width: 720px) {
  .topbar__nav {
    display: flex;
  }

  .hero__grid,
  .about,
  .lead__grid,
  .split {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .split {
    align-items: stretch;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-2);
    box-shadow: var(--shadow);
  }

  .split__body {
    padding: 48px 40px;
  }

  .split__media img {
    height: 100%;
    aspect-ratio: auto;
    min-height: 420px;
  }

  .hero__actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }

  .hero__facts,
  .platforms__row {
    grid-template-columns: repeat(3, 1fr);
  }

  .platforms__row {
    grid-template-columns: repeat(5, 1fr);
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer {
    padding-bottom: 40px;
  }

  .sticky {
    display: none;
  }
}
