/* ─── Палитра ──────────────────────────────────── */
:root {
  --terracotta: #7A2020;
  --terracotta-light: #C25050;
  --charcoal:   #32323A;
  --wine:       #934900;
  --ash:        #D9D9D9;
  --olive:      #595D3A;
  --cream:      #FAF7F2;
  --olive-light:#8A8F6A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--charcoal);
  color: var(--charcoal);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Georgia', serif;
  font-weight: normal;
  letter-spacing: 0.02em;
}

/* ─── Навигация ────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  height: 64px;
}

nav .logo {
  color: var(--ash);
  font-size: 0.83rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

nav .logo span { color: var(--terracotta); }

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul a {
  text-decoration: none;
  color: var(--ash);
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

nav ul a:hover { opacity: 1; color: var(--terracotta); }

.nav-cta {
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.45rem 1.1rem;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  border-color: var(--terracotta-light);
  color: var(--terracotta-light);
}

@media (max-width: 768px) {
  .nav-cta { display: none; }
  body { padding-bottom: 64px; }
}

/* ─── Мобильный боттом-бар ───────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.08);
  height: 64px;
}

.mobile-nav-inner {
  display: flex;
  height: 100%;
}

.mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  color: var(--terracotta-light);
}

.mobile-nav-item svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-nav-item span {
  font-family: 'Arial', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .mobile-nav { display: block; }
}

/* Бургер */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ash);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  nav ul {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--charcoal);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 100;
  }

  nav ul.open { display: flex; }

  nav ul li a {
    display: block;
    padding: 0.85rem 5%;
    font-size: 0.82rem;
    opacity: 0.8;
  }

  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-visual { min-height: 55vw; }
  .hero-text { padding: 6rem 6% 3rem; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 600px) {
  .hero-text h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .projects-row { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  #contact { grid-template-columns: 1fr; gap: 3rem; }
}

/* ─── Герой ────────────────────────────────────── */
.hero {
  height: 100vh;
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--terracotta);
}

.hero-text {
  padding: 5% 8% 5% 10%;
  background: var(--terracotta);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text .eyebrow {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.8rem;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text h1 em {
  font-style: normal;
  color: rgba(255,255,255,0.65);
}

.hero-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  background: #fff;
  color: var(--terracotta);
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
  line-height: 1;
}

.btn-primary:hover { background: var(--charcoal); color: #fff; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
  line-height: 1;
}

.btn-outline:hover { background: rgba(255,255,255,0.12); }

.hero-visual {
  background: var(--olive);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-visual .deco-circle-1 {
  position: absolute;
  top: -100px; right: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.16;
}

.hero-visual .deco-circle-2 {
  position: absolute;
  top: 30%; left: -80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--charcoal);
  opacity: 0.18;
}

.hero-visual .deco-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* Большая цитата поверх визуала */
.hero-quote {
  position: relative;
  z-index: 2;
  padding: 3rem 3rem 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
}

.hero-quote blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.hero-quote cite {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-style: normal;
}

/* Плашка статистики */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(217,217,217,0.2);
}

.stat { text-align: left; }

.stat .num {
  font-size: 2rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat .label {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ─── Услуги ────────────────────────────────────── */
#services {
  padding: 8rem 10%;
  background: var(--terracotta);
}

.section-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 4.5rem;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2px;
}

.service-card {
  padding: 2.5rem 2rem 2.5rem;
  background: rgba(0,0,0,0.25);
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: default;
}

.service-card:hover {
  background: rgba(0,0,0,0.4);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .s-tag {
  color: #fff;
}

.service-card:hover .icon { background: var(--olive); }

.service-card .icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}

.service-card .icon svg {
  width: 22px; height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.08rem;
  color: #fff;
  margin-bottom: 0.7rem;
  transition: color 0.25s;
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  transition: color 0.25s;
}

.service-card .s-tag {
  display: inline-block;
  margin-top: auto;
  padding-top: 1.5rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.25s;
}

.service-card .num-badge {
  position: absolute;
  top: 1.8rem; right: 1.8rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
}

