:root {
  --cream: #FAF7F2;
  --cream-deep: #F5F1ED;
  --beige: #E8DFD8;
  --rose: #C9A99A;
  --terracotta: #B8956B;
  --plum: #6B4E5C;
  --plum-soft: #7A5C6B;
  --text: #5A5A5A;
  --text-strong: #3F3538;
  --gold: #D4A574;
  --sage: #9CAF9B;
  --white: #FFFFFF;
  --shadow: 0 12px 40px rgba(107, 78, 92, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1140px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(ellipse at 10% 0%, rgba(201, 169, 154, 0.18), transparent 45%),
    radial-gradient(ellipse at 90% 20%, rgba(156, 175, 155, 0.12), transparent 40%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--plum);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text-strong);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section--tight {
  padding: 72px 0;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum-soft);
  margin-bottom: 0.8rem;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 16ch;
}

.section__lead {
  max-width: 52ch;
  font-size: 1.05rem;
  color: var(--text);
}

.section__head {
  margin-bottom: 3rem;
}

.section__head--center {
  text-align: center;
  margin-inline: auto;
}

.section__head--center .section__title,
.section__head--center .section__lead {
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(250, 247, 242, 0.88);
  border-bottom: 1px solid rgba(201, 169, 154, 0.25);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: 0.02em;
}

.brand span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--text-strong);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a:hover,
.nav .current-menu-item > a,
.nav .current_page_item > a {
  color: var(--plum);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--beige);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.75rem;
  cursor: pointer;
  color: var(--plum);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-soft) 100%);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(107, 78, 92, 0.22);
}

.btn--primary:hover {
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  border-color: var(--rose);
  color: var(--plum);
}

.btn--soft {
  background: var(--beige);
  color: var(--plum);
}

.btn--telegram {
  background: #2AABEE;
  color: #fff;
}

.btn--max {
  background: var(--gold);
  color: var(--text-strong);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: #2d2430;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 18%;
  transform: scale(1.02);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(45, 36, 48, 0.78) 0%, rgba(45, 36, 48, 0.45) 48%, rgba(45, 36, 48, 0.15) 100%),
    linear-gradient(180deg, rgba(45, 36, 48, 0.2) 0%, rgba(45, 36, 48, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 0 5rem;
  color: #f7f1ea;
  max-width: 640px;
}

.hero__brand {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  animation: fadeUp 0.9s ease both;
}

.hero__title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: #fff;
  max-width: 16ch;
  margin-bottom: 1rem;
  animation: fadeUp 0.9s ease 0.1s both;
}

.hero__text {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 38ch;
  color: rgba(247, 241, 234, 0.9);
  margin-bottom: 2rem;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 0.9s ease 0.3s both;
}

.hero__note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: rgba(247, 241, 234, 0.75);
  animation: fadeUp 0.9s ease 0.4s both;
}

/* Cards / grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(201, 169, 154, 0.35);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(107, 78, 92, 0.12);
}

.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--beige);
  color: var(--plum);
  margin-bottom: 1rem;
}

.card__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}

.card__price {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--plum);
}

.portrait {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
}

.portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(45, 36, 48, 0.35));
}

.soft-panel {
  background: linear-gradient(160deg, rgba(232, 223, 216, 0.7), rgba(255, 255, 255, 0.45));
  border: 1px solid rgba(201, 169, 154, 0.35);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

/* Reviews */
.reviews {
  position: relative;
}

.reviews__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.review {
  flex: 0 0 min(86vw, 340px);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid rgba(201, 169, 154, 0.3);
}

.review__text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--text-strong);
  margin-bottom: 1.2rem;
}

.review__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--plum-soft);
}

/* Lead magnet */
.lead {
  background:
    linear-gradient(135deg, rgba(107, 78, 92, 0.95), rgba(122, 92, 107, 0.92)),
    var(--plum);
  color: #f8f2ec;
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
}

.lead h2,
.lead p {
  color: #f8f2ec;
}

.lead p {
  opacity: 0.9;
  max-width: 40ch;
}

.lead__form {
  display: grid;
  gap: 0.75rem;
}

.lead__form input,
.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid rgba(201, 169, 154, 0.55);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text-strong);
}

.lead__form input {
  background: rgba(255, 255, 255, 0.95);
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-strong);
  margin-bottom: 0.9rem;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

/* FAQ */
.faq details {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(201, 169, 154, 0.35);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 0.75rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-strong);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  color: var(--plum);
  margin-bottom: 0.6rem;
}

/* Process */
.step {
  position: relative;
  padding-top: 0.5rem;
}

.step__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 0.6rem;
}

/* Page hero */
.page-hero {
  padding: 5.5rem 0 3rem;
  background:
    linear-gradient(180deg, rgba(232, 223, 216, 0.55), transparent);
}

.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  max-width: 14ch;
}

.page-hero p {
  max-width: 48ch;
  font-size: 1.08rem;
}

/* Blog */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.post-card {
  overflow: hidden;
  padding: 0;
}

.post-card__media {
  aspect-ratio: 16 / 10;
  background: var(--beige);
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__body {
  padding: 1.3rem 1.4rem 1.5rem;
}

.post-card__cat {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}

/* Contact / gift */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.contact-list li {
  margin-bottom: 0.85rem;
}

.messenger-bar {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: grid;
  gap: 0.55rem;
}

.messenger-bar a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  font-size: 0.72rem;
  font-weight: 700;
}

.messenger-bar .tg { background: #2AABEE; }
.messenger-bar .mx { background: var(--gold); color: var(--text-strong); }

/* Footer */
.site-footer {
  background: #3f3538;
  color: rgba(247, 241, 234, 0.82);
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
}

.site-footer a {
  color: rgba(247, 241, 234, 0.9);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 1.3rem;
}

.site-footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.2rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

/* Utilities */
.muted { color: var(--text); opacity: 0.9; }
.mt-2 { margin-top: 2rem; }
.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.95rem 0.6rem;
  border-bottom: 1px solid rgba(201, 169, 154, 0.4);
}

.price-table th {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-strong);
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(156, 175, 155, 0.25);
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 600;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--beige);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .grid-2,
  .lead,
  .contact-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .posts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__media img {
    object-position: 72% 12%;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(45, 36, 48, 0.35) 0%, rgba(45, 36, 48, 0.78) 70%);
  }

  .hero__content {
    justify-content: flex-end;
    padding-bottom: 3.5rem;
  }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }

  .grid-2[style*="repeat(2"] {
    grid-template-columns: 1fr !important;
  }

  .menu-toggle { display: inline-flex; }

  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    background: rgba(250, 247, 242, 0.98);
    border-bottom: 1px solid var(--beige);
    padding: 0.5rem 1.25rem 1rem;
  }

  .nav.is-open { display: block; }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(232, 223, 216, 0.8);
  }

  .grid-3,
  .grid-4,
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .site-header__inner .btn { display: none; }
}
