:root {
  --cream: #f7f1ea;
  --blush: #f3e3dc;
  --rose: #c47b7b;
  --rose-deep: #8d4a56;
  --gold: #c4a574;
  --gold-soft: #e8d6b3;
  --ink: #3a2a2c;
  --muted: #7a6466;
  --white: #fffdfb;
  --card: rgba(255, 253, 251, 0.82);
  --line: rgba(141, 74, 86, 0.14);
  --shadow: 0 24px 60px rgba(90, 48, 54, 0.1);
  --radius: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.nav-open { overflow: hidden; }

body {
  font-family: Outfit, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 90% -10%, #f8d9d3 0%, transparent 50%),
    radial-gradient(900px 500px at -10% 20%, #f0e3c8 0%, transparent 46%),
    var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.page-glow {
  position: fixed;
  inset: auto -120px -180px auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(196, 165, 116, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(247, 241, 234, 0.92);
  border-bottom: 1px solid var(--line);
}

.header__inner,
.hero,
.section,
.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: #2a211c;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(196, 165, 116, 0.55);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__text strong {
  font-size: 0.95rem;
}

.logo__text small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.nav a:hover,
.nav a.is-active { color: var(--rose-deep); }

.nav__cta {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--rose-deep);
  color: white !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas: "content photo";
  gap: 48px;
  align-items: center;
  padding: 72px 0 40px;
  position: relative;
  z-index: 1;
}

.hero__content { grid-area: content; min-width: 0; }
.hero__photo { grid-area: photo; }

.eyebrow {
  color: var(--rose);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
  margin-bottom: 12px;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.8rem);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

h2 { font-size: clamp(2.3rem, 4vw, 3.6rem); }
h3 { font-size: 1.5rem; }

.section__head h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
}

.hero__role,
.hero__place,
.hero__lead {
  color: var(--muted);
}

.hero__role { margin-top: 10px; font-size: 1.05rem; }
.hero__place { margin: 6px 0 18px; }
.hero__lead { max-width: 460px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0 28px;
}

.hero__stats strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.hero__stats span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn--gold {
  background: linear-gradient(135deg, #d8b57d, #b8894d);
  color: #3a2a2c;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(184, 137, 77, 0.24);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(141, 74, 86, 0.28);
  color: var(--rose-deep);
}

.hero__photo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  width: min(100%, 440px);
}

.photo-ring {
  width: 100%;
  aspect-ratio: 1;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(160deg, #f3e2be, #c4a574 42%, #f0ddd0 78%, #d4a5a5);
  box-shadow: 0 30px 70px rgba(90, 48, 54, 0.16);
}

.photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #f4e7df;
  border: 7px solid #fffdfb;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transform: scale(1.04);
}

.photo-frame img.is-hidden { display: none; }

.photo-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  text-align: center;
  color: white;
  background: linear-gradient(180deg, rgba(141, 74, 86, 0.08), rgba(141, 74, 86, 0.28));
}

.photo-fallback.is-on { display: grid; }

.photo-fallback span {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 1;
}

.hero__badge {
  margin-top: 20px;
  background: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero__badge span,
.hero__badge small { display: block; }
.hero__badge span { font-weight: 600; letter-spacing: 0.02em; }
.hero__badge small { color: var(--muted); font-size: 0.82rem; word-spacing: 0.06em; }

.section {
  padding: 88px 0;
  position: relative;
  z-index: 1;
}

.section--soft {
  width: 100%;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  background: rgba(255, 253, 251, 0.46);
}

.section__head { max-width: 640px; margin-bottom: 36px; }
.section__lead { color: var(--muted); margin-top: 10px; }

.about__card,
.network-card,
.panel,
.offer,
.reason,
.brand-slot,
.quote,
.contact__box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about__card { padding: 36px; max-width: 820px; }
.about__hello { font-size: 1.3rem; margin-bottom: 10px; }
.about p + p { margin-top: 14px; }

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 24px;
}

