:root{
  --paper: rgba(255,255,255,.94);
  --paper2: rgba(255,255,255,.88);
  --ink: #17171c;
  --muted: #6f7380;
  --line: rgba(0,0,0,.12);
  --wline: rgba(255,255,255,.14);
  --shadow: 0 18px 60px rgba(0,0,0,.22);
  --shadow2: 0 12px 40px rgba(0,0,0,.18);
  --r: 20px;
  --gold: #d6b07a;
  --dark: rgba(12,11,13,.72);
}

*{box-sizing:border-box}
html{font-size:18px}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:1rem;
  line-height:1.55;
  color:var(--ink);
  background-image:url("images/body-bg.jpg");
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:linear-gradient(180deg, rgba(12,12,14,.56), rgba(10,10,12,.78));
  pointer-events:none;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}
img{max-width:100%;display:block}

.skip{
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden
}
.skip:focus{
  left:14px;top:14px;width:auto;height:auto;z-index:999;
  padding:10px 14px;border-radius:999px;background:#fff;outline:2px solid rgba(0,0,0,.25)
}

.page{
  position:relative;
  z-index:1;
  max-width:1180px;
  margin:28px auto;
  padding:0 14px;
}
.wrap{max-width:1120px;margin:0 auto;padding:0 18px}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
}
.headerRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-weight:950;
  letter-spacing:.2px;
  white-space:nowrap;
}
.logoMark{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(214,176,122,.96), rgba(255,255,255,.72));
  color:#111;
  font-weight:1000;
}
.logoText{font-weight:950}

.nav{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:center;
}
.nav a{
  color:rgba(255,255,255,.92);
  font-weight:900;
  padding:10px 12px;
  border-radius:999px;
  transition: background .2s ease, transform .2s ease;
}
.nav a:hover{background:rgba(255,255,255,.08);transform:translateY(-1px)}
.nav a.on{
  background:rgba(214,176,122,.18);
  border:1px solid rgba(214,176,122,.26);
}

.headerCta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
  color:#fff;
  font-weight:950;
  white-space:nowrap;
}
.headerCta i{color:rgba(214,176,122,.95)}

.navBtn{
  display:none;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
  color:#fff;
  border-radius:14px;
  padding:10px 12px;
  cursor:pointer;
}

.main{
  margin-top:14px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  overflow:hidden;
}

.hero{
  padding:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.00));
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:14px;
  align-items:stretch;
}
.heroText{
  background:var(--paper);
  border:1px solid rgba(255,255,255,.18);
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:20px;
}
.heroText h1{
  margin:0 0 10px;
  font-size:2.15rem;
  line-height:1.08;
}
.heroSub{
  color:rgba(23,23,28,.82);
  font-weight:900;
  font-size:1.06rem;
  margin-bottom:14px;
}

.heroBadges{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin:0 0 14px;
}
.badge{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.60);
  font-weight:950;
  color:rgba(23,23,28,.82);
}
.badge i{color:rgba(214,176,122,.95)}
.badge span{display:block}

.heroActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:4px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  background:#111;
  color:#fff;
  font-weight:1000;
  cursor:pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.btn:hover{transform:translateY(-1px);opacity:.94}
.btn.ghost{
  background:#fff;
  color:#111;
}
.btn.full{width:100%}

.heroMedia{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:var(--shadow);
  min-height:420px;
}
.heroMedia img{width:100%;height:100%;object-fit:cover}
.heroMedia::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.62));
}

.heroMeta{
  position:absolute;
  left:14px;right:14px;bottom:14px;
  border-radius:18px;
  background:rgba(16,16,18,.62);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  color:#fff;
  padding:12px 14px;
  z-index:2;
}
.metaTitle{font-weight:1000;margin-bottom:6px}
.metaRow{
  display:flex;
  justify-content:space-between;
  padding:6px 0;
  border-top:1px solid rgba(255,255,255,.14);
}
.metaRow:first-of-type{border-top:none}

.section{padding:22px 18px}
.section.soft{
  background:rgba(255,255,255,.08);
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.sectionHead{margin:0 0 14px}
.sectionHead h2{
  margin:0 0 6px;
  color:#fff;
  font-size:1.55rem;
}
.sectionHead p{
  margin:0;
  color:rgba(255,255,255,.72);
  font-weight:800;
}

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

.catCard{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  min-height:210px;
  transition: transform .2s ease;
}
.catCard:hover{transform:translateY(-2px)}
.catCard img{width:100%;height:100%;object-fit:cover}
.catCard::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.00), rgba(0,0,0,.55));
}
.catLabel{
  position:absolute;left:12px;bottom:12px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(16,16,18,.62);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-weight:1000;
  z-index:2;
}

