:root {
  --wine: #3a0d14;
  --wine-deep: #24080c;
  --wine-soft: #5c1822;
  --gold: #b8945f;
  --gold-soft: #d4c0a0;
  --ivory: #f6f1ea;
  --paper: #fdfbf8;
  --ink: #1c1214;
  --muted: #6b5b55;
  --line: #e4d9cc;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --wrap: 960px;
  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

address {
  font-style: normal;
}

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

.skip-link {
  position: absolute;
  left: 13px;
  top: -38px;
  z-index: 2000;
  background: var(--wine);
  color: #fff;
  padding: 6px 11px;
  text-decoration: none;
  font-size: 0.7rem;
}

.skip-link:focus {
  top: 13px;
}

.kicker {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  color: var(--wine);
}

.lead {
  font-size: 0.84rem;
  color: var(--muted);
  max-width: 28.8rem;
  font-weight: 300;
}

.section-head {
  max-width: 28.8rem;
  margin-bottom: 51px;
}

.section-head h2 {
  margin: 10px 0 13px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn--wine {
  background: var(--wine);
  color: #fff;
}

.btn--wine:hover {
  background: var(--wine-soft);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--wine);
}

.btn--gold:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--wine);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--wine);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 248, 0.9);
  backdrop-filter: blur(13px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 19px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--wine);
}

.brand__mark {
  width: 35px;
  height: 35px;
  object-fit: cover;
  border-radius: 50%;
}

.brand__text {
  font-family: var(--serif);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.15;
}

.brand__text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--ink);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav a:hover::after {
  width: 100%;
}

.header__cta {
  min-height: 32px;
  padding: 0 14px;
  font-size: 0.64rem;
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--wine);
  margin: 0;
  transform-origin: center;
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
}

body.menu-open .menu-btn span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

body.menu-open .menu-btn span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.menu-open .menu-btn span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: auto;
  bottom: 0;
  width: 50%;
  max-width: 50vw;
  height: auto;
  z-index: 90;
  background: var(--paper);
  padding: 28px 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  border-right: 1px solid var(--line);
  box-shadow: 16px 0 40px -18px rgba(28, 18, 20, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-100%);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.55s;
}

.menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.menu[hidden] {
  display: none;
}

.menu.is-open[hidden] {
  display: flex;
}

.menu__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu__nav a {
  font-family: var(--serif);
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--wine);
  opacity: 0;
  transform: translateX(-14px);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.2s ease;
}

.menu.is-open .menu__nav a {
  opacity: 1;
  transform: translateX(0);
}

.menu.is-open .menu__nav a:nth-child(1) { transition-delay: 0.12s; }
.menu.is-open .menu__nav a:nth-child(2) { transition-delay: 0.18s; }
.menu.is-open .menu__nav a:nth-child(3) { transition-delay: 0.24s; }
.menu.is-open .menu__nav a:nth-child(4) { transition-delay: 0.3s; }
.menu.is-open .menu__nav a:nth-child(5) { transition-delay: 0.36s; }
.menu.is-open .menu__nav a:nth-child(6) { transition-delay: 0.42s; }

/* Hero */
.hero {
  padding: 51px 0 77px;
  background: var(--ivory);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: stretch;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__copy h1 {
  font-size: clamp(1.88rem, 4.4vw, 2.68rem);
  color: var(--wine);
  margin: 16px 0 18px;
  max-width: 14ch;
}

.hero__copy h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 38px;
}

.hero__meta {
  list-style: none;
  display: flex;
  gap: 26px;
}

.hero__meta li {
  padding-left: 13px;
  border-left: 1px solid var(--gold);
}

.hero__meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--wine);
  line-height: 1.2;
}

.hero__meta span {
  font-size: 0.6rem;
  color: var(--muted);
}

.hero__photo {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  z-index: 0;
}

.hero__photo::before {
  content: "";
  position: absolute;
  inset: 18px -14px -14px 18px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 0;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: relative;
  z-index: 1;
  filter: saturate(0.94);
}

.hero__photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  color: #fff;
}

