:root {
  --ink: #1a1412;
  --muted: #6b5d59;
  --line: #e8dcd7;
  --paper: #fdf7f3;
  --blush: #f5e4dd;
  --blush-2: #ebd0c6;
  --champagne: #b8946e;
  --rosewood: #8b5d54;
  --deep: #2a1f1c;
  --white: #ffffff;
  --gold: #c4a265;
  --shadow-sm: 0 1px 3px rgba(42,31,28,.06);
  --shadow: 0 20px 60px rgba(42,31,28,.10);
  --shadow-lg: 0 32px 80px rgba(42,31,28,.14);
  --radius: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html[dir="rtl"] body { direction: rtl; }
html[dir="rtl"] .brand,
html[dir="rtl"] .nav-tools,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .eyebrow { direction: rtl; }
html[dir="rtl"] .eyebrow::before { order: 2; }

body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

/* ===== TOPBAR ===== */
.topbar {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  background: var(--deep);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .03em;
  text-align: center;
}

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 max(5vw, 32px);
  background: rgba(253,247,243,.92);
  border-bottom: 1px solid rgba(232,220,215,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1.5px solid var(--champagne);
  border-radius: 50%;
  background: var(--white);
  color: var(--rosewood);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px; font-weight: 700;
  transition: transform .25s, box-shadow .25s;
}
.brand:hover .brand-mark {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(139,93,84,.18);
}

.brand-name { display: grid; gap: 2px; }
.brand-name strong {
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-name span {
  color: var(--muted);
  font-size: 10.5px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
  flex-wrap: wrap;
}
.nav-links a { position: relative; padding: 4px 0; transition: color .2s; }
.nav-links a::after {
  content: "";
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--champagne);
  transform: scaleX(0); transition: transform .25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; padding: 0;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); cursor: pointer; z-index: 30;
}
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 25;
  background: rgba(42,31,28,.97);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  color: var(--white); font-size: 24px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; transition: color .2s;
}
.mobile-nav-overlay a:hover { color: var(--blush-2); }

.language-select {
  min-height: 40px; width: auto; border: 1px solid var(--line);
  border-radius: 999px; padding: 0 12px;
  background: rgba(255,255,255,.85); color: var(--ink);
  font-weight: 700; font-size: 12.5px; cursor: pointer;
}

.nav-action,
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 22px;
  border: 1.5px solid var(--deep); border-radius: 999px;
  background: var(--deep); color: var(--white);
  font-weight: 700; font-size: 13.5px; letter-spacing: .02em;
  cursor: pointer; transition: all .25s;
}
.btn:hover { background: #3d2c28; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn.secondary {
  background: rgba(255,255,255,.55); color: var(--deep);
  backdrop-filter: blur(8px);
}
.btn.secondary:hover { background: rgba(255,255,255,.75); }
.btn.outline {
  background: transparent; color: var(--deep); border-color: var(--line);
}
.btn.outline:hover { border-color: var(--champagne); background: rgba(196,162,101,.06); }
.btn.gold {
  background: var(--gold); border-color: var(--gold); color: var(--white);
}
.btn.gold:hover { background: #b38d4e; }

/* ===== LAYOUT ===== */
.wrap { width: min(1320px, 90vw); margin: 0 auto; }
section { padding: 90px 0; }

/* ===== HERO — INDEX ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 108px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--deep);
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(105deg, rgba(42,31,28,.92) 0%, rgba(42,31,28,.78) 38%, rgba(42,31,28,.45) 62%, rgba(42,31,28,.18) 100%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%; object-fit: cover;
}

.hero-copy {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 6vh max(5vw, 32px) 8vh;
  max-width: 720px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  width: fit-content; margin-bottom: 20px;
  color: var(--blush-2); font-size: 11.5px;
  font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 32px; height: 1.5px; background: var(--champagne);
}

h1, h2, h3, h4 { margin: 0; }
h1 {
  max-width: 680px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400; letter-spacing: -.01em;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  color: var(--white);
}
h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400; letter-spacing: -.01em;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.06;
  color: var(--ink);
}
h3 { font-size: 20px; font-weight: 600; letter-spacing: -.01em; }
h4 { font-size: 16px; font-weight: 700; }

.hero .lead {
  max-width: 560px; margin: 24px 0 0;
  color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.7;
}

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px;
}

.hero-card {
  position: relative; z-index: 2;
  align-self: end; margin: 0 max(5vw, 32px) 6vh 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,.12);
}
.metric {
  padding: 20px 16px; background: rgba(42,31,28,.45);
  backdrop-filter: blur(12px); text-align: center;
}
.metric strong {
  display: block; color: var(--white);
  font-size: 26px; line-height: 1; font-weight: 700;
}
.metric span {
  display: block; margin-top: 7px;
  color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.4;
}

/* ===== SECTION HEAD ===== */
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 30px; margin-bottom: 40px;
}
.section-head p {
  max-width: 540px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65;
}

