* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #222;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #4b0d17; /* глубокий бордовый */
  padding: 18px 6vw;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  position: relative;
  z-index: 10;
}

header .logo {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

header .logo:hover {
  color: #e1b07e; /* золотистый акцент */
}

header nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

header nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #e1b07e;
  transition: width 0.3s ease;
}

header nav a:hover {
  color: #e1b07e;
}

header nav a:hover::after {
  width: 100%;
}

header .contacts {
  display: flex;
  gap: 16px;
  align-items: center;
}

header .contacts a {
  color: white;

}

header .contacts .btn-call {
  background-color: #e1b07e;
  color: #4b0d17;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

header .contacts .btn-call:hover {
  background-color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  header nav {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 12px;
  }
  header .contacts {
    margin-top: 12px;
    justify-content: center;
  }
}



.contacts {
    align-items: center;
}

.hero {
  text-align: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #4b0d17 0%, #2a0209 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(225,176,126,0.08) 0%, transparent 70%);
  animation: hero-glow 12s infinite linear;
}

@keyframes hero-glow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #e1b07e;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  padding: 2.5rem;
  background-color: #4b0d17; /* глубокий бордовый фон */
}

.model-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.model-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-bottom: 3px solid #e1b07e; /* золотистая полоса под фото */
  transition: transform 0.4s ease;
}

.model-card:hover img {
  transform: scale(1.05);
}

.model-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 14px 0 6px;
}

.model-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  padding: 0 12px;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .gallery {
    gap: 1.2rem;
    padding: 1.5rem;
  }
  .model-card img {
    height: 260px;
  }
}


footer {
  text-align: center;
  padding: 1rem;
  background: #001433;
  font-size: 0.9rem;
}



/* intro section */
.intro {
  background-color: #3a0a12;
  padding: 2.5rem 1.5rem;
  color: #fff;
}

.intro .container {
  max-width: 900px;
  margin: 0 auto;
}

.intro h1,
.intro h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #e1b07e;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.intro p {
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  line-height: 1.75;
  text-align: justify;
  color: rgba(255,255,255,0.88);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .intro h1,
  .intro h2 {
    font-size: 1.6rem;
  }
  .hero p,
  .intro p {
    font-size: 1rem;
  }
}


.advantages-section {
  padding: 64px 0 56px 0;
  background: #4b0d17; /* глубокий бордовый фон */
}

.advantages-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.advantages-section h2 {
  font-size: 2.4rem;
  color: #e1b07e; /* золотистый заголовок */
  text-align: center;
  margin-bottom: 42px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.advantages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px 34px;
}

.advantage-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 34px 24px 28px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.advantage-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
  border-color: #e1b07e; /* золотая рамка при ховере */
}

.advantage-item .icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: #e1b07e;
}

.advantage-item h3 {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}

.advantage-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 800px) {
  .advantages-list {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
  .advantages-section h2 {
    font-size: 1.5rem;
    margin-bottom: 26px;
  }
  .advantage-item {
    padding: 22px 14px 18px 14px;
  }
}


.contact-icons {
  background: #f7f7f7;
  padding: 3rem 0rem;
  text-align: center;
}

.contact-icons h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-icons p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.messenger-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.messenger {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  color: #222;
  transition: transform 0.2s;
}

.messenger:hover {
  transform: translateY(-3px);
}

.messenger img {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

.services-page {
  padding: 4rem 1rem;
  background: #fff;
}

.services-page .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.services-page h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.services-page .subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 3rem;
}

.service-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}





.contact-page {
  background: #f7f6fa;
  padding: 48px 0 64px 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.contact-page .container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(34, 19, 46, 0.10);
  padding: 48px 32px 32px 32px;
}

.contact-page h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: #321d44;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: left;
}

.contact-page .subtitle {
  font-size: 1.25rem;
  color: #5c4072;
  margin-bottom: 36px;
  text-align: left;
  line-height: 1.6;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 32px;
  margin-top: 16px;
  margin-bottom: 36px;
}

.contact-card {
  background: linear-gradient(135deg, #eee6fa 0%, #f9f6ff 100%);
  border-radius: 16px;
  box-shadow: 0 3px 14px rgba(60,30,90,0.07);
  padding: 30px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.25s;
  border: 1.5px solid #ece2fa;
  min-height: 170px;
}

.contact-card:hover {
  box-shadow: 0 8px 28px rgba(51,20,90,0.12);
  border-color: #a27cff;
}

.contact-card .icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #6b44c5;
  background: #ede4ff;
  border-radius: 50%;
  padding: 8px 13px;
  box-shadow: 0 2px 12px rgba(160, 120, 255, 0.08);
}

