/*
Theme Name: She Makes
Theme URI: https://shemakes.md
Author: She Makes Studio
Version: 2.0.0
Description: Premium editorial landing page for She Makes — women's community in Chisinau.
License: GNU General Public License v2 or later
Text Domain: shemakes
*/

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  /* Palette — nude / blush / ink / gold */
  --nude-1:   #F7F2EC;
  --nude-2:   #F0E8DF;
  --nude-3:   #EAD8CB;
  --blush-1:  #E9CCBF;
  --blush-2:  #D9ADA0;
  --rose:     #BB8070;
  --rose-dk:  #9D6558;
  --gold:     #BB8070;
  --gold-lt:  #D9ADA0;
  --ink:      #1B1714;
  --ink-mid:  #3C2B25;
  --ink-soft: #6B5E52;
  --ink-ghost:#A49890;
  --white:    #FDFAF6;

  /* Typography */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;

  /* Line heights — TIGHT */
  --lh-display: 1.0;
  --lh-heading: 1.18;
  --lh-sub:     1.35;
  --lh-body:    1.55;
  --lh-small:   1.48;

  /* Spacing */
  --s1:  0.25rem; --s2:  0.5rem;  --s3:  0.75rem;
  --s4:  1rem;    --s5:  1.25rem; --s6:  1.5rem;
  --s8:  2rem;    --s10: 2.5rem;  --s12: 3rem;
  --s16: 4rem;    --s20: 5rem;    --s24: 6rem;
  --s32: 8rem;

  /* Radii */
  --r-sm: 4px; --r-md: 10px; --r-lg: 20px; --r-xl: 32px; --r-full: 9999px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(23,15,12,.06);
  --sh-md: 0 6px 24px rgba(23,15,12,.09);
  --sh-lg: 0 20px 60px rgba(23,15,12,.12);
  --sh-xl: 0 40px 100px rgba(23,15,12,.16);

  /* Ease */
  --ease: cubic-bezier(.16,1,.3,1);
  --ease-soft: cubic-bezier(.25,.46,.45,.94);

  /* Z */
  --z-nav:   60;
  --z-menu: 100;
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--nude-1);
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
iframe { max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--sans); font-size: 1rem; }
::selection { background: var(--blush-1); color: var(--ink); }

/* ─────────────────────────────────────────
   TYPOGRAPHY SCALE
───────────────────────────────────────── */
.t-overline {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
}

.t-display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: var(--lh-display);
  letter-spacing: -.025em;
  font-size: clamp(3.2rem, 7vw, 7rem);
}
.t-display em { font-style: italic; color: var(--gold-lt); }

.t-h1 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: var(--lh-heading);
  letter-spacing: -.02em;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.t-h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: var(--lh-heading);
  letter-spacing: -.015em;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}

.t-h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: var(--lh-sub);
  letter-spacing: -.01em;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}

.t-body-lg { font-size: 1.05rem; line-height: var(--lh-body); color: var(--ink-mid); }
.t-body    { font-size: .95rem;  line-height: var(--lh-body); color: var(--ink-soft); }
.t-small   { font-size: .82rem;  line-height: var(--lh-small); color: var(--ink-ghost); }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1790px;
  margin: 0 auto;
  padding: 0 var(--s6);
}
@media(min-width:768px)  { .wrap { padding: 0 var(--s12); } }
@media(min-width:1280px) { .wrap { padding: 0 var(--s20); } }

.sec { padding: var(--s20) 0; }
@media(min-width:768px) { .sec { padding: var(--s32) 0; } }

.sec-label {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s8);
}
.sec-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 32px;
  background: var(--rose);
  opacity: .55;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: 0;
  height: 84px;
  border-bottom: 1px solid rgba(227,216,205,.72);
  background: rgba(247,242,236,.72);
  backdrop-filter: blur(8px) saturate(1.05);
  -webkit-backdrop-filter: blur(8px) saturate(1.05);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}

.nav--scrolled {
  background: rgba(241,215,203,.78);
  box-shadow: none;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
  height: 84px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nav__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
  }
  .nav__logo { justify-self: start; }
  .nav__cta  { justify-self: center; }
  .hamburger { justify-self: end; }
}
@media (min-width: 1024px) {
  .nav__inner {
    display: flex;
    justify-content: space-between;
    gap: var(--s6);
  }
}

/* LOGO — always visible */
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity .25s var(--ease);
}
.nav__logo:hover { opacity: .75; }

.nav__logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 8px 20px rgba(27,23,20,.16);
}

.nav__brand-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.nav__links {
  display: none;
  gap: clamp(14px, 1.5vw, var(--s8));
  align-items: center;
}
@media(min-width:1024px) { .nav__links { display: flex; } }

.nav__links a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-mid);
  opacity: .8;
  white-space: nowrap;
  line-height: 1;
  transition: opacity .2s;
}
.nav__links a:hover { opacity: 1; }

.nav__cta { display:none; }
@media(min-width:768px) { .nav__cta { display:block; } }

/* Light hero keeps readable dark nav links */
.nav--light .nav__links a { color: var(--ink-mid); opacity: .8; }
.nav--light .nav__links a:hover { color: var(--ink); opacity: 1; }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  -webkit-tap-highlight-color: transparent;
}

.btn-ink {
  padding: 13px 32px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-full);
}
.btn-ink:hover { background: var(--ink-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(23,15,12,.22); }

.btn-rose {
  padding: 13px 32px;
  background: var(--rose);
  color: var(--white);
  border-radius: var(--r-full);
}
.btn-rose:hover { background: var(--rose-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(187,128,112,.30); }

.btn-outline {
  padding: 12px 32px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(23,15,12,.25);
  border-radius: var(--r-full);
}
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white); transform: translateY(-2px); }

.btn-ghost-light {
  padding: 12px 32px;
  background: rgba(255,252,250,.08);
  color: rgba(255,252,250,.85);
  border: 1.5px solid rgba(255,252,250,.22);
  border-radius: var(--r-full);
}
.btn-ghost-light:hover {
  background: rgba(255,252,250,.16);
  border-color: rgba(255,252,250,.55);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-nav {
  padding: 10px 24px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-full);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s, color .2s, transform .2s var(--ease), box-shadow .2s var(--ease);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.btn-nav:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(23,15,12,.22);
}

.btn-lg { padding: 17px 44px; font-size: .82rem; }

/* ─────────────────────────────────────────
   MOBILE MENU
───────────────────────────────────────── */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: var(--s2);
  cursor: pointer;
}
@media(min-width:1024px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav--light .hamburger span { background: var(--ink); }

.mob-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  background:
    linear-gradient(180deg, rgba(247,242,236,.96) 0%, rgba(247,242,236,.92) 100%);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 14px;
  padding: 96px 24px 28px;
  backdrop-filter: blur(18px) saturate(1.04);
  -webkit-backdrop-filter: blur(18px) saturate(1.04);
  transform: translateX(100%);
  transition: transform .45s var(--ease);
}
.mob-menu.open { transform: translateX(0); }

.mob-menu .mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 7.2vw, 2.35rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -.02em;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(27,23,20,.08);
  transition: color .2s, transform .2s ease, border-color .2s ease;
}
.mob-menu .mob-link:hover {
  color: var(--rose);
  border-color: rgba(187,128,112,.24);
  transform: translateX(4px);
}

.mob-menu .btn {
  margin-top: auto !important;
  width: 100%;
  min-height: 54px;
  justify-content: center;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .12em;
  padding: 0 24px;
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(187,128,112,.18);
}

.mob-close {
  position: absolute;
  top: 24px; right: 20px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(27,23,20,.08);
  color: var(--rose);
  box-shadow: 0 8px 20px rgba(27,23,20,.08);
  cursor: pointer;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: #F6F2ED;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: #F6F2ED;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 84px;
  padding-bottom: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
  height: 100%;
}
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 100%;
  }
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 80px 0;
}
@media (min-width: 1280px) {
  .hero__left {
    padding: 120px 80px 80px 0;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero__dot {
  width: 32px;
  height: 1px;
  border-radius: 0;
  background: var(--gold);
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(48px, 5.3vw, 82px);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: none;
}
.hero__title-line {
  display: block;
  white-space: normal;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  display: inline-block;
  transform: skewX(-8deg);
  transform-origin: left center;
}
.hero__title-black {
  color: var(--ink);
  font-style: normal;
}
.hero__title-comma {
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 52px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0;
}
.hero__actions .btn {
  font-size: 12px;
  letter-spacing: .14em;
  padding: 16px 36px;
  border-radius: var(--r-full);
}
.hero__actions .btn-ink {
  background: var(--ink);
  color: var(--white);
}
.hero__actions .btn-ink:hover {
  background: var(--gold);
}
.hero__actions .btn-outline {
  border-color: #C4B09A;
}
.hero__actions .btn-outline:hover {
  background: #F0E8DC;
  color: var(--ink);
  border-color: var(--ink);
}

.hero__trust {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 620px;
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid rgba(27,23,20,.16);
  color: var(--ink);
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 0;
  min-width: 0;
}

.hero__trust-num {
  font-family: var(--serif);
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .01em;
  color: var(--ink);
}

.hero__trust-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8A7A6A;
}

/* Hero text reveal: top -> down */
.hero__left > * {
  opacity: 0;
  transform: translateY(-18px);
  animation: heroDropIn .8s var(--ease) forwards;
}
.hero__left > *:nth-child(1) { animation-delay: .08s; }
.hero__left > *:nth-child(2) { animation-delay: .18s; }
.hero__left > *:nth-child(3) { animation-delay: .30s; }
.hero__left > *:nth-child(4) { animation-delay: .42s; }
.hero__left > *:nth-child(5) { animation-delay: .54s; }

@keyframes heroDropIn {
  0% {
    opacity: 0;
    transform: translateY(-18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__right {
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero__right {
    margin-right: calc((100vw - 100%) / -2);
  }
}

.hero__card {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: 0;
  height: 100%;
}
@media (min-width: 1024px) {
  .hero__card {
    border-radius: 0;
    border: 0;
    box-shadow: none;
    height: 100%;
  }
}

.hero__card-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.hero__card-video {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(.72) contrast(1.08) saturate(.82);
  transform: scale(1.01);
  transition: filter .35s var(--ease);
}

.hero__right::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(27,23,20,0.30) 0%, rgba(27,23,20,0.20) 42%, rgba(27,23,20,0.34) 100%),
    linear-gradient(to top, rgba(27,23,20,0.48) 0%, rgba(27,23,20,0.24) 42%, rgba(27,23,20,0.12) 100%);
  pointer-events: none;
}

.hero__scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hide hero scroll button on tablet and mobile */
@media (max-width: 1024px) {
  .hero__scroll-indicator { display: none; }
}

.hero__scroll-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(27,23,20,.24);
  background: rgba(247,242,236,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(27,23,20,.12);
  animation: heroScrollPulse 2.1s ease-in-out infinite;
}

.hero__scroll-circle svg {
  width: 18px;
  height: 18px;
}

@keyframes heroScrollPulse {
  0%, 100% { transform: translateY(0); opacity: .92; }
  50% { transform: translateY(4px); opacity: 1; }
}

/* ─────────────────────────────────────────
   ABOUT LEAD (2-я секция как в прототипе)
───────────────────────────────────────── */
.about-lead {
  background: var(--white);
  padding: var(--s20) 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-lead { padding: 120px 0; }
}

/* Center this section like prototype, independent from global .wrap */
.about-lead .wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (min-width: 1024px) {
  .about-lead .wrap {
    padding: 0 80px;
  }
}

.about-lead__grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--s12);
}
@media (min-width: 1024px) {
  .about-lead__grid {
    flex-direction: row;
  align-items: center;
    gap: 100px;
  }
}

