:root {
  --bg: #eee8e3;
  --card: #ffffff;
  --text: #2e2827;
  --muted: #746b67;
  --pink: #bd6771;
  --pink-dark: #9f505b;
  --line: rgba(46, 40, 39, 0.12);
  --gold: #c8ad82;
  --shadow: 0 20px 60px rgba(70, 48, 44, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img { width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.script {
  font-family: 'Parisienne', cursive;
  color: var(--pink);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.6;
  opacity: .80;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .95rem;
  transition: .25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(189,103,113,.22);
}

.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(46,40,39,.28);
  background: transparent;
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}

.section { padding: 76px 0; }

.section-head {
  text-align: center;
  margin-bottom: 34px;
}

.section-head h2,
.title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.12;
  font-weight: 680;
}

.section-head p {
  color: var(--muted);
  margin-top: 8px;
}

/* HEADER */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 6px 0;
  background: rgba(238, 232, 227, 0.72);
  backdrop-filter: blur(14px);
}

.nav {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 32px;

}

.nav .btn-primary {
  margin-left: 42px;
}

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

.logo img {
  width: 175px;
  height: auto;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
  transform: translateY(2px);
}

.logo-mark,
.logo-text {
  display: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: .9rem;
  font-weight: 600;
  margin-left: 24px;
  color: #463f3d;
}

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

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.8rem;
  color: var(--text);
  cursor: pointer;
}

/* HERO */

.hero {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: #eee8e3;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(238,232,227,1) 0%,
      rgba(238,232,227,.96) 34%,
      rgba(238,232,227,.78) 50%,
      rgba(238,232,227,.30) 66%,
      rgba(238,232,227,.02) 100%
    ),
    url('images/hero1.png');

  background-size: 87%;
  background-position: right 1%;
  background-repeat: no-repeat;

  filter: blur(0px);
  transform: scale(1.005);
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 22% 40%,
      rgba(255,255,255,.45),
      transparent 34%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(189,103,113,.10),
      transparent 30%
    );

  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 22px;
  position: relative;
  z-index: 2;
}


.hero-copy {
  max-width: 580px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(2px);
}

.hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 2px 0 18px;
  max-width: 580px;
}

.hero-copy p {
  color: var(--muted);
  max-width: 580px;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 580px;
}

.trust-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .86rem;
}

.trust-mini i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--pink);
  font-style: normal;
  font-size: 1.1rem;
}

.beauty-badge {
  position: absolute;
  right: 10.5%;
  bottom: 38px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,.74);
  border: 2px solid rgba(200,173,130,.55);
  box-shadow: var(--shadow);
  color: #5a504d;
  font-size: .95rem;
  font-weight: 600;
  z-index: 3;
}

/* TRUST BAR */
.trust-bar {
  background: rgba(255,255,255,.56);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 28px 0;
}

.trust-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: center;
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(189,103,113,.24);
  display: grid;
  place-items: center;
  color: var(--pink);
  font-size: 1.7rem;
  background: rgba(255,255,255,.35);
}

.trust-item h3 {
  font-size: .98rem;
  margin-bottom: 3px;
}

.trust-item p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.45;
}