.catInfo{
  margin-top:12px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:12px;
}
.catBox{
  background:var(--paper);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow2);
}
.catBox h3{margin:0 0 10px;font-size:1.05rem}
.catBox p{margin:0;color:rgba(23,23,28,.84);font-weight:900}
.catBox ul{margin:0;padding:0 0 0 18px;color:rgba(23,23,28,.84)}
.catBox li{margin:6px 0}

.service{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.serviceItem{
  background:var(--paper);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow2);
}
.serviceTitle{
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:1000;
  margin-bottom:8px;
}
.serviceTitle i{color:rgba(214,176,122,.95)}
.serviceItem p{margin:0;color:rgba(23,23,28,.84)}

.serviceMore{
  margin-top:12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.serviceNote{
  background:var(--paper);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow2);
}
.serviceNote h3{margin:0 0 8px;font-size:1.05rem}
.serviceNote p{margin:0;color:rgba(23,23,28,.84)}

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.step{
  background:var(--paper);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow2);
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.stepN{
  width:42px;height:42px;
  border-radius:14px;
  display:grid;place-items:center;
  background:rgba(214,176,122,.18);
  border:1px solid rgba(214,176,122,.26);
  font-weight:1000;
}
.stepT strong{display:block;margin-bottom:6px}
.stepT span{display:block;color:rgba(23,23,28,.82);font-weight:850}

.book{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:12px;
  align-items:start;
}
.bookLeft{
  display:grid;
  gap:12px;
}

.infoCard{
  background:var(--paper);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow2);
}
.infoCard h3{margin:0 0 10px}

.infoLine{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:8px 0;
  border-top:1px solid rgba(0,0,0,.08);
  font-weight:950;
  color:rgba(23,23,28,.86);
}
.infoLine:first-of-type{border-top:none}
.infoLine i{color:rgba(214,176,122,.95);margin-top:2px}

.need{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.need span{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.60);
  font-weight:950;
  color:rgba(23,23,28,.82);
}
.need i{color:rgba(214,176,122,.95)}

.form{
  background:var(--paper);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow2);
}

label{display:block;font-weight:1000;margin:10px 0 8px}
input,select,textarea{
  width:100%;
  font:inherit;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
  outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color:rgba(214,176,122,.60);
  box-shadow:0 0 0 4px rgba(214,176,122,.18);
}
textarea{resize:vertical}
.row2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}

.fine{
  margin-top:10px;
  color:rgba(23,23,28,.76);
  font-size:.92rem;
}
.fine a{font-weight:1000}

.faq{
  margin-top:12px;
  background:var(--paper);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow2);
}
.faq h3{margin:0 0 10px}
.qa{
  padding:10px 0;
  border-top:1px solid rgba(0,0,0,.08);
}
.qa:first-of-type{border-top:none}
.qa strong{display:block;margin-bottom:6px}
.qa span{display:block;color:rgba(23,23,28,.82);font-weight:850}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  align-items:start;
}
.contactPhoto{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
}
.contactPhoto img{height:320px;width:100%;object-fit:cover}

.contactBox{
  background:var(--paper);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow2);
}

.social{
  display:flex;
  gap:10px;
  margin-top:12px;
}
.social a{
  width:44px;height:44px;border-radius:16px;
  display:grid;place-items:center;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(0,0,0,.02);
}

