﻿/* =========================================================================
   AURA PROJECT тАФ ╨╗╨╡╨╜╨┤╨╕╨╜╨│
   ╨Р╤А╤Е╨╕╤В╨╡╨║╤В╤Г╤А╨░ CSS:
     1. @font-face ╨╕ ╤В╨╛╨║╨╡╨╜╤Л (custom properties)
     2. Reset ╨╕ ╨▒╨░╨╖╨╛╨▓╤Л╨╡ ╤Н╨╗╨╡╨╝╨╡╨╜╤В╤Л
     3. ╨г╤В╨╕╨╗╨╕╤В╤Л (container, eyebrow, text-muted, rule, btn)
     4. Layout: header / nav / footer
     5. ╨б╨╡╨║╤Ж╨╕╨╕: hero, mission, founders, process, goals, directions,
        portfolio, why, audience, benefits, cta
     6. ╨Р╨╜╨╕╨╝╨░╤Ж╨╕╨╕ (reveal) ╨╕ motion preferences
   ========================================================================= */

/* 1. FONTS & TOKENS ------------------------------------------------------- */
@font-face {
  font-family: "Bodoni Moda";
  src: url("fonts/BodoniModa_18pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ╨ж╨▓╨╡╤В╨░ ╨╕╨╖ ╨┤╨╕╨╖╨░╨╣╨╜-╤Б╨╕╤Б╤В╨╡╨╝╤Л Figma */
  --c-black: #0d0d0d;
  --c-white: #ffffff;
  --c-gray: #7d7d7d;
  --c-gray-strong: #4b4b4b;
  --c-bronze: #b6a694;
  --c-bronze-soft: rgba(182, 166, 148, 0.15);
  --c-line: rgba(13, 13, 13, 0.12);
  --c-line-strong: rgba(13, 13, 13, 0.22);
  --c-line-on-dark: rgba(255, 255, 255, 0.14);

  /* iOS / ╨▓╤Л╤А╨╡╨╖: ╤Д╨╛╨╜ ╤И╨░╨┐╨║╨╕ ╨╕ ╤П╨║╨╛╤А╤П ╤Г╤З╨╕╤В╤Л╨▓╨░╤О╤В safe area */
  --safe-top: env(safe-area-inset-top, 0px);

  /* ╨в╨╕╨┐╨╛╨│╤А╨░╤Д╨╕╨║╨░ */
  --font-serif: "Bodoni Moda", "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Raleway", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* ╨б╨╡╤В╨║╨░ / ╤И╨║╨░╨╗╨░ */
  --container: 1200px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 7rem);
  --header-h: 84px;
  --anchor-offset: 88px;

  /* ╨н╤Д╤Д╨╡╨║╤В╤Л */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 18px 48px -22px rgba(13, 13, 13, 0.25);
}

@media (min-width: 1024px) {
  :root {
    --header-h: 96px;
    --anchor-offset: 100px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-y: clamp(3.25rem, 10vw, 4.75rem);
    --gutter: clamp(1rem, 4.2vw, 1.35rem);
    --anchor-offset: 112px;
  }
}

/* 2. RESET & BASE --------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--c-white);
  color: var(--c-black);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 400;
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

[id] {
  scroll-margin-top: calc(var(--anchor-offset) + var(--safe-top));
}

:focus-visible {
  outline: 2px solid var(--c-bronze);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--c-bronze);
  color: var(--c-white);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--c-black);
  color: var(--c-white);
  font-size: 0.9rem;
  z-index: 1000;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: calc(1rem + var(--safe-top));
}

/* 3. UTILITIES ------------------------------------------------------------ */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  margin: 0 0 clamp(2rem, 5vw, 3.25rem);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--c-gray);
  text-transform: none;
}

.eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.92);
}

.eyebrow--on-dark-muted {
  color: var(--c-gray);
}

.text-muted {
  color: var(--c-gray);
  font-weight: 300;
  font-size: 1rem;
  line-height: 100%;
}

.rule {
  border: 0;
  border-top: 1px solid #B6A694;
  margin: 0;
}

.rule--inset {
  margin-left: clamp(0px, 14%, 200px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0 1.6rem;
  min-width: 248px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.25s var(--ease-out),
    background-color 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
  will-change: transform;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease-out), opacity 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn__arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translate(2px, -2px);
}

.btn--light {
  background: var(--c-white);
  color: var(--c-black);
}

