:root{
  --dark:#111111;
  --dark-soft:#1b1b1b;
  --gold:#c6a45a;
  --gold-light:#d8b977;
  --light:#ffffff;
  --soft:#f8f7f4;
  --border:#ece7dc;
  --text:#222222;
  --muted:#6f6f6f;
  --shadow:0 18px 50px rgba(0,0,0,.08);
  --shadow-soft:0 12px 30px rgba(0,0,0,.06);
  --radius:24px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--light);
  color:var(--text);
  line-height:1.7;
}

body.modal-open{
  overflow:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

.section{
  padding:120px 0;
}

.alt{
  background:var(--soft);
}

.section-head{
  margin-bottom:60px;
}

.section-head.center{
  text-align:center;
}

.section-title{
  font-size:42px;
  font-weight:600;
  line-height:1.15;
  margin-bottom:12px;
}

.section-subtitle{
  color:var(--muted);
  max-width:620px;
}

.section-head.center .section-subtitle{
  margin:0 auto;
}

.eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:12px;
}

/* HEADER */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:rgba(17,17,17,.88);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.nav-container{
  min-height:84px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:20px;
}

.logo{
  color:var(--gold);
  font-weight:700;
  font-size:24px;
}

.nav{
  display:flex;
  justify-content:center;
  gap:34px;
}

.nav a{
  color:#fff;
  font-size:14px;
  font-weight:500;
  position:relative;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--gold);
  transition:.25s ease;
}

.nav a:hover::after{
  width:100%;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:16px;
}

.lang-switch{
  display:flex;
  gap:8px;
  padding:6px;
  background:rgba(255,255,255,.06);
  border-radius:999px;
}

.lang-switch a{
  color:#fff;
  font-size:12px;
  font-weight:600;
  padding:8px 12px;
  border-radius:999px;
  transition:.25s;
}

.lang-switch a.active,
.lang-switch a:hover{
  background:var(--gold);
  color:#fff;
}

.burger{
  display:none;
  background:none;
  border:none;
  color:#fff;
  font-size:26px;
  cursor:pointer;
}

/* HERO */
.hero{
  min-height:100vh;
  margin-top:84px;
  position:relative;
  display:flex;
  align-items:center;
  background-size:cover;
  background-position:center;
  transition:background-image 1s ease;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.26) 100%);
}

.hero-layout{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:36px;
  align-items:end;
  width:100%;
}

.hero-content{
  color:#fff;
  max-width:700px;
}

.hero h1{
  font-size:72px;
  line-height:1.02;
  margin-bottom:20px;
  letter-spacing:-.03em;
}

.hero p{
  font-size:18px;
  max-width:560px;
  color:rgba(255,255,255,.92);
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-panel{
  display:flex;
  justify-content:flex-end;
}

.hero-panel-inner{
  width:100%;
  max-width:360px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  backdrop-filter:blur(10px);
  border-radius:28px;
  padding:28px;
  color:#fff;
  box-shadow:0 20px 60px rgba(0,0,0,.18);
}

.hero-panel-label{
  display:inline-block;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.75);
  margin-bottom:12px;
}

.hero-panel-inner h3{
  font-size:28px;
  line-height:1.2;
  margin-bottom:12px;
}

.hero-panel-inner p{
  margin:0;
  font-size:14px;
  color:rgba(255,255,255,.84);
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 28px;
  border-radius:999px;
  background:var(--gold);
  color:#fff;
  font-weight:600;
  transition:.25s ease;
  border:1px solid var(--gold);
}

.btn:hover{
  transform:translateY(-2px);
  background:var(--gold-light);
}

.btn-outline{
  background:transparent;
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
}

.btn-outline:hover{
  background:rgba(255,255,255,.08);
}

/* SERVICES */
.services-section{
  background:
    linear-gradient(to bottom, #ffffff 0%, #fbfaf7 100%);
}

.services-category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.service-category-card{
  border:none;
  border-radius:30px;
  min-height:300px;
  padding:28px;
  color:#fff;
  text-align:left;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition:.35s ease;
  box-shadow:var(--shadow);
}

.service-category-card:hover{
  transform:translateY(-10px);
}

.service-card-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.48), rgba(0,0,0,.08));
}

.service-card-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.service-card-tag{
  display:inline-flex;
  width:max-content;
  font-size:11px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.15);
  margin-bottom:16px;
}

.service-category-card h3{
  font-size:34px;
  line-height:1.1;
  margin-bottom:10px;
}

.service-category-card p{
  font-size:14px;
  color:rgba(255,255,255,.85);
  max-width:280px;
}

