:root{
  --bg:#ffffff;
  --bg2:#fff7fb;
  --text:#111827;
  --muted:#6b7280;

  --brand:#b0197f;
  --brandDeep:#7e0e58;
  --brandSoft:#f08bbd;
  --tint:#fff0f8;

  --card:#ffffff;
  --border:rgba(17,24,39,.08);
  --shadow: 0 18px 50px rgba(17,24,39,.10);
  --shadowSoft: 0 10px 26px rgba(17,24,39,.08);

  --radius:22px;
  --radiusSm:16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Cairo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 800px at 20% 0%, rgba(240,139,189,.22), transparent 55%),
              radial-gradient(1200px 800px at 85% 20%, rgba(176,25,127,.16), transparent 60%),
              linear-gradient(180deg, #fff, var(--bg2));
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}

.section{
  padding: 70px 0;
  position:relative;
}
.section--tint{
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(240,139,189,.18), transparent 55%),
    radial-gradient(900px 500px at 80% 30%, rgba(176,25,127,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.25));
  border-top: 1px solid rgba(17,24,39,.04);
  border-bottom: 1px solid rgba(17,24,39,.04);
}

.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 22px;
}
.sectionHead h2{
  margin:0;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing:.2px;
}
.sectionHead p{
  margin:0;
  color:var(--muted);
  max-width: 560px;
}
.sectionHead::after{
  content:"";
  flex:1;
  height:1px;
  background: linear-gradient(90deg, rgba(176,25,127,.25), rgba(240,139,189,.10), transparent);
  border-radius:999px;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17,24,39,.06);
}
.header.isScrolled{
  box-shadow: 0 12px 30px rgba(17,24,39,.08);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 14px;
}
.brand{display:flex;align-items:center;gap:12px}
.brand__logo{height:42px;width:auto}

.nav{
  display:flex;
  gap: 6px;
  align-items:center;
}
.nav a{
  padding:10px 12px;
  border-radius: 14px;
  color:#374151;
  font-weight:700;
  transition: .18s ease;
}
.nav a:hover{
  background: rgba(240,139,189,.18);
  color: var(--brand);
  transform: translateY(-1px);
}

.header__cta{
  display:flex;
  gap:10px;
  align-items:center;
}

.menuBtn{
  display:none;
  width:46px;height:44px;
  border-radius: 14px;
  border:1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.7);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.menuBtn span{
  display:block;
  width:18px;height:2px;
  background: var(--brand);
  border-radius:999px;
  transition:.2s ease;
}

/* Buttons */
.btn{
  background: linear-gradient(135deg, var(--brand), #d23f9b);
  color:#fff;
  border:none;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight:800;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 14px 28px rgba(176,25,127,.22);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  white-space:nowrap;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(176,25,127,.26);
  filter: saturate(1.05);
}
.btn:active{transform: translateY(0)}
.btn--ghost{
  background: rgba(176,25,127,.08);
  color: var(--brand);
  border:1px solid rgba(176,25,127,.16);
  box-shadow:none;
}
.btn--ghost:hover{
  background: rgba(176,25,127,.12);
  box-shadow:none;
}
.btn--full{width:100%}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  padding: 56px 0 34px;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.92)),
    radial-gradient(900px 500px at 20% 10%, rgba(240,139,189,.22), transparent 55%),
    radial-gradient(900px 500px at 80% 30%, rgba(176,25,127,.16), transparent 60%),
    url("../img/hero_kitchen.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}
.hero__bg::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(500px 260px at 15% 15%, rgba(176,25,127,.18), transparent 60%),
    radial-gradient(600px 320px at 85% 15%, rgba(240,139,189,.20), transparent 65%);
  pointer-events:none;
}

.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 28px;
  align-items:center;
  min-height: 68vh;
}

.badge{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(176,25,127,.10);
  color: var(--brandDeep);
  font-weight:800;
  margin-bottom: 10px;
  border: 1px solid rgba(176,25,127,.12);
}

.hero h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.15;
  letter-spacing:.2px;
}
.hero p{
  margin: 0 0 18px;
  color:#374151;
  max-width: 560px;
}
.hero__actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-bottom: 18px;
}

.hero__meta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.metaCard{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(17,24,39,.08);
  border-radius: var(--radiusSm);
  padding: 12px 14px;
  box-shadow: var(--shadowSoft);
}
.metaCard__title{
  color: var(--muted);
  font-weight:700;
  font-size: 13px;
}
.metaCard__value{
  font-weight:900;
  color: var(--brandDeep);
  letter-spacing:.3px;
  margin-top: 2px;
  direction:ltr;
  text-align:right;
}

.hero__media{
  display:grid;
  gap: 14px;
}
.heroCard{
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(17,24,39,.08);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease;
}
.heroCard:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(17,24,39,.12);
}
.heroCard img{
  width:100%;
  height: 250px;
  object-fit: cover;
}
.heroCard__caption{
  padding: 14px 16px 16px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
}
.heroCard__caption strong{
  font-size: 16px;
}
.heroCard__caption span{
  color: var(--muted);
  font-weight:700;
  font-size: 13px;
}
.heroCard--secondary img{height: 210px}

/* Grid + Cards */
.grid{
  display:grid;
  gap: 16px;
}
.productsGrid{
  grid-template-columns: repeat(3, 1fr);
}
.featuresGrid{
  grid-template-columns: repeat(3, 1fr);
}
.aboutGrid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}


