:root{
  --bg:#FAF7F2;
  --bg2:#FFF5ED;
  --bg3:#F5F0E8;

  --stone-900:#0c0a09;
  --stone-800:#1c1917;
  --stone-700:#292524;
  --stone-600:#57534e;
  --stone-500:#78716c;
  --stone-400:#a8a29e;
  --stone-300:#d6d3d1;
  --stone-200:#e7e5e4;
  --stone-100:#f5f5f4;

  --orange-700:#c2410c;
  --orange-600:#ea580c;
  --orange-500:#f97316;
  --orange-400:#fb923c;
  --orange-300:#fdba74;
  --orange-100:#ffedd5;
  --orange-50:#fff7ed;

  --green-700:#15803d;
  --green-100:#dcfce7;
  --green-50:#f0fdf4;

  --shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-lg: 0 25px 50px -12px rgba(0,0,0,.25);
  --radius: 18px;

  --container: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--stone-800);
}

img{ max-width:100%; display:block; }
button{ font:inherit; }

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 50;
  background: rgba(12,10,9,.95);
  border-bottom: 1px solid rgba(41,37,36,1);
  backdrop-filter: blur(10px);
}
.header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height: 72px;
  gap: 16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand__logo{
  width:40px;
  height:40px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  box-shadow: var(--shadow);
}
.brand__logo svg{ width:24px; height:24px; }
.brand__text{ display:none; }
.brand__title{ color:#fff; font-weight:800; line-height:1.05; }
.brand__subtitle{ color: var(--stone-400); font-size:12px; margin-top:2px; }

@media (min-width: 640px){
  .brand__text{ display:block; }
}

.nav--desktop{
  display:none;
  gap: 32px;
  align-items:center;
}
.nav__link{
  background: transparent;
  border:0;
  cursor:pointer;
  color: var(--stone-200);
  font-size: 14px;
  font-weight: 600;
  opacity:.9;
  transition: opacity .2s ease, color .2s ease;
}
.nav__link:hover{ color:#fff; opacity:1; }

.header__actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.phone{
  display:flex;
  align-items:center;
  gap: 10px;
  color: var(--stone-200);
  text-decoration:none;
}
.phone svg{ width:16px; height:16px; }
.phone__text{ display:none; font-weight:800; }
@media (min-width: 420px){
  .phone__text{ display:inline; }
}

.tg{
  width:40px;
  height:40px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  transition: transform .2s ease, box-shadow .2s ease;
}
.tg svg{ width:20px; height:20px; }
.tg:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }

.burger{
  display:inline-flex;
  width:40px;
  height:40px;
  align-items:center;
  justify-content:center;
  background: transparent;
  border:0;
  color: var(--stone-200);
  cursor:pointer;
}
.burger svg{ width:24px; height:24px; }
@media (min-width: 1024px){
  .nav--desktop{ display:flex; }
  .burger{ display:none; }
}

/* Mobile nav */
.nav--mobile{
  border-top: 1px solid rgba(41,37,36,1);
  background: rgba(12,10,9,.97);
}
.nav__mobileInner{
  padding: 12px 0 16px;
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.nav__mobileLink{
  background: transparent;
  border:0;
  text-align:left;
  padding: 10px 12px;
  border-radius: 12px;
  cursor:pointer;
  color: var(--stone-200);
}
.nav__mobileLink:hover{ background: rgba(41,37,36,.6); color:#fff; }

/* Hero */
.hero{
  position:relative;
  padding-top: 92px;
  min-height: 100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background: linear-gradient(135deg, var(--bg), var(--bg2), var(--bg3));
}
.hero__bg{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.hero__blob{
  position:absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(50px);
}
.hero__blob--right{
  top: 90px;
  right: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(251,146,60,.35), transparent 60%);
}
.hero__blob--left{
  bottom: 90px;
  left: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(253,186,116,.25), transparent 60%);
}
.hero__shield{
  position:absolute;
  left: 40px;
  bottom: 140px;
  width: 320px;
  height: 320px;
  color: rgba(28,25,23,.06);
  transform: rotate(-6deg);
}
.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding: 40px 0 70px;
}
@media (min-width: 1024px){
  .hero__grid{ grid-template-columns: 1.1fr .9fr; gap: 72px; }
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-100), var(--orange-50));
  color: #b45309;
  font-weight: 700;
  font-size: 13px;
}
.pill svg{ width:16px; height:16px; }

