/* ================= ROOT / RESET ================= */
:root{
  --cream: #FBF2E4;
  --cream-soft: #FDF8EF;
  --maroon: #4A1D12;
  --maroon-soft: #6b2f1c;
  --gold: #B8791A;
  --gold-dark: #9C6414;
  --gold-light: #D9A648;
  --text-grey: #6b6560;
  --border-soft: #EDE1CD;
  --white: #ffffff;

  --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box;}

html{scroll-behavior:smooth;}

body{
  font-family: var(--font-body);
  color:#2c2420;
  background:var(--white);
  overflow-x:hidden;
}

a{text-decoration:none;color:inherit;}
ul{list-style:none;}
img{max-width:100%;display:block;}
button{font-family:inherit;border:none;background:none;cursor:pointer;}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 24px;
  border-radius:6px;
  font-weight:500;
  font-size:14.5px;
  transition:all .25s ease;
  white-space:nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color:var(--white);
  box-shadow:0 6px 16px rgba(184,121,26,.28);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 22px rgba(184,121,26,.35);}
.btn-outline{
  border:1.5px solid var(--gold);
  color:var(--maroon);
  background:transparent;
}
.btn-outline:hover{background:var(--gold);color:#fff;}
.btn-dark{
  background:var(--maroon);
  color:#fff;
  padding:10px 20px;
  font-size:14px;
}
.btn-dark:hover{background:var(--gold-dark);}

/* ================= TOP BAR ================= */
.topbar{
  background: linear-gradient(90deg, var(--cream), #F6E9D6, var(--cream));
  border-bottom:1px solid var(--border-soft);
  font-size:13px;
  color:var(--maroon-soft);
}
.topbar-inner{
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 40px;
  gap:20px;
}
.topbar-left{display:flex;gap:24px;}
.topbar-left span{display:flex;align-items:center;gap:6px;white-space:nowrap;}
.topbar-center{
  font-family:var(--font-serif);
  font-weight:600;
  font-size:15px;
  color:var(--maroon);
  display:flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}
.topbar-right{display:flex;align-items:center;gap:20px;}
.topbar-right a{white-space:nowrap;}
.topbar-right a:hover{color:var(--gold-dark);}
.phone{font-weight:600;color:var(--maroon);}
.social{display:flex;gap:8px;}
.social a{
  width:26px;height:26px;border-radius:50%;
  background:var(--maroon);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:11px;
}
.social a:hover{background:var(--gold);}

.icon{font-style:normal;}

/* ================= HEADER ================= */
.site-header{
  background:var(--white);
  border-bottom:1px solid var(--border-soft);
  position:sticky;
  top:0;
  z-index:200;
}
.header-inner{
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 40px;
  gap:16px;
  flex-wrap:nowrap;
}
.brand{display:flex;align-items:center;gap:14px;}
.brand-logo{
  width:56px;height:56px;
  border-radius:50%;
  border:2px solid var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-size:26px;
  color:var(--gold-dark);
  font-family:var(--font-serif);
  flex-shrink:0;
  background: radial-gradient(circle, #fff 60%, var(--cream) 100%);
}
.brand-text{display:flex;flex-direction:column;line-height:1.15;}
.brand-name{
  font-family:var(--font-display);
  font-weight:700;
  font-size:21px;
  color:var(--maroon);
  letter-spacing:.5px;
}
.brand-name2{
  font-family:var(--font-display);
  font-weight:600;
  font-size:14px;
  color:var(--gold-dark);
  letter-spacing:5px;
}
.brand-tag{
  font-size:11px;
  color:var(--text-grey);
  margin-top:2px;
  font-style:italic;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:clamp(14px, 2vw, 34px);
  font-size:15px;
  font-weight:500;
  color:#3a322c;
  flex-wrap:nowrap;
  white-space:nowrap;
}
.main-nav a{
  padding:6px 0;
  position:relative;
  transition:color .2s;
  white-space:nowrap;
}
.main-nav a:hover, .main-nav a.active{color:var(--gold-dark);}
.main-nav a.active{
  border-bottom:2px solid var(--gold-dark);
}
.nav-dropdown a{display:flex;align-items:center;gap:4px;}
.caret{font-size:11px;}

.header-actions{display:flex;align-items:center;gap:12px;}
.icon-btn{
  width:38px;height:38px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;
  color:var(--maroon);
  transition:background .2s;
  position:relative;
}
.icon-btn:hover{background:var(--cream);}
.cart-btn{position:relative;}
.cart-count{
  position:absolute;
  top:-2px;right:-2px;
  background:var(--gold-dark);
  color:#fff;
  font-size:10px;
  width:16px;height:16px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}
.quote-btn{padding:10px 20px;}

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  width:30px;
  height:22px;
}
.hamburger span{
  display:block;
  height:2px;
  width:100%;
  background:var(--maroon);
  border-radius:2px;
  transition:.3s;
}

/* mobile nav drawer */
.mobile-nav{
  position:fixed;
  top:0;
  right:-280px;
  width:260px;
  height:100vh;
  background:var(--white);
  z-index:400;
  padding:90px 24px 24px;
  display:flex;
  flex-direction:column;
  gap:18px;
  box-shadow:-6px 0 24px rgba(0,0,0,.12);
  transition:right .35s ease;
  font-size:16px;
  font-weight:500;
}
.mobile-nav.open{right:0;}
.mobile-nav a{padding:6px 0;border-bottom:1px solid var(--border-soft);}
.mobile-nav a.active{color:var(--gold-dark);}
.overlay{
  position:fixed;inset:0;
  background:rgba(0,0,0,.4);
  z-index:350;
  display:none;
}
.overlay.show{display:block;}

/* ================= HERO - COMPLETELY REBUILT ================= */
/* No grid, no containers, no wrappers — pure premium background integration */

.hero{
  position:relative;
  overflow:hidden;
  min-height:90vh;
  display:flex;
  align-items:center;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(255,255,255,0.88) 0%, transparent 65%),
    linear-gradient(175deg, var(--cream-soft) 0%, #fcf6ed 50%, #fdf8ef 100%);
}

/* Gradient overlay — seamless image fade into background */
.hero::after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  width:65%;
  height:100%;
  z-index:1;
  background:linear-gradient(
    to right,
    #fcf6ed 0%,
    rgba(252,246,237,0.92) 15%,
    rgba(252,246,237,0.5) 28%,
    rgba(252,246,237,0.15) 38%,
    transparent 48%
  );
  pointer-events:none;
}

.hero-content{
  position:relative;
  z-index:2;
  padding:80px 60px;
  max-width:600px;
  width:100%;
}

.hero-banner{
  position:absolute;
  top:0;
  right:0;
  width:65%;
  height:100%;
  z-index:0;
  object-fit:cover;
  object-position:center;
  display:block;
}

.hero-pill{
  display:inline-block;
  padding:8px 18px;
  border:1px solid var(--gold-light);
  border-radius:30px;
  font-size:13px;
  color:var(--maroon-soft);
  margin-bottom:22px;
  background:#fff;
}
.hero-title{
  font-family:var(--font-display);
  font-weight:800;
  font-size:46px;
  line-height:1.15;
  color:var(--maroon);
  margin-bottom:18px;
}
.hero-title span{color:var(--gold-dark);}
.hero-desc{
  font-size:15.5px;
  color:var(--text-grey);
  line-height:1.7;
  max-width:480px;
  margin-bottom:28px;
}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:34px;}