/* ─── О специалисте ─────────────────────────────── */
#about {
  padding: 8rem 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
  background: var(--charcoal);
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--olive);
  position: relative;
  overflow: hidden;
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.about-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 2px solid var(--terracotta);
  z-index: 0;
  pointer-events: none;
}

.about-text { position: relative; z-index: 1; }

.about-text .eyebrow {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.2rem;
}

.about-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.about-text .title-role {
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: rgba(217,217,217,0.78);
  margin-bottom: 1.1rem;
}

.about-text p strong {
  color: #fff;
  font-style: italic;
  font-weight: normal;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.credential {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: var(--ash);
}

.credential::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--terracotta);
  flex-shrink: 0;
}

/* ─── Для кого ────────────────────────────────── */
#audience {
  padding: 8rem 10%;
  background: var(--cream);
}

#audience .section-label { color: var(--terracotta); }
#audience .section-title { color: var(--charcoal); }

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
}

.audience-card {
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.audience-card.for-spec {
  background: var(--olive);
  color: #fff;
}

.audience-card.for-parents {
  background: var(--terracotta);
  color: #fff;
}

.audience-card .big-letter {
  position: absolute;
  top: -0.5rem; right: 1.5rem;
  font-size: 9rem;
  font-family: 'Georgia', serif;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  pointer-events: none;
}

.audience-card .a-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1.2rem;
}

.audience-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.audience-card p {
  font-size: 0.93rem;
  opacity: 0.85;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.audience-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.audience-card ul li {
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  opacity: 0.85;
  padding-left: 1.2rem;
  position: relative;
}

.audience-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.5;
}

/* ─── Фото-полоса ───────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: var(--charcoal);
}

.photo-strip-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.photo-strip-item:hover img { transform: scale(1.04); }

/* Фото в подходе */
.approach-with-photo {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
  margin-top: 5rem;
}

.approach-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: sticky;
  top: 90px;
}

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

/* ─── Подход ────────────────────────────────────── */
#approach {
  padding: 8rem 10%;
  background: var(--cream);
}

#approach .section-label { color: var(--terracotta); }
#approach .section-title { color: var(--charcoal); }
#approach .section-subtitle { color: #666; }

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.step { padding: 0; }

.step-dot {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--ash);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  color: var(--terracotta);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  transition: background 0.25s, border-color 0.25s;
}

.step:hover .step-dot {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}

.step h3 {
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 0.65rem;
}

.step p {
  font-size: 0.87rem;
  color: #777;
  line-height: 1.65;
}

/* ─── Проекты / анонс ────────────────────────── */
#projects {
  padding: 8rem 10%;
  background: var(--charcoal);
  color: #fff;
}

#projects .section-label { color: var(--olive-light); }

#projects .section-title { color: #fff; }

#projects .section-subtitle { color: rgba(217,217,217,0.65); }

.section-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 600px) {
  .section-header-row {
    flex-direction: column;
    gap: 1.2rem;
  }
}

.projects-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2px;
  margin-top: 4rem;
}

.project-featured {
  background: var(--wine);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.project-featured::before {
  content: 'БОЛЬШОЙ ПРОЕКТ';
  position: absolute;
  top: 2rem; right: 2rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
}

a.project-featured { color: inherit; }
a.project-featured h3,
a.project-featured p { color: inherit; }

.project-featured h3 { font-size: 1.5rem; margin-bottom: 1rem; }

.project-featured p {
  font-size: 0.93rem;
  opacity: 0.8;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.project-featured .soon {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-block;
}

.project-aside {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.project-mini {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  flex: 1;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.project-mini:hover {
  border-left-color: var(--terracotta);
  background: rgba(255,255,255,0.08);
}

a.project-mini { color: inherit; }
a.project-mini h4,
a.project-mini p { color: inherit; }

.project-mini h4 {
  font-size: 0.97rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.project-mini p {
  font-size: 0.82rem;
  color: rgba(217,217,217,0.55);
  line-height: 1.6;
}

/* ─── Контакт / Запись ───────────────────────── */
#contact {
  padding: 8rem 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
  background: var(--charcoal);
}

#contact .section-label { color: rgba(255,255,255,0.4); }

#contact h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 1.2rem;
}

#contact > div > p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.channel {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.channel:hover { color: #fff; }

.channel-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.channel:hover .channel-icon { background: var(--terracotta); }

.channel-icon svg {
  width: 18px; height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.channel-text strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.15rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 0.9rem 1.1rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--terracotta);
}

.contact-form textarea { height: 110px; }

.contact-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.45)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.5rem;
}