.miniLinks{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(0,0,0,.08);
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.miniLinks a{font-weight:1000}

.footer{
  padding:18px;
  background:rgba(255,255,255,.08);
  border-top:1px solid rgba(255,255,255,.10);
}
.footTop{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  flex-wrap:wrap;
}
.footBrand{display:flex;gap:12px;align-items:center;color:#fff}
.footMark{
  width:34px;height:34px;border-radius:12px;
  display:grid;place-items:center;
  background:#fff;color:#111;font-weight:1000;
}
.footName{font-weight:1000}
.footSub{opacity:.85}

.footNav{display:flex;gap:14px;flex-wrap:wrap}
.footNav a{color:rgba(255,255,255,.92);font-weight:950}

.footContact{
  display:grid;
  gap:6px;
  color:rgba(255,255,255,.88);
  font-weight:950;
}
.footContact a{font-weight:1000}

.cookie{
  position:fixed;
  left:14px;right:14px;bottom:14px;
  display:none;
  z-index:200;
}
.cookie.open{display:block}
.cookieBox{
  max-width:980px;
  margin:0 auto;
  background:rgba(16,16,18,.86);
  border:1px solid rgba(255,255,255,.16);
  border-radius:18px;
  padding:12px 14px;
  color:#fff;
  box-shadow:0 18px 60px rgba(0,0,0,.26);
  backdrop-filter: blur(12px);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.cookieText{display:grid;gap:6px}
.cookieText a{font-weight:1000;text-decoration:underline}
.cookieBtns{display:flex;gap:10px;flex-wrap:wrap}
.cookieBtn{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:#fff;
  color:#111;
  font-weight:1000;
  cursor:pointer;
}
.cookieBtn.ghost{background:transparent;color:#fff}

@media (max-width: 1040px){
  .nav{display:none}
  .nav.open{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
    padding:12px;
    border-radius:18px;
    background:rgba(16,16,18,.55);
    border:1px solid rgba(255,255,255,.14);
    position:absolute;
    right:18px;
    top:76px;
    max-width: 320px;
  }
  .navBtn{display:inline-flex}
  .headerCta{display:none}

  .heroGrid{grid-template-columns:1fr}
  .heroBadges{grid-template-columns:1fr}

  .cat{grid-template-columns:1fr 1fr}
  .catInfo{grid-template-columns:1fr}

  .service{grid-template-columns:1fr}
  .serviceMore{grid-template-columns:1fr}

  .steps{grid-template-columns:1fr}

  .book{grid-template-columns:1fr}
  .row2{grid-template-columns:1fr}

  .contact{grid-template-columns:1fr}
}

@media (max-width: 520px){
  .cat{grid-template-columns:1fr}
  .need{grid-template-columns:1fr}
}
.aboutPage{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:12px;
  align-items:start;
}

.aboutPhoto{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  box-shadow:0 12px 40px rgba(0,0,0,.18);
}
.aboutPhoto img{height:520px;width:100%;object-fit:cover}

.aboutPanel{
  display:grid;
  gap:12px;
}

.aboutBlock{
  background:var(--paper);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:14px;
  box-shadow:0 12px 40px rgba(0,0,0,.18);
}
.aboutBlock h3{margin:0 0 10px;font-size:1.05rem}
.aboutBlock p{margin:0 0 10px;color:rgba(23,23,28,.84);font-weight:850}
.aboutBlock p:last-child{margin-bottom:0}

.aboutList{display:grid;gap:8px}
.aboutItem{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.60);
  font-weight:950;
  color:rgba(23,23,28,.82);
}
.aboutItem i{color:rgba(214,176,122,.95);margin-top:2px}

.aboutContact{display:grid;gap:0}
.aboutContact .infoLine{border-top:1px solid rgba(0,0,0,.08)}
.aboutContact .infoLine:first-of-type{border-top:none}

.aboutCtas{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

@media (max-width: 1040px){
  .aboutPage{grid-template-columns:1fr}
  .aboutPhoto img{height:320px}
}
.policy{
  display:grid;
  gap:12px;
}

.policyCard{
  background:var(--paper);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow2);
}

.policyCard h3{
  margin:0 0 10px;
  font-size:1.05rem;
}

.policyCard p{
  margin:0 0 10px;
  color:rgba(23,23,28,.84);
  font-weight:850;
}

.policyCard p:last-child{
  margin-bottom:0;
}

.policyCard a{
  font-weight:1000;
  text-decoration:underline;
  text-underline-offset:3px;
}

.policyCard ul,
.policyCard ol{
  margin:0;
  padding-left:18px;
  color:rgba(23,23,28,.84);
  font-weight:850;
}

.policyCard li{
  margin:8px 0;
}

.policyContact{
  margin-top:10px;
  border-top:1px solid rgba(0,0,0,.08);
  padding-top:10px;
  display:grid;
  gap:0;
}

.policyContact .infoLine{
  border-top:1px solid rgba(0,0,0,.08);
}

.policyContact .infoLine:first-of-type{
  border-top:none;
}

.policyContact a{
  text-decoration:none;
  font-weight:1000;
}

.policyContact a:hover{
  text-decoration:underline;
  text-underline-offset:3px;
}
