:root{
  --paper:#f8f1e3;
  --paper2:#f3e6cf;
  --ink:#231a14;
  --ink2:#3a2a1f;
  --orange:#c96a2a;
  --orange2:#e08b3c;
  --cream:#fff7e8;
  --shadow: 0 24px 70px rgba(0,0,0,.25);
}
*{ box-sizing:border-box; }
html,body{ height:auto; }

.bg-stage{
  margin:0;
  min-height:100vh;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--ink);
  background:
    radial-gradient(1000px 700px at 50% 0%, rgba(224,139,60,.25), transparent 60%),
    radial-gradient(900px 650px at 0% 100%, rgba(201,106,42,.18), transparent 60%),
    #1a1410;
  overflow-x:hidden;
}

.poster{
  width:100%;
  max-width:980px;
  margin:0 auto;
  background:
    repeating-conic-gradient(from 0deg, rgba(255,255,255,.28) 0 10deg, rgba(255,255,255,.0) 10deg 20deg),
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0) 45%),
    radial-gradient(circle at 50% 40%, var(--paper), var(--paper2));
  border-radius: 28px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}

/* Leopard border */
.poster:before{
  content:"";
  position:absolute;
  inset:0;
  padding:18px;
  border-radius: 28px;
  pointer-events:none;
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Crect width='140' height='140' fill='%23d2a86b'/%3E%3Ccircle cx='34' cy='42' r='16' fill='%233a2a1f' opacity='.9'/%3E%3Ccircle cx='88' cy='74' r='20' fill='%233a2a1f' opacity='.9'/%3E%3Ccircle cx='110' cy='28' r='14' fill='%233a2a1f' opacity='.9'/%3E%3Ccircle cx='34' cy='42' r='9' fill='%23000000' fill-opacity='.35'/%3E%3Ccircle cx='88' cy='74' r='11' fill='%23000000' fill-opacity='.35'/%3E%3Ccircle cx='110' cy='28' r='8' fill='%23000000' fill-opacity='.35'/%3E%3C/svg%3E") border-box;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity:.95;
}

.poster__inner{ position:relative; padding: 28px 28px 22px; }

