/* Калашник — портфолио креатора */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@500;600;700;800&display=swap');

:root {
  --ink: #0b1020;
  --ink-soft: #1a2236;
  --navy: #152a4a;
  --steel: #6b7c93;
  --mist: #d5dce8;
  --paper: #f3f5f9;
  --white: #ffffff;
  --accent: #e8a03a;
  --accent-deep: #c47a1a;
  --teal: #1aa8a1;
  --danger: #e23d3d;
  --ok: #1f9d5a;
  --shadow: 0 18px 50px rgba(11, 16, 32, 0.14);
  --radius: 18px;
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(232, 160, 58, 0.18), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(26, 168, 161, 0.12), transparent 50%),
    linear-gradient(180deg, #e9eef6 0%, var(--paper) 35%, #eef1f7 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  cursor: pointer;
  background: none;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* —— Nav —— */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}

.nav.is-scrolled {
  background: rgba(243, 245, 249, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(11, 16, 32, 0.06);
}

.nav__inner {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav__links a {
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  transition: transform 0.2s, background 0.2s;
}

.nav__cta:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(11, 16, 32, 0.06);
  place-items: center;
}

.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 3px 0;
}

/* —— Hero —— */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero__visual {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background:
    linear-gradient(135deg, #2a3548 0%, #6a7588 45%, #9aa5b5 100%);
  overflow: hidden;
}

.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 16, 32, 0.35) 0%, transparent 35%),
    linear-gradient(0deg, rgba(11, 16, 32, 0.25) 0%, transparent 40%);
  pointer-events: none;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: heroIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 8% 3rem;
  position: relative;
  z-index: 2;
}

.hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  animation: rise 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__brand span {
  display: block;
  color: var(--steel);
  font-size: 0.42em;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.35;
  max-width: 18ch;
  margin-bottom: 1rem;
  animation: rise 0.9s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__lead {
  color: var(--steel);
  font-size: 1.05rem;
  max-width: 34ch;
  margin-bottom: 2rem;
  animation: rise 0.9s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: rise 0.9s 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(11, 16, 32, 0.22);
}

.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--navy);
}

.btn--ghost {
  background: rgba(11, 16, 32, 0.05);
  color: var(--ink);
  border: 1px solid rgba(11, 16, 32, 0.1);
}

.btn--ghost:hover {
  background: rgba(11, 16, 32, 0.09);
  transform: translateY(-2px);
}

.hero__orbit {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px dashed rgba(11, 16, 32, 0.12);
  right: -60px;
  bottom: 8%;
  animation: spin 40s linear infinite;
  pointer-events: none;
}

/* —— Sections —— */
.section {
  padding: 6.5rem 0;
}

.section__head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.75rem;
  max-width: 42rem;
}

.section__eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section__text {
  color: var(--steel);
  font-size: 1.05rem;
}

/* —— About —— */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about__photo-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  background: #7a8494;
}

.about__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.about__badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about__badge small {
  display: block;
  font-weight: 600;
  color: var(--steel);
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.about__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}

.about__copy p {
  color: var(--steel);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.stat {
  padding: 1rem 0;
  border-top: 2px solid var(--ink);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-bottom: 0.2rem;
}

.stat span {
  font-size: 0.85rem;
  color: var(--steel);
  font-weight: 600;
}

/* —— Gallery filters —— */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: rgba(11, 16, 32, 0.04);
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-btn:hover {
  background: rgba(11, 16, 32, 0.08);
}

.filter-btn.is-active {
  background: var(--ink);
  color: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.gallery-panel {
  display: none;
}

.gallery-panel.is-active {
  display: grid;
}

.card-shell {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 16, 32, 0.08);
  border: 1px solid rgba(11, 16, 32, 0.05);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
  opacity: 0;
  transform: translateY(24px);
}

.card-shell.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card-shell:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(11, 16, 32, 0.16);
}

.card-shell__meta {
  padding: 0.9rem 1rem 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.card-shell__meta h3 {
  font-size: 0.92rem;
  font-weight: 700;
}

.card-shell__meta span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-deep);
  white-space: nowrap;
}

/* —— Generated shot images —— */
.shot {
  display: block;
  overflow: hidden;
  background: #0b1020;
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-shell:hover .shot img {
  transform: scale(1.04);
}

.shot--wide img,
.shot--biz img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.shot--square img {
  aspect-ratio: 1;
  object-fit: cover;
}

.shot--story img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  max-height: 480px;
  margin-inline: auto;
}

.gallery--stories {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 980px) {
  .gallery--stories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .gallery--stories {
    grid-template-columns: 1fr;
  }
}

