:root{
  --bg: #F6F0E6;
  --bg2:#FFFFFF;
  --text:#1e1e1e;
  --muted:#5a5a5a;
  --line: rgba(0,0,0,.10);

  --brand: #C8A247;
  --brand-deep: #8F7330;

  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.10);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:linear-gradient(180deg, var(--bg), #fff);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  width:min(1100px, 92%);
  margin-inline:auto;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  z-index:50;
}

.header-inner{
  display:flex;
  align-items:center;
  gap:16px;
  padding:4px 0;
  position:relative;
}

.brand{
  display:flex;
  align-items:center;
}

.brand-logo{
  height:80px;
  width:auto;
}

.site-nav{
  margin-left:auto;
  display:flex;
  gap:18px;
  align-items:center;
}

.site-nav a{
  padding:10px 10px;
  border-radius:12px;
  color:var(--muted);
  font-weight:700;
}

.site-nav a.active,
.site-nav a:hover{
  color:var(--text);
  background:rgba(0,0,0,.05);
}

.nav-toggle{
  display:none;
  margin-left:auto;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-size:18px;
  cursor:pointer;
}

.nav-dropdown{
  display:none;
}

.header-cta{
  display:none;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .08s ease, opacity .2s ease, background .15s ease;
}

.btn:active{
  transform:translateY(1px);
}

.btn-primary{
  background:linear-gradient(180deg, var(--brand), var(--brand-deep));
  color:#fff;
  box-shadow:var(--shadow);
}

.btn-secondary{
  background:#111;
  color:#fff;
}

.btn-ghost{
  background:rgba(255,255,255,.85);
  border-color:var(--line);
  color:var(--text);
}

/* Sections */
.section{
  padding:44px 0;
}

.section-alt{
  background:rgba(255,255,255,.75);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section-head{
  margin-bottom:18px;
}

.section-head h2{
  margin:0 0 6px;
  font-size:28px;
}

.muted{
  color:var(--muted);
}

.lead{
  font-size:18px;
  color:var(--muted);
  line-height:1.6;
}

h1{
  margin:14px 0 10px;
  font-size:clamp(34px, 4.3vw, 54px);
  line-height:1.05;
}

h2,h3{
  margin:0;
}

/* HERO VIDEO */
.hero-video{
  position:relative;
  width:100%;
  height:100vh;
  min-height:500px;
  overflow:hidden;
  background:#000;
}

.hero-video video{
  position:absolute;
  top:50%;
  left:50%;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:translate(-50%, -50%);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35) 35%, rgba(0,0,0,.55));
}

.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  align-items:center;
}

.hero-wrap{
  position:relative;
  width:100%;
  height:100%;
  min-height:clamp(460px, 70vh, 720px);
}

/* Top area */
.hero-top{
  position:absolute;
  top:280px;      /* move badge down */
  left:160px;     /* move badge left/right */
}

/* Badge */
.hero-badge{
  display:inline-block;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(255,255,255,.85);
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  padding:6px 12px;
  border-radius:999px;
}

/* Bottom area */
.hero-bottom{
  position:absolute;
  top:450px;      /* move text block down */
  right:20px;    /* move text block left/right from right edge */
  width:640px;
  max-width:100%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.hero-lead{
  color:rgba(255,255,255,.92);
  font-size:18px;
  line-height:1.6;
  max-width:54ch;
  margin:0;
}

.trust-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.trust-item{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  padding:10px 12px;
  border-radius:999px;
  font-weight:800;
  color:rgba(255,255,255,.85);
}

/* Ticker */
.ticker{
  width:100%;
  overflow:hidden;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.65);
}

.ticker__track{
  display:flex;
  gap:14px;
  padding:16px 0;
  width:max-content;
  animation:tickerMove 32s linear infinite;
  will-change:transform;
}

.ticker:hover .ticker__track{
  animation-play-state:paused;
}

@keyframes tickerMove{
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}

.ticker__item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  box-shadow:0 10px 20px rgba(0,0,0,.06);
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
  transition:transform .12s ease;
}

.ticker__item:active{
  transform:translateY(1px);
}

.ticker__thumb{
  width:46px;
  height:46px;
  border-radius:999px;
  object-fit:cover;
  border:1px solid var(--line);
}

.ticker__item--img{
  padding:10px;
  border-radius:999px;
}

.ticker__thumb--big{
  width:72px;
  height:72px;
  border-radius:999px;
  object-fit:cover;
}

.ticker__item--img:hover{
  transform:translateY(-2px);
}

.ticker__label{
  font-weight:900;
}

.ticker__meta{
  color:var(--muted);
  font-weight:800;
  margin-left:6px;
}

/* Cards / Grids */
.grid{
  display:grid;
  gap:16px;
}

.cards{
  grid-template-columns:repeat(4, 1fr);
}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 10px 20px rgba(0,0,0,.06);
}