.btn--light:hover {
  background: #f5f0eb;
}

.btn--dark {
  background: var(--c-black);
  color: var(--c-white);
}

.btn--dark:hover {
  background: #1f1f1f;
}

.btn--bronze {
  background: var(--c-bronze);
  color: var(--c-white);
}

.btn--bronze:hover {
  background: #a89888;
}

/* Icon button (╨┐╨╗╤О╤Б╨╕╨║╨╕ ╤Г founder-╨║╨░╤А╤В╨╛╤З╨╡╨║) */
.icon-btn {
  flex-shrink: 0;
  width: 49px;
  height: 49px;
  display: inline-grid;
  place-items: center;
  background: var(--c-bronze);
  color: var(--c-white);
  transition:
    background-color 0.22s var(--ease),
    transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease);
}

.icon-btn:hover {
  background: #a89888;
  transform: scale(1.06);
  box-shadow: var(--shadow-soft);
}

.icon-btn:active {
  transform: scale(0.98);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

/* ╨Я╨╛╨┐╨░╨┐ ╨╛╤Б╨╜╨╛╨▓╨░╤В╨╡╨╗╨╡╨╣ */
.founder-modal {
  padding: 0;
  border: none;
  max-width: calc(100vw - 1.5rem);
  width: min(34rem, 100%);
  background: transparent;
}

.founder-modal::backdrop {
  background: rgba(13, 13, 13, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.founder-modal__box {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  padding-top: clamp(2.75rem, 5vw, 3.25rem);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-soft);
  max-height: min(85vh, 640px);
  overflow-y: auto;
}

.founder-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--c-gray-strong);
  background: transparent;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.founder-modal__close:hover {
  color: var(--c-black);
  background: var(--c-bronze-soft);
}

.founder-modal__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0 2.5rem 1.25rem 0;
  line-height: 1.15;
  color: var(--c-black);
}

.founder-modal__body {
  display: grid;
  gap: 1rem;
}

.founder-modal__body p {
  margin: 0;
  font-size: 0.96875rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--c-gray-strong);
}

@media (prefers-reduced-motion: reduce) {

  .icon-btn,
  .icon-btn:hover,
  .icon-btn:active {
    transition: none;
  }
}

/* 4. HEADER / NAV / FOOTER ----------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  /* ╨Ч╨░╨┐╨╛╨╗╨╜╤П╨╡╨╝ ╨╖╨╛╨╜╤Г ╤Б╤В╨░╤В╤Г╤Б-╨▒╨░╤А╨░ ╤Д╨╛╨╜╨╛╨╝ ╤И╨░╨┐╨║╨╕, ╨║╨╛╨╜╤В╨╡╨╜╤В ╨╛╤Б╤В╨░╤С╤В╤Б╤П ╨╜╨╕╨╢╨╡ ╨▓╤Л╤А╨╡╨╖╨░ */
  padding-top: var(--safe-top);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--c-line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.primary-nav-wrap {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  max-width: 123px;
}

.brand__logo {
  display: block;
  width: 123px;
  max-width: 100%;
  height: auto;
}

.brand:hover .brand__logo {
  opacity: 0.72;
}

.primary-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(1.25rem, 3vw, 2.4rem);
  font-size: 0.95rem;
  font-weight: 400;
}

