@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@500;600;700&display=swap');

:root{
  --bg:#0b0d0c;
  --card:#101413;
  --text:#f2f5f3;
  --muted:rgba(242,245,243,.72);
  --gold:#C9A24D;
  --gold2:#B18A3A;
  --line:rgba(242,245,243,.12);
  --radius:18px;
  --shadow:0 14px 40px rgba(0,0,0,.35);
  --w:1200px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#070807 0%, #0b0d0c 35%, #070807 100%);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}
.container{max-width:var(--w); margin:0 auto; padding:0 20px}
.section{padding:84px 0}
@media (min-width:900px){ .section{padding:112px 0} }

.h1,.h2,.h3{font-family:"Playfair Display",serif; letter-spacing:.2px}
.h1{font-size:clamp(34px,5vw,64px); line-height:1.05; margin:0 0 14px}
.h2{font-size:clamp(26px,3.3vw,42px); line-height:1.1; margin:0 0 14px}
.h3{font-size:clamp(18px,2vw,24px); line-height:1.2; margin:0 0 10px}
.p{color:var(--muted); line-height:1.7; font-size:16px; margin:0}
@media (min-width:900px){ .p{font-size:18px} }

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px; border:1px solid var(--line);
  border-radius:999px; color:rgba(242,245,243,.9);
  background:rgba(16,20,19,.55); backdrop-filter: blur(10px);
  font-size:13px; letter-spacing:.3px;
}
.badge strong{color:var(--gold); font-weight:700}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 18px; border-radius:999px; border:1px solid transparent;
  font-weight:600; letter-spacing:.2px;
  transition:transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
  user-select:none;
}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--gold); color:#111; box-shadow:0 12px 28px rgba(201,162,77,.18)}
.btn-primary:hover{background:var(--gold2); transform:translateY(-2px)}
.btn-ghost{background:transparent; border-color:rgba(242,245,243,.22)}
.btn-ghost:hover{border-color:rgba(242,245,243,.45); transform:translateY(-2px)}
.btn-dark{background:rgba(16,20,19,.65); border-color:rgba(242,245,243,.18)}
.btn-dark:hover{border-color:rgba(242,245,243,.35); transform:translateY(-2px)}
.btn-sm{padding:12px 16px; font-size:14px}

.header{
  position:fixed; top:0; left:0; right:0; z-index:50;
  transition:background .25s ease, border-color .25s ease;
  background:transparent;
  border-bottom:1px solid transparent;
}
.header.scrolled{background:rgba(7,8,7,.72); backdrop-filter: blur(14px); border-color:rgba(242,245,243,.10)}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand img{height:34px; width:auto}
.navlinks{display:none; align-items:center; gap:22px; font-weight:500; color:rgba(242,245,243,.9)}
.navlinks a{opacity:.86; transition:opacity .2s ease}
.navlinks a:hover{opacity:1}
.navcta{display:none; align-items:center; gap:10px}
.burger{display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:12px; border:1px solid rgba(242,245,243,.16); background:rgba(16,20,19,.45)}
.burger svg{width:22px; height:22px}
@media (min-width:980px){
  .navlinks,.navcta{display:flex}
  .burger{display:none}
  .brand img{height:38px}
}

.drawer{
  position:fixed; top:0; right:-100%; width:min(420px,92vw); height:100%;
  background:rgba(7,8,7,.92); backdrop-filter: blur(14px);
  border-left:1px solid rgba(242,245,243,.10);
  z-index:60; transition:right .28s ease;
  padding:18px;
}
.drawer.open{right:0}
.drawer-top{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:8px 6px 18px}
.drawer-links{display:grid; gap:10px; padding:6px}
.drawer-links a{
  padding:14px 14px; border-radius:14px; border:1px solid rgba(242,245,243,.12);
  background:rgba(16,20,19,.35)
}
.drawer-links a:hover{border-color:rgba(242,245,243,.28)}
.backdrop{
  position:fixed; inset:0; background:rgba(0,0,0,.55);
  opacity:0; pointer-events:none; transition:opacity .25s ease; z-index:55;
}
.backdrop.open{opacity:1; pointer-events:auto}

.hero{
  min-height:100vh;
  display:grid;
  align-items:end;
  padding-top:76px;
  position:relative;
}
.hero-slider{position:absolute; inset:0; overflow:hidden}
.slide{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0; transform:scale(1.02);
  transition:opacity .9s ease, transform 2s ease;
}
.slide.active{opacity:1; transform:scale(1)}
.hero-overlay{position:absolute; inset:0; background:linear-gradient(180deg, rgba(7,8,7,.35) 0%, rgba(7,8,7,.68) 55%, rgba(7,8,7,.88) 100%)}
.hero-content{position:relative; padding:56px 0 56px}
.hero-grid{display:grid; gap:22px; max-width:760px}
.hero-actions{display:flex; flex-wrap:wrap; gap:12px; margin-top:10px}
.kicker{display:flex; gap:10px; flex-wrap:wrap; align-items:center}

