* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f6f4ef;
  color: #111;
}

a {
  color: inherit;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 7%;
  background: rgba(5, 5, 5, 0.94);
  color: white;
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
  backdrop-filter: blur(14px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #d4af37;
  border-radius: 50%;
  color: #d4af37;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 900;
}

.logo strong {
  display: block;
  font-size: 22px;
  letter-spacing: 1px;
}

.logo small {
  color: #d4af37;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a,
.phone {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.nav a:hover,
.phone:hover {
  color: #d4af37;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
  padding: 90px 7%;
  color: white;
  background:
    linear-gradient(120deg, rgba(0,0,0,0.94), rgba(0,0,0,0.6)),
    url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.label {
  margin: 0 0 14px;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  font-size: 13px;
}

.hero h1 {
  max-width: 820px;
  margin: 0 0 22px;
  font-family: Georgia, serif;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.95;
}

.hero p {
  max-width: 650px;
  color: #eee;
  font-size: 21px;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.5px;
  transition: 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.gold {
  background: #d4af37;
  color: #111;
  border: 1px solid #d4af37;
}

.outline {
  color: white;
  border: 1px solid white;
}

.outline:hover {
  border-color: #d4af37;
  color: #d4af37;
}

.hero-card {
  padding: 42px;
  border: 1px solid rgba(212,175,55,0.55);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
}

.hero-card p {
  color: #d4af37;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-card h2 {
  margin: 12px 0;
  font-family: Georgia, serif;
  color: white;
  font-size: 44px;
}

.hero-card span {
  color: #ddd;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 7%;
}

.center {
  text-align: center;
}

h2 {
  margin: 0 0 34px;
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.grid {
  display: grid;
  gap: 24px;
}

.services {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 34px;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 22px 60px rgba(0,0,0,0.07);
}

.card span {
  color: #d4af37;
  font-weight: 900;
  letter-spacing: 2px;
}

.card h3,
.master h3,
.contact-card h3 {
  font-size: 24px;
  margin: 18px 0 12px;
}

.card p,
.master p,
.contacts p,
.contact-card p {
  color: #555;
  line-height: 1.7;
}

.dark {
  max-width: none;
  background: #080808;
  color: white;
}

.dark .label,
.dark h2 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.masters {
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

.master {
  text-align: center;
  padding: 36px;
  border: 1px solid rgba(212,175,55,0.4);
  background: #111;
}

.avatar {
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #d4af37;
  color: #d4af37;
  font-size: 34px;
  font-family: Georgia, serif;
}

.price-box {
  max-width: 850px;
  margin: 0 auto;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 22px 60px rgba(0,0,0,0.07);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 30px;
  border-bottom: 1px solid #eee;
  font-size: 19px;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row strong {
  color: #9b7815;
  white-space: nowrap;
}

.contacts {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
}

.contact-card {
  padding: 34px;
  background: #111;
  color: white;
  border: 1px solid #d4af37;
}

.contact-card p {
  color: #ddd;
}

.full {
  width: 100%;
  margin-top: 18px;
}

footer {
  padding: 30px 7%;
  text-align: center;
  background: #050505;
  color: #d4af37;
}

@media (max-width: 950px) {
  .header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .phone {
    display: none;
  }

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

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

  .hero h1 {
    font-size: 52px;
  }
}
.floating-buttons{
  position:fixed;
  right:25px;
  bottom:25px;
  display:flex;
  flex-direction:column;
  gap:15px;
  z-index:9999;
}

.floating-buttons a{
  width:65px;
  height:65px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:.3s;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.whatsapp{ background:#25D366; }

.instagram{
  background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);
}

.floating-buttons img{
  width:34px;
  filter:invert(1);
}

.floating-buttons a:hover{
  transform:scale(1.12);
}
/* Красивые плавные анимации */

.hero-content,
.hero-card {
  animation: fadeUp 1s ease forwards;
}

.hero-card {
  animation-delay: .25s;
}

.card,
.master,
.price-row,
.contact-card {
  transition: .35s ease;
}

.card:hover,
.master:hover,
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0,0,0,.18);
  border-color: #d4af37;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg);
}

.btn:hover::after {
  animation: shine .8s ease;
}

.logo span {
  animation: goldPulse 2.5s infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  from {
    left: -120%;
  }
  to {
    left: 140%;
  }
}

@keyframes goldPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(212,175,55,0);
  }
  50% {
    box-shadow: 0 0 25px rgba(212,175,55,.55);
  }
}
.gallery{
    padding:120px 20px 90px;
    background:#111;
    margin-top:0;
    position:relative;
    z-index:1;
}
.gallery h2{
    color:#d4af37;
    text-align:center;
    font-size:42px;
    margin-bottom:40px;
}

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

.gallery-grid img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:18px;
    cursor:pointer;
    transition:.4s;
    border:2px solid transparent;
}

.gallery-grid img:hover{
    transform:scale(1.05);
    border-color:#d4af37;
    box-shadow:0 0 35px rgba(212,175,55,.5);
}

#lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

#lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:20px;
}
.phone-box{
    display:inline-block;
    margin:-20px 0;
    padding:5px 10px;
    background:#d4af37;
    border-radius:12px;
    font-size:24px;
    font-weight:bold;
    box-shadow:0 10px 30px rgba(212,175,55,.35);
    transition:.3s;
}

.phone-box a{
    color:#111;
    text-decoration:none;
}

.phone-box:hover{
    transform:scale(1.05);
    box-shadow:0 15px 40px rgba(212,175,55,.55);
}
.hours-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:12px 0;
  border-bottom:1px solid rgba(212,175,55,.35);
  color:#fff;
  font-size:18px;
}

.hours-row strong{
  color:#d4af37;
}

.hero-card .btn{
  margin-top:22px;
}

.map-section{
  padding:90px 7%;
  background:#0b0b0b;
}

.map-section h2{
  color:#d4af37;
  text-align:center;
  margin-bottom:35px;
}

.map-frame{
  max-width:1100px;
  margin:0 auto;
  border:1px solid rgba(212,175,55,.45);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 25px 70px rgba(0,0,0,.35);
}

.map-actions{
  text-align:center;
  margin-top:24px;
}
.reveal{
  opacity:0;
  transform:translateY(45px);
  transition:opacity .8s ease, transform .8s ease;
}

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

.back-to-top{
  position:fixed;
  left:25px;
  bottom:25px;
  width:55px;
  height:55px;
  border-radius:50%;
  border:1px solid #d4af37;
  background:#111;
  color:#d4af37;
  font-size:26px;
  font-weight:bold;
  cursor:pointer;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  transition:.3s;
}

.back-to-top:hover{
  background:#d4af37;
  color:#111;
  transform:scale(1.1);
}