.primary-nav a {
  position: relative;
  padding: 0.25rem 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s var(--ease-out);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.primary-nav a.is-active {
  color: var(--c-bronze);
}

/* ╨Ь╨╛╨▒╨╕╨╗╤М╨╜╨╛╨╡ ╨╝╨╡╨╜╤О: ╨╛╤В╨┤╨╡╨╗╤М╨╜╨░╤П ╤Б╤В╤А╨╛╨║╨░ ╨╕ ╨│╨╛╤А╨╕╨╖╨╛╨╜╤В╨░╨╗╤М╨╜╤Л╨╣ ╤Б╨║╤А╨╛╨╗╨╗ (╨▒╨╡╨╖ ╨▒╤Г╤А╨│╨╡╤А╨░) */
@media (max-width: 767px) {
  .site-header__inner {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding-block: 0.85rem;
    row-gap: 0.65rem;
  }

  .brand {
    flex: 1 1 100%;
    justify-content: center;
  }

  .primary-nav-wrap {
    flex: 1 1 100%;
    justify-content: safe center;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    /* ╨╜╨░╤А╨░╤Й╨╕╨▓╨░╨╡╨╝ ╨╖╨╛╨╜╤Г ╨┐╤А╨╛╨║╤А╤Г╤В╨║╨╕ ╨┤╨╛ ╨║╤А╨░╤С╨▓ ╤Н╨║╤А╨░╨╜╨░ */
    width: calc(100% + var(--gutter) * 2);
    max-width: none;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
  }

  .primary-nav-wrap::-webkit-scrollbar {
    display: none;
  }

  .primary-nav {
    flex: 0 0 auto;
    justify-content: center;
    gap: 1.25rem;
    padding-block: 0.15rem 0.35rem;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
  }

  .primary-nav a {
    flex-shrink: 0;
    white-space: nowrap;
    font-family: var(--font-sans);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .primary-nav a::after {
    bottom: -4px;
    height: 1px;
  }
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--c-line);
  background: var(--c-white);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__rights {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--c-gray);
}

@media (max-width: 767px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 5. SECTIONS ------------------------------------------------------------- */
.section {
  position: relative;
  padding-block: var(--section-y);
  overflow: clip;
}

.section--tight {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

@media (max-width: 767px) {
  .section--tight {
    padding-block: clamp(2.5rem, 8vw, 3.25rem);
  }

  .eyebrow {
    margin-bottom: clamp(1.35rem, 5vw, 2rem);
  }

  .rule--inset {
    margin-left: 0;
  }
}

.section-grid {
  display: block;
}

/* 5.1 HERO --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(560px, 90vh, 760px);
  display: grid;
  place-items: center;
  color: var(--c-white);
  overflow: hidden;
  isolation: isolate;
  background: var(--c-black);
}

@media (max-width: 767px) {
  .hero {
    min-height: clamp(480px, 92svh, 640px);
  }

  .hero__content {
    gap: 1.5rem;
    padding-block: clamp(3.25rem, 12vw, 4.5rem);
  }

  .hero__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
  }

  .hero__subtitle {
    letter-spacing: 0.12em;
    line-height: 1.45;
  }

  .hero__scroll {
    bottom: 1.25rem;
    height: 44px;
  }
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 12s var(--ease-out) forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.18) 35%, rgba(0, 0, 0, 0.5) 100%);
}

.hero__content {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 2rem;
  max-width: 720px;
  padding-block: clamp(4rem, 10vw, 6rem);
}

.hero__eyebrow {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  opacity: 0.92;
  animation: fadeUp 0.9s 0.2s var(--ease-out) both;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 79px;
  line-height: 0.92;
  letter-spacing: 0.005em;
  animation: fadeUp 1s 0.35s var(--ease-out) both;
}

.hero__subtitle {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0.95;
  animation: fadeUp 0.9s 0.5s var(--ease-out) both;
}

.hero .btn {
  margin-top: 0.5rem;
  animation: fadeUp 0.9s 0.7s var(--ease-out) both;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.hero__scroll span {
  position: absolute;
  inset: 0;
  background: var(--c-white);
  animation: scrollLine 2.4s var(--ease-out) infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }

  60% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 5.2 MISSION ------------------------------------------------------------ */
.mission__lead {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--c-black);
  max-width: 1000px;
}

.mission__lead p {
  margin: 0;
}

.mission__lead span {
  display: inline;
}

@media (min-width: 900px) {
  #mission .container {
    display: grid;
    grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
    column-gap: 2rem;
    row-gap: 68px;
    align-items: first baseline;
  }

  #mission .eyebrow {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    padding-top: 0;
    align-self: start;
  }

  #mission .mission__lead {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    max-width: none;
  }

  #mission .rule {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    width: 100%;
  }

  #mission .mission__columns {
    grid-column: 2;
    grid-row: 3;
    margin-top: 0;
    padding-left: 0;
  }
}

#mission .rule {
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 899px) {
  #mission .rule {
    margin-top: clamp(1.5rem, 4vw, 2.75rem);
  }

  #mission .mission__columns {
    margin-top: clamp(1.25rem, 3vw, 2rem);
  }
}

@media (max-width: 767px) {
  .mission__lead {
    font-size: clamp(1.2rem, 4.8vw, 1.45rem);
    line-height: 1.18;
  }
}