.about-lead__visual {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .about-lead__visual {
    margin: 0;
    flex: 0 0 480px;
    width: 480px;
    max-width: none;
  }
}

.about-lead__frame {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  z-index: 1;
}
@media (min-width: 1024px) {
  .about-lead__frame {
    width: 480px;
    height: 580px;
  }
}

.about-lead__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
.about-lead__frame:hover .about-lead__img {
  transform: scale(1.03);
}

.about-lead__accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid #E3D8CD;
  z-index: 0;
  pointer-events: none;
}

.about-lead__quote {
  position: absolute;
  bottom: 32px;
  right: -12px;
  max-width: 200px;
  padding: 24px 28px;
  background: var(--ink);
  color: var(--white);
  z-index: 2;
}
@media (max-width: 639px) {
  .about-lead__quote {
    right: 12px;
    bottom: 16px;
  }
}

.about-lead__quote-text {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  margin: 0;
}

.about-lead__content {
  flex: 1;
  min-width: 0;
}

.about-lead__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-lead__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.about-lead__title {
  font-family: var(--serif);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 28px;
}

.about-lead__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.about-lead__text {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 500px;
}
.about-lead__text:last-of-type {
  margin-bottom: 48px;
}

.about-lead__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s8);
  padding-top: 40px;
  border-top: 1px solid #E3D8CD;
}
@media (min-width: 640px) {
  .about-lead__meta { gap: 48px; }
}

.about-lead__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-lead__meta-value {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

.about-lead__meta-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8A7A6A;
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about { background: var(--nude-1); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s12);
  align-items: center;
}
@media(min-width:1024px) {
  .about__grid { grid-template-columns: 1fr 1fr; gap: var(--s20); }
}

.about__quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem,3vw,2.4rem);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: var(--s6);
}
.about__quote em { font-style: italic; color: var(--rose); }

.about__text {
  font-size: .95rem;
  line-height: var(--lh-body);
  color: var(--ink-soft);
  margin-bottom: var(--s8);
}

.about__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.about__img-wrap:hover .about__img { transform: scale(1.03); }

.about__badge {
  position: absolute;
  bottom: var(--s6); left: var(--s6);
  padding: var(--s3) var(--s5);
  background: rgba(254,250,247,.93);
  backdrop-filter: blur(14px);
  border-radius: var(--r-md);
}
.about__badge-num {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.about__badge-lbl {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--ink-ghost);
}

/* ─────────────────────────────────────────
   BENEFITS PROTOTYPE — scroll reveal (matches AnimatedSection.tsx)
   opacity 0→1, translateY(40px)→0, 0.8s ease, delay = i×80ms
───────────────────────────────────────── */
.bp-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity   0.8s ease var(--delay, 0ms),
    transform 0.8s ease var(--delay, 0ms);
  will-change: opacity, transform;
}
.bp-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

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

/* ─────────────────────────────────────────
   BENEFITS PROTOTYPE (3-я секция)
───────────────────────────────────────── */
.benefits-prototype {
  background: var(--nude-1);
  padding: var(--s20) 0;
}
@media (min-width: 768px) {
  .benefits-prototype { padding: 120px 0; }
}

.benefits-prototype .wrap.benefits-prototype__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (min-width: 1024px) {
  .benefits-prototype .wrap.benefits-prototype__inner {
    padding: 0 80px;
  }
}

.benefits-prototype__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E3D8CD;
}
@media (min-width: 769px) {
  .benefits-prototype__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    padding-bottom: 40px;
    gap: 24px;
  }
}

.benefits-prototype__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.benefits-prototype__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.benefits-prototype__title {
  font-family: var(--serif);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0;
}

.benefits-prototype__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.benefits-prototype__lead {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 320px;
  margin: 0;
  text-align: left;
}
@media (min-width: 769px) {
  .benefits-prototype__lead { text-align: right; }
}

.benefits-prototype__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
@media (min-width: 521px) {
  .benefits-prototype__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 769px) {
  .benefits-prototype__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1101px) {
  .benefits-prototype__grid { grid-template-columns: repeat(5, 1fr); }
}

.benefits-prototype__card {
  background: var(--white);
  padding: 32px 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.benefits-prototype__card:hover {
  box-shadow: 0 16px 48px -8px rgba(27,23,20,.18);
}
@media (min-width: 768px) {
  .benefits-prototype__card {
    padding: 40px 32px;
    min-height: 280px;
  }
}

.benefits-prototype__num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: #E3D8CD;
  line-height: 1;
  margin-bottom: 32px;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.benefits-prototype__card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 16px;
  transition: color 0.3s ease;
}

.benefits-prototype__card-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
  transition: color 0.3s ease;
}

/* Gold accent bar at card bottom */
.benefits-prototype__card-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.benefits-prototype__card:hover {
  background: var(--ink);
  transform: translateY(-4px);
}
.benefits-prototype__card:hover .benefits-prototype__num {
  color: var(--gold);
  transform: scale(1.06);
}
.benefits-prototype__card:hover .benefits-prototype__card-title { color: var(--nude-1); }
.benefits-prototype__card:hover .benefits-prototype__card-desc { color: #8A7A6A; }
.benefits-prototype__card:hover .benefits-prototype__card-bar { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .benefits-prototype__card:hover { transform: none; }
  .benefits-prototype__card-bar { transition: none !important; }
  .benefits-prototype__num { transition: none !important; }
}

/* ─────────────────────────────────────────
   WHY FAN CAROUSEL
───────────────────────────────────────── */
.why-fan { background: var(--nude-1); overflow: hidden; }

.why-fan__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s8);
}
@media(min-width:1024px) { .why-fan__wrap { padding: 0 80px; } }

.why-fan__top {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 52px;
  padding-bottom: 34px;
  border-bottom: none;
}
@media(max-width:900px) {
  .why-fan__top {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 36px;
    padding-bottom: 26px;
    align-items: start;
  }
}

.why-fan__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin: 0 0 20px;
}
.why-fan__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: .9;
}

.why-fan__title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.6vw, 4.1rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0;
}
.why-fan__title em { font-style: italic; color: var(--gold); }

