:root{
  --bg:#f6f3ef;
  --paper:#ffffff;
  --ink:#1e1e1e;
  --muted:#5b5b5b;
  --gold:#b58b2a;
  --gold2:#d7b45a;
  --line:rgba(0,0,0,.09);
  --shadow:0 16px 40px rgba(0,0,0,.10);
  --r:22px;
  --max:1160px;
}
*{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(--ink);
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(181,139,42,.16), transparent 55%),
    radial-gradient(800px 520px at 10% 20%, rgba(215,180,90,.10), transparent 58%),
    var(--bg);
}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.header{
  position:sticky; top:0; z-index:40;
  background:rgba(246,243,239,.82);
  backdrop-filter: blur(10px);
  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:12px}
 .brand__text{
   display:flex;
   flex-direction:column;
   gap:4px;
   line-height:1;
 }

 .brand__name{
   font-family:"Playfair Display", Georgia, serif;
   font-weight:700;
   font-size:22px;
   letter-spacing:.06em;
   text-transform:uppercase;
   /* Gold-like text to match the logo */
   background: linear-gradient(180deg, var(--gold2), var(--gold));
   -webkit-background-clip:text;
   background-clip:text;
   color:transparent;
   text-shadow: 0 1px 0 rgba(0,0,0,.08);
 }

 .brand__tagline{
   font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
   font-weight:800;
   font-size:12px;
   letter-spacing:.14em;
   text-transform:uppercase;
   color:rgba(0,0,0,.62);
   align-self:center;
 }

@media (max-width: 520px){
  .brand__name{font-size:18px; letter-spacing:.05em}
  .brand__tagline{font-size:11px; letter-spacing:.12em}
}
.brand img{height:80px; width:auto; object-fit:contain}
.nav{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.nav a{padding:10px 12px; border-radius:999px; font-weight:800; font-size:14px; color:rgba(0,0,0,.74)}
.nav a:hover,.nav a.active{background:rgba(181,139,42,.10); color:rgba(0,0,0,.92)}
.actions{display:flex; align-items:center; gap:10px}
.btnSmall{
  padding:10px 12px; border-radius:999px;
  border:1px solid var(--line); background:#fff; font-weight:900; cursor:pointer;
  display:flex;
  align-items:center;
  gap:8px;
}
.burger{display:none; width:44px; height:44px; border-radius:14px; border:1px solid var(--line); background:#fff; cursor:pointer}

.langToggle img{
  width:22px;
  height:auto;
  display:block;
}
.langToggle .flag{display:block}

.hero{
  position:relative;
  margin:0;               /* remove centered card spacing */
  border-radius:0;       /* remove rounded frame */
  overflow:hidden;
  box-shadow:none;       /* remove card shadow */
  border:none;           /* remove card border */
  min-height:100vh;      /* full viewport height */
}
.hero__bg{
  position:absolute; inset:0;
  /* Full-screen background image */
  background: url("assets/hero.png") center / cover no-repeat;
}

/* Keep the covering/overlay part the same, but as a separate layer above the image */
.hero__bg::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(
    90deg,
    rgba(246,243,239,.94) 0%,
    rgba(246,243,239,.78) 10%,
    rgba(246,243,239,.40) 40%,
    rgba(246,243,239,.20) 100%
  );
}
.hero__watermark{
  position:absolute; right:-36px; top:-36px;
  width:min(520px, 60vw);
  opacity:0.12;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.10));
}
.hero__inner{
  position:relative;
  padding:200px 34px; /* push overlay content lower */
  display:grid; grid-template-columns: 1.05fr .95fr;
  gap:16px; align-items:center;
}
.kicker{color:var(--gold); letter-spacing:.14em; text-transform:uppercase; font-size:12px; font-weight:900; margin-bottom:10px}
.h1{font-family:"Playfair Display", Georgia, serif; font-size:clamp(34px,4vw,54px); line-height:1.06; margin:0 0 10px}
.lead{color:rgba(0,0,0,.70); font-size:16px; line-height:1.8; margin:0 0 18px; max-width:60ch}
.cta{display:flex; gap:10px; flex-wrap:wrap}
.btn{
  padding:12px 16px; border-radius:16px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff; font-weight:900; font-size:14px;
}
.btn.primary{
  border-color: rgba(181,139,42,.35);
  background:linear-gradient(180deg, rgba(215,180,90,.95), rgba(181,139,42,.92));
  color:#2a1e06;
}
.metrics{display:grid; gap:12px; justify-items:end}
.metric{width:min(360px,100%); background:rgba(255,255,255,.86); border:1px solid rgba(0,0,0,.07); border-radius:18px; padding:14px}
.metric b{display:block; font-size:14px; margin-bottom:4px}
.metric span{display:block; color:rgba(0,0,0,.62); font-size:13px; line-height:1.6}

.section{padding:58px 0}
.section h2{font-family:"Playfair Display", Georgia, serif; font-size:32px; margin:0 0 12px}

.categoryTitle{
  font-family:"Playfair Display", Georgia, serif;
  font-size:26px;
  margin:24px 0 12px;
  letter-spacing:.04em;
  color:var(--ink);
}