/* —— Marketplace product cards (legacy skins unused) —— */
.mp-card {
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.mp-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mp-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mp-badge {
  align-self: flex-start;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.mp-badge--hot {
  background: var(--danger);
}

.mp-badge--hit {
  background: var(--accent);
  color: var(--ink);
}

.mp-badge--new {
  background: var(--teal);
}

.mp-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
  margin-top: 0.85rem;
  max-width: 14ch;
}

.mp-sub {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  opacity: 0.85;
  max-width: 22ch;
}

.mp-price {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
}

.mp-price strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.mp-price s {
  opacity: 0.55;
  font-size: 0.85rem;
  margin-left: 0.35rem;
}

.mp-cta {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.72rem;
}

.mp-features {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.35rem;
}

.mp-features li {
  list-style: none;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mp-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.mp-product {
  position: absolute;
  right: -8%;
  bottom: 8%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 24px;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.mp-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  z-index: 0;
}

/* Specific marketplace skins */
.skin-coffee .mp-card__bg {
  background: linear-gradient(160deg, #1a120c 0%, #4a2c1a 45%, #8b5a2b 100%);
}
.skin-coffee .mp-product {
  background:
    radial-gradient(circle at 35% 30%, #f5e6d3, transparent 40%),
    linear-gradient(145deg, #3d2314, #1a0f0a);
  border: 3px solid #c4a574;
}

.skin-tech .mp-card__bg {
  background: linear-gradient(160deg, #05080f 0%, #0d1b2a 50%, #1b3a4b 100%);
}
.skin-tech .mp-product {
  background:
    linear-gradient(135deg, #1ee3c8, #0a7cff 60%, #5b2cff);
  border-radius: 20px;
}
.skin-tech .mp-glow {
  background: #1ee3c8;
  right: 10%;
  top: 20%;
}

.skin-beauty .mp-card__bg {
  background: linear-gradient(160deg, #2a1520 0%, #6b2d4a 50%, #d4a5b8 100%);
}
.skin-beauty .mp-product {
  background:
    radial-gradient(circle at 40% 35%, #fff6fa, #f0c4d4 45%, #c96b8a);
  border-radius: 50%;
  width: 52%;
}

.skin-sport .mp-card__bg {
  background: linear-gradient(160deg, #0a0a0a 0%, #1a1a1a 40%, #ff3b1f 160%);
}
.skin-sport .mp-product {
  background: linear-gradient(160deg, #222, #111);
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  border: 2px solid #ff3b1f;
}

.skin-home .mp-card__bg {
  background: linear-gradient(160deg, #e8e2d6 0%, #c9bfae 50%, #8a7e6c 100%);
  color: var(--ink);
}
.skin-home {
  color: var(--ink);
}
.skin-home .mp-badge {
  background: var(--ink);
  color: #fff;
}
.skin-home .mp-cta {
  background: var(--ink);
  color: #fff;
}
.skin-home .mp-product {
  background:
    linear-gradient(145deg, #f7f3ea, #ddd4c4);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.skin-kids .mp-card__bg {
  background: linear-gradient(160deg, #1a4d8f 0%, #3db5ff 55%, #ffe566 130%);
}
.skin-kids .mp-product {
  background: radial-gradient(circle at 30% 30%, #fff, #ffb4d9 40%, #7ad7ff);
  border-radius: 30% 70% 60% 40% / 40% 30% 70% 60%;
}

.skin-food .mp-card__bg {
  background: linear-gradient(160deg, #1a2e14 0%, #3d6b2a 45%, #9bcf5a 100%);
}
.skin-food .mp-product {
  background:
    radial-gradient(circle at 50% 40%, #ffe08a, #e8a03a 50%, #8b4513);
  border-radius: 50% 50% 45% 45%;
}

.skin-auto .mp-card__bg {
  background: linear-gradient(160deg, #111 0%, #2a2a2a 40%, #444 100%);
}
.skin-auto .mp-product {
  background: linear-gradient(90deg, #c0c0c0, #eee, #888);
  border-radius: 12px;
  transform: rotate(-8deg);
}

.skin-pet .mp-card__bg {
  background: linear-gradient(160deg, #2d1b0e 0%, #6b4423 50%, #d4a574 100%);
}
.skin-pet .mp-product {
  background: radial-gradient(circle at 40% 35%, #f5dcc3, #c4956a 55%, #6b4423);
  border-radius: 42% 58% 55% 45%;
}

.skin-gadget .mp-card__bg {
  background: linear-gradient(145deg, #0f0f12 0%, #1c1c24 50%, #2d2d3a 100%);
}
.skin-gadget .mp-product {
  background: linear-gradient(160deg, #2a2a32, #0a0a0c);
  border: 1px solid #444;
  border-radius: 28px;
  box-shadow: inset 0 0 0 2px #222, 0 20px 40px rgba(0, 0, 0, 0.5);
}
.skin-gadget .mp-glow {
  background: #4da3ff;
  left: 10%;
  top: 30%;
}

.skin-fashion .mp-card__bg {
  background: linear-gradient(160deg, #faf7f2 0%, #e8dfd2 60%, #c4b5a0 100%);
  color: var(--ink);
}
.skin-fashion {
  color: var(--ink);
}
.skin-fashion .mp-badge {
  background: var(--ink);
  color: #fff;
}
.skin-fashion .mp-cta {
  background: var(--ink);
  color: #fff;
}
.skin-fashion .mp-product {
  background: linear-gradient(160deg, #1a1a1a, #333);
  border-radius: 8px;
  width: 48%;
}

/* —— Preview / thumbnail cards —— */
.yt-card {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.yt-card__bg {
  position: absolute;
  inset: 0;
}

.yt-card__body {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.yt-card__title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  line-height: 1.15;
  max-width: 16ch;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.yt-card__play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ff0000;
  display: grid;
  place-items: center;
  align-self: center;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4);
}

.yt-card__play::after {
  content: '';
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}

.yt-card__tag {
  align-self: flex-start;
  padding: 0.3rem 0.55rem;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.68rem;
  border-radius: 6px;
}

.ig-card {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ig-card__bg {
  position: absolute;
  inset: 0;
}

.ig-card h4 {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.15;
}

.ig-card p {
  position: relative;
  z-index: 2;
  font-size: 0.82rem;
  opacity: 0.9;
  margin-top: 0.35rem;
}

/* —— Business cards —— */
.biz-card {
  aspect-ratio: 1.75 / 1;
  position: relative;
  overflow: hidden;
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.biz-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.15;
}

.biz-card__role {
  font-size: 0.72rem;
  opacity: 0.8;
  margin-top: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.biz-card__contacts {
  font-size: 0.72rem;
  line-height: 1.55;
  opacity: 0.9;
}

.biz-card__mark {
  position: absolute;
  right: -10%;
  top: -20%;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.15;
  background: #fff;
}

.biz-card__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

/* —— Banner / story —— */
.banner-card {
  aspect-ratio: 9 / 16;
  max-height: 420px;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.banner-card__bg {
  position: absolute;
  inset: 0;
}

.banner-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.banner-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.15;
  margin-top: 0.75rem;
}

.banner-card p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 0.45rem;
}

.banner-card__cta {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
  padding: 0.75rem;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.85rem;
}

/* —— Infographic —— */
.info-card {
  aspect-ratio: 4 / 5;
  padding: 1.15rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.info-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.info-steps {
  display: grid;
  gap: 0.55rem;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.info-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.info-step b {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.info-step span {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
}

/* —— Services —— */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service {
  padding: 1.75rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 16, 32, 0.06);
  box-shadow: 0 10px 30px rgba(11, 16, 32, 0.05);
  transition: transform 0.3s;
}

.service:hover {
  transform: translateY(-6px);
}

.service__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 1.1rem;
  background: var(--ink);
  color: #fff;
}

.service h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.service p {
  color: var(--steel);
  font-size: 0.95rem;
}

/* —— Contact / CTA —— */
.cta-band {
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(600px 300px at 90% 10%, rgba(232, 160, 58, 0.35), transparent 50%),
    linear-gradient(135deg, #0b1020 0%, #1a2a44 55%, #243652 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.cta-band p {
  opacity: 0.8;
  max-width: 36ch;
  margin-bottom: 1.5rem;
}

.cta-band__form {
  display: grid;
  gap: 0.75rem;
}

.cta-band input,
.cta-band textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  resize: vertical;
}

.cta-band input::placeholder,
.cta-band textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-status {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.4;
}

.form-status.is-ok {
  color: #9ee6b0;
}

.form-status.is-error {
  color: #ffb4b4;
}

.cta-band .btn--primary:disabled {
  opacity: 0.65;
  cursor: wait;
}

.cta-band .btn--primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: none;
}

.cta-band .btn--primary:hover {
  background: #f0b455;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-list li {
  display: grid;
  gap: 0.15rem;
}

.contact-list span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
}

.contact-list a,
.contact-list strong {
  font-weight: 700;
  font-size: 1.02rem;
  color: #fff;
}

.contact-list a:hover {
  color: var(--accent);
}

/* —— Footer —— */
.footer {
  padding: 2.5rem 0 3rem;
  color: var(--steel);
  font-size: 0.9rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(11, 16, 32, 0.08);
  padding-top: 1.5rem;
}

.footer strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  font-weight: 600;
}

.footer__contacts a:hover {
  color: var(--ink);
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__visual {
    min-height: 55vh;
    order: -1;
  }

  .hero__content {
    padding: 2.5rem 7% 3.5rem;
  }

  .about,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .services {
    grid-template-columns: 1fr;
  }

  .nav__links {
    display: none;
  }

  .nav__burger {
    display: grid;
  }

  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(243, 245, 249, 0.97);
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 620px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .about__stats {
    grid-template-columns: 1fr;
  }

  .hero__brand {
    font-size: 2.35rem;
  }

  .container {
    width: min(1180px, calc(100% - 1.5rem));
  }
}