.hero__photo figcaption span {
  display: block;
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero__photo figcaption small {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.52rem;
  color: var(--gold-soft);
}

.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 62%, rgba(26, 10, 12, 0.55) 100%);
  pointer-events: none;
}

/* About */
.about {
  padding: 96px 0;
  background: var(--paper);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: stretch;
}

.about__photo {
  width: 100%;
  height: 100%;
  margin: 0;
  min-height: 0;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__text h2 {
  margin: 10px 0 19px;
  max-width: 18ch;
}

.about__text p {
  color: var(--muted);
  margin-bottom: 13px;
}

.marks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 29px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.marks li {
  padding-right: 16px;
}

.marks li + li {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.marks strong {
  display: block;
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--wine);
  line-height: 1.2;
}

.marks span {
  display: block;
  margin-top: 5px;
  font-size: 0.62rem;
  color: var(--muted);
  line-height: 1.4;
}

.sign {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 26px;
}

.sign__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.16rem;
  color: var(--wine);
  margin: 0;
}

.sign__line {
  flex: 1;
  min-width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.sign__role {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin: 0;
}

/* Benefit */
.benefit {
  padding: 96px 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(184, 148, 95, 0.12), transparent 45%),
    var(--wine);
  color: rgba(255, 255, 255, 0.78);
}

.benefit h2 {
  color: #fff;
  margin: 10px 0 19px;
}

.benefit__intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 58px;
  align-items: center;
  margin-bottom: 70px;
}

.benefit__intro p + p {
  margin-top: 13px;
}

.benefit__stat {
  border: 1px solid rgba(184, 148, 95, 0.35);
  padding: 32px 29px;
}

.benefit__pct {
  font-family: var(--serif);
  font-size: clamp(3.6rem, 8vw, 5.2rem);
  line-height: 0.9;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 13px;
}

.process {
  border-top: 1px solid rgba(184, 148, 95, 0.25);
  padding-top: 38px;
}

.process .kicker {
  margin-bottom: 29px;
}

.process__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.process__list::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 6%, var(--gold) 94%, transparent);
}

.process__list li {
  position: relative;
  padding: 58px 22px 0 0;
}

.process__list li:last-child {
  padding-right: 0;
}

.process__dot {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--wine);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 0.8rem;
  color: var(--gold);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.process__list li:hover .process__dot {
  background: var(--gold);
  color: var(--wine);
  box-shadow: 0 0 0 6px rgba(184, 148, 95, 0.12);
}

.process__list h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
}

.process__list p {
  font-size: 0.74rem;
  font-weight: 300;
}

/* Rights */
.rights {
  padding: 96px 0;
  background: var(--ivory);
}

.rights__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.rights h2 {
  margin: 10px 0 19px;
}

.rights p {
  color: var(--muted);
  margin-bottom: 13px;
}

.note {
  margin-top: 22px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
}

.panel {
  background: var(--paper);
  padding: 32px 29px;
  border: 1px solid var(--line);
}

.panel h3 {
  font-size: 1.2rem;
  color: var(--wine);
  margin-bottom: 19px;
}

.checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.checks li {
  padding-left: 22px;
  position: relative;
  font-size: 0.76rem;
  color: var(--ink);
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 4px;
  border-left: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(-45deg);
}

/* Features */
.features {
  padding: 96px 0;
  background: var(--paper);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.features article {
  padding: 29px 32px 6px 0;
}

.features article + article {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.features article span {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 0.8rem;
}

.features article h3 {
  font-size: 1.16rem;
  color: var(--wine);
  margin: 11px 0 10px;
}

.features article p {
  color: var(--muted);
  font-size: 0.76rem;
}

/* Quote */
.quote {
  padding: 77px 0;
  background: var(--wine-deep);
  color: #fff;
}

.quote__inner {
  max-width: 35.2rem;
  margin-inline: auto;
  text-align: center;
}

.quote blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.28rem, 3vw, 1.72rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
}

.quote cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* FAQ */
.faq {
  padding: 96px 0;
  background: var(--ivory);
}

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

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  display: grid;
  grid-template-columns: 2.56rem 1fr 1.76rem;
  align-items: center;
  gap: 6px;
  padding: 21px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(0.96rem, 2vw, 1.24rem);
  font-weight: 600;
  color: var(--wine);
  line-height: 1.3;
}