.contact-form select option {
  background: #2a2a30;
  color: #fff;
}

.contact-form select option:disabled {
  color: rgba(255,255,255,0.35);
}

.btn-dark {
  display: inline-block;
  padding: 0.95rem 2.5rem;
  background: var(--terracotta);
  color: #fff;
  border: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
  align-self: flex-start;
}

.btn-dark:hover { background: #5a1515; }

.form-note {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

.ya-form-wrap {
  width: 100%;
}

.ya-form-wrap iframe {
  width: 100%;
  min-height: 100px;
  border: none;
  display: block;
}

/* ─── Документы / Оферта ────────────────────── */
#docs {
  padding: 5rem 10%;
  background: var(--charcoal);
}

.docs-row {
  display: flex;
  gap: 2px;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.doc-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  background: rgba(255,255,255,0.05);
  text-decoration: none;
  color: var(--ash);
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s;
}

.doc-link:hover { background: var(--terracotta); color: #fff; }

.doc-soon { opacity: 0.45; pointer-events: none; cursor: default; }

/* ─── Fade-in при скролле ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── Кнопка наверх ───────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--terracotta);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
  z-index: 99;
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

#back-to-top:hover { background: var(--charcoal); }

@media (max-width: 768px) {
  #back-to-top { bottom: 74px; }
}

#back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.doc-soon::after {
  content: 'скоро';
  margin-left: auto;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ash);
  opacity: 0.5;
}

.doc-link svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ─── Брендовый блок ────────────────────────── */
#brand {
  padding: 7rem 10% 6rem;
  background: #1e1e24;
  padding-top: calc(64px + 5rem);
}

.brand-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 2rem;
}

.brand-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
}

.brand-header p {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
}

/* Палитра */
.brand-section-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.2rem;
}

.swatches {
  display: flex;
  gap: 2px;
  margin-bottom: 4.5rem;
}

.swatch {
  flex: 1;
  aspect-ratio: 0.85;
  position: relative;
  transition: flex 0.3s;
}

.swatch:hover { flex: 1.4; }

.swatch-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 0.85rem;
}

.swatch-hex {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.swatch-name {
  font-family: 'Georgia', serif;
  font-size: 0.9rem;
  line-height: 1.2;
}

.swatch-role {
  font-family: 'Arial', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  opacity: 0.55;
}

/* Шрифты */
.brand-fonts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 4.5rem;
}

.font-card {
  background: rgba(255,255,255,0.04);
  padding: 2.5rem 2.5rem 2rem;
  border-top: 2px solid transparent;
  transition: border-color 0.2s;
}

.font-card:first-child { border-top-color: var(--terracotta); }
.font-card:last-child  { border-top-color: var(--olive); }

.font-card .font-meta {
  font-family: 'Arial', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.2rem;
}

.font-card .font-sample-serif {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 1rem;
}