.why-fan__lead {
  font-family: var(--sans);
  font-size: clamp(.9rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 320px;
  margin: 0;
  justify-self: end;
  text-align: right;
  padding-bottom: 6px;
}
@media(max-width:900px) {
  .why-fan__lead {
    justify-self: start;
    text-align: left;
    max-width: 100%;
    padding-bottom: 0;
  }
}

/* Stage & deck */
.why-fan__stage {
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 36px;
  user-select: none;
}

.why-fan__deck {
  position: relative;
  width: 215px;
  height: 268px;
  flex-shrink: 0;
}

.why-fan__card {
  position: absolute;
  top: 0; left: 0;
  width: 215px;
  height: 268px;
  border-radius: 28px;
  overflow: hidden;
  border: 3.5px solid rgba(255,255,255,.88);
  box-shadow: 0 12px 32px rgba(27,23,20,.13);
  cursor: pointer;
  transition:
    transform .55s cubic-bezier(.16,1,.3,1),
    opacity   .45s ease,
    filter    .45s ease,
    box-shadow .45s ease;
  will-change: transform, opacity;
}
.why-fan__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* ── Closed / stacked (default) ── */
.why-fan__card[data-pos="-2"] {
  transform: translateX(-50px) rotate(-22deg) scale(.70);
  opacity: .40; filter: blur(1px); z-index: 1;
}
.why-fan__card[data-pos="-1"] {
  transform: translateX(-26px) rotate(-12deg) scale(.86);
  opacity: .65; filter: blur(0); z-index: 2;
}
.why-fan__card[data-pos="0"] {
  transform: translateX(0) rotate(0deg) scale(1.07);
  opacity: 1; filter: blur(0); z-index: 4;
  box-shadow: 0 28px 64px rgba(27,23,20,.22);
  border-color: rgba(255,255,255,.95);
  cursor: default;
}
.why-fan__card[data-pos="1"] {
  transform: translateX(26px) rotate(12deg) scale(.86);
  opacity: .65; filter: blur(0); z-index: 2;
}
.why-fan__card[data-pos="2"] {
  transform: translateX(50px) rotate(22deg) scale(.70);
  opacity: .40; filter: blur(1px); z-index: 1;
}

/* ── Open (mouse in section) — fan spreads wide ── */
.why-fan--open .why-fan__card[data-pos="-2"] {
  transform: translateX(-290px) rotate(-18deg) scale(.62);
  opacity: .30; filter: blur(2.5px);
  transition-delay: .06s;
}
.why-fan--open .why-fan__card[data-pos="-1"] {
  transform: translateX(-180px) rotate(-11deg) scale(.82);
  opacity: .62; filter: blur(0);
  transition-delay: .03s;
}
.why-fan--open .why-fan__card[data-pos="0"] {
  transform: translateX(0) rotate(0deg) scale(1.07);
  opacity: 1;
  transition-delay: 0s;
}
.why-fan--open .why-fan__card[data-pos="1"] {
  transform: translateX(180px) rotate(11deg) scale(.82);
  opacity: .62; filter: blur(0);
  transition-delay: .03s;
}
.why-fan--open .why-fan__card[data-pos="2"] {
  transform: translateX(290px) rotate(18deg) scale(.62);
  opacity: .30; filter: blur(2.5px);
  transition-delay: .06s;
}

/* Caption */
.why-fan__caption {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  min-height: 230px;
}

.why-fan__num {
  display: block;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 10px;
}

.why-fan__text {
  font-family: var(--sans);
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 24px;
  min-height: 0;
  transition: opacity .25s ease;
}

.why-fan__subdesc {
  font-family: var(--sans);
  font-size: clamp(.82rem, 1.1vw, .95rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 18px;
  min-height: 4.2em;
  transition: opacity .25s ease;
}

.why-fan__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.why-fan__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(27,23,20,.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.why-fan__dot.is-active {
  background: var(--ink);
  transform: scale(1.35);
}

/* Mobile scale */
@media(max-width:900px) {
  .why-fan__stage { transform: scale(.82); transform-origin: center top; height: 300px; }
}
@media(max-width:640px) {
  .why-fan__stage { transform: scale(.58); height: 210px; }
  .why-fan__caption { min-height: 270px; }
  .why-fan__text { min-height: 0; }
  .why-fan__subdesc { min-height: 4.8em; }
}

/* ─────────────────────────────────────────
   WHY JOIN (dark)
───────────────────────────────────────── */
.why { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }

.why::before {
  content:'';
  position:absolute;
  top:-30%; right:-8%;
  width:500px; height:500px;
  background: radial-gradient(circle, rgba(187,128,112,.10) 0%, transparent 65%);
  pointer-events: none;
}

.why__head { text-align:center; margin-bottom:var(--s16); }
.why__head .t-h2 { color:var(--white); margin-bottom:var(--s4); }
.why__head .t-body { color:rgba(255,252,250,.50); max-width:480px; margin:0 auto; }

.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}
@media(min-width:640px)  { .benefits { grid-template-columns:1fr 1fr; } }
@media(min-width:1024px) { .benefits { grid-template-columns:repeat(3,1fr); } }

.benefit {
  padding: var(--s8);
  border: 1px solid rgba(255,252,250,.07);
  border-radius: var(--r-lg);
  background: rgba(255,252,250,.025);
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  cursor: default;
}
.benefit:hover {
  background: rgba(255,252,250,.055);
  border-color: rgba(187,128,112,.28);
  transform: translateY(-5px);
}

.benefit__icon { width:44px; height:44px; margin-bottom:var(--s4); color:var(--blush-2); opacity:.9; }

.benefit__title {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--s2);
  line-height: var(--lh-sub);
}

.benefit__text { font-size:.82rem; line-height:var(--lh-body); color:rgba(255,252,250,.48); }

/* ─────────────────────────────────────────
   VARIANT A — EVENT SHOWCASE (video + details)
───────────────────────────────────────── */
.evshow {
  background: #1B1714;
  padding: 120px 0;
  position: relative;
  overflow: clip; /* allows back card to peek right, clips decorative glows */
  --evshow-progress-ms: 5200ms;
}
.evshow::before {
  content: "";
  position: absolute;
  inset: auto auto 6% -10%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187,128,112,.14) 0%, rgba(187,128,112,0) 72%);
  pointer-events: none;
}
.evshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,0) 30%),
    radial-gradient(circle at 84% 18%, rgba(255,255,255,.05), rgba(255,255,255,0) 34%);
  pointer-events: none;
}
.evshow__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: grid;
  /* Avoid min-width floors that exceed narrow viewports (was minmax(320px, …)) */
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.78fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.evshow__inner::before,
.evshow__inner::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
/* top-right glow (symmetric pair to existing bottom-left section glow) */
.evshow__inner::before {
  width: 320px;
  height: 320px;
  top: -12%;
  right: -10%;
  background: radial-gradient(circle, rgba(187,128,112,.12) 0%, rgba(187,128,112,0) 72%);
}
.evshow__inner::after { display: none; }
.evshow__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.evshow__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}
.evshow__label::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: .9;
}
.evshow__heading {
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.03em;
  color: #FDFAF6;
  margin: 0;
}
.evshow__heading em { font-style: italic; color: var(--gold); }
.evshow__sub {
  max-width: 540px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  color: rgba(253,250,246,.56);
  margin: 0 0 10px;
}
.evshow__list {
  width: min(100%, 620px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 60px;
}
.evshow__item {
  position: relative;
  appearance: none;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 14px 0 14px 30px;
  display: grid;
  gap: 6px;
  cursor: pointer;
  opacity: .32;
  transition: opacity .24s ease, transform .24s ease;
}
.evshow__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 54px;
  background: rgba(253,250,246,.14);
  transition: background .24s ease, height .24s ease;
}
.evshow__item:hover { opacity: .65; }
.evshow__item.is-active {
  opacity: 1;
  transform: translateX(0);
}
.evshow__item.is-active::before {
  background: rgba(253,250,246,.92);
  height: 62px;
}
.evshow__item::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(253,250,246,.22), rgba(253,250,246,0));
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
}
.evshow__item.is-active::after {
  opacity: 1;
  animation: evshowProgress var(--evshow-progress-ms) linear infinite;
}
.evshow__item-num {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(253,250,246,.44);
}
.evshow__item-title {
  font-family: var(--sans);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.035em;
  color: #FDFAF6;
}
.evshow__item-meta {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(253,250,246,.42);
}

.evshow__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
.evshow__stage-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 16;
  margin-right: 50px; /* space for back card to peek without clip */
}

/* Each video frame — absolutely fills the stack container */
.evshow__video-frame {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  overflow: hidden;
  background: #161210;
  border: 1px solid rgba(253,250,246,.08);
  will-change: transform, filter;
  transform-style: preserve-3d;
  transition:
    transform .75s cubic-bezier(.16,1,.3,1),
    filter .75s ease,
    box-shadow .6s ease;
}
.evshow__video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.22) 100%);
  pointer-events: none;
  z-index: 1;
}
.evshow__video-frame::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.24),
    inset 0 -28px 34px rgba(0,0,0,.2);
  pointer-events: none;
  z-index: 2;
}

/* FRONT card — fully visible */
.evshow__video-frame.is-front {
  transform: none;
  filter: none;
  z-index: 2;
  box-shadow: 0 32px 88px rgba(0,0,0,.42);
}
.evshow__video-frame.is-front:hover {
  box-shadow: 0 48px 100px rgba(0,0,0,.8);
}

/* BACK card — peeks top-right, dimmed */
.evshow__video-frame.is-back {
  transform: translateX(44px) translateY(-26px) scale(0.93) rotate(2.2deg);
  filter: brightness(0.4) saturate(0.35);
  z-index: 1;
  box-shadow: none;
  pointer-events: none;
}

.evshow__video-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(.16,1,.3,1);
}
.evshow__video-frame.is-front:hover video {
  transform: scale(1.06);
}
.evshow__stage-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  gap: 20px;
}
.evshow__stage-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.evshow__stage-kicker {
  margin: 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(253,250,246,.42);
}
.evshow__stage-title {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #FDFAF6;
}
.evshow__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(253,250,246,.16);
  background: rgba(255,255,255,.02);
  color: #FDFAF6;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.evshow__cta:hover {
  transform: translateY(-2px);
  border-color: rgba(253,250,246,.34);
  background: rgba(255,255,255,.06);
  box-shadow: 0 10px 26px rgba(0,0,0,.24);
}
.evshow__cta svg {
  transition: transform .2s ease;
}
.evshow__cta:hover svg {
  transform: translateX(2px);
}
.evshow__note {
  font-family: var(--sans);
  font-size: 12px;
  font-style: italic;
  color: rgba(253,250,246,.22);
  letter-spacing: .03em;
  text-align: left;
}

@keyframes evshowProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ─────────────────────────────────────────
   VARIANT B — EVSPIRIT (4 values grid)