.mission__columns {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .mission__columns {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

/* 5.3 FOUNDERS ----------------------------------------------------------- */
.founders {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 880px) {
  .founders {
    grid-template-columns: 1fr 1fr;
  }
}

.founder {
  display: grid;
  gap: 1.75rem;
}

.founder__photo {
  margin: 0;
  aspect-ratio: 550 / 623;
  overflow: hidden;
  background: #ece7e1;
}

.founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

.founder__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}

.founder__name {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 300;
  margin-bottom: 0.4rem;
  color: #0d0d0d;
}

.founder__role {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-black);
}

/* 5.4 PROCESS тАФ ╨║╨░╨║ ╨▓ ╨╝╨░╨║╨╡╤В╨╡: ╨╖╨░╨╗╨╕╤В╤Л╨╡ ╤З╤С╤А╨╜╤Л╨╡ ╤В╨╛╤З╨║╨╕, ╨┐╨╛╤Б╨╗╨╡╨┤╨╜╤П╤П ╨▒╤А╨╛╨╜╨╖╨╛╨▓╨░╤П; ╨╗╨╕╨╜╨╕╤П ╤З╨╡╤А╨╡╨╖ ╤Ж╨╡╨╜╤В╤А╤Л */
#process.section {
  overflow: visible;
}

.process {
  position: relative;
  display: grid;
  --process-dot: 14px;
  --process-line-y: calc(var(--process-dot) / 2);
  gap: clamp(2.5rem, 4vw, 3.5rem) clamp(1.25rem, 2.2vw, 2rem);
  margin-bottom: 2.75rem;
}

@media (min-width: 900px) {
  .process {
    --process-dot: 26px;
    --process-mid-gap: 2.5rem;
    --process-gap: 2rem;
    --process-track: calc((100% - 3 * var(--process-gap)) / 4);
    /* ╤Ж╨╡╨╜╤В╤А 3-╨╣ ╤В╨╛╤З╨║╨╕ ╨╜╨╕╨╢╨╜╨╡╨│╨╛ ╤А╤П╨┤╨░ (╨║╨╛╨╗╨╛╨╜╨║╨░ 3) */
    --process-line-row2-end: calc(2 * var(--process-track) + 2 * var(--process-gap) + var(--process-line-y));
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto 1px auto;
    column-gap: var(--process-gap);
    row-gap: var(--process-mid-gap);
    align-items: start;
    height: 300px;
    padding-top: 0.35rem;
  }

  .process__step:nth-child(-n + 4) {
    grid-row: 1;
  }

  .process__step:nth-child(1) {
    grid-column: 1;
  }

  .process__step:nth-child(2) {
    grid-column: 2;
  }

  .process__step:nth-child(3) {
    grid-column: 3;
  }

  .process__step:nth-child(4) {
    grid-column: 4;
  }

  .process__step:nth-child(5),
  .process__step:nth-child(6),
  .process__step:nth-child(7) {
    /* ╨б╨╛╨▓╨╝╨╡╤Й╨░╨╡╨╝ ╤Ж╨╡╨╜╤В╤А╤Л ╤В╨╛╤З╨╡╨║ ╤Б ╨│╨╛╤А╨╕╨╖╨╛╨╜╤В╨░╨╗╤М╨╜╤Л╨╝ ::after ╨╝╨╡╨╢╨┤╤Г ╤А╤П╨┤╨░╨╝╨╕ */
    margin-top: calc(-1 * var(--process-mid-gap) - var(--process-line-y) - 0.5px);
  }

  .process__step:nth-child(5) {
    grid-row: 3;
    grid-column: 1;
  }

  .process__step:nth-child(6) {
    grid-row: 3;
    grid-column: 2;
  }

  .process__step:nth-child(7) {
    grid-row: 3;
    grid-column: 3 / span 2;
  }

  /* ╨╜╨╕╨╢╨╜╨╕╨╣ ╤А╤П╨┤: ╨╛╤В ╨╗╨╡╨▓╨╛╨│╨╛ ╨║╤А╨░╤П ╨║╨╛╨╜╤В╨╡╨╣╨╜╨╡╤А╨░ ╨┤╨╛ ╤Ж╨╡╨╜╤В╤А╨░ ╨┐╨╛╤Б╨╗╨╡╨┤╨╜╨╡╨╣ ╤В╨╛╤З╨║╨╕ */
  .process::after {
    content: "";
    grid-row: 2;
    grid-column: 1 / -1;
    justify-self: start;
    width: calc(var(--process-line-row2-end) + var(--gutter));
    max-width: none;
    height: 0.6px;
    margin: 0 0 0 calc(-1 * var(--gutter));
    background: #000;
    align-self: center;
  }
}