.font-card .font-sample-sans {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.font-card .font-desc {
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
}

/* Стиль */
.brand-style {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.style-card {
  background: rgba(255,255,255,0.04);
  padding: 2rem 2rem 2.5rem;
}

.style-card .style-icon {
  width: 40px; height: 40px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.style-card .style-icon svg {
  width: 22px; height: 22px;
  stroke: var(--terracotta);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.style-card h4 {
  font-size: 0.97rem;
  color: #fff;
  margin-bottom: 0.6rem;
  font-weight: normal;
}

.style-card p {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
}

.style-card .style-words {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.style-word {
  font-family: 'Arial', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
}

/* ─── Футер ─────────────────────────────────── */
footer {
  padding: 2rem 10%;
  background: #1a1a1f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  color: rgba(217,217,217,0.3);
  letter-spacing: 0.08em;
}

footer a {
  color: rgba(217,217,217,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: var(--terracotta); }

/* ─── Ценности ──────────────────────────────── */
#values {
  padding: 8rem 10%;
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

#values .section-label { color: rgba(255,255,255,0.4); }
#values .section-title { color: #fff; margin-bottom: 3rem; text-align: center; }

.values-step-num {
  font-family: 'Georgia', serif;
  font-size: 2rem;
  color: var(--terracotta-light);
  opacity: 0.7;
  min-width: 48px;
  line-height: 1;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.value-item {
  padding: 1.8rem 2rem;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.value-item:hover {
  border-left-color: var(--terracotta);
  background: rgba(255,255,255,0.07);
}

.value-item h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.value-item p {
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.values-steps { display: flex; flex-direction: column; gap: 2rem; }

.values-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.values-step h4 {
  color: #fff;
  font-size: 0.97rem;
  margin-bottom: 0.35rem;
}

.values-step p {
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ─── Цены ───────────────────────────────────── */
#pricing {
  padding: 8rem 10%;
  background: var(--cream);
}

#pricing .section-label { color: var(--terracotta); }
#pricing .section-title { color: var(--charcoal); }
#pricing .section-subtitle { color: #666; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 4rem;
}

.price-card {
  background: #fff;
  padding: 2.5rem 2rem;
  position: relative;
  border-top: 3px solid var(--ash);
  transition: border-color 0.25s;
}

.price-card:hover { border-top-color: var(--terracotta); }

.price-card.featured {
  background: var(--terracotta);
  border-top-color: var(--terracotta);
}

.price-card .p-tag {
  font-family: 'Arial', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.price-card.featured .p-tag { color: rgba(255,255,255,0.6); }

.price-card h3 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.price-card.featured h3 { color: #fff; }

.price-card .price-val {
  font-size: 2rem;
  font-family: 'Georgia', serif;
  color: var(--terracotta);
  line-height: 1;
  margin: 1.2rem 0 0.4rem;
}

.price-card.featured .price-val { color: rgba(255,255,255,0.9); }

.price-card .price-desc {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: #999;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.price-card.featured .price-desc { color: rgba(255,255,255,0.55); }

.price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-card ul li {
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  color: #666;
  padding-left: 1rem;
  position: relative;
}

.price-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ash);
}

.price-card.featured ul li { color: rgba(255,255,255,0.7); }
.price-card.featured ul li::before { color: rgba(255,255,255,0.3); }

/* ─── С кем работаю ──────────────────────────── */
#who {
  padding: 8rem 10%;
  background: var(--olive);
}

#who .section-label { color: rgba(255,255,255,0.45); }
#who .section-title { color: #fff; }
#who .section-subtitle { color: rgba(255,255,255,0.65); }

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 4rem;
}

.who-card {
  background: rgba(0,0,0,0.2);
  padding: 2rem 1.8rem;
  transition: background 0.2s;
}

.who-card:hover { background: rgba(0,0,0,0.35); }

.who-card .who-abbr {
  font-family: 'Georgia', serif;
  font-size: 2rem;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.who-card h4 {
  color: #fff;
  font-size: 0.97rem;
  margin-bottom: 0.5rem;
}

.who-card p {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ─── Отзывы ─────────────────────────────────── */
#testimonials {
  padding: 8rem 10%;
  background: var(--charcoal);
}

#testimonials .section-label { color: rgba(255,255,255,0.4); }
#testimonials .section-title { color: #fff; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
  transition: background 0.2s;
}

.testimonial-card:hover { background: rgba(255,255,255,0.07); }

.testimonial-card .t-type {
  font-family: 'Arial', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
  font-size: 0.97rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 0;
}

.t-text-wrap { margin-bottom: 1.5rem; }

.t-expand-btn {
  display: none;
  background: none;
  border: none;
  color: var(--terracotta-light);
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
  .t-text-wrap {
    max-height: 4.8em;
    overflow: hidden;
    position: relative;
  }
  .t-text-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2em;
    background: linear-gradient(transparent, rgba(40,40,50,0.95));
  }
  .t-text-wrap.expanded {
    max-height: none;
  }
  .t-text-wrap.expanded::after { display: none; }
  .t-expand-btn { display: inline-block; }
  .t-expand-btn.hidden { display: none; }
}

.testimonial-card .t-author {
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

.testimonial-card .t-author strong {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}

.t-quote-mark {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 5rem;
  font-family: 'Georgia', serif;
  color: var(--terracotta-light);
  opacity: 0.4;
  line-height: 1;
  pointer-events: none;
}

/* ─── FAQ ────────────────────────────────────── */
#faq {
  padding: 8rem 10%;
  background: var(--cream);
}

#faq .section-label { color: var(--terracotta); }
#faq .section-title { color: var(--charcoal); }

.faq-list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.8rem 2rem;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--terracotta); }

.faq-question.open { color: var(--terracotta); }

.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.25s, opacity 0.25s;
}

.faq-icon::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

.faq-question.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open { max-height: 300px; }

.faq-answer p {
  padding: 0 2rem 1.8rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.75;
}

/* ─── Выступления (внутри projects) ─────────── */
.appearances-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4rem;
}

.appearance-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s;
}

.appearance-item:hover { background: rgba(255,255,255,0.07); }

.appearance-year {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--terracotta);
}