.about__tags li {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f8ebe6;
  color: var(--rose-deep);
  font-size: 0.86rem;
}

.networks {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.network-card { padding: 32px; }
.network-card__top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.network-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #f8ebe6;
  color: var(--rose-deep);
}

.network-card__icon svg { width: 22px; height: 22px; }
.verified { color: var(--rose); font-size: 0.88rem; }
.network-card__big {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: 1;
}
.network-card__label,
.network-card__note { color: var(--muted); }
.network-card__note { margin-top: 18px; }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.metric-grid strong {
  display: block;
  font-size: 1.15rem;
}

.metric-grid span {
  color: var(--muted);
  font-size: 0.8rem;
}

.audience,
.offer-grid,
.reasons,
.brands,
.portfolio {
  display: grid;
  gap: 18px;
}

.audience { grid-template-columns: repeat(3, 1fr); }
.panel { padding: 28px; }
.panel__note { color: var(--muted); margin-top: 16px; font-size: 0.92rem; }

.gender__item + .gender__item { margin-top: 18px; }
.gender__row,
.ages li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.bar {
  height: 10px;
  margin-top: 8px;
  background: #efe3dc;
  border-radius: 999px;
  overflow: hidden;
}

.bar i {
  display: block;
  width: var(--w);
  height: 100%;
  background: linear-gradient(90deg, #d8b57d, var(--rose));
}

.ages { list-style: none; display: grid; gap: 14px; }
.location-stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  line-height: 1;
}