───────────────────────────────────────── */
.evspirit {
  background: var(--nude-1);
  padding: 120px 0;
}
.evspirit__wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.evspirit__head {
  text-align: center;
  margin-bottom: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.evspirit__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #B8955A;
}
.evspirit__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}
.evspirit__title em { font-style: italic; color: #B8955A; }
.evspirit__sub {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
}
.evspirit__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.evspirit__card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow .35s ease, transform .35s ease;
  cursor: default;
}
.evspirit__card:hover {
  box-shadow: 0 16px 56px rgba(27,23,20,.09);
  transform: translateY(-5px);
}
.evspirit__icon {
  width: 44px;
  height: 44px;
  color: #B8955A;
}
.evspirit__card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}
.evspirit__card-desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.68;
  color: var(--ink-soft);
}
.evspirit__footer {
  display: flex;
  justify-content: center;
}
.evspirit__cta {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 99px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(27,23,20,.28);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.evspirit__cta:hover { background: #B8955A; border-color: #B8955A; color: #fff; }

/* Mobile — both variants */
@media (max-width: 768px) {
  .evshow { padding: 88px 0; }
  .evshow__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .evshow__copy,
  .evshow__stage {
    align-items: flex-start;
  }
  .evshow__stage {
    width: 100%;
  }
  .evshow__heading {
    font-size: clamp(32px, 9vw, 52px);
  }
  .evshow__sub {
    font-size: 15px;
    max-width: 100%;
  }
  .evshow__item {
    padding-left: 22px;
  }
  .evshow__item::after {
    left: 22px;
  }
  .evshow__item-title {
    font-size: clamp(22px, 7vw, 34px);
  }
  .evshow__item-meta {
    font-size: 14px;
  }
  .evshow__stage-frame,
  .evshow__stage-footer {
    max-width: 100%;
  }
  .evshow__stage-frame {
    width: min(100%, 340px);
    aspect-ratio: 9 / 16;
    margin-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .evshow__video-frame {
    aspect-ratio: 9 / 16;
  }
  .evshow__video-frame video {
    object-fit: cover;
    background: transparent;
  }
  .evshow__video-frame.is-front:hover video {
    transform: none;
  }
  .evshow__stage-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .evshow__cta {
    width: 100%;
  }
  .evspirit__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .evspirit__grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   FORMATS (dark interactive tabs)
───────────────────────────────────────── */
.formats { background: #1B1714; }

/* Как about-lead / benefits: одна колонка контента 1280 + те же горизонтальные отступы */
.formats .wrap.formats__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (min-width: 1024px) {
  .formats .wrap.formats__wrap {
    padding: 0 80px;
  }
}

.formats__head {
  text-align: left;
  margin-bottom: 0;
}
.formats__head .sec-label {
  justify-content: flex-start;
}
.formats__head .t-h2 { color: #FDFAF6; }
.formats__head .formats__head-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.formats__head .t-body {
  color: rgba(253,250,246,.45);
  max-width: 520px;
  margin: var(--s4) 0 0;
}
.formats__head .t-overline { color: #BB8070; }

/* Две колонки: слева заголовок + табы, справа изображение + текст — верхи на одной линии */
.formats-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  width: 100%;
}
.formats-col-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}
.formats-col-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
  min-width: 0;
}
.formats-col-right .formats-tabs__img-wrap {
  margin-bottom: 0;
}
@media(max-width:900px) {
  .formats-layout { grid-template-columns: 1fr; gap: 40px; }
}

.formats-tabs__list-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.formats-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 28px 32px;
  border: none;
  border-left: 3px solid transparent;
  background: transparent;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: background .3s ease, border-color .3s ease;
}
.formats-tab:hover { background: rgba(247,242,236,.05); }
.formats-tab.active { background: #F7F2EC; border-left-color: #BB8070; }

.formats-tab__tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #6B5E52;
  transition: color .3s ease;
}
.formats-tab.active .formats-tab__tag { color: #BB8070; }

.formats-tab__name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: rgba(247,242,236,.95);
  line-height: 1.2;
  transition: color .3s ease;
}
.formats-tab.active .formats-tab__name { color: #1B1714; }

@keyframes fmtFade {
  from { opacity:0; transform:translateY(12px); }
  to   { opacity:1; transform:translateY(0); }
}
.formats-tabs__detail-col.fade-in { animation: fmtFade .4s ease both; }

.formats-tabs__img-wrap {
  width: 100%;
  height: 340px;
  overflow: hidden;
  margin-bottom: 36px;
}
.formats-tabs__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.formats-tabs__img-wrap:hover .formats-tabs__img { transform: scale(1.04); }

.formats-tabs__subtitle {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #BB8070;
  margin-bottom: 12px;
}

.formats-tabs__desc {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: #A89888;
  margin: 0 0 28px;
}

.formats-tabs__tags { display:flex; flex-wrap:wrap; gap: 24px; }

.formats-tabs__tag {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .06em;
  color: #F7F2EC;
  background: rgba(247,242,236,.08);
  border: 1px solid rgba(247,242,236,.15);
  padding: 6px 14px;
}

/* ─────────────────────────────────────────
   EVENTS — immersive dual cards
───────────────────────────────────────── */
/* ─────────────────────────────────────────
   EV-CARDS — Stacked deck
───────────────────────────────────────── */
.ev-cards {
  background: #1B1714;
  padding: 100px 0 140px;
}
.ev-cards__wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* Two-column: sidebar + stack */
.ev-cards__layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Sidebar ── */
.ev-cards__sidebar {
  display: flex;
  flex-direction: column;
}
.ev-cards__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #B8955A;
  margin-bottom: 28px;
}

/* Editorial counter */
.ev-cards__counter {
  font-family: var(--serif);
  line-height: 1;
  margin-bottom: 28px;
  transition: opacity .25s ease;
}
.ev-cnt-cur {
  font-size: 96px;
  font-weight: 300;
  color: #FDFAF6;
  letter-spacing: -.02em;
}
.ev-cnt-sep {
  font-size: 32px;
  color: rgba(253,250,246,.2);
  margin: 0 4px;
}
.ev-cnt-tot {
  font-size: 32px;
  color: rgba(253,250,246,.2);
}

.ev-cards__title {
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  color: #FDFAF6;
  margin-bottom: 14px;
}
.ev-cards__title em { font-style: italic; color: #B8955A; }

.ev-cards__sub {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(253,250,246,.35);
  line-height: 1.5;
  margin-bottom: 40px;
}

/* Flip button */
.ev-cards__flip-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 99px;
  border: 1px solid rgba(184,149,90,.4);
  background: transparent;
  color: #B8955A;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .2s ease;
  align-self: flex-start;
  margin-bottom: 32px;
}
.ev-cards__flip-btn:hover {
  background: #B8955A;
  border-color: #B8955A;
  color: #fff;
  transform: translateX(4px);
}
.ev-cards__flip-btn svg { transition: transform .3s ease; }
.ev-cards__flip-btn:hover svg { transform: translateX(4px); }

/* Dot nav */
.ev-cards__dots { display: flex; gap: 10px; }
.ev-dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  border: none;
  background: rgba(253,250,246,.15);
  cursor: pointer;
  padding: 0;
  transition: background .3s ease, width .3s ease;
}
.ev-dot.is-active {
  background: #B8955A;
  width: 44px;
}

/* ── Stack container ── */
.ev-cards__stack {
  position: relative;
  height: 600px;
  margin-right: 50px;
}

/* ── Single card ── */
.ev-card {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  will-change: transform, filter;
  transition:
    transform .75s cubic-bezier(.16,1,.3,1),
    filter .75s ease,
    box-shadow .6s ease;
}

/* FRONT */
.ev-card.is-front {
  transform: none;
  filter: none;
  z-index: 2;
  box-shadow: 0 32px 80px rgba(0,0,0,.65);
}
.ev-card.is-front:hover {
  box-shadow: 0 48px 100px rgba(0,0,0,.8);
}

/* BACK — peeks right + up */
.ev-card.is-back {
  transform: translateX(44px) translateY(-26px) scale(0.93) rotate(2.2deg);
  filter: brightness(0.4) saturate(0.35);
  z-index: 1;
  pointer-events: none;
  box-shadow: none;
}

/* Background image / video */
.ev-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.ev-card.is-front:hover .ev-card__bg { transform: scale(1.06); }
.ev-card__bg-video { object-fit: cover; }

/* Gradient overlay */
.ev-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(8,6,5,.96) 0%,
    rgba(8,6,5,.65) 45%,
    rgba(8,6,5,.18) 100%
  );
  pointer-events: none;
}
.ev-card.is-front:hover .ev-card__overlay {
  background: linear-gradient(
    0deg,
    rgba(8,6,5,.98) 0%,
    rgba(8,6,5,.72) 50%,
    rgba(8,6,5,.25) 100%
  );
}

/* Status pill */
.ev-card__status {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  background: #B8955A;
  color: #fff;
}
.ev-card__status--new {
  background: transparent;
  border: 1px solid rgba(253,250,246,.25);
  color: rgba(253,250,246,.7);
}

/* Content area */
.ev-card__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 32px 30px;
}
.ev-card__type {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(253,250,246,.45);
  margin-bottom: 10px;
}
.ev-card__title-ev {
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1.14;
  color: #FDFAF6;
  margin-bottom: 20px;
}
.ev-card__title-ev em { font-style: italic; color: #C4A870; }
.ev-card__always { margin-bottom: 18px; }

.ev-card__meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.ev-card__meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(253,250,246,.62);
}
.ev-card__meta svg { flex-shrink: 0; opacity: .7; }

/* Progress bar */
.ev-card__progress-bar {
  height: 2px;
  background: rgba(253,250,246,.1);
  border-radius: 1px;
  overflow: hidden;
}
.ev-card__progress-fill {
  height: 100%;
  width: 0;
  background: #B8955A;
  border-radius: 1px;
  transition: width 1.1s cubic-bezier(.16,1,.3,1) .3s;
}
.ev-card__progress-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(253,250,246,.32);
  margin-top: 7px;
  letter-spacing: .03em;
}

/* Gold separator — sweeps on front hover */
.ev-card__sep {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, #B8955A, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.16,1,.3,1) .06s;
  margin-bottom: 0;
  flex-shrink: 0;
}
.ev-card.is-front:hover .ev-card__sep {
  transform: scaleX(1);
  margin-bottom: 20px;
}

/* Reveal — price + CTA on front hover */
.ev-card__reveal {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .5s cubic-bezier(.16,1,.3,1) .08s, opacity .4s ease .1s;
}
.ev-card.is-front:hover .ev-card__reveal {
  max-height: 80px;
  opacity: 1;
}
.ev-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ev-card__price {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: #FDFAF6;
  display: block;
  line-height: 1;
}
.ev-card__price-note {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(253,250,246,.35);
  display: block;
  margin-top: 4px;
}
.ev-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 99px;
  background: #B8955A;
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .25s ease, box-shadow .25s ease, transform .2s ease;
}
.ev-card__cta:hover {
  background: #9d7a3d;
  box-shadow: 0 8px 28px rgba(184,149,90,.45);
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 900px) {
  .ev-cards__layout { grid-template-columns: 1fr; gap: 48px; }
  .ev-cards__stack { height: 520px; margin-right: 40px; }
  .ev-cnt-cur { font-size: 64px; }
}
@media (max-width: 600px) {
  .ev-cards__stack { height: 480px; margin-right: 30px; }
  .ev-card__reveal { max-height: 80px; opacity: 1; }
  .ev-card__sep { transform: scaleX(1); margin-bottom: 16px; }
  .ev-card__cta { padding: 10px 20px; font-size: 11px; }
  .ev-cnt-cur { font-size: 52px; }
}


   GALLERY (Gallery.tsx)