.appearance-title {
  color: #fff;
  font-size: 0.95rem;
}

.appearance-title span {
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.2rem;
}

.appearance-format {
  font-family: 'Arial', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}

/* ─── Адаптив ───────────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-text { padding: 3rem 6%; min-height: auto; }
  #about { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-wrap { display: none; }
  #values { grid-template-columns: 1fr; gap: 4rem; }
  #contact { grid-template-columns: 1fr; gap: 3rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .projects-row { grid-template-columns: 1fr; }
  .approach-with-photo { grid-template-columns: 1fr; }
  .approach-photo { display: none; }
  .form-row { grid-template-columns: 1fr; }
  nav ul { display: none; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip-item:last-child { display: none; }
  .appearance-item { grid-template-columns: 60px 1fr; }
  .appearance-format { display: none; }
}

@media (max-width: 580px) {
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip-item:last-child { display: block; }
  .who-grid { grid-template-columns: 1fr; }
}

/* ─── Подстраницы — общее ────────────────────── */
.subpage-hero {
  padding: calc(64px + 5rem) 10% 5rem;
  background: var(--charcoal);
}

.subpage-hero .eyebrow {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.subpage-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.subpage-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.8;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}

.back-link:hover { color: #fff; }

/* ─── Хаб проектов ───────────────────────────── */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 0 10% 8rem;
  background: var(--charcoal);
}

.hub-card {
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}

.hub-card:hover { background: rgba(255,255,255,0.08); }

.hub-card-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.hub-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.hub-card:hover .hub-card-photo img { transform: scale(1.04); }