.categoryTitle span{
  display:block;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:6px;
}
.sub{color:rgba(0,0,0,.66); line-height:2; margin:0 0 18px; max-width:150ch}

.split{display:grid; grid-template-columns: 1.05fr .95fr; gap:16px; align-items:start}
.panel{background:rgba(255,255,255,.90); border:1px solid rgba(0,0,0,.07); border-radius:var(--r); padding:18px}
.panel h3{margin:0 0 10px; font-size:16px}
.panel p{margin:0; color:rgba(0,0,0,.64); line-height:1.8}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.pill{padding:9px 12px; border-radius:999px; border:1px solid rgba(0,0,0,.08); background:#fff; color:rgba(0,0,0,.72); font-weight:900; font-size:13px; word-spacing: .16em;}

.products{display:grid; grid-template-columns:repeat(5,1fr); gap:12px}
.product{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.07);
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.product__img{
  height:110px;
  background: linear-gradient(135deg, rgba(215,180,90,.18), rgba(255,255,255,.35));
  border-bottom:1px solid rgba(0,0,0,.06);
  position:relative;
}
.product__img img{width:100%; height:100%; object-fit:cover; display:block}
.product__body{padding:12px}
.product__title{font-weight:950; margin:0 0 4px}
.product__text{margin:0; color:rgba(0,0,0,.62); font-size:12px; line-height:1.55}
.product__tag{margin-top:8px; display:inline-block; padding:6px 10px; border-radius:999px; border:1px solid rgba(181,139,42,.25); background:rgba(215,180,90,.16); color:#2a1e06; font-weight:900; font-size:11px}

.note{margin-top:14px; padding:12px 14px; border-radius:18px; border:1px solid rgba(181,139,42,.25); background:rgba(215,180,90,.16); color:#2a1e06; line-height:1.7; font-size:14px}

.seriesIntro{
  margin:14px 0 12px;
  color:rgba(0,0,0,.66);
  line-height:1.9;
}
.seriesGrid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
.seriesCard{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.07);
  border-radius:18px;
  padding:14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.seriesCard__label{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:900;
  margin-bottom:6px;
}
.seriesCard__name{
  font-weight:950;
  margin:0 0 8px;
  font-size:16px;
}
.seriesCard__desc{
  margin:0;
  color:rgba(0,0,0,.62);
  line-height:1.7;
  font-size:13px;
}
.seriesBadges{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.seriesBadge{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(181,139,42,.25);
  background:rgba(215,180,90,.14);
  color:#2a1e06;
  font-weight:900;
  font-size:12px;
  letter-spacing:.02em;
}

@media (max-width: 980px){
  .seriesGrid{grid-template-columns:1fr}
}

 
.videoWrap{
  margin-top:14px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.07);
  background:rgba(255,255,255,.90);
  box-shadow: var(--shadow);
}
.videoPlayer{
  width:100%;
  height:auto;
  display:block;
  background:#000;
}

/* Wide (landscape) video variant */
.videoPlayer--wide{
  width:100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Small vertical widget version */
.videoWrap--widget{
  width:min(300px, 100%);
  margin-left:auto;
  margin-right:auto;
  transform: translateX(14px);
}
.videoPlayer--widget{
  width:100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.prodMedia{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:16px;
  align-items:start;
  margin-top:14px;
}
@media (max-width: 980px){
  .prodMedia{grid-template-columns:1fr}
}
.gallery{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.tile{
  border-radius:18px; overflow:hidden;
  border:1px solid rgba(0,0,0,.07);
  background:#fff;
  box-shadow: var(--shadow);
}
.tile img{width:100%; height:240px; object-fit:cover; display:block}

.map iframe{width:100%; height:320px; border:0; border-radius:18px}
.footer{
  padding:40px 0; border-top:1px solid var(--line);
  background:rgba(255,255,255,.74);
}
.footerGrid{display:grid; grid-template-columns:1.1fr .7fr 1fr; gap:16px}
.footer img{height:180px}
.footer a{display:block; padding:6px 0; color:rgba(0,0,0,.72); font-weight:800}
.footer a:hover{color:#000}
.small{color:rgba(0,0,0,.60); font-size:13px; line-height:1.7}
.copy{margin-top:14px; padding-top:14px; border-top:1px solid var(--line); display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap}

.wa-fab{
  position:fixed; right:18px; bottom:18px;
  padding:12px 14px; border-radius:999px;
  background:#25D366; color:white; font-weight:950;
  border:1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow);
  opacity:.65;
  cursor:not-allowed;
  pointer-events:none;
}

@media (max-width: 1100px){
  .products{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 980px){
  .hero__inner{grid-template-columns:1fr; padding:54px 18px}
  .metrics{justify-items:start}
  .split{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .nav{display:none}
  .burger{display:inline-flex; align-items:center; justify-content:center}
}

.swatch{margin-top:10px; border-radius:14px; overflow:hidden; border:1px solid rgba(0,0,0,.07)}
.swatch img{width:100%; height:86px; object-fit:cover; display:block}
.swatchLabel{margin-top:6px; font-size:11px; font-weight:900; color:rgba(0,0,0,.58); letter-spacing:.02em}
