@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Montserrat:wght@300;400;500;600&display=swap');

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

body {
  background: #f3eee8;
  color: #3a2c23;
  font-family: 'Montserrat', sans-serif;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 24px;

    background: #fffaf5; /* суцільний фон */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 500;
    color: #3a2c23;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 390px;
  max-width: 100%;
  height: 100vh;

  background: #fffaf5;
  z-index: 9999;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.mobile-menu.active {
  display: flex;
}

.menu {
  position: fixed;
  top: 24px;
  right: calc(50% - 170px);
  z-index: 10000;

    position: static;
    background: none;
    border: none;
    font-size: 34px;
    color: #3a2c23;
    cursor: pointer;
}

.mobile-menu a {
  color: #3a2c23;
  text-decoration: none;
  font-size: 22px;
}

.mobile-menu a:hover {
  opacity: 0.7;
}

.menu-image {
  margin-top: 35px;
  width: 100%;
  text-align: center;
}

.menu-image img {
  width: 280px;
  max-width: 90%;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.hero {
  position: relative;
  padding: 40px 22px 80px;
  min-height: 620px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 70px;
  width: 330px;
  height: 520px;
  background: #d8ccbf;
  border-radius: 50% 0 0 50%;
  z-index: -1;
}

.hero span {
  font-size: 11px;
  letter-spacing: 4px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 51px;
  line-height: 0.95;
  margin: 18px 0;
}

.hero p {
  max-width: 220px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero img {
  position: absolute;
  right: -30px;
  bottom: 0;
  width: 300px;
  height: 420px;
  object-fit: cover;
  border-radius: 160px 0 0 160px;
}

.btn {
  display: inline-block;
  background: #5b493b;
  color: #fff;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 40px;
  font-size: 14px;
}

.section {
  background: #fffaf5;
  margin: 0 16px 28px;
  padding: 38px 18px;
  border-radius: 32px;
}

.section h2,
.about h2,
.contact h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  text-align: center;
  margin-bottom: 28px;
}

.services-price {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.price-list {
  list-style: none;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #d8ccbf;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 9px;
  color: #3a2c23;
}

.price-list span {
  font-weight: 600;
  color: #5b493b;
}

.card {
  background: #f0e8df;
  padding: 24px 14px;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 15px;
}

.cat-card {
  border: 1px solid #d8ccbf;
  background: #f5f0ea;
}

.icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.card p {
  font-size: 12px;
  line-height: 1.5;
}

.gallery {
  display: flex;
  gap: 14px;
  overflow-x: auto;
}

.gallery img {
  width: 190px;
  height: 210px;
  object-fit: cover;
  border-radius: 24px;
}

.about {
  background: #fffaf5;
  margin: 0 16px 28px;
  padding: 26px;
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.about h2 {
  text-align: left;
  margin-bottom: 16px;
}

.about p {
  font-size: 13px;
  line-height: 1.7;
}

.about img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 24px;
}

.review {
  background: #f0e8df;
  padding: 22px;
  border-radius: 24px;
  margin-bottom: 16px;
}

.review h3 {
  margin-bottom: 6px;
}

.review p {
  color: #b58d70;
  margin-bottom: 10px;
}

.review span {
  font-size: 13px;
  line-height: 1.6;
}

.contact {
  background: #fffaf5;
  margin: 0 16px 28px;
  padding: 38px 18px;
  border-radius: 32px;
}

.map {
  height: 220px;
  background: #eadfd5;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9d8b7d;
  margin-bottom: 20px;
  letter-spacing: 5px;
}

.contact-card {
  background: #f0e8df;
  padding: 24px;
  border-radius: 24px;
}

.contact-card a {
    color: #3A2C23; /* такий самий колір як текст */
    text-decoration: none;
}

.contact-card a:hover {
    color: #3A2C23;
}

.contact-card p {
  margin-bottom: 14px;
  font-size: 14px;
}

.contact-card .btn {
    display: inline-block;
    background: #4A352B;
    color: white;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 40px;
    text-align: center;
}

footer {
  background: #d8ccbf;
  padding: 42px 20px;
  text-align: center;
}

footer h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
}

footer p {
  font-size: 11px;
  letter-spacing: 4px;
  margin: 8px 0 18px;
}

/* Десктопна версія */
@media (min-width: 768px) {

  .hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hero-text {
    width: 45%;
    max-width: 500px;
  }

  .hero h1 {
    font-size: 90px;
    line-height: 0.95;
  }

  .hero p {
    font-size: 24px;
  }

  .hero img {
    width: 500px;
    max-width: 50%;
  }

  .section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
  }

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

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

  .gallery img {
    width: 100%;
    height: 320px;
    object-fit: cover;
  }

  .about {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    display: flex;
    gap: 60px;
    align-items: center;
  }

  .about img {
    width: 450px;
  }

  .header {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {

  .reviews {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
  }

  .review {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 35px;
  }

  .review h3 {
    font-size: 28px;
  }

  .review span {
    font-size: 18px;
  }

  .contact {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 80px 60px;
  }

  .contact h2 {
    font-size: 52px;
  }

  .contact-card {
    padding: 40px;
  }

  .contact-card p {
    font-size: 18px;
  }

  .contact-card .btn {
    font-size: 18px;
    padding: 18px 36px;
  }
}

@media (min-width: 768px) {

  .mobile-menu {
    left: auto;
    right: 40px;
    top: 80px;

    transform: none;

    width: 280px;
    height: auto;

    padding: 40px;

    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);

    justify-content: flex-start;
    align-items: flex-start;
  }

  .menu-image {
    margin-top: 20px;
  }

  .menu-image img {
    width: 180px;
  }

  .mobile-menu a {
    font-size: 20px;
  }
}