.h1{
  margin: 18px 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.lead{
  margin: 0 0 22px;
  color: var(--stone-600);
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.55;
  max-width: 560px;
}

.hero__buttons{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
@media (min-width: 640px){
  .hero__buttons{ flex-direction:row; }
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration:none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn svg{ width:20px; height:20px; }
.btn--primary{
  color:#fff;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-700));
}
.btn--primary:hover{ transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--outline{
  border: 2px solid var(--orange-300);
  color: #b45309;
  background: transparent;
}
.btn--outline:hover{ border-color: var(--orange-500); box-shadow: var(--shadow); }

.btn--small{ padding: 10px 16px; font-weight: 800; }

.stats{
  display:flex;
  align-items:center;
  gap: 22px;
  margin-top: 30px;
  flex-wrap:wrap;
  color: var(--stone-500);
}
.stats__sep{
  width:1px;
  height: 46px;
  background: var(--stone-300);
}
.stat__num{ font-size: 30px; font-weight: 900; color: var(--stone-800); }
.stat__label{ font-size: 13px; }

.hero__photo{ display:flex; justify-content:center; }
.photoCard{
  position:relative;
  width: 280px;
}
@media (min-width: 768px){ .photoCard{ width: 320px; } }
@media (min-width: 1024px){ .photoCard{ width: 380px; } }

.photoCard__shadow{
  position:absolute;
  inset:0;
  border-radius: 26px;
  background: linear-gradient(135deg, #d6d3d1, #a8a29e);
  opacity:.18;
  transform: rotate(3deg);
}
.photoCard--alt .photoCard__shadow{ transform: rotate(-3deg); opacity:.18; }
.photoCard__shadow--alt{ transform: rotate(-3deg); }

.photoCard__imgWrap{
  position:relative;
  border-radius: 26px;
  overflow:hidden;
  box-shadow: var(--shadow-lg);
  height: 380px;
}
@media (min-width:768px){ .photoCard__imgWrap{ height: 450px; } }
@media (min-width:1024px){ .photoCard__imgWrap{ height: 520px; } }

.photoCard__imgWrap img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.photoCard__fade{
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(12,10,9,.28), transparent 55%);
}

.hero__bottomFade{
  position:absolute;
  left:0; right:0; bottom:0;
  height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
}

/* Sections */
.section{
  padding: 84px 0;
  background: var(--bg);
}
.section--alt{
  background: linear-gradient(to bottom, var(--bg3), var(--bg2));
  position:relative;
  overflow:hidden;
}
.section--soft{
  background: linear-gradient(135deg, var(--bg3), var(--bg2), var(--bg3));
  position:relative;
  overflow:hidden;
}
.section--dark{
  background: linear-gradient(135deg, var(--stone-900), var(--stone-800), var(--stone-900));
  color:#fff;
}

.section__head{
  text-align:center;
  margin-bottom: 46px;
}
.section__head--dark{ color:#fff; }
.h2{
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.h2--left{ text-align:left; }
.h2--dark{ color:#fff; }
.sub{
  margin:0;
  color: var(--stone-600);
  font-size: 18px;
}
.sub--dark{ color: rgba(231,229,228,.82); }

.h3{
  margin: 44px 0 22px;
  font-size: 26px;
  font-weight: 900;
}
.center{ text-align:center; }

/* Cards */
.cards{
  display:grid;
  gap: 18px;
}
.cards--3{ grid-template-columns: 1fr; }
@media (min-width: 640px){ .cards--3{ grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px){ .cards--3{ grid-template-columns: repeat(3,1fr); } }

.card{
  background:#fff;
  border: 1px solid #f0efee;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover{ transform: translateY(-2px); box-shadow: var(--shadow); border-color: #e7e5e4; }
.card__icon{
  width:56px;
  height:56px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  color:#fff;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.card__icon svg{ width:28px; height:28px; }
.card__title{ margin:0 0 8px; font-size: 20px; font-weight: 800; }
.card__text{ margin:0; color: var(--stone-600); line-height:1.55; }

.price{
  background:#fff;
  border: 1px solid #f0efee;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.price:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }
.price__title{ margin:0 0 6px; font-size: 20px; font-weight: 900; }
.price__value{ font-size: 30px; font-weight: 900; margin:0 0 10px; }
.price__text{ margin:0 0 16px; color: var(--stone-600); line-height:1.55; }

.list{ list-style:none; padding:0; margin:0; display:grid; gap: 10px; }
.list li{ color: var(--stone-600); font-size: 14px; display:flex; align-items:center; gap: 8px; }
.list__icon{
  width:18px; height:18px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: #16a34a;
  font-weight: 900;
}

/* note */
.note{
  margin-top: 32px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 14px;
  text-align:center;
}
.note p{ margin:0; color: var(--stone-600); }

/* About */
.about{
  display:grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items:start;
  margin-bottom: 40px;
}
@media (min-width: 1024px){
  .about{ grid-template-columns: .9fr 1.1fr; gap: 70px; }
}
.about__p{
  color: var(--stone-600);
  line-height:1.65;
  font-size: 18px;
  margin: 0 0 18px;
}
.miniCards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px){
  .miniCards{ grid-template-columns: repeat(2, 1fr); }
}
.mini{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  background:#fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.mini__icon{
  width:40px; height:40px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  color:#fff;
  box-shadow: 0 6px 12px rgba(0,0,0,.12);
}
.mini__text{ font-size: 14px; color: var(--stone-700); font-weight: 700; }

/* Dark cards */
.cardDark{
  background: rgba(68,64,60,.45);
  border: 1px solid rgba(120,113,108,.45);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .2s ease, background .2s ease;
}
.cardDark:hover{ transform: translateY(-2px); background: rgba(68,64,60,.7); }
.cardDark__icon{
  width:56px; height:56px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  font-size: 22px;
}
.cardDark__title{ margin:0 0 8px; font-size: 20px; font-weight: 900; }
.cardDark__text{ margin:0; color: rgba(231,229,228,.85); line-height:1.55; }

/* Green pill */
.pill--green{
  background: linear-gradient(90deg, var(--green-100), var(--green-50));
  color: var(--green-700);
  margin: 0 auto 12px;
}
.pill__dot{ font-size: 14px; }

/* Carousel */
.carousel{
  position:relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}
.carousel__trackWrap{ overflow:hidden; }
.carousel__track{
  display:flex;
  gap: 18px;
  transition: transform .35s ease;
  will-change: transform;
}
.slide{
  flex: 0 0 100%;
  min-width: 0;
}
@media (min-width: 768px){
  .slide{ flex-basis: 48%; }
}
@media (min-width: 1024px){
  .slide{ flex-basis: 32%; }
}

.slide__img{
  background:#fff;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.slide__img img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.slide__cap{
  padding: 12px 14px;
  text-align:center;
  background:#fff;
  border-radius: 0 0 var(--radius) var(--radius);
  color: var(--stone-700);
  font-weight: 700;
}

.ratio{ position:relative; width:100%; }
.ratio::before{ content:""; display:block; padding-top: 133%; } /* fallback */
.ratio--34::before{ padding-top: 133.333%; } /* 3/4 */
.ratio--916::before{ padding-top: 177.78%; } /* 9/16 */
.ratio--max500{ max-height: 500px; }
.ratio > img{
  position:absolute;
  inset:0;
}

.carousel__btn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background:#fff;
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--stone-600);
  cursor:pointer;
  transition: box-shadow .2s ease, transform .2s ease, color .2s ease;
  z-index: 2;
}
.carousel__btn:hover{ color: var(--stone-900); box-shadow: var(--shadow-lg); }
.carousel__btn svg{ width:24px; height:24px; }
.carousel__btn--left{ left: 0; }
.carousel__btn--right{ right: 0; }

.dots{
  display:flex;
  justify-content:center;
  gap: 10px;
  margin-top: 16px;
}
.dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border:0;
  background: var(--stone-300);
  cursor:pointer;
  transition: width .2s ease, background .2s ease;
}
.dot:hover{ background: var(--stone-400); }
.dot.is-active{
  width: 26px;
  background: var(--stone-800);
}

/* Footer */
.footer{
  background: var(--stone-900);
  color:#fff;
  padding: 70px 0 40px;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
@media (min-width: 768px){
  .footer__grid{ grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 1024px){
  .footer__grid{ grid-template-columns: 1.2fr 1fr 1fr; gap: 44px; }
}
.footerBrand{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 14px;
}
.footerBrand__logo{
  width:48px; height:48px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  box-shadow: var(--shadow);
}
.footerBrand__logo svg{ width:24px; height:24px; color:#fff; }
.footerBrand__title{ font-weight: 900; font-size: 20px; }
.footerBrand__sub{ color: rgba(168,162,158,.9); font-size: 13px; margin-top: 2px; }

.footer__text{ color: rgba(168,162,158,.9); line-height:1.6; margin: 0 0 10px; }
.footer__muted{ color: rgba(120,113,108,.95); font-size: 13px; margin:0; }

.footer__h{ margin: 0 0 16px; font-size: 18px; font-weight: 900; }
.footerLink{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: rgba(231,229,228,.88);
  padding: 8px 0;
}
.footerLink:hover{ color:#fff; }
.footerLink__icon{
  width:40px; height:40px;
  border-radius: 12px;
  background: rgba(41,37,36,1);
  display:flex;
  align-items:center;
  justify-content:center;
}

.footerAddr{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  color: rgba(231,229,228,.88);
  margin-bottom: 18px;
}
.footerAddr__icon{
  width:40px; height:40px;
  border-radius: 12px;
  background: rgba(41,37,36,1);
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer__bottom{
  border-top: 1px solid rgba(41,37,36,1);
  padding-top: 16px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  align-items:center;
  justify-content:space-between;
  color: rgba(120,113,108,.95);
  font-size: 13px;
}
@media (min-width: 768px){
  .footer__bottom{ flex-direction:row; }
}
.footer__bottomMuted{ color: rgba(87,83,78,.95); font-size: 12px; }

/* Helper */
@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; scroll-behavior:auto !important; }
}
