:root {
  --bg: #f8f5ed;
  --paper: #fffdf8;
  --soft: #eef3e9;
  --green: #2f4c37;
  --green-2: #789879;
  --green-3: #dde8dc;
  --beige: #e8decc;
  --beige-2: #f2eadc;
  --text: #243229;
  --muted: #5a6a60;
  --line: rgba(47, 76, 55, .12);
  --shadow: 0 24px 70px rgba(47, 76, 55, .12);
  --radius: 34px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(221, 232, 220, .95), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(242, 234, 220, .9), transparent 38rem),
    var(--bg);
  line-height: 1.55;
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 0;
}

.section-card,
.person-card,
.info-section {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .82);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 22px 56px 36px;
  min-height: 330px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 0;
  color: var(--green);
  font-weight: 600;
  letter-spacing: .04em;
}

.brand-mark img { width: 34px; height: 34px; }

h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--green);
  line-height: 1;
  margin: 0;
}

h1 {
  font-size: clamp(3.6rem, 8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: .01em;
}

.eyebrow {
  margin: 12px auto 0;
  max-width: 860px;
  color: var(--green-2);
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 500;
}

.lead {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  color: var(--text);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 240px;
  padding: 13px 25px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(47, 76, 55, .18); }
.btn--primary { background: var(--green-2); color: #fff; }
.btn--primary::before { content: "✆"; margin-right: 9px; font-size: 1.15rem; }
.btn--secondary { color: var(--green); background: rgba(255,255,255,.58); border: 1px solid rgba(47, 76, 55, .35); }
.btn--secondary::before { content: "↗"; margin-right: 9px; }
.btn--light { background: #fff; color: var(--green); }
.btn--light::before { content: "✆"; margin-right: 9px; }
.btn--light-outline { color: #fff; border: 1px solid rgba(255,255,255,.72); background: rgba(255,255,255,.12); }
.btn--light-outline::before { content: "↗"; margin-right: 9px; }

.hero__leaf {
  position: absolute;
  opacity: .28;
  pointer-events: none;
}

.hero__leaf--left {
  width: 180px;
  left: -30px;
  top: 30px;
  transform: rotate(-22deg);
}

.hero__leaf--right {
  width: 230px;
  right: -34px;
  bottom: -16px;
  transform: rotate(26deg);
}

.specialists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 30px;
}

.person-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: var(--radius);
  padding: 34px 40px 38px;
  min-height: 650px;
}

.person-card__photo-wrap {
  width: 182px;
  height: 182px;
  flex: 0 0 auto;
  margin: 0 auto 22px;
  border-radius: 50%;
  overflow: hidden;
  border: 12px solid var(--beige-2);
  background: var(--beige-2);
  box-shadow: 0 18px 38px rgba(47, 76, 55, .12);
}

.person-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
}

.person-card__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-card__photo--ekaterina { object-position: 48% 44%; }
.person-card__photo--svetlana { object-position: 50% 30%; }

.person-card h2 {
  font-size: clamp(2.75rem, 4.4vw, 4rem);
  margin-bottom: 0;
  text-align: center;
}

.role {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .91rem;
  line-height: 1.35;
  margin: 0 0 8px;
  text-align: center;
}

.note {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  font-size: .92rem;
  line-height: 1.45;
  margin: 0 0 14px;
  text-align: center;
}

.person-card p { margin: 0 0 15px; }
.person-card__body > p:not(.role):not(.note) { text-align: left; }

ul {
  width: 100%;
  padding-left: 0;
  list-style: none;
  margin: 18px 0 0;
  text-align: left;
}

li {
  position: relative;
  padding-left: 24px;
  margin: 8px 0;
}

li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-2);
  font-weight: 700;
}

.info-section {
  margin-top: 28px;
  padding: 42px;
  border-radius: var(--radius);
}

.info-section--soft { background: rgba(238, 243, 233, .72); }

.info-section h2,
.contact h2 {
  font-size: clamp(3rem, 5.4vw, 5.4rem);
  text-align: center;
  margin-bottom: 32px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid--audience { grid-template-columns: repeat(5, 1fr); }
.grid--format { grid-template-columns: repeat(5, 1fr); }

.mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 170px;
  padding: 24px 18px;
  border-radius: 24px;
  background: rgba(255, 253, 248, .86);
  border: 1px solid var(--line);
}

.mini-card--small { min-height: 142px; }

.mini-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--soft);
  color: var(--green);
  font-size: 1.55rem;
}

.mini-card p { margin: 0; font-weight: 500; }

.contact {
  margin-top: 28px;
  padding: 72px 32px 64px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(135deg, #789879, #5f8065);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.contact h2 { color: #fff; margin-bottom: 12px; }
.contact > p { font-size: 1.1rem; margin: 0; }
.cta-row--center { margin-top: 30px; }

.disclaimer {
  max-width: 780px;
  margin: 42px auto 0 !important;
  font-size: .98rem !important;
  color: rgba(255,255,255,.88);
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--green);
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

@media (max-width: 1040px) {
  .specialists { grid-template-columns: 1fr; }
  .person-card { min-height: auto; }
  .grid--audience, .grid--format { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .page { width: min(100% - 18px, 640px); padding-top: 4px; }
  .hero { padding: 16px 16px 24px; border-radius: 0 0 28px 28px; }
  .brand-mark { font-size: .95rem; }
  h1 { font-size: clamp(3.05rem, 16vw, 4.5rem); }
  .eyebrow { letter-spacing: .11em; font-size: .92rem; line-height: 1.55; }
  .lead { margin-top: 14px; font-size: 1rem; }
  .btn { width: 100%; min-width: 0; }
  .cta-row { gap: 12px; }
  .hero__leaf--left { width: 116px; left: -42px; top: 18px; }
  .hero__leaf--right { width: 150px; right: -45px; bottom: -12px; }

  .specialists { margin-top: 16px; gap: 18px; }
  .person-card { text-align: center; padding: 28px 20px; border-radius: 28px; min-height: auto; }
  .person-card__photo-wrap { width: 168px; height: 168px; border-width: 10px; margin-bottom: 18px; }
  .person-card h2 { font-size: 3.1rem; }
  .role { min-height: auto; font-size: .82rem; }
  .note { min-height: auto; }
  li { text-align: left; }
  .info-section { margin-top: 18px; padding: 30px 16px; border-radius: 28px; }
  .info-section h2, .contact h2 { font-size: clamp(2.65rem, 13vw, 4rem); margin-bottom: 22px; }
  .grid--audience, .grid--format { grid-template-columns: 1fr; gap: 12px; }
  .mini-card { min-height: auto; padding: 20px 16px; }
  .mini-card span { margin-bottom: 12px; }
  .contact { margin-top: 18px; padding: 50px 18px 42px; border-radius: 28px 28px 0 0; }
  .disclaimer { margin-top: 30px !important; font-size: .87rem !important; }
}