/* TREATMENTS */
.treatments {
  background: #f4f1ee;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(70,48,44,.08);
  overflow: hidden;
  transition: .25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card img,
.card-img {
  height: 130px;
  background: linear-gradient(135deg, #e3c5c3, #f7eee8);
  display: grid;
  place-items: center;
  color: rgba(46,40,39,.42);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  text-align: center;
  padding: 12px;
}

.card-body {
  padding: 20px 18px 18px;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
  min-height: 55px;
}

.learn {
  display: inline-flex;
  margin-top: 16px;
  color: var(--pink);
  font-weight: 700;
  font-size: .83rem;
}

.center {
  text-align: center;
  margin-top: 34px;
}

/* ABOUT */
.about {
  background:
    radial-gradient(circle at 55% 40%, rgba(189,103,113,.10), transparent 26%),
    #eee8e3;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 54px;
  align-items: center;
}

.about-text h2 {
  margin: 8px 0 18px;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.65;
  max-width: 420px;
}

.about-icons {
  display: flex;
  gap: 28px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: .82rem;
}

.about-icons div::before {
  content: '♡';
  display: block;
  color: var(--pink);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.olga-arch {
  position: relative;
  min-height: 270px;
  border-radius: 48% 48% 0 0;
  overflow: hidden;
  border: 2px solid rgba(200,173,130,.55);
  box-shadow: var(--shadow);

  background:
    url('images/hero1.png') center 58% / 125% no-repeat;
}

/* RIGHT SIDE QUOTE */

.about-quote {
  position: relative;
  text-align: center;
  padding: 60px 34px;
  overflow: visible;
}

/* Decorative floral background */

.about-quote::before {
  content: "";
  position: absolute;

  width: 340px;
  height: 240px;

  left: -30px;
  bottom: -20px;

  background:
    url('images/flower.png') center / contain no-repeat;

  opacity: .32;

  filter: blur(.8px);

  mix-blend-mode: multiply;

  z-index: 0;
  pointer-events: none;
}

.about-quote > * {
  position: relative;
  z-index: 2;
}

.about-quote .script {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.about-quote h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  line-height: 1.22;
  font-weight: 600;
}

.about-quote .line {
  width: 90px;
  height: 1px;
  background: var(--text);
  margin: 18px auto 10px;
  opacity: .55;
}

/* REVIEWS */
.reviews {
  background: #f8f7f6;
}

.reviews-wrap {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.review-title {
  padding: 12px 0;
}

.review-title .script {
  font-size: 2.2rem;
}

.review-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  line-height: 1.1;
}

.review {
  background: #fff;
  border: 1px solid var(--line);
  padding: 26px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(70,48,44,.06);
}

.stars {
  color: #c39b4d;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
}

.client {
  margin-top: 16px;
  font-weight: 700;
  font-size: .9rem;
}

/* FOOTER */
.footer-main {
  background: var(--pink);
  color: rgba(255,255,255,.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.15fr;
  gap: 40px;
}

.footer-main .container {
  padding: 48px 0;
}

/* BRAND */
.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-brand img {
  width: 220px;
  margin-bottom: 28px;
  margin-top: -10px;
  opacity: .96;

  filter:
    brightness(1.35)
    contrast(1.08)
    drop-shadow(0 0 12px rgba(255,255,255,.08));
}

.footer-brand p {
  max-width: 260px;
  line-height: 1.6;
}

/* HEADINGS */
.footer-main h3 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

/* TEXT */
.footer-main p,
.footer-main li {
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  list-style: none;
  margin-bottom: 10px;
}

/* CTA */
.footer-cta {
  background: rgba(255,255,255,.16);
  padding: 26px;
  margin: -48px 0;
  min-height: calc(100% + 96px);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-cta h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.12;
  margin-bottom: 14px;
}

.footer-cta .btn {
  background: #fff;
  color: var(--pink);
  width: 100%;
  margin-top: 14px;
}

/* BOTTOM */
.footer-bottom {
  background: #f8f4f2;
  color: var(--muted);
  font-size: .82rem;
  padding: 14px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* CREDIT */
.footer-credit {
  color: var(--pink-dark);
  text-decoration: none;
  font-weight: 600;
  transition: .3s ease;
}

.footer-credit:hover {
  opacity: .75;
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: .75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text p {
    margin-inline: auto;
  }

  .about-icons {
    justify-content: center;
  }

  .olga-arch {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 4%;
    right: 4%;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow);
    padding: 14px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 13px;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    display: none;
  }

  .hero {
    background-image:
      linear-gradient(
        180deg,
        rgba(238,232,227,.78),
        rgba(238,232,227,.97)
      ),
      url('images/hero1.png');
    background-position: center top;
  }

  .hero-inner {
    min-height: 760px;
    align-items: flex-end;
    padding-bottom: 44px;
  }

  .beauty-badge {
    display: none;
  }

  .hero-trust {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-cta {
    margin: 0;
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .header {
    padding: 6px 0;
  }

  .nav {
    grid-template-columns: 120px auto;
    gap: 12px;
  }

  .logo img {
    width: 118px;
    max-width: 118px;
  }

  .menu-toggle {
    justify-self: end;
    font-size: 1.7rem;
  }

  .nav-links {
    top: 64px;
  }

  .hero-inner {
    min-height: 720px;
    padding-top: 90px;
    padding-bottom: 38px;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }
}