.card-media{
  height:170px;
  border-radius:14px;
  border:1px solid var(--line);
  overflow:hidden;
}

.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.card h3{
  margin:12px 0 6px;
}

.pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(200,162,71,.12);
}

/* Products page */
.tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:12px 0 18px;
}

.tab{
  border:1px solid var(--line);
  background:#fff;
  padding:10px 12px;
  border-radius:999px;
  font-weight:900;
  cursor:pointer;
}

.tab.is-active{
  background:linear-gradient(180deg, rgba(200,162,71,.25), rgba(200,162,71,.10));
  border-color:rgba(200,162,71,.45);
}

.products-grid{
  grid-template-columns:repeat(4, 1fr);
}

.product-card .name{
  font-weight:900;
  margin-top:10px;
}

.product-card .meta{
  color:var(--muted);
  font-weight:800;
  font-size:14px;
}

/* Modal */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:100;
}

.modal.is-open{
  display:block;
}

.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}

.modal__panel{
  position:relative;
  width:min(900px, 92%);
  margin:7vh auto;
  background:#fff;
  border-radius:var(--radius);
  box-shadow:0 18px 60px rgba(0,0,0,.25);
  border:1px solid var(--line);
  overflow:hidden;
}

.modal__close{
  position:absolute;
  top:12px;
  right:12px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
}

.modal__content{
  display:grid;
  grid-template-columns:1fr 1fr;
}

.modal__img{
  width:100%;
  height:100%;
  min-height:340px;
  object-fit:cover;
  background:linear-gradient(135deg, rgba(200,162,71,.18), rgba(216,195,165,.2));
}

.modal__info{
  padding:22px;
}

.modal__price{
  font-size:16px;
  font-weight:900;
  margin:10px 0;
}

.modal__tag{
  display:inline-block;
  margin-top:10px;
  background:rgba(200,162,71,.12);
  border:1px solid rgba(200,162,71,.25);
  border-radius:999px;
  padding:8px 10px;
  font-weight:900;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* Page hero */
.page-hero{
  padding:42px 0 10px;
}

.page-hero h1{
  margin:0 0 10px;
}

/* Footer */
.site-footer{
  padding:28px 0;
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.85);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  width:100%;
}

.designed-by{
  font-size:14px;
  color:var(--muted);
}

.designed-by a{
  font-weight:800;
  color:var(--brand);
}

.designed-by a:hover{
  text-decoration:underline;
}

/* Responsive */
@media (max-width: 1100px){
  .hero-bottom{
    width:520px;
    top:420px;
    right:20px;
  }

  .hero-top{
    top:250px;
    left:120px;
  }
}

@media (max-width: 980px){
  .cards{
    grid-template-columns:repeat(2, 1fr);
  }

  .products-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .hero-video{
    min-height:calc(92vh - 92px);
  }

  .hero-wrap{
    min-height:clamp(460px, 72vh, 720px);
  }

  .hero-top{
    top:180px;
    left:80px;
  }

  .hero-bottom{
    top:340px;
    right:40px;
    width:500px;
  }
}

@media (max-width: 860px){
  .site-nav{
    display:none;
  }

  .nav-toggle{
    display:inline-flex;
  }

  .header-cta{
    display:inline-flex;
  }
}

@media (max-width: 768px){
  .hero-video{
    height:100svh;
    min-height:420px;
  }

  .hero-video video{
    object-position:center center;
  }

  .hero-content{
    padding:40px 20px;
    align-items:flex-start;
  }

  .hero-wrap{
    position:relative;
    min-height:auto;
    height:auto;
  }

  .hero-top{
    position:static;
    top:auto;
    left:auto;
    padding-top:40px;
    margin-bottom:20px;
  }

  .hero-badge{
    margin:0;
  }

  .hero-bottom{
    position:static;
    top:auto;
    right:auto;
    width:100%;
    max-width:100%;
    margin-top:0;
  }

  .hero-lead{
    font-size:16px;
    line-height:1.6;
  }

  .trust-row{
    gap:8px;
    margin-top:16px;
  }

  .trust-item{
    padding:9px 12px;
    font-size:14px;
  }
}

@media (max-width: 520px){
  .cards{
    grid-template-columns:1fr;
  }

  .products-grid{
    grid-template-columns:1fr;
  }

  .modal__content{
    grid-template-columns:1fr;
  }

  .modal__img{
    min-height:240px;
  }

  .hero-content{
    padding:32px 16px;
  }

  .hero-top{
    padding-top:24px;
    margin-bottom:16px;
  }

  .hero-badge{
    font-size:11px;
    padding:6px 10px;
  }

  .hero-lead{
    font-size:15px;
  }

  .trust-row{
    gap:8px;
  }

  .trust-item{
    font-size:13px;
    padding:8px 10px;
  }

  .hero-bottom{
    max-width:100%;
  }
}