───────────────────────────────────────── */
.gallery { background: #FDFAF6; overflow: hidden; }

.gallery__wrap-proto { max-width: 1280px; margin: 0 auto; }

.gallery__header-proto {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 56px;
}
@media(max-width:900px) {
  .gallery__header-proto { flex-direction: column; align-items: flex-start; }
  .gallery__desc-proto { text-align: left; max-width: none; }
}

.gallery__eyebrow-proto {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.gallery__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.gallery__title-proto {
  color: #1B1714;
  margin: 0;
  line-height: 1.15;
}
.gallery__title-proto em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.gallery__desc-proto {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #6B5E52;
  max-width: 300px;
  margin: 0;
  text-align: right;
}

.gallery__grid-proto {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 8px;
}
@media(max-width:900px) {
  .gallery__grid-proto {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
    grid-auto-rows: 220px;
  }
  .gallery__cell-proto { grid-row: unset !important; }
}
@media(max-width:520px) {
  .gallery__grid-proto { grid-template-columns: 1fr; }
}

.gallery__cell-proto {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery__cell-proto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.gallery__cell-proto:hover img { transform: scale(1.06); }

.gallery__cell-cap {
  position: absolute;
  inset: 0;
  background: rgba(27,23,20,.2);
  opacity: 0;
  transition: opacity .4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  pointer-events: none;
}
.gallery__cell-proto:hover .gallery__cell-cap { opacity: 1; }
.gallery__cell-cap span {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: #FDFAF6;
  letter-spacing: .04em;
}

/* ─────────────────────────────────────────
   TMARKS — Infinite Instagram-review marquee
───────────────────────────────────────── */
.tmarks {
  background: var(--nude-1);
  padding: 120px 0 80px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.tmarks__runway {
  overflow: hidden;
}
.tmarks--visible {
  opacity: 1;
  transform: translateY(0);
}
/* Head */
.tmarks__head {
  text-align: center;
  margin-bottom: 68px;
  padding: 0 20px;
}
.tmarks__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.tmarks__eyebrow::before,
.tmarks__eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.tmarks__title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.6vw, 4.1rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 0;
}
.tmarks__title em {
  font-style: italic;
  color: var(--gold);
}

/* Runway — two scrolling rows */
.tmarks__runway {
  display: flex;
  flex-direction: column;
  gap: 18px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.tmarks__row {
  overflow: visible;
  /* clip-path clips horizontally at row edges but allows ±20px vertically
     so hover scale(1.02) + translateY(-4px) are never cut off            */
  clip-path: inset(-20px 0);
}
.tmarks__inner {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}
.tmarks__row--left  .tmarks__inner { animation: tmarks-left  42s linear infinite; }
.tmarks__row--right .tmarks__inner { animation: tmarks-right 50s linear infinite; }

/* Pause on hover or when modal is open */
.tmarks__row:hover .tmarks__inner,
body.modal-open .tmarks__inner { animation-play-state: paused; }

@keyframes tmarks-left {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-7 * (360px + 18px))); }
}
@keyframes tmarks-right {
  from { transform: translateX(calc(-7 * (360px + 18px))); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .tmarks__inner { animation: none !important; }
}

/* ── Card ── */
.tmarks__card {
  flex-shrink: 0;
  width: 360px;
  min-height: 240px;
  background: #fff;
  border-radius: 18px;
  padding: 28px 30px 26px;
  border: 1px solid rgba(0,0,0,.055);
  box-shadow: 0 2px 20px rgba(27,23,20,.05);
  display: flex;
  flex-direction: column;
  user-select: none;
  transition: box-shadow .25s ease, transform .25s ease;
}
.tmarks__card:nth-child(odd)  { background: #fff;     transform: rotate(.7deg); }
.tmarks__card:nth-child(even) { background: #e8e0d759; transform: rotate(-.5deg); }
.tmarks__card:hover {
  box-shadow: 0 8px 40px rgba(27,23,20,.12);
  transform: rotate(0deg) scale(1.02) !important;
}

/* Card header: Instagram icon + handle */
.tmarks__card-top {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
}
.tmarks__ig {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.tmarks__handle {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .06em;
  color: var(--gold);
}

/* Quote — clamped to 5 lines, expand via JS modal */
.tmarks__quote {
  font-family: var(--sans);
  font-size: .96rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 14px;
  /* clamp to 4 lines: 4 × 0.96rem × 1.65 ≈ 6.34rem */
  max-height: calc(4 * 0.96rem * 1.65);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* "Читать далее" trigger — added by JS only when text is actually clamped */
.tmarks__read-more {
  display: block;
  margin-top: 8px;
  margin-bottom: 2px;
  margin-left: auto;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--gold);
  cursor: pointer;
  text-transform: none;
  transition: opacity .2s ease;
  flex-shrink: 0;
}
.tmarks__read-more:hover { opacity: .7; }

/* ── Read-more modal ── */
.tmarks-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.tmarks-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.tmarks-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27,23,20,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.tmarks-modal__box {
  position: relative;
  z-index: 1;
  background: #FDFAF6;
  border-radius: 24px;
  padding: 44px 48px 40px;
  width: min(560px, 100%);
  height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(27,23,20,.22);
  transform: translateY(16px) scale(.97);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.tmarks-modal.is-open .tmarks-modal__box {
  transform: translateY(0) scale(1);
}
.tmarks-modal__close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(27,23,20,.35);
  line-height: 1;
  font-size: 22px;
  padding: 4px 8px;
  transition: color .2s ease;
}
.tmarks-modal__close:hover { color: var(--ink); }
.tmarks-modal__nav {
  position: absolute;
  top: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #E3D8CD;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.tmarks-modal__nav:hover {
  background: #fff;
  border-color: #cdb8a4;
  transform: translateY(-1px);
}
.tmarks-modal__nav--prev { right: 118px; }
.tmarks-modal__nav--next { right: 72px; }
.tmarks-modal__handle {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tmarks-modal__quote {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
  /* custom thin scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #d6c5b8 transparent;
}
.tmarks-modal__quote::-webkit-scrollbar { width: 4px; }
.tmarks-modal__quote::-webkit-scrollbar-track { background: transparent; }
.tmarks-modal__quote::-webkit-scrollbar-thumb { background: #d6c5b8; border-radius: 4px; }
.tmarks-modal__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  margin-top: 16px;
  border-top: 1px solid #E3D8CD;
  flex-shrink: 0;
}
.tmarks-modal__ava {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #efe6dc;
  color: #5b3e33;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
  border: 1.5px solid rgba(184,149,90,.28);
}
.tmarks-modal__stars { color: var(--gold); font-size: .72rem; letter-spacing: 1.5px; }
.tmarks-modal__name {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
}
@media (max-width: 520px) {
  .tmarks-modal__box { padding: 32px 24px 28px; height: 380px; }
  .tmarks-modal__nav {
    top: auto;
    bottom: 20px;
  }
  .tmarks-modal__nav--prev { right: 74px; }
  .tmarks-modal__nav--next { right: 24px; }
}

/* Footer: avatar + stars + name */
.tmarks__card-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
}
.tmarks__ava {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(184,149,90,.22);
}
.tmarks__ava--letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #efe6dc;
  color: #5b3e33;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 1.5px solid rgba(184,149,90,.28);
  box-shadow: none;
}
.tmarks__card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tmarks__stars {
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  line-height: 1;
}
.tmarks__name {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
}

/* Responsive */
@media (max-width: 768px) {
  .tmarks { padding: 80px 0 100px; }
  .tmarks__head { margin-bottom: 48px; }
}
@media (max-width: 520px) {
  .tmarks { padding: 64px 0 80px; }
  .tmarks__card { width: 290px; padding: 18px 20px 16px; }
  .tmarks__runway { gap: 12px; }
  .tmarks__inner { gap: 12px; }
  @keyframes tmarks-left {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-7 * (290px + 12px))); }
  }
  @keyframes tmarks-right {
    from { transform: translateX(calc(-7 * (290px + 12px))); }
    to   { transform: translateX(0); }
  }
}

/* ─────────────────────────────────────────
   TSCAT (old, kept for reference)
───────────────────────────────────────── */
.tscat {
  position: relative;
  background: #F7F2EC;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 104px 0 96px;
}

/* Soft center light only, without visible card */
.tscat::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 42% 30% at 50% 48%, rgba(255,255,255,.72) 0%, rgba(255,255,255,0) 74%),
    radial-gradient(ellipse 68% 54% at 50% 52%, rgba(212,189,171,.10) 0%, rgba(247,242,236,0) 80%);
  pointer-events: none;
  z-index: 0;
}

/* ── Scattered photos layer ── */
.tscat__photos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  perspective: 1800px;
}

.tscat__photo {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 56px rgba(27,23,20,.16);
  opacity: 0;
  transform:
    perspective(1800px)
    translate3d(0, 48px, 0)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    rotateZ(var(--rz, 0deg))
    scale(.92);
  transition: opacity .75s ease, transform .9s cubic-bezier(.16,1,.3,1), box-shadow .4s ease;
  will-change: transform;
}
.tscat__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tscat--visible .tscat__photo {
  opacity: 1;
  transform:
    perspective(1800px)
    translate3d(0, var(--float-y, 0px), 0)
    rotateX(calc(var(--rx, 0deg) + var(--scroll-rx, 0deg)))
    rotateY(calc(var(--ry, 0deg) + var(--scroll-ry, 0deg)))
    rotateZ(calc(var(--rz, 0deg) + var(--scroll-rz, 0deg)))
    scale(1);
}
/* Staggered delays */
.tscat__photo--1 { transition-delay: .05s; }
.tscat__photo--2 { transition-delay: .12s; }
.tscat__photo--3 { transition-delay: .19s; }
.tscat__photo--4 { transition-delay: .26s; }
.tscat__photo--5,
.tscat__photo--6,
.tscat__photo--7,
.tscat__photo--8 { display: none; }

/* 4-photo layout matching ref composition */
.tscat__photo--1 { --rz: -10deg; --rx: 6deg;  --ry: -18deg; width: 330px; height: 190px; top: 2%;  left: 11%; }
.tscat__photo--2 { --rz: 10deg;  --rx: -8deg; --ry: 20deg;  width: 265px; height: 350px; top: 10%; left: 6%; }
.tscat__photo--3 { --rz: -8deg;  --rx: 7deg;  --ry: -16deg; width: 292px; height: 360px; top: 1%;  right: 8%; }
.tscat__photo--4 { --rz: 9deg;   --rx: -6deg; --ry: 18deg;  width: 330px; height: 190px; bottom: 5%; right: 20%; }

/* ── Center quote area ── */
.tscat__center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
  padding: 0 20px;
}

.tscat__eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}

/* ── Slider ── */
.tscat__slider {
  position: relative;
  width: 100%;
}
.tscat__slide {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: tscatFadeIn .55s cubic-bezier(.16,1,.3,1) both;
}
.tscat__slide.is-active { display: flex; }

@keyframes tscatFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tscat__quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--ink);
  letter-spacing: -.035em;
  margin: 0;
  quotes: none;
  max-width: 11ch;
}

.tscat__author {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-ghost);
  font-style: normal;
}

/* ── Dots ── */
.tscat__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 22px;
}
.tscat__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(27,23,20,.16);
  cursor: pointer;
  padding: 0;
  transition: background .3s ease, transform .3s ease;
}
.tscat__dot.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .tscat { min-height: 700px; }
  .tscat__photo--1 { width: 270px; height: 160px; left: 8%; }
  .tscat__photo--2 { width: 220px; height: 300px; left: 2%; top: 14%; }
  .tscat__photo--3 { width: 240px; height: 305px; right: 4%; }
  .tscat__photo--4 { width: 280px; height: 160px; right: 15%; }
  .tscat__quote { font-size: clamp(26px, 4vw, 42px); }
}
@media (max-width: 900px) {
  .tscat {
    min-height: 620px;
    padding: 88px 0;
  }
  .tscat__center {
    max-width: 460px;
  }
  .tscat__photo--1 { width: 220px; height: 130px; top: 2%; left: 3%; }
  .tscat__photo--2 { width: 165px; height: 220px; top: 17%; left: -1%; }
  .tscat__photo--3 { width: 175px; height: 230px; top: 5%; right: 0; }
  .tscat__photo--4 { width: 220px; height: 130px; bottom: 6%; right: 8%; }
  .tscat__quote { font-size: clamp(24px, 5vw, 34px); }
}
@media (max-width: 560px) {
  .tscat__photo--1,
  .tscat__photo--4 { display: none; }
  .tscat {
    min-height: 0;
    padding: 76px 0;
  }
  .tscat__center {
    max-width: 100%;
    margin: 0 18px;
    padding: 0 8px;
  }
  .tscat__quote {
    font-size: 28px;
    max-width: 10.5ch;
  }
  .tscat__photo--2 { width: 124px; height: 168px; top: 20%; left: -4%; }
  .tscat__photo--3 { width: 130px; height: 176px; top: 6%; right: -2%; }
}

/* ─────────────────────────────────────────
   TESTIMONIALS (Testimonials.tsx)
───────────────────────────────────────── */
.testimonials { background: #F7F2EC; overflow: hidden; }

.testimonials-proto { max-width: 1280px; margin: 0 auto; }

.testimonials-proto__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 72px;
}
@media(max-width:768px) {
  .testimonials-proto__header { flex-direction: column; align-items: flex-start; }
}

.testimonials-proto__title {
  color: #1B1714;
  margin: 0;
  line-height: 1.15;
}
.testimonials-proto__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.testimonials-proto__nav { display: flex; gap: 8px; }