.process__step {
  position: relative;
  display: grid;
  gap: 0.65rem;
  padding-top: 0;
  align-content: start;
}

.process__dot {
  width: var(--process-dot);
  height: var(--process-dot);
  border-radius: 50%;
  border: none;
  background: var(--c-black);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.process__dot--accent {
  background: var(--c-bronze);
}

@media (hover: hover) {
  .process__step:hover .process__dot:not(.process__dot--accent) {
    background: #2c2c2c;
  }
}

@media (min-width: 900px) {

  /* ╨Ф╨╡╤Б╨║╤В╨╛╨┐: ╤Б╨▓╨╡╤А╤Е╤Г ╨╢╨╕╤А╨╜╤Л╨╣ ╨╖╨░╨│╨╛╨╗╨╛╨▓╨╛╨║ ╤Н╤В╨░╨┐╨░, ╨╜╨╕╨╢╨╡ ╤Б╨╡╤А╨░╤П ╨┐╨╛╨┤╤Б╨║╨░╨╖╨║╨░ (╨║╨░╨║ ╨╜╨░ ╨╝╨╛╨▒╨╕╨╗╨║╨╡) */
  .process__step {
    grid-template-columns: 1fr;
    gap: 0.55rem 0;
    padding-top: 0;
  }

  .process__dot {
    grid-row: 1;
    margin-bottom: 0.3rem;
  }

  .process__title {
    grid-row: 2;
  }

  .process__hint {
    grid-row: 3;
  }

  /* ╨▓╨╡╤А╤Е╨╜╨╕╨╣ ╤А╤П╨┤: ╨╛╤В ╤Ж╨╡╨╜╤В╤А╨░ ╨┐╨╡╤А╨▓╨╛╨╣ ╤В╨╛╤З╨║╨╕ ╨┤╨╛ ╨┐╤А╨░╨▓╨╛╨│╨╛ ╨║╤А╨░╤П ╨║╨╛╨╜╤В╨╡╨╣╨╜╨╡╤А╨░ */
  .process::before {
    content: "";
    position: absolute;
    left: var(--process-line-y);
    right: calc(-1 * var(--gutter));
    top: calc(0.35rem + var(--process-line-y));
    height: 0.6px;
    background: #000;
    z-index: 1;
    pointer-events: none;
  }
}

.process__hint {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--c-gray);
  max-width: 180px;
}

.process__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-black);
  max-width: 180px;
  letter-spacing: -0.005em;
}

@media (max-width: 899px) {
  .process {
    gap: 0;
    padding-left: 0;
    margin-bottom: 2.25rem;
    --process-dot: 30px;
  }

  .process::before {
    content: "";
    position: absolute;
    left: var(--process-line-y);
    top: calc(var(--process-line-y) + 2px);
    bottom: calc(var(--process-line-y) + 8px);
    width: 1px;
    background: var(--c-line-strong);
    z-index: 0;
    pointer-events: none;
  }

  /* gap: 0 ╨╜╨╡╨╗╤М╨╖╤П тАФ ╤Б╨▒╤А╨░╤Б╤Л╨▓╨░╨╡╤В column-gap; ╨╛╤В╤Б╤В╤Г╨┐ ╨║╤А╤Г╨╢╨╛╨║ тЖФ ╤В╨╡╨║╤Б╤В ╤В╨╛╨╗╤М╨║╨╛ ╤З╨╡╤А╨╡╨╖ column-gap */
  .process__step {
    grid-template-columns: var(--process-dot) minmax(0, 1fr);
    column-gap: clamp(1.35rem, 5.5vw, 2rem);
    row-gap: 0.5rem;
    padding-top: 0;
    padding-bottom: 2.65rem;
    z-index: 1;
  }

  .process__step:last-child {
    padding-bottom: 0;
  }

  .process__dot {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    margin-top: 4px;
    z-index: 2;
  }

  .process__title {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.9375rem;
    line-height: 1.35;
    margin-bottom: 0.15rem;
  }

  .process__hint {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.8125rem;
    line-height: 1.55;
    font-weight: 300;
    max-width: min(38ch, 100%);
    padding-top: 0.15rem;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
}

.process__cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

@media (max-width: 899px) {
  .process__cta {
    justify-content: stretch;
  }

  .process__cta .btn {
    width: 100%;
  }
}

/* 5.5 GOALS / CARDS ------------------------------------------------------ */
.cards {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 700px) {
  .cards--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 700px) {
  .cards--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .cards--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 900px) {
  #goals .container {
    display: flex;
    flex-direction: column;
    gap: 63px;
    align-items: start;
  }

  #goals .eyebrow {
    grid-column: 1;
    margin: 0;
    padding-top: 0.35rem;
  }

  #goals .cards--4 {
    grid-column: 2;
    margin: 0;
    align-items: stretch;
  }
}