.hub-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hub-card-status {
  font-family: 'Arial', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hub-card-status.active   { color: var(--olive-light); }
.hub-card-status.soon     { color: rgba(255,255,255,0.3); }
.hub-card-status.upcoming { color: var(--terracotta-light); }

.hub-card h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.hub-card p {
  font-size: 0.87rem;
  color: rgba(217,217,217,0.55);
  line-height: 1.7;
  flex: 1;
}

.hub-card-meta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hub-card-meta span {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}

.hub-card-arrow { color: var(--terracotta-light) !important; }

/* ─── Страница проекта ───────────────────────── */
.project-hero {
  padding: calc(64px + 4rem) 10% 5rem;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

.project-hero .bg-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.18;
}

.project-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.project-hero-content .eyebrow {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.project-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.project-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.8;
}

.project-about {
  padding: 7rem 10%;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 7rem;
  align-items: start;
}

.project-about .section-label { color: var(--terracotta); }
.project-about .section-title { color: var(--charcoal); margin-bottom: 2rem; }

.project-about-text {
  font-size: 0.97rem;
  line-height: 1.85;
  color: #555;
}

.project-about-text p { margin-bottom: 1.2rem; }

.project-about-text p:last-child { margin-bottom: 0; }

.project-for-whom {
  padding: 7rem 10%;
  background: var(--charcoal);
}

.project-for-whom .section-label { color: rgba(255,255,255,0.4); }
.project-for-whom .section-title { color: #fff; }

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 3.5rem;
}

.for-whom-item {
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.for-whom-item:hover {
  border-left-color: var(--terracotta-light);
  background: rgba(255,255,255,0.07);
}

.for-whom-item .fw-num {
  font-family: 'Georgia', serif;
  font-size: 1.8rem;
  color: var(--terracotta-light);
  opacity: 0.55;
  margin-bottom: 0.8rem;
  line-height: 1;
}

.for-whom-item h4 { color: #fff; font-size: 0.97rem; margin-bottom: 0.4rem; }

.for-whom-item p {
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.project-format {
  padding: 7rem 10%;
  background: var(--cream);
}

.project-format .section-label { color: var(--terracotta); }
.project-format .section-title { color: var(--charcoal); }

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 3.5rem;
}

.format-item {
  padding: 2.5rem 2rem;
  background: #fff;
  border-top: 3px solid var(--ash);
  transition: border-color 0.25s;
}

.format-item:hover { border-top-color: var(--terracotta); }

.format-item .f-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.format-item .f-val {
  font-family: 'Georgia', serif;
  font-size: 1.8rem;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.format-item p {
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  color: #888;
  line-height: 1.6;
}

.project-cta-form {
  background: #1e1e25;
  padding: 7rem 10%;
}

.project-cta-form-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.project-cta-form-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 1rem;
}

.project-cta-form-text p {
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.project-cta-form-embed iframe {
  width: 100%;
  min-height: 100px;
  border: none;
  display: block;
}

@media (max-width: 860px) {
  .project-cta-form-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .project-cta-form { padding: 5rem 6%; }
}

.project-cta {
  padding: 7rem 10%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.project-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  max-width: 480px;
}

@media (max-width: 960px) {
  .hub-grid { grid-template-columns: 1fr; padding: 0 6% 5rem; }
  .project-about { grid-template-columns: 1fr; gap: 3rem; }
  .project-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .project-hero { padding: calc(64px + 2.5rem) 6% 3.5rem; }
  .project-about { padding: 4rem 6%; }
  .project-for-whom { padding: 4rem 6%; }
  .for-whom-grid { grid-template-columns: 1fr; }
  .project-format { padding: 4rem 6%; }
  .format-grid { grid-template-columns: 1fr 1fr; }
  .project-cta { padding: 4rem 6%; }
}

/* ─── Форма на странице проектов ────────────── */
.projects-contact {
  background: #1e1e25;
  padding: 7rem 10%;
}

.projects-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.projects-contact-text .section-label { color: var(--terracotta-light); }

.projects-contact-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  margin: 0.5rem 0 1rem;
}

.projects-contact-text p {
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.projects-contact-form iframe {
  width: 100%;
  min-height: 100px;
  border: none;
  display: block;
}

@media (max-width: 860px) {
  .projects-contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .projects-contact { padding: 5rem 6%; }
}

/* ─── Анонсы ─────────────────────────────────── */
.announcements {
  padding: 5rem 10%;
  background: #1e1e25;
}

.announcements-header {
  margin-bottom: 2.5rem;
}

.announcements-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.announce-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 2.5rem;
  align-items: center;
  padding: 1.8rem 2rem;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s;
}

.announce-item:hover { background: rgba(255,255,255,0.07); }

.announce-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
}

.announce-day {
  font-family: 'Georgia', serif;
  font-size: 2rem;
  color: var(--terracotta-light);
  line-height: 1;
}

.announce-month {
  font-family: 'Arial', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 0.3rem;
}

.announce-body h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.announce-body p {
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.announce-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}

.announce-tag {
  font-family: 'Arial', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}

.announce-link {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.announce-link:hover { opacity: 0.7; }

@media (max-width: 760px) {
  .announce-item { grid-template-columns: 56px 1fr; gap: 1.5rem; }
  .announce-meta { display: none; }
}