.tstm-nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid #C4B09A;
  background: transparent;
  color: #1B1714;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.tstm-nav-btn:hover:not(:disabled) {
  background: #1B1714;
  color: #F7F2EC;
  border-color: #1B1714;
}
.tstm-nav-btn:disabled { cursor: not-allowed; opacity: .4; }
.tstm-nav-btn--primary {
  background: #1B1714;
  color: #F7F2EC;
  border-color: #1B1714;
}
.tstm-nav-btn--primary:hover:not(:disabled) {
  background: var(--gold);
  border-color: var(--gold);
  color: #1B1714;
}

.testimonials-proto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media(max-width:768px) {
  .testimonials-proto__grid { grid-template-columns: 1fr; }
}

.tstm-card-proto {
  background: #FDFAF6;
  padding: 48px;
  position: relative;
  transition: box-shadow .3s ease, transform .3s ease;
  box-sizing: border-box;
}
.tstm-card-proto:hover {
  box-shadow: 0 12px 40px rgba(27,23,20,.08);
  transform: translateY(-4px);
}

.tstm-stars-proto { display: flex; gap: 3px; color: var(--gold); margin-bottom: 20px; }
.tstm-stars-proto svg { width: 14px; height: 14px; fill: currentColor; }

.tstm-quote-mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: #E3D8CD;
  margin-bottom: 20px;
  user-select: none;
}

.tstm-text-proto {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: #2D2520;
  margin: 0 0 36px;
}

.tstm-author-proto {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #E3D8CD;
}

.tstm-avatar-proto {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E3D8CD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: #8A7A6A;
  flex-shrink: 0;
}

.tstm-name-proto {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: #1B1714;
  margin-bottom: 2px;
}
.tstm-role-proto {
  font-family: var(--sans);
  font-size: 12px;
  color: #8A7A6A;
}

.testimonials-proto__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.tstm-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: #D5C8BB;
  transition: width .3s ease, background .3s ease;
}
.tstm-dot.is-active {
  width: 24px;
  background: var(--gold);
}
.tstm-dot:not(.is-active) { width: 8px; }

.tstm-quote {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.52;
  color: var(--ink-mid);
  flex: 1;
}

.tstm-author { display:flex; align-items:center; gap:var(--s3); }

.tstm-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.tstm-avatar img { width:100%; height:100%; object-fit:cover; }

.av-ph {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--white);
}
.av-1 { background: linear-gradient(135deg,var(--rose),var(--rose-dk)); }
.av-2 { background: linear-gradient(135deg,var(--gold),var(--blush-1)); color:var(--ink); }
.av-3 { background: linear-gradient(135deg,var(--ink-soft),var(--ink-mid)); }
.av-4 { background: linear-gradient(135deg,var(--blush-1),var(--rose)); }
.av-5 { background: linear-gradient(135deg,#8B6050,#6B3820); }
.av-6 { background: linear-gradient(135deg,var(--blush-2),var(--rose)); }

.tstm-name { font-size:.82rem; font-weight:700; color:var(--ink); }
.tstm-role { font-size:.72rem; color:var(--ink-ghost); }

/* ─────────────────────────────────────────
   INSTAGRAM SECTION
───────────────────────────────────────── */
.instagram { background: var(--nude-1); }
.instagram__head { text-align:center; margin-bottom:var(--s10); }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--s2);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--s8);
}
@media(min-width:768px) { .insta-grid { grid-template-columns: repeat(6,1fr); gap:var(--s3); } }

.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--r-md);
}
.insta-item img {
  width:100%; height:100%;
  object-fit:cover;
  transition: transform .45s var(--ease);
}
.insta-item:hover img { transform: scale(1.07); }

.insta-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(23,15,12,.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s var(--ease);
  color: var(--white);
}
.insta-item:hover .insta-item__overlay { opacity: 1; }
.insta-item__overlay svg { width:24px; height:24px; }

.insta-cta { text-align:center; }

/* ─────────────────────────────────────────
   INSTAGRAM FEED (Smash Balloon)
───────────────────────────────────────── */
.ig-feed {
  background: #FDFAF6;
  overflow-x: clip;
}
.ig-feed .wrap {
  max-width: 1280px;
  min-width: 0;
}
.ig-feed__head {
  text-align: center;
  margin-bottom: 44px;
}
.ig-feed__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.ig-feed__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.ig-feed__title {
  margin: 0;
  color: var(--ink);
  line-height: 1.12;
}
.ig-feed__title em {
  font-style: italic;
  color: var(--gold);
}
.ig-feed__lead {
  margin: 18px auto 0;
  max-width: 560px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-ghost);
}
.ig-feed__frame {
  background: #fff;
  border: 1px solid rgba(27,23,20,.08);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 16px 50px rgba(27,23,20,.08);
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Smash Balloon / embeds: stop layout from blowing past the viewport */
.ig-feed__frame #sb_instagram,
.ig-feed__frame #sb_instagram #sbi_images {
  max-width: 100% !important;
  box-sizing: border-box;
}
.ig-feed__frame iframe {
  max-width: 100% !important;
}
.ig-feed__placeholder {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  color: var(--ink-ghost);
}
.ig-feed__placeholder p {
  margin: 0;
  max-width: 46ch;
  line-height: 1.7;
}
.ig-feed__placeholder a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(184,149,90,.42);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ig-feed__placeholder a:hover {
  background: #F7F2EC;
}

@media(max-width:767px) {
  .ig-feed__frame {
    border-radius: 16px;
    padding: 12px;
  }
  .ig-feed__lead {
    font-size: 14px;
  }
}

/* ─────────────────────────────────────────
   FOUNDERS (dark, full-height portraits)
───────────────────────────────────────── */
.founders {
  background: #1B1714;
  overflow: hidden;
  overflow-x: clip;
  position: relative;
}
.founders .wrap {
  min-width: 0;
  max-width: 100%;
}
.founders::before,
.founders::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
/* bottom-left glow */
.founders::before {
  width: 300px;
  height: 300px;
  left: -8%;
  bottom: -9%;
  background: radial-gradient(circle, rgba(187,128,112,.12) 0%, rgba(187,128,112,0) 72%);
}
/* top-right glow */
.founders::after {
  width: 280px;
  height: 280px;
  right: -8%;
  top: -8%;
  background: radial-gradient(circle, rgba(187,128,112,.11) 0%, rgba(187,128,112,0) 72%);
}
.founders__head { text-align:center; margin-bottom:72px; }
.founders-proto__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.founders-proto__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.founders-proto__title {
  font-size: clamp(2.25rem, 4.6vw, 4.1rem);
  color: #F7F2EC;
  margin: 0;
  line-height: 1.12;
  letter-spacing: -.04em;
}
.founders-proto__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.founders__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 920px;
  margin: 0 auto;
  align-items: start;
  position: relative;
  min-width: 0;
  width: 100%;
}
@media(max-width:767px) { .founders__grid { grid-template-columns:1fr; } }
@media (max-width: 900px) {
  .evshow__inner::before { width: 220px; height: 220px; top: -8%; right: -12%; }
  .evshow__inner::after { display: none; }
  .founders::before,
  .founders::after { width: 180px; height: 180px; }
}

.founder-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0);
}
.founder-card:hover { transform: translate3d(0, calc(var(--parallax-y) - 6px), 0); }

.founder-card__photo {
  width: 320px;
  height: 320px;
  overflow: hidden;
  position: relative;
  background: #14110f;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.founder-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter .95s cubic-bezier(.22,.61,.36,1), transform .95s cubic-bezier(.22,.61,.36,1);
}
.founders__grid .founder-card:first-child .founder-card__photo img {
  object-position: 50% 28%;
}
.founders__grid .founder-card:nth-child(2) .founder-card__photo img {
  object-position: 50% 18%;
}
@media (max-width: 768px) {
  .founders__grid .founder-card:nth-child(2) .founder-card__photo img {
    object-position: 50% 30%;
  }
}
.founder-card:hover .founder-card__photo img {
  filter: grayscale(0%) saturate(1.05);
  transform: scale(1.035);
}

.founder-card__ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 5rem;
  font-style: italic;
  color: rgba(253,250,246,.1);
}
.fp-dark-1 { background: linear-gradient(145deg,#2A2420,#1B1714); }
.fp-dark-2 { background: linear-gradient(145deg,#22201E,#1B1714); }

.founder-card__body {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: none;
}

.founder-card__name {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 400;
  color: var(--gold);
  text-shadow: 0 1px 14px rgba(187,128,112,.18);
  line-height: 1.12;
  margin-bottom: 10px;
}

.founder-card__quote {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  text-align: center;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(253,250,246,.78);
  margin: 0 auto;
  max-width: min(38ch, 100%);
  width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

.founder-card__quote-icon {
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 0;
  color: var(--gold);
  opacity: 0.72;
}

.founder-card__quote-icon svg {
  display: block;
  width: 26px;
  height: 26px;
}

.founder-card__quote-text {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.founder-card__insta {
  margin: 10px 0 0;
  text-align: center;
}

.founder-card__insta a {
  font-family: var(--sans);
  font-size: .98rem;
  letter-spacing: .01em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: none;
  transition: opacity .2s ease;
}

.founder-card__insta a:hover {
  opacity: .85;
}

@media(max-width:1020px) {
  .founders__grid { gap: 38px; max-width: 760px; }
  .founder-card__photo { width: 280px; height: 280px; }
}
@media(max-width:767px) {
  /* Tighter vertical rhythm than global .sec on small screens */
  .founders.sec {
    padding-top: var(--s10);
    padding-bottom: var(--s10);
  }
  .founders__head {
    margin-bottom: 36px;
  }
  .founders-proto__eyebrow {
    margin-bottom: 14px;
  }
  .founder-card {
    gap: 18px;
    transform: none !important;
  }
  .founder-card__photo {
    width: 240px;
    height: 240px;
  }
}

/* ─────────────────────────────────────────
   FAQ (2-col sticky layout)
───────────────────────────────────────── */
.faq { background: #FDFAF6; }

.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
@media(max-width:900px) { .faq__layout { grid-template-columns:1fr; gap:48px; } }

.faq__sticky {
  position: sticky;
  top: 100px;
}
@media(max-width:900px) {
  .faq__sticky { position: static; }
}

.faq-proto__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.faq-proto__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* Размер шрифта задаётся классом .t-h2 на том же элементе */
.faq-proto__title {
  font-size: clamp(2.25rem, 4.6vw, 4.1rem);
  color: #1B1714;
  margin: 0 0 24px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-kerning: normal;
}
.faq-proto__title em { font-style: italic; color: var(--gold); }

.faq-proto__lead {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #6B5E52;
  margin: 0 0 32px;
  max-width: 36ch;
}

.faq-proto__btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #C4B09A;
  background: transparent;
  color: #1B1714;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-full);
  transition: background .25s ease, color .25s ease;
}
.faq-proto__btn:hover {
  background: #1B1714;
  color: #F7F2EC;
}

.faq__accordion { display:flex; flex-direction:column; padding-top: 4px; }

.faq__item {
  border: none;
  border-bottom: 1px solid #E3D8CD;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  transition: background-color .35s ease, border-color .35s ease, box-shadow .35s ease;
}
/* Без лишней линии над первым вопросом (как в прототипе) */
.faq__item:first-child { border-top: none; }
.faq__item.open {
  background: linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(247,242,236,.86) 100%);
  border-bottom-color: #D8C7B7;
  box-shadow: 0 12px 28px rgba(27,23,20,.05);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 20px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: #2D2520;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  gap: 24px;
  background: transparent;
  transition: color .28s ease, font-weight .28s ease, letter-spacing .28s ease;
}
.faq__item.open .faq__q {
  color: #7A4A3E;
  font-weight: 500;
  letter-spacing: .01em;
}

.faq__icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(213, 200, 187, 0.85);
  display: flex; align-items: center; justify-content: center;
  color: #8A7A6A;
  transition: background .2s, border-color .2s, color .2s;
}
.faq__item.open .faq__icon {
  background: #1B1714;
  border-color: #1B1714;
  color: #F7F2EC;
}
.faq__icon svg {
  width: 11px;
  height: 11px;
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
}
.faq__minus { display: none; }
.faq__item.open .faq__plus { display: none; }
.faq__item.open .faq__minus { display: block; }

.faq__a { max-height:0; overflow:hidden; transition: max-height .56s cubic-bezier(.22,.61,.36,1); }
.faq__item.open .faq__a { max-height: 420px; }
.faq__a-inner {
  padding: 0 76px 30px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #6B5E52;
  font-weight: 300;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .34s ease, transform .42s cubic-bezier(.22,.61,.36,1);
}
.faq__item.open .faq__a-inner {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .faq__q { padding: 22px 14px; font-size: 1.06rem; gap: 14px; }
  .faq__a-inner { padding: 0 14px 22px 14px; font-size: 14px; line-height: 1.7; }
}

/* ─────────────────────────────────────────
   FINAL CTA (FinalCTA.tsx)
───────────────────────────────────────── */
.cta-final {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: stretch;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-final__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.25);
}
.cta-final__bg-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,23,20,.9) 0%, rgba(27,23,20,.7) 100%);
}

