@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --gold: #c2b59b;
  --black: #1b1b1b;
  --grey: #666666;
  --footer: #434343;
  --cream: #ebe8e1;
  --white: #ffffff;
  --menu: #2e2e48;
  --font: "Gilroy", "Manrope", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(1170px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--gold);
  color: var(--black);
  font: inherit;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  padding: 16px 42px;
  border-radius: 30px 0;
  cursor: pointer;
  transition: opacity .25s ease, box-shadow .25s ease;
  box-shadow: -2px 13px 13px #00000017, -1px 3px 7px #0000001a;
}

.btn:hover { opacity: .75; box-shadow: none; color: var(--black); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--gold);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0;
}

.logo img,
.logo svg {
  width: 170px;
  height: auto;
  display: block;
  object-fit: contain;
}

.header-contacts {
  text-align: right;
  justify-self: end;
}

.header-contacts .phone {
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

.header-contacts .mail {
  display: block;
  color: var(--grey);
  font-size: 14px;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
}

.nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
  transition: color .2s;
}

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

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: .2s;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, #fff 0%, #fff 42%, transparent 70%),
    url("/img/header_bg.png") right center / cover no-repeat;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 3.5rem;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.hero p {
  margin: 0 0 1.8rem;
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 32rem;
}

.hero-visual {
  justify-self: end;
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  border-radius: 180px 0 0 0;
  overflow: hidden;
  background: url("/img/header_bg.png") center / cover no-repeat;
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

.section {
  padding: 4.5rem 0;
}

.section-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
}

.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.5rem;
  align-items: center;
}

.about-text p {
  margin: 0 0 1rem;
  color: var(--grey);
  font-size: 1.02rem;
}

.about-photo {
  border-radius: 150px 0;
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(0deg, rgba(27,27,27,.15), rgba(27,27,27,.05)),
    url("/img/femida.jpg") center / cover no-repeat;
}

.services {
  position: relative;
  background: linear-gradient(180deg, #f7f5f1 0%, #fff 100%);
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 8% auto 8% 0;
  width: 42vw;
  background: url("/img/service_bg.jpg") center / cover no-repeat;
  border-radius: 0 8px 8px 0;
  opacity: .9;
}

.services-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
}

.service-photos {
  display: grid;
  gap: 1rem;
}

.service-photos .p1,
.service-photos .p2 {
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.service-photos .p1 {
  min-height: 280px;
  background-image: url("/img/service_img1.jpg");
}

.service-photos .p2 {
  min-height: 180px;
  background-image: url("/img/service_img2.jpg");
}

.services-list {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(194,181,155,.35);
  border-radius: 18px;
  padding: 1.5rem 1.6rem;
}

.services-list li {
  position: relative;
  padding: .7rem 0 .7rem 1.4rem;
  color: var(--grey);
  border-bottom: 1px solid rgba(194,181,155,.25);
  font-size: .98rem;
}

.services-list li:last-child { border-bottom: 0; }

.services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.price {
  background:
    linear-gradient(90deg, rgba(27,27,27,.72), rgba(27,27,27,.55)),
    url("/img/request_bg.jpg") center / cover no-repeat;
  color: #fff;
}

.price .section-title { color: #fff; }

.price p {
  margin: 0;
  max-width: 40rem;
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
}

.contacts {
  background: #fff;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-card,
.requisites-card {
  border: 1px solid rgba(194,181,155,.4);
  border-radius: 18px;
  padding: 1.6rem 1.7rem;
  background: linear-gradient(180deg, #fff, #faf8f4);
}

.contact-card h3,
.requisites-card h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.contact-card p,
.requisites-card p {
  margin: 0 0 .7rem;
  color: var(--grey);
}

.contact-card a {
  color: var(--black);
  font-weight: 700;
}

.requisites-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}

.requisites-table th,
.requisites-table td {
  text-align: left;
  vertical-align: top;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(194,181,155,.25);
}

.requisites-table th {
  width: 38%;
  color: var(--grey);
  font-weight: 500;
}

.requisites-table td {
  color: var(--black);
  font-weight: 600;
}

.site-footer {
  background: var(--footer);
  color: rgba(255,255,255,.85);
  padding: 2.5rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-logo svg,
.footer-logo img {
  width: 140px;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  margin-top: 1.5rem;
}

.mobile-nav {
  display: none;
}

@media (max-width: 992px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .nav { display: none; }
  .burger { display: block; }
  .mobile-nav.open {
    display: grid;
    gap: .4rem;
    padding: 0 0 1rem;
  }
  .mobile-nav a {
    padding: .7rem 0;
    border-bottom: 1px solid rgba(194,181,155,.35);
    font-weight: 600;
  }
  .hero-inner,
  .about-grid,
  .services-inner,
  .contacts-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .services::before { display: none; }
  .hero {
    background: #fff;
    min-height: auto;
  }
  .hero-visual {
    width: 100%;
    aspect-ratio: 16 / 11;
    border-radius: 80px 0 0 0;
    justify-self: stretch;
  }
  .hero h1 { max-width: none; }
}