.aboutGrid .card{
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.aboutGrid .card::before{
  content:"";
  position:absolute;
  top:-60px;
  right:-60px;
  width:180px;
  height:180px;
  background: radial-gradient(circle at 30% 30%, rgba(240,139,189,.35), transparent 60%);
  pointer-events:none;
}
.aboutGrid .card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.aboutGrid .card h3{
  display:flex;
  align-items:center;
  gap:10px;
}
.aboutGrid .card h3::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--brand), var(--brandSoft));
  box-shadow: 0 10px 20px rgba(176,25,127,.22);
  flex:0 0 auto;
}

.contactGrid{
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.card{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(17,24,39,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadowSoft);
  overflow:hidden;
}
.card:hover{
  border-color: rgba(176,25,127,.18);
}

.product__img{
  height: 210px;
  background: linear-gradient(135deg, rgba(240,139,189,.20), rgba(176,25,127,.10));
  display:flex;
  align-items:center;
  justify-content:center;
}
.product__img img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.product__body{padding: 16px 18px 18px}
.product h3{margin:0 0 8px;font-size:18px}
.product p{margin:0;color:#374151}
.product__body p{margin-top:6px}

.list{
  margin:10px 0 0;
  padding:0 18px 0 0;
  color:#374151;
  line-height: 1.9;
}
.list li{margin: 4px 0}

.chips{
  margin-top: 12px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.chip{
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(240,139,189,.16);
  color: var(--brandDeep);
  font-weight:800;
  font-size: 12px;
  border: 1px solid rgba(176,25,127,.10);
}

.feature{
  padding: 18px 18px 20px;
}
.feature h3{margin:0 0 8px}
.feature p{margin:0;color:#374151}
.feature ul{margin:10px 0 0;padding:0 18px 0 0;color:#374151}
.feature li{margin:4px 0}

.callout{
  margin-top: 22px;
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(135deg, rgba(176,25,127,.10), rgba(240,139,189,.16));
  border: 1px solid rgba(176,25,127,.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.callout__text h3{margin:0 0 4px;font-size:18px}
.callout__text p{margin:0;color:#374151}
.callout__actions{display:flex;gap:10px;flex-wrap:wrap}

/* Contact */
.contactCard{padding: 18px}
.contactCard h3{margin:0 0 12px}
.contactList{
  display:grid;
  gap:10px;
  margin-bottom: 14px;
}
.contactList div{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(17,24,39,.08);
}
.contactList span{color:var(--muted);font-weight:700}
.contactList a{color:var(--brandDeep);font-weight:900;direction:ltr}

.mapWrap{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: var(--shadowSoft);
}
.mapWrap iframe{width:100%;height: 280px}

.linkBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.75);
  border:1px solid rgba(176,25,127,.14);
  font-weight:900;
  color: var(--brandDeep);
  transition:.15s ease;
}
.linkBtn:hover{transform: translateY(-2px); background: rgba(240,139,189,.12)}

.formCard{padding: 18px}
.formCard h3{margin:0 0 12px}
.field{display:grid;gap:6px;margin-bottom: 12px}
label{font-weight:800;color:#374151}
input, textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.12);
  outline:none;
  background: rgba(255,255,255,.85);
  font-family: inherit;
  font-size: 15px;
  transition: box-shadow .15s ease, border-color .15s ease;
}
textarea{min-height: 120px; resize: vertical}
input:focus, textarea:focus{
  border-color: rgba(176,25,127,.32);
  box-shadow: 0 0 0 4px rgba(176,25,127,.10);
}
.note{
  color: var(--muted);
  font-size: 13px;
  margin: 8px 0 0;
}

/* Footer */
.footer{
  padding: 26px 0 40px;
}
.footer__inner{
  border-top: 1px solid rgba(17,24,39,.08);
  padding-top: 16px;
}
.footer__copy{
  color:#374151;
  font-weight:800;
  text-align:center;
}

/* Reveal animations */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.isVisible{
  opacity:1;
  transform:none;
}
@media (prefers-reduced-motion: reduce){
  *{transition:none!important;animation:none!important}
  .reveal{opacity:1;transform:none}
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{grid-template-columns: 1fr; min-height:auto}
  .hero__media{grid-template-columns: 1fr; order:2}
  .hero__text{order:1}
  .productsGrid{grid-template-columns: 1fr 1fr}
  .featuresGrid{grid-template-columns: 1fr 1fr}
  .aboutGrid{grid-template-columns: 1fr}
  .contactGrid{grid-template-columns: 1fr}
}

@media (max-width: 720px){
  .header__cta{display:none}
  .menuBtn{display:flex}
  .nav{
    position:fixed;
    top: 68px;
    right: 16px;
    left: 16px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border:1px solid rgba(17,24,39,.10);
    border-radius: var(--radius);
    box-shadow: 0 22px 60px rgba(17,24,39,.14);
    padding: 10px;
    display:none;
    flex-direction:column;
    gap: 2px;
  }
  .nav.isOpen{display:flex}
  .nav a{width:100%; justify-content:center; text-align:center}
  .heroCard img{height: 230px}
}


@media (max-width: 900px){
  .featuresGrid{grid-template-columns: repeat(2, minmax(0, 1fr));}
}

@media (max-width: 560px){
  .featuresGrid{grid-template-columns: 1fr;}
}