.cta-final__wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px var(--s6);
}
@media(min-width:768px) {
  .cta-final__wrap { padding: 120px 80px; }
}

.cta-final__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}
@media(min-width:901px) {
  .cta-final__grid {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
}

.cta-final__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.cta-final__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.cta-final__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 400;
  color: #F7F2EC;
  line-height: 1.1;
  margin: 0 0 28px;
}
.cta-final__title em {
  font-style: italic;
  color: var(--gold);
}

.cta-final__lead {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: #C9BDB2;
  margin: 0 0 48px;
  max-width: 420px;
}

.cta-final__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-final__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: #C9BDB2;
}
.cta-final__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(184,149,90,.15);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.cta-final__form-card {
  background: linear-gradient(165deg, rgba(255, 252, 250, .88) 0%, rgba(247, 242, 236, .68) 42%, rgb(194 172 164) 72%, rgb(194 172 164) 100%);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 22px;
  padding: 26px 22px;
  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
  box-shadow:
    0 20px 56px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.55);
}
@media(min-width:768px) {
  .cta-final__form-card { padding: 32px 28px; }
}

.f-success--proto {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
}
.f-success--proto[hidden] { display: none !important; }
.f-success--proto:not([hidden]) { display: flex; }
.f-success--toast {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 8;
  pointer-events: none;
  background: rgba(249,245,240,.96);
  border: 1px solid rgba(27,23,20,.08);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(27,23,20,.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease;
}
.f-success--toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.f-success__title {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 12px;
}
.f-success__text {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(27,23,20,.78);
  line-height: 1.7;
  margin: 0;
  max-width: 320px;
}

.cta-final__form[hidden] { display: none !important; }

.sm-honeypot {
  display: none !important;
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.cta-final__form-lead {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-style: italic;
  color: #1B1714;
  margin: 0 0 20px;
  letter-spacing: -.02em;
}

/* Поле: label + input в одной «плитке» — актуальный паттерн вместо тяжёлых боксов */
.cta-final__field {
  margin-bottom: 12px;
  padding: 10px 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(27,23,20,.08);
  background: rgba(255,255,255,.42);
  transition:
    border-color .2s var(--ease),
    background .2s var(--ease),
    box-shadow .2s var(--ease);
}
.cta-final__field:focus-within {
  border-color: rgba(187,128,112,.38);
  background: rgba(255,255,255,.78);
  box-shadow: 0 0 0 3px rgba(187,128,112,.14);
}

.cta-final__field--error {
  border-color: rgba(184, 72, 54, .45);
  background: rgba(255,255,255,.86);
  box-shadow: 0 0 0 3px rgba(184, 72, 54, .08);
}

.cta-final__field--error:focus-within {
  border-color: rgba(184, 72, 54, .58);
  box-shadow: 0 0 0 3px rgba(184, 72, 54, .12);
}

.cta-final__label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(27,23,20,.52);
  margin-bottom: 6px;
}

.cta-final__req {
  color: var(--rose);
  font-weight: 700;
  letter-spacing: 0;
}

.cta-final__input {
  width: 100%;
  box-sizing: border-box;
  min-height: 44px;
  margin: 0;
  padding: 2px 0 4px;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  box-shadow: none;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.01em;
  color: #1B1714;
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
  transition: color .15s ease;
}
.cta-final__input::placeholder {
  color: rgba(27,23,20,.38);
  font-weight: 400;
  opacity: 1;
}
.cta-final__input:focus {
  border: none;
  box-shadow: none;
  background: transparent;
}
.cta-final__input:focus-visible {
  outline: none;
}
.cta-final__input:invalid {
  box-shadow: none;
}

.cta-final__input[aria-invalid="true"]::placeholder {
  color: rgba(27,23,20,.28);
}

.cta-final__error,
.cta-final__status {
  margin: 8px 0 0;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.45;
  color: #9d3e31;
}

.cta-final__error[hidden],
.cta-final__status[hidden] {
  display: none !important;
}

.cta-final__status {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(184, 72, 54, .08);
  border: 1px solid rgba(184, 72, 54, .14);
}

.cta-final__select {
  cursor: pointer;
  appearance: none;
  color: #1B1714;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231B1714' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
}

.cta-final__submit {
  width: 100%;
  margin-top: 14px;
  min-height: 52px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1B1714;
  color: #F7F2EC;
  border: none;
  border-radius: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(27,23,20,.2);
  transition: background .2s ease, gap .2s ease, box-shadow .2s ease, transform .2s ease;
}
.cta-final__submit:hover:not(:disabled) {
  background: #2a221e;
  gap: 11px;
  box-shadow: 0 16px 40px rgba(27,23,20,.24);
  transform: translateY(-1px);
}
.cta-final__submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.cta-final__legal {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(27,23,20,.62);
  margin: 14px auto 0;
  line-height: 1.55;
  text-align: center;
  max-width: 34ch;
}

.cta-final__select option {
  background: #1B1714;
  color: #F7F2EC;
}

@media(max-width:767px) {
  .f-success--toast {
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 12px;
    padding: 24px 14px;
  }
  .cta-final__form-card {
    border-radius: 18px;
    padding: 22px 16px;
  }
  .cta-final__form-lead {
    margin-bottom: 18px;
  }
  .cta-final__field {
    margin-bottom: 10px;
    padding: 9px 12px 11px;
    border-radius: 12px;
  }
  .cta-final__input {
    min-height: 44px;
    font-size: 16px;
  }
  .cta-final__submit {
    min-height: 50px;
    margin-top: 12px;
    padding: 12px 18px;
    border-radius: 12px;
  }
  .cta-final__legal {
    font-size: 10px;
    margin-top: 12px;
  }
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top:1px solid rgba(255,252,250,.055);
  padding: var(--s12) 0 var(--s8);
}

/* Footer как в прототипе (светлый) */
.footer--proto {
  background: #F7F2EC;
  border-top: 1px solid #E3D8CD;
  padding: 60px 0 40px;
}
.footer--proto__wrap { max-width: 1280px; margin: 0 auto; }
.footer.footer--proto .footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px 80px;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid #E3D8CD;
}
@media(max-width:768px) {
  .footer.footer--proto .footer__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.footer--proto__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: opacity .2s ease;
}
.footer--proto__logo-link:hover { opacity: .78; }

.footer--proto__logo-img {
  width: auto;
  height: 44px;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.footer--proto__logo-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1B1714;
  line-height: 1;
}
.footer--proto .footer__tagline {
  font-size: 16px;
  color: #5F5349;
  max-width: 260px;
  line-height: 1.55;
  margin-top: 24px;
}
.footer--proto .footer__col-head {
  color: #7A4A3E;
  font-size: 10px;
  letter-spacing: .2em;
}
.footer--proto .footer__links a {
  color: #4A423C;
  font-size: 14px;
  font-weight: 400;
}
.footer--proto .footer__links a:hover { color: #1B1714; }
.footer__insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__insta-link svg {
  flex-shrink: 0;
}

.footer--proto__bottom {
  border-top: none;
  margin-top: 0;
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
/* Нижняя строка: тёмный текст на креме (золотой на фоне почти не читался) */
.footer.footer--proto .footer__bottom .footer__copy {
  color: #3D3833;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .02em;
  margin: 0;
}
.footer.footer--proto .footer__bottom .footer--proto__made {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  color: #3F332E;
  margin: 0;
}
@media(max-width:768px) {
  .footer--proto__bottom { flex-direction: column; text-align: center; }
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s10);
}
@media(min-width:768px) { .footer__inner { grid-template-columns:2fr 1fr 1fr; } }

.footer__logo {
  font-family:var(--serif);
  font-size:1.5rem;
  font-style:italic;
  color:var(--white);
  margin-bottom:var(--s4);
}
.footer__logo em { color:var(--rose); font-style:normal; }

.footer__tagline { font-size:.82rem; color:rgba(255,252,250,.38); line-height:1.58; max-width:260px; }

.footer__col-head { font-size:.62rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,252,250,.30); margin-bottom:var(--s4); }

.footer__links { display:flex; flex-direction:column; gap:var(--s3); }
.footer__links a { font-size:.82rem; color:rgba(255,252,250,.50); transition:color .2s; cursor:pointer; }
.footer__links a:hover { color:var(--white); }

.footer__bottom {
  margin-top:var(--s10);
  padding-top:var(--s5);
  border-top:1px solid rgba(255,252,250,.055);
  display:flex; flex-wrap:wrap;
  justify-content:space-between; align-items:center;
  gap:var(--s4);
}
.footer__copy { font-size:.68rem; color:rgba(255,252,250,.22); }