.offer-grid { grid-template-columns: repeat(3, 1fr); }
.offer { padding: 26px; }
.offer span,
.shot span {
  color: var(--rose);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.offer h3 { margin: 8px 0 10px; }
.offer p { color: var(--muted); }
.offer--wide { grid-column: span 3; }

.reasons { grid-template-columns: repeat(3, 1fr); }
.reason { padding: 26px; }
.reason p { color: var(--muted); margin-top: 8px; }

.portfolio { grid-template-columns: repeat(3, 1fr); }

.shot {
  min-height: 220px;
  border-radius: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.shot--1 { background: linear-gradient(180deg, transparent, rgba(58,42,44,.55)), linear-gradient(135deg, #e8b8a8, #8d4a56); }
.shot--2 { background: linear-gradient(180deg, transparent, rgba(58,42,44,.5)), linear-gradient(135deg, #d8b57d, #8a5a3b); }
.shot--3 { background: linear-gradient(180deg, transparent, rgba(58,42,44,.5)), linear-gradient(135deg, #f0d3c4, #c47b7b); }
.shot--4 { background: linear-gradient(180deg, transparent, rgba(58,42,44,.55)), linear-gradient(135deg, #c9b29a, #6b4a44); }
.shot--5 { background: linear-gradient(180deg, transparent, rgba(58,42,44,.5)), linear-gradient(135deg, #efc4c8, #9a5560); }
.shot--6 { background: linear-gradient(180deg, transparent, rgba(58,42,44,.55)), linear-gradient(135deg, #e6d3b0, #7c5a3c); }

.shot--photo {
  min-height: 0;
  aspect-ratio: 3 / 2;
  padding: 0;
  background: #2a211c;
}

.shot__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.shot__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(58, 42, 44, 0.72));
}

.shot__post {
  margin-top: 10px;
  color: white;
  font-size: 0.82rem;
  text-decoration: underline;
}

.featured-posts {
  margin-top: 28px;
}

.featured-posts p {
  margin-bottom: 12px;
  color: var(--muted);
}

.featured-posts div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.featured-posts a {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--rose-deep);
  font-size: 0.88rem;
}

.brands { grid-template-columns: repeat(6, 1fr); }
.brand-slot {
  min-height: 96px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.86rem;
  padding: 14px;
}

.brand-slot--filled {
  gap: 8px;
  text-align: center;
}

.brand-slot--filled img {
  max-width: 82%;
  max-height: 54px;
  object-fit: contain;
}

.brand-links {
  display: flex;
  gap: 10px;
  font-size: 0.75rem;
}

.brand-links a { color: var(--rose-deep); }

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.testimonial p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1.4;
  font-style: italic;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.testimonial img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial strong { display: block; }
.testimonial span { color: var(--muted); font-size: 0.86rem; }

.quote {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

.quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.35;
  font-style: italic;
}

.quote cite {
  display: block;
  margin-top: 18px;
  color: var(--rose-deep);
  font-style: normal;
}

.quote-note {
  text-align: center;
  color: var(--muted);
  margin-top: 16px;
}

.contact { padding-bottom: 110px; }
.contact__box { padding: 40px; }

.form { display: grid; gap: 16px; margin-top: 24px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 8px; font-size: 0.9rem; }
.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  background: #fff;
  outline: none;
  font-size: 16px;
}

.form input:focus,
.form textarea:focus { border-color: var(--gold); }
.form-ok { color: var(--rose-deep); }

.footer {
  padding: 28px 0 42px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media print {
  .header, .nav-toggle, .hero__actions, .photo-hint, .form, .page-glow {
    display: none !important;
  }

  body { background: white; }
  .section, .hero { break-inside: avoid; padding: 36px 0; }
  .hero { grid-template-columns: 1fr 0.7fr; }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .nav { gap: 12px; }
  .nav a { font-size: 0.76rem; }
  .brands { grid-template-columns: repeat(3, 1fr); }
  .portfolio,
  .offer-grid,
  .reasons,
  .audience { grid-template-columns: repeat(2, 1fr); }
  .offer--wide { grid-column: span 2; }
}

@media (max-width: 980px) {
  .header__inner,
  .hero,
  .section,
  .footer { width: min(1180px, calc(100% - 32px)); }

  .section--soft {
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
  }

  .hero,
  .networks,
  .form__row { grid-template-columns: 1fr; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "content";
    padding: 28px 0 24px;
    gap: 22px;
    text-align: center;
    justify-items: center;
  }

  .hero__photo { width: min(78vw, 320px); }
  .hero__lead { margin: 0 auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { gap: 10px; }
  .hero__stats strong { font-size: 1.45rem; }

  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    right: auto;
    width: 100vw;
    transform: translateX(-50%);
    padding: 12px 16px 20px;
    background: rgba(247, 241, 234, 0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(90, 48, 54, 0.08);
  }

  .nav.is-open { display: flex; }

  .nav a {
    font-size: 1rem;
    padding: 12px 10px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav__cta { justify-content: center; margin-top: 8px; }
}

@media (max-width: 720px) {
  .audience,
  .offer-grid,
  .reasons,
  .portfolio,
  .brands,
  .testimonials { grid-template-columns: 1fr; }

  .offer--wide { grid-column: auto; }
  .section { padding: 56px 0; }
  .about__card,
  .network-card,
  .panel,
  .contact__box,
  .quote { padding: 22px; border-radius: 22px; }

  h1 { font-size: clamp(1.7rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.85rem, 7vw, 2.6rem); }
  .network-card__big { font-size: 3rem; }
  .location-stat strong { font-size: 2.6rem; }
  .quote p { font-size: 1.45rem; }
  .testimonial p { font-size: 1.25rem; }
  .metric-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero__stats { grid-template-columns: 1fr; text-align: center; }
  .btn { width: 100%; min-height: 48px; }
  .hero__actions { width: 100%; }
  .contact { padding-bottom: 72px; }
  .featured-posts a { width: 100%; text-align: center; }
  .brand-links { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 420px) {
  .header__inner,
  .hero,
  .section,
  .footer { width: calc(100% - 24px); }

  .logo__text small { display: none; }
  .hero__photo { width: min(86vw, 280px); }
  .hero__badge { padding: 10px 14px; }
  .page-glow { display: none; }
}
