:root {
  /* Палитра №2412 + фон #F7C59C вместо белого */
  --slate: #454869;
  --mist: #b1b6c9;
  --bg: #ffecdc;
  --accent: #00abe3;
  --deep: #013274;
  --ink: #454869;
  --muted: #6d7291;
  --line: rgba(69, 72, 105, 0.16);
  --white: #fdfdfd;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.5rem, 5vw, 4rem);
  --measure: 28rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  font-weight: 300;
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 12% -8%, rgba(0, 171, 227, 0.1), transparent 55%),
    radial-gradient(800px 480px at 100% 18%, rgba(177, 182, 201, 0.28), transparent 50%),
    radial-gradient(700px 420px at 50% 100%, rgba(1, 50, 116, 0.06), transparent 55%),
    var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(920px, calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.section {
  padding: clamp(5rem, 12vw, 9rem) 0;
}

.kicker {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 14ch;
  margin-inline: auto;
  margin-bottom: 1.6rem;
  color: var(--deep);
}

.headline--sm {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  max-width: 16ch;
}

.lead {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  color: var(--ink);
  max-width: var(--measure);
  margin-inline: auto;
}

.body-copy {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34ch;
  line-height: 1.75;
  margin-inline: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.95s var(--ease),
    transform 0.95s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__img { animation: none !important; }
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__img {
  transform: scale(1.06);
  animation: softZoom 20s var(--ease) forwards;
}

@keyframes softZoom {
  to { transform: scale(1); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 22, 28, 0.08) 0%, rgba(20, 22, 28, 0.2) 45%, rgba(20, 22, 28, 0.62) 100%);
}

.hero__stage {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  gap: 1.25rem;
  padding: var(--pad);
  padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
  width: 100%;
  margin-inline: auto;
}

.hero__brand {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 5.8rem);
  line-height: 0.95;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: rgba(253, 253, 253, 0.9);
}

.hero__link {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #fdfdfd;
  padding-bottom: 0.25rem;
  transition: border-color 0.4s var(--ease), opacity 0.4s var(--ease);
}

.hero__link:hover {
  border-color: #fff;
  opacity: 0.85;
}

.sensation {
  padding-top: clamp(6rem, 14vw, 10rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.photo-break {
  padding: 0 var(--pad) clamp(3rem, 8vw, 5rem);
}

.photo-break__frame {
  width: min(980px, 100%);
  margin-inline: auto;
  overflow: hidden;
  background: rgba(177, 182, 201, 0.45);
}

.photo-break__frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 1.6s var(--ease);
}

.photo-break__frame:hover img {
  transform: scale(1.02);
}

.flow {
  list-style: none;
  margin-top: clamp(3rem, 7vw, 5rem);
  display: grid;
  gap: 0;
  width: min(420px, calc(100% - var(--pad) * 2));
  text-align: center;
}

.flow__item {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.flow__item:last-child {
  border-bottom: 1px solid var(--line);
}

.flow__num {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.flow__copy h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  color: var(--deep);
}

.flow__copy p {
  color: var(--muted);
  font-size: 1rem;
}

.team {
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.notes__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  width: min(820px, calc(100% - var(--pad) * 2));
  text-align: center;
}

.note h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.9rem;
  margin-bottom: 0.7rem;
  color: var(--deep);
}

.note p {
  color: var(--muted);
  max-width: 28ch;
  margin-inline: auto;
}

.swatches {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.swatches span {
  width: 1.35rem;
  height: 1.35rem;
  background: var(--c);
  border: 1px solid rgba(69, 72, 105, 0.12);
}

.action {
  background: linear-gradient(180deg, transparent, rgba(177, 182, 201, 0.28), rgba(0, 171, 227, 0.08));
  padding-bottom: clamp(6rem, 12vw, 9rem);
}

.action__inner {
  max-width: 36rem;
  margin-inline: auto;
}

.action__date {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.85rem;
  color: var(--deep);
}

.footer {
  padding: 1.75rem var(--pad) 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

@media (max-width: 820px) {
  .notes__list {
    grid-template-columns: 1fr;
  }

  .headline {
    max-width: 14ch;
  }
}

@media (max-width: 520px) {
  .hero__brand {
    font-size: clamp(2.6rem, 13vw, 3.6rem);
  }
}