.footer__socials { display:flex; gap:var(--s3); }
.footer__socials a {
  width:34px; height:34px;
  border-radius:50%;
  border:1px solid rgba(255,252,250,.11);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,252,250,.42);
  transition:all .2s var(--ease); cursor:pointer;
}
.footer__socials a:hover { background:rgba(255,252,250,.09); color:var(--white); border-color:rgba(255,252,250,.28); }
.footer__socials svg { width:15px; height:15px; }

/* ─────────────────────────────────────────
   ANIMATION SYSTEM
───────────────────────────────────────── */
.r {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.r.in {
  opacity: 1;
  transform: translateY(0);
}

.r-left  { opacity:0; transform:translateX(-40px); transition:opacity .8s ease,transform .8s ease; }
.r-right { opacity:0; transform:translateX(40px);  transition:opacity .8s ease,transform .8s ease; }
.r-left.in, .r-right.in { opacity:1; transform:translateX(0); }

/* Fade-only (Gallery cells — AnimatedSection direction="fade") */
.r-fade {
  opacity: 0;
  transform: none;
  transition: opacity 0.8s ease var(--delay, 0ms);
}
.r-fade.in { opacity: 1; }

/* Exact delays from prototype (ms on opacity+transform) */
.delay-100 { transition-delay: 100ms; }
.delay-150 { transition-delay: 150ms; }

.d1{transition-delay:80ms} .d2{transition-delay:160ms} .d3{transition-delay:240ms}
.d4{transition-delay:320ms} .d5{transition-delay:400ms} .d6{transition-delay:480ms}

/* ─────────────────────────────────────────
   SCATTER SECTION — photos + attached pills + parallax
───────────────────────────────────────── */
.scatter {
  background: #fff;
  overflow: hidden;
  padding: 150px 0;
}
.scatter__arena {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: 680px;
}

/* Photo outer wrapper — overflow:visible so pill sticks out */
.scatter__photo {
  position: absolute;
  width: 170px;
  height: 228px;
  overflow: visible;
  will-change: transform;
  opacity: 0;
  transition: opacity .75s ease;
  cursor: default;
}
/* img inner — clips with border-radius */
.scatter__img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #E3D8CD;
  box-shadow: 0 10px 36px rgba(27,23,20,.11);
  transition: box-shadow .4s ease;
}
.scatter__photo:hover .scatter__img-wrap { box-shadow: 0 18px 52px rgba(27,23,20,.18); }
.scatter__img-wrap img,
.scatter__img-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.scatter__photo:hover .scatter__img-wrap img,
.scatter__photo:hover .scatter__img-wrap video { transform: scale(1.04); }

/* Photo positions — asymmetric layout: bottom-left sits further left than top-left */
.scatter__photo--1 { top: 4%;    left: calc(8% - 15px); }         /* moved ~15px farther from title */
.scatter__photo--2 { top: 1%;    right: -6%; width:148px; height:204px; } /* much farther from center text */
.scatter__photo--3 { top: 12%;   right: calc(16% - 15px); width:180px; height:244px; } /* moved ~15px farther from title */
.scatter__photo--4 { bottom: 4%; left: -1%; }                     /* bottom-left — offset left */
.scatter__photo--5 { bottom: -2%; right: 1%; }                    /* farther right and lower for bigger gap */

/* Fade-in with stagger */
.scatter--visible .scatter__photo    { opacity: 1; }
.scatter--visible .scatter__photo--1 { transition-delay: .06s; }
.scatter--visible .scatter__photo--2 { transition-delay: .16s; }
.scatter--visible .scatter__photo--3 { transition-delay: .12s; }
.scatter--visible .scatter__photo--4 { transition-delay: .22s; }
.scatter--visible .scatter__photo--5 { transition-delay: .28s; }

/* Pills — attached to photos, overflow outside img-wrap */
.scatter__pill {
  position: absolute;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .03em;
  white-space: nowrap;
  padding: 10px 20px;
  border-radius: 99px;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(27,23,20,.09);
}
.scatter__pill--blush { background: #F2E2D8; color: #5C4840; }
.scatter__pill--cream { background: #E6D8CC; color: #2A2521; }
.scatter__pill--gold  { background: var(--gold); color: #fff; }

/* pill anchors — pill sits at photo edge, extending outward */
.scatter__photo--1 .scatter__pill { bottom: -22px; left:  58%; } /* extends right below photo-1 */
.scatter__photo--2 .scatter__pill { top: -18px; left: -106px; } /* move pill closer to photo's left corner */
.scatter__photo--3 .scatter__pill { bottom: -22px; right: -14%; } /* moved further right */
.scatter__photo--4 .scatter__pill { top:    -22px; left:  52%; } /* extends right above photo-4 */
.scatter__photo--5 .scatter__pill { top: auto; bottom: -4px; left: -120px; right: auto; } /* move a bit lower */

/* Center text */
.scatter__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 460px;
  z-index: 10;
  pointer-events: auto;
  user-select: text;
}
.scatter__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease .38s, transform .6s ease .38s;
}
.scatter__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .9;
}
.scatter__eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .9;
}
.scatter--visible .scatter__eyebrow { opacity: 1; transform: translateY(0); }
.scatter__title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.6vw, 4.1rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.04em;
  color: var(--ink);
  white-space: normal;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease .48s, transform .7s ease .48s;
}
.scatter__title em { font-style: italic; color: var(--gold); }
.scatter--visible .scatter__title { opacity: 1; transform: translateY(0); }
.scatter__sub {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  white-space: normal;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease .60s, transform .6s ease .60s;
}
.scatter--visible .scatter__sub { opacity: 1; transform: translateY(0); }
.scatter__cta {
  margin-top: 4px;
  text-decoration: none;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease .72s, transform .6s ease .72s, background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.scatter--visible .scatter__cta { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────
   ACCESSIBILITY
───────────────────────────────────────── */
:focus-visible { outline:2px solid var(--rose); outline-offset:3px; border-radius:3px; }

@media(prefers-reduced-motion:reduce) {
  *,*::before,*::after { animation-duration:.01ms!important; transition-duration:.01ms!important; }
  html { scroll-behavior:auto; }
  .r,.r-left,.r-right,.r-fade { opacity:1 !important; transform:none !important; }
  .hero__left > * { opacity: 1; transform: none; animation: none; }
}

/* ─────────────────────────────────────────
   MOBILE FIXES
───────────────────────────────────────── */
@media (max-width: 1023px) {
  /* scatter section tablet/mobile */
  .scatter { padding: 84px 0; }
  .scatter__arena { height: 560px; }
  .scatter__photo { width: 118px; height: 156px; }
  .scatter__photo--1 { top: 3%; left: 6%; }
  .scatter__photo--2 { display: block; top: 3%; right: 6%; width: 118px; height: 156px; }
  .scatter__photo--3 { top: auto; bottom: 5%; left: 6%; right: auto; width: 118px; height: 156px; }
  .scatter__photo--4 { bottom: 5%; right: 6%; left: auto; }
  .scatter__photo--5 { display: none; }
  .scatter__center { width: min(62%, 560px); }
  .scatter__pill { display: none; }
}

@media(max-width:639px) {
  .hero { height: auto; min-height: auto; }
  .hero__content { height: auto; min-height: auto; }
  .hero__grid { gap: 20px; }
  .hero__left { padding: 100px 0 28px; }
  .hero__title { font-size:clamp(40px,11vw,56px); }
  .hero__title-line { white-space: normal; }
  .hero__actions { flex-direction:column; align-items:flex-start; }
  .hero__right {
    display: block;
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
  }
  .hero__right::after { display: none; }
  .hero__card,
  .hero__card-video {
    height: 100%;
  }
  .hero__card-video {
    object-fit: cover;
    object-position: center;
    transform: none;
  }
  .hero__trust {
    gap: 18px;
    margin-top: 34px;
    padding-top: 24px;
    flex-wrap: wrap;
  }
  .hero__trust-item { flex: 0 0 auto; }
  .hero__trust-num { font-size: clamp(22px, 8vw, 28px); }
  .hero__scroll-indicator { bottom: 12px; }
  .hero__scroll-circle {
    width: 46px;
    height: 46px;
  }
  .gallery__strip { height:auto; }
  .sec { padding:var(--s16) 0; }
  .form-card { padding:var(--s6); }
  .upcoming__body { padding:var(--s8) var(--s6); }

  /* scatter section mobile */
  .scatter { padding: 80px 0; }
  .scatter__arena { height: 540px; }
  .scatter__photo { width: 106px; height: 144px; }
  .scatter__photo--1 { top: -2%; left: 4%; }
  .scatter__photo--2 { display: block; top: -2%; right: 4%; width: 106px; height: 144px; }
  .scatter__photo--3 { top: auto; bottom: -1%; left: 4%; right: auto; width: 106px; height: 144px; }
  .scatter__photo--4 { bottom: -1%; right: 4%; left: auto; }
  .scatter__photo--5 { display: none; }
  .scatter__center { width: 58%; }
  .scatter__title { font-size: clamp(1.6rem, 4.2vw, 2.4rem); white-space: normal; }
  .scatter__sub { font-size: 12.5px; }
  .scatter__pill { display: none; }
}

/* ════════════════════════════════════════
   КНОПКА «Посмотреть все отзывы»
════════════════════════════════════════ */
.tmarks__footer {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 32px;
  padding-left: 20px;
  padding-right: 20px;
}
.tmarks__footer .btn {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 560px) {
  .tmarks__footer {
    position: relative;
    left: 50%;
    width: 100vw;
    box-sizing: border-box;
    transform: translateX(-50%);
    padding-top: 44px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .tmarks__footer .btn {
    width: min(100%, 360px);
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ════════════════════════════════════════
   СЧЁТЧИК В МОДАЛЕ ОТЗЫВОВ
════════════════════════════════════════ */
.tmarks-modal__counter {
  position: absolute;
  top: 18px;
  right: 168px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--ink);
}


/* ════════════════════════════════════════
   404 PAGE
════════════════════════════════════════ */
.page-404__main {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--cream);
}

.page-404__section {
  width: 100%;
  padding: 120px 0 100px;
}

.page-404__wrap {
  max-width: 640px;
  text-align: center;
}

.page-404__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 24px;
}

.page-404__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--rose);
}

.page-404__code {
  font-family: var(--serif);
  font-size: clamp(7rem, 20vw, 12rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -.02em;
  margin: 0 0 16px;
}

.page-404__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 20px;
}

.page-404__desc {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-60, rgba(26,20,16,.6));
  margin: 0 0 40px;
}

.page-404__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .page-404__section { padding: 80px 0 60px; }
  .page-404__actions { flex-direction: column; align-items: center; }
  .page-404__actions .btn { width: 100%; max-width: 320px; }
}