.faq__num {
  font-size: 0.76rem;
  color: var(--gold);
}

.faq__icon {
  justify-self: end;
  position: relative;
  width: 14px;
  height: 14px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.faq__icon::before {
  width: 13px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 1px;
  height: 13px;
  transform: translate(-50%, -50%);
}

.faq__item.is-open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.25s var(--ease);
}

.faq__item.is-open .faq__a {
  max-height: 9.6rem;
  opacity: 1;
}

.faq__a p {
  max-width: 32rem;
  padding: 0 0 21px 2.56rem;
  color: var(--muted);
}

/* Contact */
.contact {
  padding: 96px 0;
  background: var(--paper);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

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

.contact > .wrap > .reveal > p,
.contact .reveal > p {
  color: var(--muted);
}

.channels {
  list-style: none;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
}

.channels span {
  display: block;
  font-size: 0.54rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.channels a,
.channels p,
.channels address {
  font-size: 0.76rem;
  text-decoration: none;
}

.channels a:hover {
  color: var(--wine-soft);
}

.form {
  background: var(--ivory);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.form h3 {
  font-size: 1.36rem;
  color: var(--wine);
}

.form > p {
  color: var(--muted);
  font-size: 0.74rem;
  margin-bottom: 6px;
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 8px 0;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--ink);
  border-radius: 0;
  appearance: none;
}

.form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 10px) 50%, calc(100% - 6px) 50%;
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-bottom-color: var(--wine);
}

.form textarea {
  resize: vertical;
  min-height: 77px;
}

.form .btn {
  margin-top: 6px;
  align-self: flex-start;
}

.form__note {
  font-size: 0.62rem;
  color: var(--muted);
}

.form__error {
  color: var(--wine);
  font-size: 0.68rem;
}

.form.is-ok {
  position: relative;
}

/* Footer */
.footer {
  background: var(--wine);
  color: rgba(255, 255, 255, 0.72);
  padding: 58px 0 26px;
}

.brand--light {
  color: #fff;
  margin-bottom: 16px;
}

.brand--light small {
  color: var(--gold-soft);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 38px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(184, 148, 95, 0.2);
}

.footer h4 {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 14px;
  font-weight: 500;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 13px;
  padding-top: 19px;
  font-size: 0.62rem;
}

/* WhatsApp */
.wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px -10px rgba(58, 13, 20, 0.7);
  transition: transform 0.25s var(--ease), background 0.25s ease;
}

.wa svg {
  width: 19px;
  height: 19px;
}

.wa:hover {
  transform: translateY(-2px);
  background: var(--wine-soft);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(19px);
  animation: rise 0.9s var(--ease) forwards;
  animation-play-state: paused;
}