.hero-stats{display:flex;gap:26px;flex-wrap:wrap;}
.stat{display:flex;align-items:center;gap:10px;}
.stat-icon{font-size:18px;}
.stat strong{display:block;font-size:15px;color:var(--maroon);font-family:var(--font-serif);}
.stat small{font-size:12px;color:var(--text-grey);}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:45px;
}
.badge-card{
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:12px;
  padding:14px 16px;
  display:flex;
  align-items:center;
  gap:12px;
  font-size:13px;
  font-weight:500;
  color:var(--maroon);
  box-shadow:0 6px 18px rgba(0,0,0,.04);
}
.badge-card span{
  font-size:20px;
  width:34px;height:34px;
  border-radius:50%;
  background:var(--cream);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}

.dots{
  position:absolute;
  bottom:40px;
  left:60px;
  z-index:2;
  display:flex;
  gap:8px;
}
.dot{width:8px;height:8px;border-radius:50%;background:#e5d5b8;}
.dot.active{background:var(--gold-dark);width:22px;border-radius:5px;}

/* ================= FEATURE STRIP ================= */
.feature-strip{
  background:var(--white);
  border-top:1px solid var(--border-soft);
  border-bottom:1px solid var(--border-soft);
  padding:22px 40px;
}
.feature-strip-inner{
  max-width:1400px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
}
.feature-item{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:13.5px;
  font-weight:600;
  color:var(--maroon);
  flex:1 1 150px;
}
.feature-item span{
  font-size:20px;
  color:var(--gold-dark);
}
.feature-item small{
  font-weight:400;
  color:var(--text-grey);
}

/* ================= SHOP BY CATEGORY ================= */
.category-section{
  max-width:1400px;
  margin:0 auto;
  padding:64px 40px 30px;
  text-align:center;
}
.section-heading{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:8px;
}
.section-heading h2{
  font-family:var(--font-display);
  font-size:32px;
  color:var(--maroon);
  font-weight:700;
}
.deco{color:var(--gold);font-size:20px;}
.heading-underline{
  width:60px;
  height:2px;
  background:var(--gold);
  margin:0 auto 40px;
  position:relative;
}
.heading-underline::before{
  content:'';
  position:absolute;
  left:50%;top:-4px;
  transform:translateX(-50%) rotate(45deg);
  width:8px;height:8px;
  background:var(--gold);
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(9, 1fr);
  gap:18px;
}
.cat-card{
  background:#fff;
  border:1px solid var(--border-soft);
  border-radius:14px;
  padding:20px 14px 22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  transition:all .25s ease;
}
.cat-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px rgba(184,121,26,.15);
  border-color:var(--gold-light);
}
.cat-img-placeholder{
  width:84px;height:84px;
  border-radius:50%;
  border:1.5px dashed var(--gold-light);
  background:var(--cream);
  display:flex;align-items:center;justify-content:center;
  font-size:9px;
  text-align:center;
  color:var(--maroon-soft);
  padding:6px;
  line-height:1.3;
}
.cat-img-placeholder::before{content:attr(data-label);}
.cat-card h3{
  font-size:14px;
  font-weight:600;
  color:var(--maroon);
}
.cat-card span{
  font-size:11.5px;
  color:var(--gold-dark);
  font-weight:500;
}
.cat-card-viewall{
  background:var(--cream-soft);
  border-style:dashed;
}
.viewall-icon{
  width:84px;height:84px;
  border-radius:50%;
  background:#fff;
  border:1.5px solid var(--gold-light);
  display:flex;align-items:center;justify-content:center;
  font-size:26px;
  color:var(--gold-dark);
}