.women-card{
  background:
    linear-gradient(135deg,#7c6751,#31271f);
}

.men-card{
  background:
    linear-gradient(135deg,#444444,#111111);
}

.children-card{
  background:
    linear-gradient(135deg,#9a7a48,#43311d);
}

/* GALLERY */
.homepage-swiper{
  position:relative;
  padding:10px 4px 60px;
}

.gallery-card{
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#fff;
  transition:transform .35s ease, box-shadow .35s ease;
}

.gallery-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 60px rgba(0,0,0,.12);
}

.swiper-slide img{
  width:100%;
  height:500px;
  object-fit:cover;
  transition:transform .55s ease;
}

.gallery-card:hover img{
  transform:scale(1.04);
}

.swiper-pagination{
  bottom:0 !important;
}

.swiper-pagination-bullet{
  background:#cfc8bc;
  opacity:1;
}

.swiper-pagination-bullet-active{
  background:var(--gold);
}

.swiper-button-prev,
.swiper-button-next{
  width:54px;
  height:54px;
  border-radius:50%;
  background:rgba(17,17,17,.82);
  color:#fff;
  box-shadow:var(--shadow-soft);
  transition:.25s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover{
  background:var(--gold);
}

.swiper-button-prev::after,
.swiper-button-next::after{
  font-size:16px;
  font-weight:700;
}

.swiper-button-prev{
  left:14px;
}

.swiper-button-next{
  right:14px;
}

/* ABOUT */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-image-wrap{
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.about-image{
  width:100%;
  height:560px;
  object-fit:cover;
}

.about-content h2{
  font-size:42px;
  margin-bottom:18px;
}

.about-content p{
  color:var(--muted);
  margin-bottom:18px;
}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:stretch;
}

.map-card,
.contact-card{
  background:#fff;
  border-radius:30px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

iframe{
  width:100%;
  height:100%;
  min-height:420px;
  border:none;
}

.contact-card{
  padding:40px;
}

.contact-card h2{
  margin-bottom:18px;
  font-size:36px;
}

.contact-list{
  display:grid;
  gap:12px;
  margin-bottom:28px;
}

.contact-list p{
  color:var(--muted);
}

/* FOOTER */
.footer{
  background:var(--dark);
  color:#fff;
  padding:30px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  gap:20px;
}

.footer-links a{
  color:rgba(255,255,255,.8);
}

.footer-links a:hover{
  color:var(--gold);
}

/* PREMIUM MODAL */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:3000;
}

.modal.active{
  display:block;
}

.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.58);
  backdrop-filter:blur(7px);
}

.modal-shell{
  position:relative;
  z-index:1;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.premium-modal{
  width:min(92%,680px);
  background:linear-gradient(180deg,#ffffff 0%, #fbfaf7 100%);
  border:1px solid rgba(198,164,90,.18);
  border-radius:30px;
  padding:34px;
  box-shadow:0 30px 80px rgba(0,0,0,.18);
  animation:modalIn .25s ease;
}

@keyframes modalIn{
  from{
    opacity:0;
    transform:translateY(20px) scale(.98);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

.modal-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  margin-bottom:20px;
}

.modal-eyebrow{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:10px;
}

.modal-head h3{
  font-size:34px;
  line-height:1.08;
}

.modal-close{
  border:none;
  background:#f4efe4;
  width:46px;
  height:46px;
  border-radius:50%;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  color:#222;
  transition:.2s;
}

.modal-close:hover{
  background:var(--gold);
  color:#fff;
}

.modal-divider{
  height:1px;
  background:linear-gradient(to right, transparent, var(--border), transparent);
  margin-bottom:10px;
}

#modalList{
  list-style:none;
}

#modalList li{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  padding:18px 0;
  border-bottom:1px solid var(--border);
}

#modalList li span{
  font-size:16px;
  color:var(--text);
}

#modalList li strong{
  color:var(--gold);
  font-size:15px;
  font-weight:700;
  white-space:nowrap;
}

.modal-subtitle{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold);
  padding:18px 0 6px;
  font-weight:600;
}

.premium-modal{
  max-height:90vh;
  display:flex;
  flex-direction:column;
}

#modalList{
  overflow-y:auto;
  max-height:50vh;
  padding-right:10px;
  scroll-behavior:smooth;
}

#modalList::-webkit-scrollbar{
  width:6px;
}

#modalList::-webkit-scrollbar-thumb{
  background:var(--gold);
  border-radius:10px;
}

#modalList::-webkit-scrollbar-track{
  background:transparent;
}

.modal-footer{
  position:sticky;
  bottom:0;
  background:linear-gradient(to top, #fff, transparent);
  padding-top:20px;
}

.modal-btn{
  min-width:180px;
}

/* MOBILE */
@media (max-width: 980px){
  .nav{
    display:none;
    position:absolute;
    top:84px;
    left:0;
    width:100%;
    flex-direction:column;
    gap:18px;
    background:var(--dark);
    padding:22px 20px 28px;
    border-top:1px solid rgba(255,255,255,.06);
  }

  .nav.nav-open{
    display:flex;
  }

  .burger{
    display:block;
  }

  .hero-layout,
  .services-category-grid,
  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:48px;
  }

  .section{
    padding:90px 0;
  }

  .section-title,
  .about-content h2,
  .contact-card h2{
    font-size:32px;
  }

  .hero-panel{
    justify-content:flex-start;
  }

  .hero-panel-inner{
    max-width:100%;
  }

  .about-image{
    height:400px;
  }

  .swiper-slide img{
    height:360px;
  }

  .swiper-button-prev,
  .swiper-button-next{
    display: none;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after{
    display: none;
  }

  .premium-modal{
    padding:24px;
  }

  .modal-head h3{
    font-size:28px;
  }

  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}