.goal {
  display: grid;
  gap: 30px;
  padding-top: 31px;
  position: relative;
  height: 100%;
  box-sizing: border-box;
}

.goal__line {
  display: block;
  height: 1px;
  background: #B6A694;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform-origin: left center;
  transition: transform 0.6s var(--ease-out);
}

.goal:hover .goal__line {
  transform: scaleX(1.05);
  background: var(--c-bronze);
}

.goal h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.25;
}

.goal .text-muted {
  margin: 0;
}

/* Чёрные заголовки и серый текст — на одной высоте в каждом ряду */
@supports (grid-template-rows: subgrid) {
  @media (min-width: 700px) {
    #goals .cards--4 {
      grid-template-rows: auto auto;
      row-gap: 30px;
    }

    #goals .cards--4 > .goal {
      grid-template-rows: subgrid;
      grid-row: span 2;
      gap: 30px;
    }
  }
}

@media (min-width: 700px) {
  @supports not (grid-template-rows: subgrid) {
    #goals .goal h3 {
      min-height: 2.75em;
    }
  }
}

/* 5.6 DIRECTIONS --------------------------------------------------------- */
.directions {
  gap: clamp(1.5rem, 3vw, 1.75rem);
}

@media (max-width: 767px) {
  #directions .eyebrow {
    margin-bottom: 35px;
  }

  #directions .directions {
    row-gap: 35px;
    column-gap: clamp(1rem, 3.2vw, 1.25rem);
  }

  #directions .direction {
    gap: 13px;
  }

  #directions .direction__media {
    margin-bottom: 7px;
  }

  #directions .direction h3 {
    margin: 0;
  }
}

.direction {
  display: grid;
  gap: 1.25rem;
}

.direction__media {
  margin: 0;
  aspect-ratio: 358 / 357;
  overflow: hidden;
  background: #18181a;
}

.direction__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.4s var(--ease);
  filter: saturate(0.95);
}

.direction:hover .direction__media img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.direction h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 19px 0 0 0;
  line-height: 1.25;
}

@supports (grid-template-rows: subgrid) {
  @media (min-width: 700px) {
    #directions .directions {
      grid-template-rows: auto auto auto;
      row-gap: 1.25rem;
    }

    #directions .directions > .direction {
      grid-template-rows: subgrid;
      grid-row: span 3;
      gap: 13px;
    }
  }
}

@media (min-width: 700px) {
  @supports not (grid-template-rows: subgrid) {
    #directions .direction h3 {
      min-height: 2.75em;
    }
  }
}

/* 5.6.1 PORTFOLIO -------------------------------------------------------- */
.portfolio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 768px) {
  .portfolio {
    grid-template-columns: 1fr;
  }
}

.portfolio-card {
  display: block;
}

.portfolio-card__trigger {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
}

.portfolio-card__trigger:focus-visible {
  outline: 2px solid var(--c-bronze);
  outline-offset: 4px;
}

.portfolio-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #18181a;
}

.portfolio-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.45s var(--ease);
}

.portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.9s var(--ease-out),
    filter 0.45s var(--ease);
  filter: saturate(0.95);
}

.portfolio-card__content {
  position: absolute;
  left: clamp(1.25rem, 3vw, 2rem);
  right: clamp(1.25rem, 3vw, 2rem);
  bottom: clamp(1.25rem, 3vw, 2rem);
  z-index: 2;
  color: #fff;
  opacity: 0;
  transform: translateY(0.75rem);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease-out);
}

.portfolio-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.75vw, 3rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