/* ===== GRIDS ===== */
.grid { display: grid; gap: 20px; }
.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ===== CARDS ===== */
.card, .product, .proof, .panel, .market-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.product:hover, .proof:hover, .market-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  transition: transform .5s;
}
.product:hover img { transform: scale(1.04); }

.product-info, .proof, .panel { padding: 24px; }
.product-info h3, .proof h3, .market-card h3 { margin: 14px 0 8px; font-size: 19px; }
.product-info p, .proof p, .panel p, .market-card p { margin: 0; color: var(--muted); line-height: 1.6; }

.tag {
  display: inline-flex; min-height: 26px; align-items: center;
  padding: 0 12px; border-radius: 999px;
  background: var(--blush); color: var(--rosewood);
  font-size: 11.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}

/* ===== BAND (dark section) ===== */
.band {
  margin: 0; padding: 90px 0;
  background: var(--deep); color: var(--white);
}
.band h2 { color: var(--white); }
.band p, .band .section-head p { color: rgba(255,255,255,.68); }
.band .proof, .band .panel, .band .market-card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  box-shadow: none;
}
.band .tag { background: rgba(245,228,221,.15); color: var(--blush-2); }

/* ===== SPLIT ===== */
.split {
  display: grid; grid-template-columns: .96fr 1.04fr;
  gap: 44px; align-items: center;
}

.image-block {
  min-height: 500px; border-radius: var(--radius);
  background: var(--blush) center/cover;
  box-shadow: var(--shadow);
}
.image-block.workshop { background-image: url("assets/factory-inside.jpg"); }
.image-block.display { background-image: url("assets/product-display-4.jpg"); }
.image-block.product-hero { background-image: url("assets/product-display-1.jpg"); }
.image-block.warehouse { background-image: url("assets/warehouse-2.jpg"); }

.steps { display: grid; gap: 14px; }
.step {
  display: grid; grid-template-columns: 48px 1fr; gap: 16px;
  padding: 20px; border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); background: rgba(255,255,255,.05);
  transition: background .25s;
}
.step:hover { background: rgba(255,255,255,.09); }
.step b {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blush-2); color: var(--deep);
  font-size: 17px; font-weight: 800;
}
.step h3 { margin: 0 0 6px; font-size: 17px; color: var(--white); }
.step p { margin: 0; font-size: 14px; color: rgba(255,255,255,.65); }

/* ===== GALLERY ===== */
.gallery {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.gallery.three-col { grid-template-columns: repeat(3, 1fr); }
.gallery img, .gallery video {
  width: 100%; height: 100%; min-height: 300px;
  object-fit: cover; border-radius: var(--radius);
  transition: transform .4s;
}
.gallery img:hover { transform: scale(1.02); }

/* ===== TRUST BAR ===== */
.trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
  padding: 44px 5vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--muted); font-size: 14px; font-weight: 500;
}
.trust-icon {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; background: var(--blush);
  font-size: 18px; color: var(--rosewood);
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testimonial {
  padding: 28px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--white);
  box-shadow: var(--shadow-sm);
}
.testimonial q {
  display: block; font-size: 15px; line-height: 1.7; color: var(--ink);
  font-style: italic; margin-bottom: 16px;
}
.testimonial .author { font-size: 13px; font-weight: 700; color: var(--rosewood); }
.testimonial .role { font-size: 12px; color: var(--muted); }