.grid-3{display:grid; gap:18px}
@media (min-width:880px){ .grid-3{grid-template-columns:repeat(3,1fr); gap:22px} }
.grid-2{display:grid; gap:18px}
@media (min-width:980px){ .grid-2{grid-template-columns:1.15fr .85fr; gap:26px} }

.card{
  border:1px solid rgba(242,245,243,.12);
  background:rgba(16,20,19,.55);
  border-radius:var(--radius);
  box-shadow:0 0 0 rgba(0,0,0,0);
  overflow:hidden;
  transition:transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.card:hover{transform:translateY(-8px); box-shadow:var(--shadow); border-color:rgba(242,245,243,.20)}
.card .pad{padding:18px}
@media (min-width:900px){ .card .pad{padding:22px} }

.thumb{
  aspect-ratio: 16/10;
  overflow:hidden;
}
.thumb img{
  width:100%; height:100%; object-fit:cover;
  transform:scale(1);
  transition:transform .35s ease;
}
.card:hover .thumb img{transform:scale(1.05)}
.meta{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
.price{font-weight:800; color:var(--gold)}
.list{display:grid; gap:10px; margin-top:14px}
.item{display:flex; align-items:flex-start; gap:10px; color:rgba(242,245,243,.86)}
.dot{width:8px; height:8px; border-radius:99px; background:var(--gold); margin-top:7px}

.split{
  display:grid; gap:18px; align-items:center;
}
@media (min-width:980px){ .split{grid-template-columns:1fr 1fr; gap:32px} }
.split.reverse{direction:rtl}
.split.reverse > *{direction:ltr}
.frame{
  border-radius:24px;
  border:1px solid rgba(242,245,243,.12);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.frame img{width:100%; height:100%; object-fit:cover}

.gallery{
  display:grid; gap:12px;
  grid-template-columns:repeat(2,1fr);
}
@media (min-width:980px){ .gallery{grid-template-columns:repeat(4,1fr); gap:14px} }
.gallery a{border-radius:18px; overflow:hidden; border:1px solid rgba(242,245,243,.12); background:rgba(16,20,19,.45)}
.gallery img{width:100%; height:100%; object-fit:cover; aspect-ratio:1/1}

.footer{
  border-top:1px solid rgba(242,245,243,.10);
  background:#070807;
}
.footer-grid{
  display:grid; gap:18px; padding:56px 0;
}
@media (min-width:980px){ .footer-grid{grid-template-columns:1.2fr 1fr 1fr 1fr; gap:26px} }
.small{font-size:14px; color:rgba(242,245,243,.72); line-height:1.7}
.footlinks{display:grid; gap:10px}
.footlinks a{opacity:.78}
.footlinks a:hover{opacity:1}
.footer-bottom{
  border-top:1px solid rgba(242,245,243,.10);
  padding:16px 0;
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px;
}

.page-hero{
  padding-top:120px;
  padding-bottom:44px;
  border-bottom:1px solid rgba(242,245,243,.10);
  background: radial-gradient(900px 420px at 15% 20%, rgba(201,162,77,.14), transparent 60%),
              radial-gradient(900px 420px at 85% 0%, rgba(47,79,62,.16), transparent 60%);
}
.page-hero .container{display:grid; gap:14px}
.breadcrumb{color:rgba(242,245,243,.68); font-size:14px}

.form{
  display:grid; gap:12px;
}
.input, .textarea{
  width:100%;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid rgba(242,245,243,.14);
  background:rgba(16,20,19,.45);
  color:var(--text);
  outline:none;
}
.textarea{min-height:120px; resize:vertical}

.reveal{opacity:0; transform:translateY(16px)}
.reveal.in{opacity:1; transform:translateY(0); transition:opacity .8s ease, transform .8s ease}
.reveal.left{transform:translateX(-16px)}
.reveal.right{transform:translateX(16px)}
.reveal.left.in,.reveal.right.in{transform:translateX(0)}

.fade-page{
  opacity:0;
  transition:opacity .22s ease;
}
.fade-page.ready{opacity:1}
.fade-page.out{opacity:0}

.toast{
  position:fixed; bottom:18px; left:50%; transform:translateX(-50%);
  background:rgba(16,20,19,.92); border:1px solid rgba(242,245,243,.14);
  border-radius:999px; padding:12px 16px; color:rgba(242,245,243,.9);
  box-shadow:var(--shadow); z-index:80;
  opacity:0; pointer-events:none; transition:opacity .25s ease, transform .25s ease;
}
.toast.show{opacity:1; transform:translateX(-50%) translateY(-4px)}