
:root{
  --bg:#f5f2ee;
  --surface:#ffffff;
  --text:#171513;
  --muted:#6f675f;
  --line:rgba(23,21,19,.1);
  --accent:#b68d62;
  --accent-2:#1d1a17;
  --shadow:0 20px 60px rgba(0,0,0,.10);
  --radius:24px;
  --container:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#f8f5f1 0%,#f5f2ee 100%);
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
.container{width:min(calc(100% - 40px),var(--container));margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter:blur(18px);
  background:rgba(250,247,243,.75);
  border-bottom:1px solid rgba(255,255,255,.4);
}
.nav-wrap{
  width:min(calc(100% - 32px),var(--container));
  margin:0 auto;
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;
  font-weight:700;
  letter-spacing:.02em;
}
.main-nav{
  display:flex;
  gap:24px;
  color:var(--muted);
}
.main-nav a:hover,.text-link:hover{color:var(--text)}
.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.mini-contact{
  color:var(--muted);
  font-size:.95rem;
}
.lang-toggle{
  border:1px solid var(--line);
  background:rgba(255,255,255,.75);
  color:var(--text);
  border-radius:999px;
  padding:10px 14px;
  font:inherit;
  cursor:pointer;
}

.hero{
  position:relative;
  min-height:92vh;
  display:grid;
  place-items:center;
  overflow:hidden;
}
.hero-slider,.hero-overlay,.hero-content{position:absolute;inset:0}
.hero-slider{z-index:0}
.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.04);
  transition:opacity .9s ease, transform 3.2s ease;
}
.slide.active{opacity:1;transform:scale(1)}
.hero-overlay{
  z-index:1;
  background:
    linear-gradient(180deg,rgba(0,0,0,.25) 0%,rgba(0,0,0,.38) 100%),
    radial-gradient(circle at top right,rgba(182,141,98,.25),transparent 30%);
}
.hero-content{
  z-index:2;
  inset:auto;
  width:min(calc(100% - 40px),900px);
  padding:60px 0 50px;
  color:#fff;
  text-align:center;
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.75rem;
  opacity:.86;
  margin:0 0 18px;
}
.hero h1,.section h2{
  font-family:'Cormorant Garamond',serif;
  line-height:.95;
}
.hero h1{
  font-size:clamp(3.4rem,8vw,6.8rem);
  margin:0;
}
.hero-text{
  width:min(100%,720px);
  margin:18px auto 0;
  font-size:1.08rem;
  line-height:1.75;
  opacity:.94;
}
.hero-buttons{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:600;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 12px 30px rgba(182,141,98,.25);
}
.btn-secondary{
  background:rgba(255,255,255,.14);
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
  backdrop-filter:blur(10px);
}
.btn-tertiary{
  background:#fff;
  border:1px solid var(--line);
}
.contact-line{
  margin-top:20px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  opacity:.92;
}
.slider-dots{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:10px;
}
.dot{
  width:10px;height:10px;border-radius:50%;
  border:none;cursor:pointer;background:rgba(255,255,255,.4)
}
.dot.active{background:#fff}

.section{padding:92px 0}
.section-split{padding-top:72px}
.split-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:40px;
  align-items:start;
}
.section h2{
  font-size:clamp(2.3rem,5vw,4rem);
  margin:0;
}
.rich-copy p,.product-card p,.faq-list p,.site-footer p{
  line-height:1.75;
  color:var(--muted);
  margin:0 0 16px;
}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin-bottom:30px;
}
.text-link{
  color:var(--accent-2);
  font-weight:600;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.product-card{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.55);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.product-image-wrap{
  aspect-ratio: 4 / 5;
  overflow:hidden;
}
.product-image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}
.product-card:hover .product-image-wrap img{transform:scale(1.04)}
.product-content{padding:22px}
.product-kicker{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.72rem;
  color:var(--accent)!important;
  margin-bottom:10px!important;
}
.product-card h3{
  font-family:'Cormorant Garamond',serif;
  font-size:1.9rem;
  margin:0 0 8px;
}
.muted{color:#8a8076!important}

.social-section{background:linear-gradient(180deg,rgba(255,255,255,.45),rgba(255,255,255,.25))}
.social-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:32px;
  align-items:center;
}
.masonry{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.masonry img{
  border-radius:22px;
  box-shadow:var(--shadow);
  width:100%;
  height:100%;
  object-fit:cover;
}
.masonry img:first-child{grid-row:span 2; min-height:520px}

.faq-list{
  display:grid;
  gap:14px;
}
.faq-list details{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:20px 22px;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.faq-list summary{
  cursor:pointer;
  font-weight:600;
  list-style:none;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list details p{margin:14px 0 0}

.cta-card{
  background:#191613;
  color:#fff;
  border-radius:32px;
  padding:34px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  box-shadow:var(--shadow);
}
.cta-card h2{margin-top:0;color:#fff}
.cta-actions{display:flex;gap:14px;flex-wrap:wrap}

.site-footer{
  padding:32px 0 60px;
  border-top:1px solid var(--line);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:24px;
}
.brand-footer{display:inline-block;margin-bottom:10px}

.wa-floating{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:40;
  background:#25D366;
  color:#fff;
  border-radius:999px;
  padding:14px 18px;
  font-weight:700;
  box-shadow:0 12px 28px rgba(0,0,0,.22);
}

@media (max-width: 1024px){
  .main-nav{display:none}
  .split-grid,.social-grid,.footer-grid,.cta-card{grid-template-columns:1fr}
  .product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (max-width: 720px){
  .nav-wrap{min-height:68px}
  .mini-contact{display:none}
  .hero{min-height:88svh}
  .hero-content{padding:40px 0 36px}
  .hero-text{font-size:1rem}
  .section{padding:72px 0}
  .product-grid{grid-template-columns:1fr}
  .masonry{grid-template-columns:1fr}
  .masonry img:first-child{grid-row:auto; min-height:auto}
  .btn{width:100%}
  .hero-buttons,.cta-actions,.social-buttons{display:grid;grid-template-columns:1fr}
  .wa-floating{bottom:14px;right:14px}
}