.contact-card h3 {
  font-size: 1.18rem;
  color: #321d44;
  margin-bottom: 7px;
  margin-top: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact-card p {
  font-size: 1.06rem;
  color: #46315c;
  margin: 0;
  line-height: 1.5;
  word-break: break-word;
}

.contact-card a {
  color: #8e63f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  word-break: break-all;
}
.contact-card a:hover {
  color: #321d44;
  text-decoration: underline;
}

.contact-page .legal {
  font-size: 1rem;
  color: #9986c3;
  background: #f8f4ff;
  border-radius: 10px;
  padding: 12px 16px;
  text-align: left;
  margin-top: 18px;
  letter-spacing: 0.01em;
  line-height: 1.6;
  box-shadow: 0 2px 6px rgba(120,100,180,0.07);
}

@media (max-width: 600px) {
  .contact-page .container {
    padding: 18px 4vw;
  }
  .contact-page h1 {
    font-size: 1.5rem;
    text-align: left;
  }
  .contact-page .subtitle {
    font-size: 1.07rem;
    text-align: left;
  }
}




.about-page {
  background: linear-gradient(135deg, #3a0a12 0%, #2a0209 100%);
  padding: 70px 0 65px 0;
}

.about-page .container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.15);
  padding: 48px 36px 42px 36px;
  position: relative;
  overflow: hidden;
}

.about-page .container::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(225,176,126,0.06) 0%, transparent 70%);
  animation: about-glow 14s infinite linear;
  z-index: 0;
}

@keyframes about-glow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-page h1 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #e1b07e;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.about-page .intro {
  font-size: 1.28rem;
  font-weight: 500;
  color: #3a0a12;
  margin-bottom: 22px;
  line-height: 1.75;
  text-align: center;
  background: #fdf9f5;
  padding: 22px 26px 16px 26px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(58, 10, 18, 0.07);
  position: relative;
  z-index: 1;
}

.about-page p {
  font-size: 1.14rem;
  color: #2e1a1d;
  margin-bottom: 20px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
  z-index: 1;
}

.about-page p.legal {
  color: #8a3e25;
  font-size: 1.02rem;
  font-style: italic;
  background: #fdf2e6;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 0;
  box-shadow: 0 2px 12px rgba(58, 10, 18, 0.05);
  display: flex;
  align-items: center;
  gap: 9px;
  position: relative;
  z-index: 1;
}

@media (max-width: 700px) {
  .about-page .container {
    padding: 22px 6vw 18px 6vw;
  }
  .about-page h1 {
    font-size: 1.6rem;
  }
  .about-page .intro {
    font-size: 1rem;
    padding: 16px 10px 10px 10px;
  }
  .about-page p {
    font-size: 1rem;
  }
  .about-page p.legal {
    font-size: 0.95rem;
    padding: 10px 8px;
  }
}



.pricing-page {
  padding: 4rem 1rem;
  background-color: #fff;
  text-align: center;
}

.pricing-page .container {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-page h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pricing-page .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

.price-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.price-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.price-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.price-card .price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #d43f3a;
  margin-bottom: 0.5rem;
}

.price-card .desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.site-footer {
  background: linear-gradient(160deg, #3a0a12 0%, #2a0209 100%);
  color: #e8d6c3;
  font-size: 0.96rem;
  padding: 3.5rem 1rem 2.5rem 1rem;
  line-height: 1.75;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(225,176,126,0.07) 0%, transparent 80%);
  z-index: 0;
  animation: footer-glow 20s linear infinite;
}

@keyframes footer-glow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.site-footer .container {
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-footer p {
  margin: 0 0 1.2rem 0;
}

.site-footer a {
  color: #e1b07e;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer strong {
  color: #f2e5da;
}

.site-footer .confidential {
  margin-top: 2rem;
  font-size: 0.88rem;
  color: #c2a996;
  border-top: 1px solid rgba(225,176,126,0.15);
  padding-top: 1rem;
}

@media (max-width: 768px) {
  .site-footer {
    font-size: 0.9rem;
    padding: 2.5rem 1rem;
  }
  .site-footer .confidential {
    font-size: 0.82rem;
  }
}


.faq-section {
  padding: 70px 0;
  background-color: #4b0d17; /* глубокий бордовый */
  color: #fff;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 1px;
  color: #e1b07e; /* золотистый */
  text-transform: uppercase;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 28px 28px 20px 28px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #e1b07e 0%, #b07a4e 100%);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.faq-item h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  padding-left: 10px;
}

.faq-item p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.faq-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .faq-section {
    padding: 40px 0;
  }
  .faq-list {
    padding: 0 12px;
  }
  .faq-item {
    padding: 18px 16px 14px 18px;
  }
  .faq-section h2 {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }
}