/* ===== CTA BAND ===== */
.cta-band {
  padding: 80px 5vw; text-align: center;
  background: linear-gradient(180deg, var(--blush) 0%, var(--paper) 100%);
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { max-width: 560px; margin: 0 auto 28px; color: var(--muted); font-size: 17px; }

/* ===== HERO MINI (sub pages) ===== */
.hero-mini {
  padding: 72px 0 52px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(253,247,243,.98), rgba(253,247,243,.88)),
              url("assets/product-display-4.jpg") center/cover;
}
.page-title { max-width: 780px; }
.page-title h1 { color: var(--ink); font-size: clamp(34px, 4.5vw, 56px); }
.page-title p { max-width: 600px; margin-top: 16px; color: var(--muted); font-size: 17px; line-height: 1.7; }

/* ===== QUOTE PAGE ===== */
.quote-wrap {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: start;
}
.cost-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow-sm); overflow: hidden;
}
.cost-card h3 { margin: 0; padding: 20px 24px; background: var(--blush); font-size: 17px; }
.cost-row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 16px 24px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 14px;
}
.cost-row strong { color: var(--ink); text-align: right; font-size: 14px; }
.total { background: #fff5f0; font-weight: 800; }

.quote-form {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; padding: 28px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow-sm);
}
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--muted); font-size: 12.5px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
input, select, textarea {
  width: 100%; min-height: 46px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: 10px 14px;
  background: #fefcf9; color: var(--ink); font-size: 14px;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(196,162,101,.12);
}
textarea { min-height: 120px; resize: vertical; }
.form-note { margin: 0; color: var(--muted); font-size: 13px; }

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 12px; max-width: 820px; }
details.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); overflow: hidden;
  transition: box-shadow .25s;
}
details.faq-item[open] { box-shadow: var(--shadow-sm); }
details.faq-item summary {
  padding: 22px 24px; font-size: 17px; font-weight: 700;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  transition: color .2s;
}
details.faq-item summary:hover { color: var(--rosewood); }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+"; font-size: 22px; color: var(--rosewood);
  font-weight: 400; transition: transform .3s;
}
details.faq-item[open] summary::after { content: "−"; }
details.faq-item .faq-body { padding: 0 24px 22px; color: var(--muted); line-height: 1.75; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  transition: transform .25s, box-shadow .25s;
  font-size: 26px; font-weight: 700;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(37,211,102,.5); }

/* ===== FOOTER ===== */
.footer {
  padding: 44px 5vw 36px;
  background: var(--deep); color: rgba(255,255,255,.65);
  font-size: 13.5px; line-height: 1.8;
}
.footer strong { color: var(--white); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px; max-width: 1320px; margin: 0 auto 32px;
}
.footer-grid h4 { color: var(--white); margin-bottom: 12px; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.footer-grid a { display: block; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-grid a:hover { color: var(--blush-2); }
.footer-bottom {
  max-width: 1320px; margin: 0 auto; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center; font-size: 12px; color: rgba(255,255,255,.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero, .split, .quote-wrap, .gallery { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { padding: 48px 5vw 32px; }
  .hero-card { margin: 0 5vw 40px; }
  .hero .lead { font-size: 16px; }
  .four, .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery.three-col { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 0; }
  .trust-bar { gap: 28px; padding: 32px 5vw; }
}

@media (max-width: 620px) {
  .topbar { font-size: 11px; padding: 6px 12px; }
  .nav { min-height: 62px; padding: 0 4vw; gap: 10px; }
  .brand-name strong { font-size: 12px; }
  .brand-name span { display: none; }
  .brand-mark { width: 34px; height: 34px; font-size: 16px; }
  .nav-tools { gap: 6px; }
  .language-select { min-height: 36px; max-width: 80px; font-size: 11px; padding: 0 8px; }
  .nav-action { min-height: 38px; padding: 0 14px; font-size: 12px; }
  .hero-copy { padding: 40px 4vw 24px; }
  h1 { font-size: clamp(30px, 7vw, 46px); }
  h2 { font-size: clamp(24px, 5vw, 34px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .four, .three, .two, .quote-form, .testimonial-grid, .footer-grid,
  .gallery.three-col { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
  section { padding: 48px 0; }
  .image-block { min-height: 280px; }
  .product img { aspect-ratio: 1/1; }
  .footer { text-align: center; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 48px; height: 48px; font-size: 22px; }
}
