:root {
  --cream: #faf7f2;
  --warm: #f5ede0;
  --blush: #e8c9b0;
  --terra: #c17a52;
  --deep: #3d2b1f;
  --muted: #8a6f5e;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--deep);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}



/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(193, 122, 82, 0.15);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--terra);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--terra);
}

.nav-cta {
  background: var(--terra);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(193, 122, 82, 0.35);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  max-height: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 60px 80px 80px;
}

.hero-tag {
  display: inline-block;
  background: var(--warm);
  color: var(--terra);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title em {
  color: var(--terra);
  font-style: italic;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  text-wrap-mode: nowrap;

  * {
    margin: 0 auto;
  }
}

.btn-primary {
  background: var(--terra);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193, 122, 82, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--deep);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--blush);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--terra);
  color: var(--terra);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--blush);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background-color: var(--warm);
}

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

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -10px;
  background: white;
  border-radius: 0 16px 16px 0;
  padding: 16px 22px;
  box-shadow: 0 12px 40px rgba(61, 43, 31, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatUp 3s ease-in-out infinite;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.badge-stars {
  color: #f5a623;
  font-size: 18px;
}

.badge-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--deep);
}

.badge-sub {
  font-size: 11px;
  color: var(--muted);
}

/* ── ABOUT ── */
.about {
  padding: 100px 80px;
  background: white;
}

.wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
  border-radius: 24px;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.about-img:hover {
  transform: scale(1.04);
}

.about-img.tall {
  grid-row: span 2;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-title em {
  color: var(--terra);
  font-style: italic;
}

.about-text {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px;
}

.about-doc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--warm);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
}

.about-doc span {
  font-size: 20px;
}

/* ── SERVICES ── */
.services {
  padding: 100px 80px;
  background: var(--cream);
}

.services-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid rgba(193, 122, 82, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(61, 43, 31, 0.08);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--muted);
}

/* ── PRICING ── */
.pricing {
  padding: 100px 80px;
  background: white;
}

.pricing-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  border-radius: 24px;
  padding: 40px;
  border: 2px solid var(--blush);
  position: relative;
}

.price-card.featured {
  background: var(--terra);
  border-color: var(--terra);
  color: white;
}

.price-card.featured .price-label,
.price-card.featured .price-note,
.price-card.featured .price-item {
  color: rgba(255, 255, 255, 0.8);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--deep);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
}

.price-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.price-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.price-per {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.7;
}

.price-note {
  font-size: 13px;
  color: var(--muted);
  margin: 16px 0;
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-item {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.price-item::before {
  content: "✓";
  color: var(--terra);
  font-weight: 700;
  flex-shrink: 0;
}

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

.price-extra {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background: var(--warm);
  border-radius: 20px;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.extra-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}

.extra-desc {
  font-size: 13px;
  color: var(--muted);
}

/* ── REVIEWS ── */
.reviews {
  padding: 100px 80px;
  background: var(--cream);
}

.reviews-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(193, 122, 82, 0.1);
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-stars {
  color: #f5a623;
  font-size: 16px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 15px;
  color: var(--deep);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--terra);
  font-size: 16px;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 14px;
}

.review-date {
  font-size: 12px;
  color: var(--muted);
}

/* ── GALLERY ── */
.gallery {
  padding: 80px;
  background: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  display: block;
  transition: transform 0.4s;
}

.gallery img:hover {
  transform: scale(1.02);
}

/* ── CTA ── */
.cta {
  padding: 100px 80px;
  background: var(--deep);
  color: white;
  text-align: center;
}

.cta .section-title {
  color: white;
}

.cta .section-title em {
  color: var(--blush);
}

.cta-sub {
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 16px auto 48px;
  font-size: 17px;
}

.cta-contacts {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-link.tg {
  background: #2AABEE;
  color: white;
}

.cta-link.wa {
  background: #25D366;
  color: white;
}

.cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cta-link.max {
  background: #FF6B00;
  color: white;
}

.cta-phone-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}

.cta-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--blush);
  font-style: italic;
  white-space: nowrap;
}

.cta-phone {
  display: block;
  margin: 36px auto 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600;
  color: white;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.cta-phone:hover {
  color: var(--blush);
}

.cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ── FOOTER ── */
footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.4);
  padding: 30px 80px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-title {
    text-align: center;
  }

  .hero-left {
    padding: 40px 24px;
    order: 2;
  }

  .hero-btns {
    margin: 0 auto;
    width: min-content;
  }

  .hero-right {
    height: 60vw;
    order: 1;
    background-position-y: 20%;
  }

  .hero-img-main {
    object-position: 100% 20%;
    width: 110%;
  }

  .about {
    padding: 60px 24px;
  }

  .wrapper {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .about-imgs {
    grid-template-rows: 180px 180px;
  }

  .services {
    padding: 60px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing {
    padding: 60px 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-extra {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .reviews {
    padding: 60px 24px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    padding: 24px;
  }

  .cta {
    padding: 60px 24px;
  }

  .cta-contacts {
    flex-direction: column;
    align-items: center;
  }

  footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 24px;
  }

  .hero-stats {
    gap: 24px;
  }
}