@media (hover: hover) {
  .portfolio-card__trigger:hover .portfolio-card__media::after,
  .portfolio-card__trigger:focus-visible .portfolio-card__media::after {
    background: rgba(0, 0, 0, 0.48);
  }

  .portfolio-card__trigger:hover .portfolio-card__media img,
  .portfolio-card__trigger:focus-visible .portfolio-card__media img {
    transform: scale(1.04);
    filter: saturate(0.9) brightness(0.72);
  }

  .portfolio-card__trigger:hover .portfolio-card__content,
  .portfolio-card__trigger:focus-visible .portfolio-card__content {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: none) {
  .portfolio-card__content {
    opacity: 1;
    transform: none;
  }

  .portfolio-card__media::after {
    background: rgba(0, 0, 0, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-card__media::after,
  .portfolio-card__media img,
  .portfolio-card__content {
    transition: none;
  }
}

.portfolio-card__note {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 767px) {
  .portfolio-card__media {
    aspect-ratio: 16 / 11;
  }

  .portfolio-card__title {
    font-size: clamp(1.3125rem, 6.75vw, 2.0625rem);
  }
}

.portfolio__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 5vw, 3rem);
}

@media (max-width: 767px) {
  .portfolio__cta .btn {
    width: 100%;
    max-width: none;
  }
}

.portfolio__cta.is-exhausted {
  display: none;
}

@media print {
  .portfolio [hidden] {
    display: block !important;
  }

  .portfolio__cta {
    display: none !important;
  }
}

/* 5.7 WHY US (Bronze) ---------------------------------------------------- */
.section--bronze {
  background-color: var(--c-bronze);
  background-image: url("img/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--c-white);
}

.section--bronze .text-muted,
.section--bronze p {
  color: rgba(255, 255, 255, 0.95);
}

.reasons {
  gap: clamp(2rem, 4vw, 3rem);
}

.reason {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.reason__num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3.75rem, 7vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.reason h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.15;
}

.reason p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 100%;
}

/* 5.8 AUDIENCE ----------------------------------------------------------- */
.audience {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 4rem);
}

@media (min-width: 800px) {
  .audience {
    grid-template-columns: 1fr 1fr;
  }
}

.audience__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
}

.audience__num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(4rem, 9vw, 6rem);
  line-height: 1;
  color: var(--c-bronze);
  letter-spacing: -0.02em;
}

.audience__num::after {
  content: ".";
}

.audience__item h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--c-gray-strong);
  margin-bottom: 0.25rem;
}

/* 5.9 BENEFITS (Black) -------------------------------------------------- */
.section--dark {
  background: var(--c-black);
  color: var(--c-white);
}

.section--dark .text-muted {
  color: var(--c-gray);
}

.section--dark p {
  color: var(--c-gray);
}

.benefits {
  display: grid;
  gap: 0;
}

.benefits__item {
  display: grid;
  gap: 1rem;
  padding-block: clamp(1.25rem, 3vw, 1.75rem);
  border-bottom: 1px solid var(--c-line-on-dark);
  transition: padding 0.3s var(--ease);
}

.benefits__item:first-child {
  border-top: 1px solid var(--c-line-on-dark);
}

.benefits__item:hover {
  padding-inline: 0.5rem;
}

@media (min-width: 800px) {
  .benefits__item {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 4rem;
    align-items: center;
  }
}

.benefits__head {
  display: flex;
  align-items: baseline;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.benefits__idx {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--c-gray);
  min-width: 1.5rem;
}

.benefits__item h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--c-white);
  line-height: 1;
}

/* 5.10 CTA --------------------------------------------------------------- */
.section--cta {
  padding-block: clamp(4.5rem, 9vw, 7rem);
}

.cta {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 760px;
  gap: 1.5rem;
}

.cta__eyebrow {
  margin-bottom: 1.5rem;
}

.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 500;
  line-height: 0.92;
}

.cta__subtitle {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-black);
}

.cta__text {
  margin: 0.5rem 0 1.5rem;
  max-width: 540px;
  font-size: 1rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 540px) {
  .cta__actions {
    width: 100%;
    flex-direction: column;
  }

  .cta__actions .btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .btn {
    min-width: 0;
    width: 100%;
    max-width: 320px;
  }

  .process__cta .btn,
  .cta__actions .btn {
    max-width: none;
  }
}

/* 6. ANIMATIONS ---------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero__media img {
    animation: none;
    transform: none;
  }

  .hero__scroll span {
    animation: none;
  }

  .hero__title,
  .hero__eyebrow,
  .hero__subtitle,
  .hero .btn {
    animation: none;
  }
}

/* PRINT ------------------------------------------------------------------ */
@media print {

  .site-header,
  .hero__scroll,
  .btn {
    display: none !important;
  }

  .hero {
    min-height: auto;
  }

  body {
    color: #000;
    background: #fff;
  }
}