/* ================= PROMO BANNERS ================= */
.promo-section{
  max-width:1400px;
  margin:0 auto;
  padding:50px 40px 80px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.promo-card{
  border-radius:16px;
  padding:36px;
  display:flex;
  align-items:center;
  gap:20px;
  overflow:hidden;
  min-height:220px;
}
.promo-pink{background: linear-gradient(120deg, #F9E4E0, #FCEFEC);}
.promo-grey{background: linear-gradient(120deg, #EFEFEF, #F7F7F7);}
.promo-text{flex:1;}
.promo-text h3{
  font-family:var(--font-display);
  font-size:24px;
  color:var(--maroon);
  margin-bottom:10px;
  font-weight:700;
}
.promo-text p{
  font-size:13.5px;
  color:var(--text-grey);
  margin-bottom:20px;
  line-height:1.6;
  max-width:280px;
}
.promo-img-placeholder{
  flex:1;
  height:170px;
  border-radius:12px;
  border:2px dashed rgba(0,0,0,.15);
  background:repeating-linear-gradient(45deg, rgba(255,255,255,.5), rgba(255,255,255,.5) 12px, rgba(0,0,0,.03) 12px, rgba(0,0,0,.03) 24px);
  display:flex;align-items:center;justify-content:center;
  text-align:center;
  font-size:12px;
  color:var(--text-grey);
  padding:14px;
}
.promo-img-placeholder::before{content:attr(data-label);}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float{
  position:fixed;
  bottom:24px;right:24px;
  width:56px;height:56px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:22px;
  font-weight:700;
  box-shadow:0 8px 20px rgba(37,211,102,.4);
  z-index:150;
  animation:pulse 2.4s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);}
  70%{box-shadow:0 0 0 14px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ---- Tablets / small laptops ---- */
@media (max-width:1180px){
  .hero-content{padding:60px 40px;max-width:480px;}
  .hero-badges{gap:10px;margin-top:35px;}
  .badge-card{flex:1 1 45%;padding:12px 14px;}
  .category-grid{grid-template-columns:repeat(5,1fr);}
  .topbar-left{display:none;}
}

@media (max-width:1200px){
  .main-nav{display:none;}
  .hamburger{display:flex;}
  .header-actions .icon-btn:not(.cart-btn){display:none;}
  .quote-btn{display:none;}
  .topbar-center{font-size:13px;}
}

/* ---- Tablets portrait ---- */
@media (max-width:860px){
  .hero{display:block;min-height:auto;}
  .hero::after{display:none;}
  .hero-content{max-width:100%;text-align:center;padding:50px 40px 0;}
  .hero-banner{position:relative;width:100%;height:auto;}
  .hero-desc{margin-left:auto;margin-right:auto;}
  .hero-btns{justify-content:center;}
  .hero-stats{justify-content:center;}
  .hero-badges{justify-content:center;}
  .dots{position:static;justify-content:center;padding:16px 0 30px;}
  .promo-section{grid-template-columns:1fr;}
  .category-grid{grid-template-columns:repeat(4,1fr);}
}

/* ---- Mobile ---- */
@media (max-width:640px){
  .topbar-inner{padding:8px 16px;justify-content:space-between;}
  .topbar-center{display:none;}
  .topbar-right{gap:10px;}
  .topbar-right a:not(.phone){display:none;}
  .social{display:none;}

  .header-inner{padding:12px 16px;}
  .brand-logo{width:44px;height:44px;font-size:20px;}
  .brand-name{font-size:16px;}
  .brand-name2{font-size:11px;letter-spacing:3px;}
  .brand-tag{display:none;}

  .hero{padding:0;min-height:auto;display:block;}
  .hero-content{padding:32px 16px 0;}
  .hero-title{font-size:30px;}
  .hero-pill{font-size:11.5px;padding:6px 14px;}
  .hero-desc{font-size:14px;}
  .hero-btns .btn{flex:1 1 auto;justify-content:center;padding:12px 14px;}
  .hero-stats{gap:16px;justify-content:space-between;}
  .stat strong{font-size:13px;}

  .hero-badges{grid-template-columns:1fr 1fr;display:grid;gap:8px;margin-top:28px;}
  .badge-card{flex:none;}

  .feature-strip{padding:18px 16px;}
  .feature-strip-inner{justify-content:flex-start;}
  .feature-item{flex:1 1 100%;}

  .category-section{padding:44px 16px 20px;}
  .section-heading h2{font-size:24px;}
  .category-grid{grid-template-columns:repeat(3,1fr);gap:12px;}
  .cat-img-placeholder{width:64px;height:64px;}
  .cat-card{padding:14px 8px 16px;}
  .cat-card h3{font-size:12px;}
  .cat-card span{font-size:10px;}
  .viewall-icon{width:64px;height:64px;font-size:20px;}

  .promo-section{padding:30px 16px 50px;gap:16px;}
  .promo-card{flex-direction:column;text-align:center;padding:26px 20px;}
  .promo-text p{margin-left:auto;margin-right:auto;}
  .promo-img-placeholder{width:100%;}

  .whatsapp-float{width:48px;height:48px;font-size:18px;bottom:16px;right:16px;}
}

@media (max-width:400px){
  .category-grid{grid-template-columns:repeat(2,1fr);}
}

/* ================= REFERENCE HERO OVERRIDES ================= */
.hero-reference + .hero{
  display:none;
}

.hero-reference{
  min-height:calc(100vh - 126px);
  max-height:780px;
  align-items:center;
  background:#fbf6ee;
  isolation:isolate;
}

.hero-reference::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 24%, rgba(255,255,255,.55) 43%, rgba(255,255,255,0) 62%),
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,248,235,.18));
  pointer-events:none;
}

.hero-reference::after{
  content:'';
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:46%;
  z-index:1;
  background:radial-gradient(ellipse at 16% 48%, rgba(255,255,255,.98) 0%, rgba(255,255,255,.84) 54%, rgba(255,255,255,0) 76%);
  pointer-events:none;
}

.hero-reference .hero-content{
  z-index:2;
  max-width:840px;
  padding:clamp(58px, 7vw, 92px) clamp(22px, 3vw, 44px) clamp(58px, 7vw, 92px) clamp(32px, 5vw, 74px);
}

.hero-reference .hero-banner{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center right;
}

.hero-reference .hero-pill{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:8px 24px;
  border-color:#dec49f;
  border-radius:999px;
  background:rgba(255,255,255,.55);
  color:#3b160f;
  font-size:18px;
  font-weight:600;
  box-shadow:0 10px 28px rgba(86,47,16,.05);
}

.hero-reference .hero-title{
  position:relative;
  font-size:clamp(54px, 5vw, 82px);
  line-height:1.05;
  color:#35130d;
  margin:24px 0 24px;
  letter-spacing:0;
}

.hero-reference .hero-title span{
  color:#b87413;
}

.hero-reference .hero-title::after{
  content:'';
  display:inline-block;
  width:88px;
  height:52px;
  margin-left:24px;
  background:
    radial-gradient(ellipse at 50% 95%, transparent 0 45%, #c58319 47% 50%, transparent 52%),
    radial-gradient(ellipse at 50% 82%, transparent 0 44%, #c58319 46% 49%, transparent 51%),
    linear-gradient(#c58319,#c58319);
  background-size:86px 50px, 54px 44px, 2px 44px;
  background-position:center bottom, center bottom, center bottom;
  background-repeat:no-repeat;
  opacity:.95;
  vertical-align:middle;
}

.hero-reference .hero-desc{
  max-width:470px;
  margin-bottom:32px;
  color:#2f211d;
  font-size:21px;
  line-height:1.55;
}

.hero-reference .hero-btns{
  gap:28px;
  margin-bottom:44px;
}

.hero-reference .btn{
  min-width:178px;
  height:70px;
  justify-content:center;
  border-radius:8px;
  font-size:22px;
  font-weight:600;
  gap:16px;
}

.hero-reference .btn-outline{
  border-color:#c98924;
  border-width:1px;
  background:rgba(255,255,255,.42);
}

.btn-symbol{
  position:relative;
  width:24px;
  height:24px;
  flex:0 0 24px;
}

.btn-symbol.shop{
  border:2px solid currentColor;
  border-top:0;
  border-radius:2px;
}

.btn-symbol.shop::before{
  content:'';
  position:absolute;
  left:6px;
  top:-7px;
  width:10px;
  height:10px;
  border:2px solid currentColor;
  border-bottom:0;
  border-radius:10px 10px 0 0;
}

.btn-symbol.group::before,
.btn-symbol.group::after{
  content:'';
  position:absolute;
  border:2px solid currentColor;
  border-radius:50%;
}

.btn-symbol.group::before{
  left:2px;
  top:2px;
  width:8px;
  height:8px;
  box-shadow:10px 2px 0 -2px currentColor;
}

.btn-symbol.group::after{
  left:0;
  bottom:2px;
  width:20px;
  height:10px;
  border-top-left-radius:12px;
  border-top-right-radius:12px;
  border-bottom:0;
}

.hero-reference .hero-stats{
  gap:0;
  flex-wrap:nowrap;
}

.hero-reference .stat{
  gap:14px;
  min-width:186px;
  padding-right:26px;
  margin-right:26px;
  border-right:1px solid #e2d6c7;
}

.hero-reference .stat:last-child{
  border-right:0;
  margin-right:0;
  padding-right:0;
}

.hero-reference .stat-icon{
  position:relative;
  width:52px;
  height:52px;
  border:1px solid #d7a457;
  border-radius:50%;
  flex:0 0 52px;
  color:#bf7a12;
}

.hero-reference .stat-icon::before,
.hero-reference .stat-icon::after{
  content:'';
  position:absolute;
  border:2px solid currentColor;
}

.hero-reference .stat-icon.happy::before{
  inset:13px;
  border-radius:9px;
}

.hero-reference .stat-icon.happy::after{
  left:20px;
  bottom:11px;
  width:9px;
  height:9px;
  border-top:0;
  border-left:0;
  transform:rotate(45deg);
  background:#fbf6ee;
}

.hero-reference .stat-icon.products::before{
  left:13px;
  top:12px;
  width:10px;
  height:10px;
  border-radius:50%;
  box-shadow:13px 0 0 -2px #fbf6ee, 13px 0 0 0 currentColor;
}

.hero-reference .stat-icon.products::after{
  left:11px;
  bottom:12px;
  width:28px;
  height:12px;
  border-radius:14px 14px 0 0;
  border-bottom:0;
}

.hero-reference .stat-icon.delivery::before{
  left:11px;
  top:19px;
  width:24px;
  height:13px;
  border-radius:2px;
}

.hero-reference .stat-icon.delivery::after{
  left:17px;
  bottom:12px;
  width:5px;
  height:5px;
  border-radius:50%;
  box-shadow:18px 0 0 -1px #fbf6ee, 18px 0 0 0 currentColor;
}

.hero-reference .stat strong{
  font-family:var(--font-body);
  font-size:18px;
  line-height:1.18;
}

.hero-reference .stat small{
  color:#2f211d;
  font-size:16px;
  line-height:1.25;
}

@media (max-width:1180px){
  .hero-reference{
    min-height:680px;
  }

  .hero-reference .hero-content{
    max-width:620px;
  }

  .hero-reference .hero-title{
    font-size:clamp(46px, 5.4vw, 64px);
  }

  .hero-reference .hero-desc{
    font-size:18px;
  }

  .hero-reference .btn{
    min-width:158px;
    height:58px;
    font-size:18px;
  }

  .hero-reference .stat{
    min-width:160px;
    padding-right:18px;
    margin-right:18px;
  }
}

@media (max-width:860px){
  .hero-reference{
    min-height:auto;
    max-height:none;
    display:flex;
    flex-direction:column;
    background:#fffaf2;
  }

  .hero-reference::before{
    background:linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.84) 55%, rgba(255,255,255,0) 100%);
  }

  .hero-reference::after{
    display:none;
  }

  .hero-reference .hero-content{
    width:100%;
    max-width:680px;
    padding:42px 22px 14px;
    text-align:center;
  }

  .hero-reference .hero-banner{
    position:relative;
    width:100%;
    height:auto;
    margin-top:-10px;
    object-fit:contain;
  }

  .hero-reference .hero-desc{
    margin-left:auto;
    margin-right:auto;
    max-width:280px;
  }

  .hero-reference .hero-btns,
  .hero-reference .hero-stats{
    justify-content:center;
  }

  .hero-reference .hero-btns{
    display:grid;
    grid-template-columns:1fr;
    width:240px;
    max-width:100%;
    margin:0 auto 28px;
  }
}

@media (max-width:640px){
  .hero-reference{
    width:100%;
    max-width:100%;
    min-height:auto;
    display:block;
    padding:0;
    overflow:visible;
  }

  .hero-reference .hero-content{
    width:100%;
    max-width:100%;
    margin:0;
    padding:28px 16px 0;
    overflow:visible;
  }

  .hero-reference .hero-pill{
    min-height:34px;
    max-width:100%;
    padding:6px 12px;
    font-size:12px;
  }

  .hero-reference .hero-title{
    max-width:100%;
    font-size:32px;
    line-height:1.04;
    margin:16px 0 12px;
    overflow-wrap:normal;
  }

  .hero-reference .hero-title::after{
    display:none;
  }

  .hero-reference .hero-desc{
    max-width:320px;
    margin-left:auto;
    margin-right:auto;
    font-size:14px;
    line-height:1.45;
    margin-bottom:16px;
  }

  .hero-reference .hero-btns{
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
    max-width:100%;
    justify-content:normal;
    gap:10px;
    margin:0 auto 16px;
  }

  .hero-reference .btn{
    width:100%;
    min-width:0;
    height:48px;
    padding:0 8px;
    font-size:13px;
    gap:7px;
    overflow:hidden;
  }

  .hero-reference .hero-stats{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:8px;
    max-width:100%;
    margin:0 auto;
  }

  .hero-reference .stat{
    min-width:0;
    margin:0;
    padding:0;
    border-right:0;
    justify-content:center;
    gap:6px;
    text-align:left;
  }

  .hero-reference .stat-icon{
    width:34px;
    height:34px;
    flex-basis:34px;
  }

  .hero-reference .stat strong{
    font-size:12px;
  }

  .hero-reference .stat small{
    font-size:10px;
  }

  .hero-reference .hero-banner{
    position:relative;
    left:0;
    right:auto;
    bottom:auto;
    width:100%;
    max-width:none;
    height:auto;
    margin:-6px 0 0;
    object-fit:contain;
    object-position:center bottom;
    z-index:0;
    opacity:1;
    display:block;
  }

  .hero-reference::before{
    z-index:1;
    background:
      linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.93) 45%, rgba(255,255,255,.18) 66%, rgba(255,255,255,0) 88%),
      linear-gradient(90deg, rgba(255,255,255,.62) 0%, rgba(255,255,255,.18) 44%, rgba(255,255,255,0) 100%);
  }
}
