:root{
  --bg: #0d1310;
  --card: rgba(255,255,255,0.92);
  --card-2: rgba(255,255,255,0.86);
  --text: #122017;
  --muted: rgba(18,32,23,0.72);

  --green: #2c5a3f;
  --green-2: #193a29;

  --gold: #c9a24b;
  --gold-2: #9a7b2d;

  --shadow: 0 18px 45px rgba(0,0,0,0.20);
  --shadow-soft: 0 10px 25px rgba(0,0,0,0.14);

  --radius: 18px;
  --radius-sm: 14px;

  --container: 1120px;

  /* Background “switch”:
     Put your chosen texture in Assets/backgrounds/ and name it bgr-primary.jpg */
  --bgr-primary: url("Assets/backgrounds/bgr-primary.jpg");
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Texture base */
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.94)),
    var(--bgr-primary);
  background-repeat: repeat, repeat;
  background-size: auto, 820px;
  background-attachment: fixed, fixed;
}

img{
  max-width:100%;
  display:block;
}

a{color:inherit; text-decoration:none}
.container{
  width:min(var(--container), calc(100% - 36px));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(201,162,75,0.16);
  border:1px solid rgba(201,162,75,0.35);
}
.brand-text{display:flex; flex-direction:column; line-height:1.05}
.brand-name{
  font-family: Fraunces, serif;
  font-weight:750;
  letter-spacing:0.2px;
  font-size:18px;
}
.brand-sub{
  font-size:12px;
  color: rgba(18,32,23,0.70);
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  font-weight:600;
  font-size:14px;
}
.nav a{
  padding:10px 10px;
  border-radius: 12px;
  transition: background .15s ease;
}
.nav a:hover{ background: rgba(44,90,63,0.08); }

.nav-cta{
  background: rgba(44,90,63,0.12);
  border:1px solid rgba(44,90,63,0.25);
}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.75);
  box-shadow: var(--shadow-soft);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px;
  margin:6px 10px;
  background: rgba(18,32,23,0.85);
  border-radius:2px;
}

.hero{
  position:relative;
  overflow:hidden;
  min-height: 72vh;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding-bottom: 22px;
}

.hero-slider{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  opacity:0;
  transform: scale(1.02);
  transition: opacity 500ms ease, transform 900ms ease;
  filter: saturate(1.06) contrast(1.05);
}
.hero-slide.is-active{
  opacity:1;
  transform: scale(1.00);
}

/* hero overlay for readability */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(80% 60% at 25% 70%, rgba(0,0,0,0.38), rgba(0,0,0,0.05) 60%),
    linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.45));
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  padding: 70px 0 0;
}
.hero-card{
  max-width: 620px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  padding: 26px 24px;
}
.eyebrow{
  margin:0 0 10px;
  font-weight:700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(25,58,41,0.85);
}
.hero h1{
  margin:0 0 10px;
  font-family: Fraunces, serif;
  font-weight: 750;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.05;
}
.lead{
  margin:0 0 18px;
  color: rgba(18,32,23,0.76);
  font-size: 16px;
  line-height: 1.55;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  transition: transform .12s ease, background .12s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn.primary{
  background: rgba(44,90,63,0.95);
  color:white;
  border-color: rgba(44,90,63,0.65);
}
.btn.primary:hover{ background: rgba(44,90,63,1); }

.btn.ghost{
  background: rgba(201,162,75,0.14);
  border-color: rgba(201,162,75,0.35);
}

.hero-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.badge{
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.08);
}

.hero-controls{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-top: 14px;
}
.pill{
  width:44px; height:44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.28);
  color: rgba(255,255,255,0.95);
  font-weight:900;
  cursor:pointer;
}
.dots{
  display:flex;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.22);
}
.dot{
  width:10px; height:10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.35);
  cursor:pointer;
}
.dot.is-active{
  background: rgba(255,255,255,0.92);
}

.section{
  padding: 66px 0;
}
.section.alt{
  background:
    linear-gradient(180deg, rgba(44,90,63,0.05), rgba(255,255,255,0.0));
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.section-head{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom: 22px;
}
.section-head h2{
  margin:0;
  font-family: Fraunces, serif;
  font-weight: 750;
  font-size: 30px;
  letter-spacing: 0.2px;
}
.section-head p{
  margin:0;
  color: var(--muted);
  max-width: 780px;
  line-height:1.6;
}

.grid{
  display:grid;
  gap: 14px;
}
.grid.products{
  grid-template-columns: repeat( auto-fit, minmax(220px, 1fr) );
}
.grid.two{
  grid-template-columns: repeat( auto-fit, minmax(260px, 1fr) );
}

.card{
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
.card img{
  width:100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.card-body{
  padding: 14px 14px 16px;
}
.card-body h3{
  margin: 0 0 6px;
  font-family: Fraunces, serif;
  font-weight: 650;
  letter-spacing: 0.2px;
}
.card-body p{
  margin:0;
  color: var(--muted);
  line-height: 1.55;
}

.product img{
  aspect-ratio: 1/1;
  object-fit: cover;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}
.gallery img{
  width:100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  background: rgba(255,255,255,0.4);
}

.contact{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.muted{ color: var(--muted); }

.contact-list{
  list-style:none;
  padding:0;
  margin: 12px 0 0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.contact-list li{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius: 14px;
  background: rgba(201,162,75,0.10);
  border: 1px solid rgba(201,162,75,0.18);
  font-weight: 600;
}

.footer{
  margin-top: 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  color: rgba(18,32,23,0.70);
}
.to-top{
  padding:10px 12px;
  border-radius: 14px;
  background: rgba(44,90,63,0.08);
  border: 1px solid rgba(44,90,63,0.18);
  font-weight: 700;
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  background: rgba(0,0,0,0.72);
  z-index:100;
  padding: 24px;
}
.lightbox.is-open{ display:grid; }
.lightbox-img{
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  background: rgba(255,255,255,0.06);
}
.lightbox-close{
  position:absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.35);
  color: white;
  font-size: 18px;
  font-weight: 900;
  cursor:pointer;
}

/* Mobile nav */
@media (max-width: 860px){
  .nav-toggle{ display:block; }
  .nav{
    position:absolute;
    right: 18px;
    top: 64px;
    display:none;
    flex-direction:column;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow);
    min-width: 200px;
  }
  .nav.is-open{ display:flex; }
  .nav a{ width:100%; }
}