.reveal.is-in {
  animation-play-state: running;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .btn,
  .nav a::after {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 860px) {
  .nav,
  .header__cta {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .hero__grid,
  .about__grid,
  .benefit__intro,
  .rights__grid,
  .features__grid,
  .contact__grid,
  .footer__grid,
  .process__list {
    grid-template-columns: 1fr;
  }

  .process__list::before {
    top: 0;
    bottom: 0;
    left: 21px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(transparent, var(--gold) 8%, var(--gold) 92%, transparent);
  }

  .process__list li {
    padding: 0 0 28px 64px;
  }

  .process__list li:last-child {
    padding-bottom: 0;
  }

  .hero__copy h1 {
    max-width: none;
  }

  .hero__photo {
    order: -1;
    width: min(320px, 100%);
    height: auto;
    aspect-ratio: 4 / 5;
    margin-inline: auto;
  }

  .hero__photo img {
    height: 100%;
    aspect-ratio: 4 / 5;
  }

  .about__photo {
    width: min(320px, 100%);
    height: auto;
    aspect-ratio: 3 / 4;
    margin-inline: auto;
  }

  .about__photo img {
    height: 100%;
    aspect-ratio: 3 / 4;
  }

  .hero {
    padding: 26px 0 58px;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__copy h1,
  .hero__copy .lead {
    margin-inline: auto;
  }

  .kicker,
  .process .kicker,
  .section-head .kicker {
    display: block;
    text-align: center;
    width: 100%;
  }

  .hero__copy .kicker {
    display: block;
  }

  .hero__actions {
    justify-content: center;
  }

  .channels {
    display: none;
  }

  .hero__meta li {
    text-align: center;
  }

  .section-head {
    text-align: center;
    margin-inline: auto;
  }

  .section-head p {
    margin-inline: auto;
  }

  .features article {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    column-gap: 10px;
    row-gap: 0;
    text-align: center;
    padding: 28px 0 8px;
    border-left: 0;
  }

  .features article + article {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .features article span {
    margin: 0;
    line-height: 1.2;
  }

  .features article h3 {
    margin: 0;
    line-height: 1.25;
  }

  .features article p {
    flex: 0 0 100%;
    width: 100%;
    margin: 10px 0 0;
    max-width: 28rem;
  }

  .about__text {
    text-align: center;
  }

  .about__text h2 {
    margin-inline: auto;
    line-height: 1.35;
    max-width: min(100%, 20rem);
  }

  .rights h2,
  .contact h2,
  .faq .section-head h2,
  .benefit h2 {
    text-align: center;
  }

  .contact h2 {
    line-height: 1.35;
    max-width: min(100%, 18rem);
    margin-inline: auto;
  }

  .rights h2 {
    max-width: min(100%, 20rem);
    margin-inline: auto;
    line-height: 1.35;
  }

  .section-head h2,
  .hero__copy h1 {
    line-height: 1.35;
  }

  .sign {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .sign__line {
    flex: none;
    width: 72px;
    min-width: 0;
    background: var(--gold);
  }

  .sign__role {
    text-align: center;
  }

  .benefit__intro,
  .benefit__intro p,
  .benefit__stat,
  .rights > .wrap > .reveal,
  .rights p,
  .note,
  .panel,
  .panel h3,
  .checks,
  .contact > .wrap > .reveal,
  .contact .reveal > p,
  .form > p,
  .form__note {
    text-align: center;
  }

  .benefit__intro p,
  .benefit__stat p,
  .note,
  .contact .reveal > p,
  .form > p,
  .form__note {
    margin-inline: auto;
  }

  .checks li {
    text-align: left;
    max-width: 28rem;
    margin-inline: auto;
  }

  .channels {
    justify-items: center;
    text-align: center;
  }

  .form .btn {
    align-self: center;
  }

  .hero__grid,
  .about__grid,
  .rights__grid,
  .contact__grid {
    gap: 32px;
  }

  .about,
  .benefit,
  .rights,
  .features,
  .faq,
  .contact {
    padding: 70px 0;
  }

  .marks {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
  }

  .marks li {
    padding-right: 8px;
    min-width: 0;
  }

  .marks li + li {
    padding-top: 0;
    padding-left: 8px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .marks strong {
    font-size: 0.78rem;
  }

  .marks span {
    font-size: 0.55rem;
  }

  .features article,
  .features article + article {
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
  }

  .hero__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    flex-wrap: nowrap;
  }

  .hero__meta li {
    min-width: 0;
    padding-left: 10px;
  }

  .hero__meta strong {
    font-size: 0.95rem;
  }

  .hero__meta span {
    font-size: 0.55rem;
    line-height: 1.3;
  }

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

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 26px));
  }

  .form {
    padding: 22px 16px;
  }

  .panel {
    padding: 22px 18px;
  }

  .faq__q {
    grid-template-columns: 1.92rem 1fr 1.28rem;
    padding: 16px 0;
  }

  .faq__a p {
    padding-left: 1.92rem;
  }

  .hero__actions .btn,
  .form .btn {
    width: 100%;
  }

  .brand__text {
    font-size: 0.76rem;
  }
}
