
:root{
  --bg:#fdfcfb;
  --text:#101114;
  --muted:#5b5f6a;
  --card:#ffffff;
  --line:#ece9e2;
  --gold:#D4AF37;
  --dark:#0b0b0c;
  --shadow: 0 18px 45px rgba(16,17,20,.10);
  --radius: 18px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:"Lato",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}
h1,h2,h3{font-family:"Playfair Display", Georgia, serif; letter-spacing:.2px}
a{color:inherit; text-decoration: none}
a:hover{color:var(--gold)}
.container{max-width:1120px;margin:0 auto;padding:0 18px}
.muted{color:var(--muted)}
.kicker{letter-spacing:.24em;text-transform:uppercase;font-weight:700;font-size:.78rem;color:rgba(255,255,255,.85)}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  padding:14px 18px; border-radius:14px; border:1px solid transparent;
  font-weight:700; letter-spacing:.02em; transition:transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:active{transform:translateY(1px)}
.btn--gold{background:var(--gold); color:white}
.btn--gold:hover{background:#caa22e; color:white}
.btn--ghost{background:transparent; border-color:rgba(255,255,255,.45); color:white}
.btn--ghost:hover{background:white; color:var(--dark)}
.btn--dark{background:var(--dark); color:white}
.btn--dark:hover{background:var(--gold); color:white}
.btn--small{padding:10px 14px;border-radius:12px;font-size:.92rem}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(12px);
  background:rgba(253,252,251,.82);
  border-bottom:1px solid var(--line);
}
.header__inner{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px 0}
.brand{display:flex;align-items:center;gap:10px;font-weight:800}
.brand__logo{width:36px;height:36px;object-fit:contain}
.brand__text{font-size:1.15rem; letter-spacing:.02em}
.nav{display:flex;align-items:center;gap:14px}
.nav__link{padding:10px 10px;border-radius:12px;font-weight:700;font-size:.92rem;letter-spacing:.06em;text-transform:uppercase;color:#2b2f38}
.nav__link.is-active{background:rgba(212,175,55,.12); color:#1b1d22}
.nav__toggle{
  display:none; border:0; background:transparent; padding:10px; border-radius:12px;
}
.nav__toggle span{display:block;width:22px;height:2px;background:#1b1d22;margin:5px 0;border-radius:2px}

@media (max-width: 860px){
  .nav__toggle{display:block}
  .nav{
    position:fixed; left:12px; right:12px; top:64px;
    background:rgba(253,252,251,.98);
    border:1px solid var(--line);
    border-radius:18px;
    padding:10px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    box-shadow:var(--shadow);
  }
  .nav.is-open{display:flex}
  .nav__link{padding:12px 12px}
  .nav a.btn{width:100%}
}

.hero{
  min-height: calc(100vh - 64px);
  display:grid;
  place-items:center;
  padding:42px 0;
  color:white;
  position:relative;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(120deg, rgba(11,11,12,.72), rgba(11,11,12,.58)),
    url('img/hero.jpg');
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.hero__content{position:relative; z-index:1; text-align:center; max-width:860px}
.hero__content h1{font-size: clamp(2.25rem, 6vw, 4.6rem); margin:12px 0 10px}
.hero__content p{font-size: clamp(1rem, 2.1vw, 1.2rem); color:rgba(255,255,255,.86); margin:0 auto 22px; max-width:62ch}
.hero__cta{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

.section{padding:70px 0}
.section--alt{background: #f3f1ec; border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section__head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:22px}
.section__head h2{margin:0;font-size: clamp(1.6rem, 3.5vw, 2.4rem)}
.section__head .muted{max-width:62ch}

.grid{display:grid;gap:16px}
.grid--3{grid-template-columns: repeat(3, minmax(0,1fr))}
.grid--2{grid-template-columns: repeat(2, minmax(0,1fr))}
@media (max-width: 900px){.grid--3{grid-template-columns:1fr}}
@media (max-width: 900px){.grid--2{grid-template-columns:1fr}}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(16,17,20,.06);
}
.card__img{width:100%; height:190px; object-fit:cover; display:block}
.card__body{padding:16px 16px 18px}
.card__title{margin:0 0 6px;font-size:1.35rem}
.badge{display:inline-flex;align-items:center;gap:8px;padding:8px 10px;border-radius:999px;background:rgba(212,175,55,.12);border:1px solid rgba(212,175,55,.22);font-weight:700}
.badge svg{width:16px;height:16px;fill:var(--gold)}

.pricebox{padding:16px}
.price{display:flex;align-items:baseline;justify-content:space-between;gap:16px;padding:12px 0;border-bottom:1px dashed #d9d4c8}
.price:last-child{border-bottom:0}
.price__name{font-weight:800}
.price__meta{color:var(--muted); font-size:.95rem}
.price__val{font-weight:900}
.note{font-size:.95rem;color:var(--muted); margin-top:10px}

.split{display:grid;grid-template-columns: 1.1fr .9fr;gap:18px;align-items:center}
@media (max-width: 900px){.split{grid-template-columns:1fr}}
.portrait{border-radius:var(--radius); border:1px solid var(--line); box-shadow: var(--shadow); overflow:hidden}
.portrait img{width:100%;height:auto;display:block}

.footer{background:#060607; color:rgba(255,255,255,.82); padding:46px 0 22px; position:relative}
.footer a{color:rgba(255,255,255,.88)}
.footer__grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:16px}
.footer__title{font-weight:900;margin-bottom:8px;color:white}
.footer__brand{font-family:"Playfair Display", Georgia, serif; font-size:1.6rem; color:white}
.footer__bottom{margin-top:22px;padding-top:16px;border-top:1px solid rgba(255,255,255,.12);font-size:.85rem;color:rgba(255,255,255,.62)}
@media (max-width: 900px){.footer__grid{grid-template-columns:1fr}}

.callfab{
  position:fixed; right:14px; bottom:14px; z-index:80;
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background:var(--gold);
  color:white;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}
.callfab svg{width:18px;height:18px;fill:white}
.callfab:hover{background:#caa22e; color:white}
@media (min-width: 861px){
  .callfab{display:none}
}

.breadcrumbs{font-size:.92rem;color:var(--muted); margin:16px 0 0}
.breadcrumbs a{color:var(--muted); text-decoration:underline; text-underline-offset:3px}