/* Top brand */
.top__logoRow{
  display:flex; align-items:center; gap:14px; justify-content:center;
}
.logo{
  width:240px; height:240px; object-fit:contain;
  background: var(--cream);
  border-radius: 18px;
  border: 3px solid rgba(58,42,31,.25);
  padding: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.brandType{ text-align:left; max-width:520px; }
.brandType__name{
  font-weight: 1000;
  letter-spacing: .5px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  color: var(--ink2);
  text-shadow: 0 2px 0 rgba(255,255,255,.35);
}
.brandType__tag{
  margin-top: 8px;
  font-weight: 900;
  font-size: clamp(16px, 2.2vw, 22px);
  letter-spacing: .3px;
  color: #2b211a;
  text-align: center;
}


/* Headline block */
.headline{ text-align:center; margin-top:18px; }
.ribbon{
  display:inline-flex; gap:10px; align-items:center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  border: 3px solid rgba(58,42,31,.25);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  color: #1c140f;
  font-weight: 1000;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 13px;
}
.headline__h{
  margin: 14px 0 10px;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.5px;
  color: #2a1f18;
  text-shadow: 0 2px 0 rgba(255,255,255,.45);
}

/* Chips */
.chips{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:10px; }
.chip{
  text-decoration:none; color:#1b140f; font-weight:1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  border: 2px solid rgba(58,42,31,.18);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}
.chip:hover{ transform: translateY(-1px); }
.chip--ghost{ background: rgba(255,255,255,.25); }
.chipp{
  text-decoration:none; color:#1b140f; font-weight:1000;
  padding: 40px 44px;
  border-radius: 100px;
  background: rgba(255,255,255,.58);
  border: 2px solid rgba(58,42,31,.18);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}
/* Category cards */
.cat{
  background: rgba(255,255,255,.68);
  border: 2px solid rgba(58,42,31,.18);
  border-radius: 18px;
  padding: 14px 14px;
  text-align:center;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}
.cat__title{ font-weight:1000; font-size:18px; color:#241a13; }
.cat__sub{ margin-top:4px; color: rgba(36,26,19,.75); font-weight:800; font-size:13px; }
.cat--accent{
  background: linear-gradient(180deg, rgba(224,139,60,.25), rgba(255,255,255,.68));
  border-color: rgba(201,106,42,.25);
}

/* Gallery grid */
.galleryGrid{ margin-top: 18px; }
.galleryItem{
  position:relative;
  overflow:hidden;
  border-radius: 16px;
  border: 2px solid rgba(58,42,31,.18);
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}
.galleryItem img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  transition: transform .35s ease;
}
@media (hover:hover){
  .galleryItem:hover img{ transform: scale(1.12); }
}

.stripEmpty{
  margin-top: 16px;
  padding: 14px 12px;
  border-radius: 18px;
  border: 2px solid rgba(58,42,31,.18);
  background: rgba(255,255,255,.45);
  font-weight: 800;
  color: rgba(36,26,19,.8);
}

/* Reviews */
.reviews{
  margin-top: 18px;
  padding: 14px 14px 16px;
  border-radius: 18px;
  border: 2px solid rgba(58,42,31,.18);
  background: rgba(255,255,255,.58);
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
}
.reviews__head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  border-bottom: 2px dashed rgba(58,42,31,.22);
  padding-bottom: 10px;
}
.reviews__title{
  font-size: 22px;
  font-weight: 1100;
  letter-spacing: .2px;
  color: #241a13;
}
.reviews__link{
  text-decoration:none;
  font-weight: 1000;
  color: #241a13;
  border-bottom: 2px solid rgba(201,106,42,.55);
  padding-bottom: 2px;
}
.reviews__link:hover{ border-bottom-color: rgba(201,106,42,.95); }

.reviewCard{
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  border: 2px solid rgba(58,42,31,.18);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  padding: 14px 14px;
}
.reviewCard__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.reviewCard__name{
  font-weight: 1100;
  color: #241a13;
}
.reviewCard__stars i{
  color: #c96a2a;
  margin-left: 2px;
}
.reviewCard__text{
  font-weight: 850;
  color: rgba(36,26,19,.85);
  line-height: 1.35;
}
.reviewCard__src{
  margin-top: 10px;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .25px;
  text-transform: uppercase;
  color: rgba(36,26,19,.70);
}

/* Contact bar */
.contactBar{
  margin-top: 16px;
  border-radius: 18px;
  border: 3px solid rgba(58,42,31,.20);
  background: linear-gradient(180deg, rgba(201,106,42,.22), rgba(255,255,255,.55));
  padding: 14px 14px;
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
  text-align:center;
}
.location{
  font-weight: 1000;
  letter-spacing: .4px;
  color: #241a13;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contactBtn{
  text-decoration:none;
  color:#1b140f;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  border: 2px solid rgba(58,42,31,.18);
  padding: 12px 12px;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  display:block;
}
.contactBtn__k{
  display:block;
  font-weight: 1000;
  font-size: 12px;
  opacity:.8;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.contactBtn__v{
  display:block;
  font-weight: 1100;
  font-size: 16px;
  margin-top: 3px;
}

/* Action bar */
.actionBar{
  margin-top: 18px;
  padding: 16px 14px;
  border-radius: 18px;
  border: 3px solid rgba(58,42,31,.20);
  background: linear-gradient(180deg, rgba(201,106,42,.22), rgba(255,255,255,.55));
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
}
.actionBtn{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 8px;
  text-decoration:none;
  color:#1b140f;
  background: rgba(255,255,255,.78);
  border: 2px solid rgba(58,42,31,.18);
  border-radius: 16px;
  padding: 14px 10px;
  font-weight: 1000;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  height: 100%;
}
.actionBtn i{ font-size: 26px; }
.actionBtn span{
  font-size: 13px;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.actionBtn:hover{
  transform: translateY(-2px);
  background: #fff;
}
.actionBtn:hover .fa-facebook{ color:#1877f2; }
.actionBtn:hover .fa-instagram{ color:#e1306c; }
.actionBtn:hover .fa-phone{ color:#2e7d32; }
.actionBtn:hover .fa-envelope{ color:#c62828; }

/* Footer */
.fineprint{
  margin-top: 14px;
  text-align:center;
  color: rgba(36,26,19,.75);
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 12px;
  display:flex;
  gap: 8px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
}
.fineprint .dot{ opacity:.6; }

@media (max-width: 860px){
  .poster__inner{ padding: 20px 16px 18px; }
  .top__logoRow{ flex-direction:column; text-align:center; }
  .brandType{ text-align:center; }
}
