
:root{
  --bg:#ffffff;
  --text:#171717;
  --muted:#666666;
  --line:#e8e1d8;
  --soft:#fbf7f2;
  --accent:#cda57c;
  --accent-deep:#8d6b47;
  --shadow:0 20px 60px rgba(37,26,17,.12);
  --radius:26px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(205,165,124,.12), transparent 28%),
    radial-gradient(circle at right 20%, rgba(205,165,124,.08), transparent 20%),
    var(--bg);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font:inherit}
.site-shell{overflow:hidden}
.container{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
}
.topbar{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(14px);
  background:rgba(255,255,255,.84);
  border-bottom:1px solid rgba(232,225,216,.9);
}
.topbar__inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:-.03em;
}
.brand__mark{
  width:14px;
  height:14px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--accent),var(--accent-deep));
  box-shadow:0 0 0 6px rgba(205,165,124,.15);
}
.brand__text{font-size:1rem}
.nav{
  display:flex;
  gap:28px;
  color:var(--muted);
  font-weight:600;
}
.nav a:hover{color:var(--text)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn--dark{
  background:linear-gradient(135deg,#1d1d1d,#383838);
  color:#fff;
  box-shadow:0 16px 32px rgba(0,0,0,.16);
}
.btn--light{
  background:#fff;
  border-color:var(--line);
  color:var(--text);
}
.btn--lg{min-height:60px;padding:0 30px}
.btn--sm{min-height:46px;padding:0 18px}
.hero{
  padding:54px 0 72px;
}
.hero__grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:40px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.88rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--accent-deep);
  margin-bottom:16px;
}
.hero h1{
  margin:0;
  font-size:clamp(2.7rem,6vw,5.4rem);
  line-height:.97;
  letter-spacing:-.06em;
  max-width:9ch;
}
.hero h1 span{color:var(--accent-deep)}
.hero__lead{
  margin:22px 0 0;
  font-size:1.25rem;
  color:var(--muted);
  max-width:32rem;
}
.hero__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:30px 0 28px;
}
.hero__facts{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.fact-card{
  background:rgba(255,255,255,.75);
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
  box-shadow:var(--shadow);
}
.fact-card__label{
  display:block;
  color:var(--muted);
  font-size:.9rem;
  margin-bottom:10px;
}
.fact-card strong{
  font-size:1rem;
  line-height:1.35;
  letter-spacing:-.02em;
}
.hero__visual{
  position:relative;
  min-height:640px;
}
.hero-card{
  position:absolute;
  overflow:hidden;
  border-radius:32px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.hero-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-card--main{
  inset:20px 24px 80px 0;
}
.hero-card--floating{
  width:46%;
  aspect-ratio:0.72;
  right:0;
  bottom:0;
}
.section{padding:36px 0 84px}
.section--white{background:#fff}
.section--soft{background:linear-gradient(180deg,#fff, var(--soft))}
.section-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:28px;
}
.section-heading h2,
.cta h2{
  margin:0;
  font-size:clamp(2rem,4vw,3.2rem);
  letter-spacing:-.05em;
}
.gallery{
  display:grid;
  grid-template-columns:1.15fr .85fr .85fr;
  gap:18px;
  grid-auto-rows:280px;
}
.gallery__item{
  border:none;
  padding:0;
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  cursor:pointer;
  border:1px solid var(--line);
}
.gallery__item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}
.gallery__item:hover img{transform:scale(1.03)}
.gallery__item--wide{
  grid-row:span 2;
}
.gallery__item--tall{
  grid-row:span 2;
}
.info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.info-block{
  padding:30px;
  border-radius:28px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.info-block h3{
  margin:0;
  font-size:clamp(1.55rem,2.5vw,2.2rem);
  line-height:1.08;
  letter-spacing:-.05em;
}
.info-block .btn{margin-top:22px}
.cta__box{
  background:linear-gradient(135deg,#1b1b1b,#2f2f2f);
  color:#fff;
  border-radius:32px;
  padding:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  box-shadow:0 26px 60px rgba(0,0,0,.18);
}
.cta__box p{
  margin:12px 0 0;
  color:rgba(255,255,255,.75);
  font-size:1.08rem;
}
.footer{
  padding:28px 0 110px;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.footer p{margin:0}
.floating-call{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:25;
  min-height:60px;
  padding:0 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:linear-gradient(135deg,var(--accent),var(--accent-deep));
  color:#fff;
  font-weight:800;
  letter-spacing:-.02em;
  box-shadow:0 18px 40px rgba(141,107,71,.32);
}
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(14,14,14,.88);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  opacity:0;
  visibility:hidden;
  transition:opacity .25s ease, visibility .25s ease;
  z-index:40;
}
.lightbox.is-open{
  opacity:1;
  visibility:visible;
}
.lightbox__figure{
  margin:0;
  width:min(100%, 1020px);
}
.lightbox__figure img{
  width:100%;
  max-height:80vh;
  object-fit:contain;
  border-radius:24px;
  background:#fff;
}
.lightbox__figure figcaption{
  color:#fff;
  text-align:center;
  margin-top:14px;
}
.lightbox__close{
  position:absolute;
  top:16px;
  right:16px;
  width:52px;
  height:52px;
  border:none;
  border-radius:50%;
  background:#fff;
  color:#111;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
}
@media (max-width: 980px){
  .nav{display:none}
  .hero__grid,
  .info-grid{
    grid-template-columns:1fr;
  }
  .hero__visual{
    min-height:520px;
    order:-1;
  }
  .hero-card--main{inset:0 48px 80px 0}
  .hero-card--floating{width:43%}
  .gallery{
    grid-template-columns:1fr 1fr;
    grid-auto-rows:240px;
  }
}
@media (max-width: 640px){
  .container{width:min(100% - 22px, 1120px)}
  .topbar__inner{min-height:74px}
  .brand__text{font-size:.95rem}
  .btn--sm{display:none}
  .hero{padding:26px 0 54px}
  .hero__lead{font-size:1.07rem}
  .hero__facts{grid-template-columns:1fr}
  .hero__visual{min-height:360px}
  .hero-card--main{inset:0 32px 50px 0}
  .hero-card--floating{width:44%; bottom:6px}
  .gallery{
    grid-template-columns:1fr;
    grid-auto-rows:260px;
  }
  .gallery__item--wide,
  .gallery__item--tall{grid-row:span 1}
  .section{padding:24px 0 62px}
  .info-block{padding:24px}
  .cta__box{
    padding:26px;
    flex-direction:column;
    align-items:flex-start;
  }
  .footer{padding-bottom:96px}
  .floating-call{
    left:12px;
    right:12px;
    bottom:12px;
  }
}
