/* ============================================================
   دنجکو — Denjko · Home Appliance Store, Mashhad
   Art direction: "warm night showroom" — deep espresso neutrals,
   single copper accent, editorial Persian type (Vazirmatn).
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  /* neutral ramp — tinted toward warm espresso, never pure black/white */
  --ink-950: #14100d;
  --ink-900: #1a1512;
  --ink-800: #241d18;
  --ink-700: #33291f;
  --ink-600: #4a3c30;
  --sand-400: #a89880;
  --sand-200: #cfc2ae;
  --cream:   #f6efe4;
  --cream-hi:#fbf7ee;

  /* the one accent */
  --copper:      #e08543;
  --copper-deep: #b96a31;
  --copper-soft: rgba(224, 133, 67, 0.14);

  --gold: #d4af6a;           /* Shahi mark only */

  --ok:    #7fb069;
  --warn:  #d9a441;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --radius-pill: 999px;

  --font-body: "Vazirmatn", "Segoe UI", Tahoma, sans-serif;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-io:  cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);

  --shadow-1: 0 10px 30px -12px rgba(20, 16, 13, 0.45);
  --shadow-2: 0 24px 60px -20px rgba(20, 16, 13, 0.55);

  --container: 1200px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--ink-600) var(--ink-950);
}

body {
  background: var(--ink-950);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.9;               /* Persian needs generous leading */
  font-size: 16px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--copper); color: var(--ink-950); }

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.num { font-feature-settings: "ss01"; }  /* Vazirmatn Farsi digits via localized text */

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: fixed; top: -100%; inset-inline-start: 1rem; z-index: 200;
  background: var(--copper); color: var(--ink-950);
  padding: 0.6rem 1.2rem; border-radius: var(--radius-s); font-weight: 700;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus-visible { top: 1rem; }

/* ---------- reveal system (static-first) ---------- */
/* hidden only when JS is present; no-JS visitors see the final layout */
.js .rv {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  transition-delay: var(--rv-delay, 0s);
}
.rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   header
   ============================================================ */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
              border-color 0.35s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(20, 16, 13, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(207, 194, 174, 0.12);
}

.header-inner {
  display: flex; align-items: center; gap: 1.25rem;
  padding-block: 0.85rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand svg { width: 42px; height: 42px; flex: none; }
.brand-name {
  font-size: 1.45rem; font-weight: 900; letter-spacing: 0; line-height: 1.2;
}
.brand-sub {
  display: block; font-size: 0.62rem; font-weight: 500;
  color: var(--sand-400); letter-spacing: 0.35em; margin-top: -2px;
}

.main-nav { margin-inline-start: auto; }
.main-nav ul { display: flex; gap: 0.25rem; }
.main-nav a {
  position: relative; display: inline-block; padding: 0.45rem 0.85rem;
  color: var(--sand-200); font-weight: 500; font-size: 0.95rem;
  border-radius: var(--radius-s);
  transition: color 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}
.main-nav a::after {
  content: ""; position: absolute; bottom: 0.15rem; inset-inline: 0.85rem;
  height: 2px; border-radius: 2px; background: var(--copper);
  transform: scaleX(0); transform-origin: right;     /* RTL: grows from right */
  transition: transform 0.25s var(--ease-out);
}
.main-nav a:hover, .main-nav a.current { color: var(--cream); }
.main-nav a:hover::after, .main-nav a.current::after { transform: scaleX(1); }

.header-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.05rem;
  border: 1px solid rgba(207, 194, 174, 0.25);
  border-radius: var(--radius-pill);
  color: var(--cream); font-weight: 700; font-size: 0.92rem;
  transition: border-color 0.25s var(--ease-out), background-color 0.25s var(--ease-out),
              color 0.25s var(--ease-out), transform 0.15s var(--ease-out);
}
.header-phone:hover { border-color: var(--copper); background: var(--copper-soft); }
.header-phone:active { transform: scale(0.97); }
.header-phone svg { width: 17px; height: 17px; color: var(--copper); }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  border-radius: var(--radius-s);
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--cream); position: relative;
  transition: transform 0.3s var(--ease-drawer), opacity 0.2s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 65%;
  animation: heroZoom 14s var(--ease-out) both;
  animation-play-state: paused;
}
.hero.ready .hero-media img { animation-play-state: running; }
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}

.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top,
      var(--ink-950) 0%,
      rgba(20, 16, 13, 0.88) 22%,
      rgba(20, 16, 13, 0.45) 55%,
      rgba(20, 16, 13, 0.35) 100%);
}

.hero-content { padding-block: 9rem 5.5rem; max-width: 46rem; }

.kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--copper); font-weight: 700; font-size: 0.95rem;
}
.kicker::before {
  content: ""; width: 34px; height: 2px; background: var(--copper); border-radius: 2px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 1.32;
  margin-top: 1.1rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--copper);
  position: relative;
  white-space: nowrap;
}
.hero h1 em svg {
  position: absolute; inset-inline: 0; bottom: -0.12em; width: 100%;
  height: 0.24em; color: var(--copper);
  opacity: 0.9;
}
.hero-lede {
  margin-top: 1.4rem; max-width: 34rem;
  color: var(--sand-200); font-size: 1.08rem; font-weight: 300;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.4rem; }

.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 2rem; border-radius: var(--radius-pill);
  font-weight: 800; font-size: 1rem; line-height: 1.6;
  transition: transform 0.16s var(--ease-out), box-shadow 0.3s var(--ease-out),
              background-color 0.25s var(--ease-out), border-color 0.25s var(--ease-out),
              color 0.25s var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--copper); color: var(--ink-950);
  box-shadow: 0 12px 32px -10px rgba(224, 133, 67, 0.55);
}
.btn-primary:hover { background: #eb9552; box-shadow: 0 16px 40px -10px rgba(224, 133, 67, 0.7); }
.btn-ghost {
  border: 1px solid rgba(207, 194, 174, 0.35); color: var(--cream);
}
.btn-ghost:hover { border-color: var(--copper); color: var(--copper); background: var(--copper-soft); }
.btn svg { width: 18px; height: 18px; }

/* hero stats strip */
.hero-stats {
  margin-top: 3.6rem; display: flex; flex-wrap: wrap; gap: 2.6rem;
}
.stat b { font-size: 1.9rem; font-weight: 900; color: var(--cream); display: block; line-height: 1.3; }
.stat span { color: var(--sand-400); font-size: 0.88rem; }

/* scroll hint */
.scroll-hint {
  position: absolute; bottom: 2rem; inset-inline-start: 50%;
  translate: -50% 0;               /* symmetric, safe in RTL */
  width: 26px; height: 44px;
  border: 2px solid rgba(207, 194, 174, 0.4); border-radius: 999px;
}
.scroll-hint::after {
  content: ""; position: absolute; top: 8px; inset-inline-start: calc(50% - 2px);
  width: 4px; height: 8px; border-radius: 4px; background: var(--copper);
  animation: hintDrop 1.8s var(--ease-io) infinite;
}
@keyframes hintDrop {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* entrance choreography (JS adds .ready to <body> after load) */
.js .hero [data-hero-step] { opacity: 0; translate: 0 30px; }
.js .hero.ready [data-hero-step] {
  transition: opacity 1s var(--ease-out), translate 1s var(--ease-out);
  transition-delay: calc(var(--step, 0) * 140ms + 150ms);
}
.hero.ready [data-hero-step] { opacity: 1; translate: 0 0; }

/* ============================================================
   section scaffolding
   ============================================================ */
.section { padding-block: clamp(4.5rem, 10vw, 7.5rem); position: relative; }

.section-head { max-width: 40rem; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.6rem); font-weight: 900; line-height: 1.45;
  margin-top: 0.8rem;
}
.section-head p { color: var(--sand-400); margin-top: 0.7rem; }

/* ============================================================
   categories
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
}
.cat-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-l);
  background: var(--ink-800);
  border: 1px solid rgba(207, 194, 174, 0.09);
  min-height: 230px;
  display: flex; align-items: flex-end;
  isolation: isolate;
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease-out),
              box-shadow 0.5s var(--ease-out);
}
.cat-card:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.cat-card:nth-child(2) { grid-column: span 7; }
.cat-card:nth-child(3) { grid-column: span 4; }
.cat-card:nth-child(4) { grid-column: span 3; }
.cat-card:nth-child(5) { grid-column: span 4; }
.cat-card:nth-child(6) { grid-column: span 3; }
.cat-card:nth-child(7) { grid-column: span 5; }
.cat-card:nth-child(8) { grid-column: span 7; }

.cat-card img {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.cat-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top,
    rgba(20, 16, 13, 0.92) 0%, rgba(20, 16, 13, 0.25) 55%, rgba(20, 16, 13, 0.05));
  transition: opacity 0.5s var(--ease-out);
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 133, 67, 0.4);
  box-shadow: var(--shadow-2);
}
.cat-card:hover img { transform: scale(1.06); }

.cat-body { padding: 1.4rem 1.5rem; width: 100%; display: flex; align-items: center; gap: 1rem; }
.cat-icon {
  flex: none; width: 52px; height: 52px; border-radius: 16px;
  background: var(--copper-soft);
  border: 1px solid rgba(224, 133, 67, 0.35);
  display: grid; place-items: center; color: var(--copper);
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out),
              transform 0.4s var(--ease-out);
}
.cat-icon svg { width: 26px; height: 26px; }
.cat-card:hover .cat-icon { background: var(--copper); color: var(--ink-950); transform: rotate(-6deg); }
.cat-body h3 { font-size: 1.15rem; font-weight: 800; }
.cat-body .cat-meta { display: flex; justify-content: space-between; width: 100%; align-items: baseline; }
.cat-body small { color: var(--sand-400); font-size: 0.82rem; }
.cat-arrow {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(207, 194, 174, 0.25);
  display: grid; place-items: center; color: var(--sand-200);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.35s var(--ease-out);
}
.cat-arrow svg { width: 17px; height: 17px; }
.cat-card:hover .cat-arrow { background: var(--copper); border-color: var(--copper); color: var(--ink-950); transform: rotate(-45deg); }

/* icon-only tile (dishwasher etc.) */
.cat-card.icon-tile {
  align-items: center; justify-content: center;
  background:
    radial-gradient(120% 120% at 20% 0%, var(--ink-700) 0%, var(--ink-900) 60%);
}
.icon-tile .tile-inner { text-align: center; padding: 2rem 1rem; width: 100%; }
.icon-tile .cat-icon { width: 68px; height: 68px; margin-inline: auto; margin-bottom: 1rem; }
.icon-tile .cat-icon svg { width: 34px; height: 34px; }
.icon-tile h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.3rem; }
.icon-tile small { color: var(--sand-400); }

/* ============================================================
   featured products
   ============================================================ */
.products-section { background: linear-gradient(var(--ink-900) 0%, var(--ink-950) 100%); }

.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.2rem;
}
.product-card {
  position: relative;
  background: var(--ink-800);
  border: 1px solid rgba(207, 194, 174, 0.09);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.product-card:hover { transform: translateY(-5px); border-color: rgba(224, 133, 67, 0.45); box-shadow: var(--shadow-2); }

.product-figure {
  position: relative; aspect-ratio: 4 / 3.1; overflow: hidden; background: #f0ebe2;
}
.product-figure img {
  width: 100%; height: 100%; object-fit: cover;
  mix-blend-mode: multiply;              /* melts light studio bg into cream tile */
  transition: transform 0.7s var(--ease-out);
}
.product-card:hover .product-figure img { transform: scale(1.07); }

.badge {
  position: absolute; top: 0.9rem; inset-inline-start: 0.9rem; z-index: 2;
  background: var(--copper); color: var(--ink-950);
  font-size: 0.72rem; font-weight: 800; padding: 0.22rem 0.7rem;
  border-radius: var(--radius-pill);
}
.badge.soft { background: rgba(20,16,13,.75); color: var(--cream); border: 1px solid rgba(207,194,174,.3); }

.product-quick {
  position: absolute; inset-inline: 0.9rem; bottom: 0.9rem; z-index: 2;
  display: flex; justify-content: center;
  padding: 0.62rem; border-radius: var(--radius-s);
  background: rgba(20, 16, 13, 0.86);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: var(--cream); font-weight: 700; font-size: 0.9rem;
  opacity: 0; translate: 0 8px;
  transition: opacity 0.3s var(--ease-out), translate 0.3s var(--ease-out),
              background-color 0.2s;
}
.product-card:hover .product-quick, .product-card:focus-within .product-quick {
  opacity: 1; translate: 0 0;
}
.product-quick:hover { background: var(--copper); color: var(--ink-950); }

.product-info { padding: 1.1rem 1.2rem 1.3rem; }
.product-info .brand-tag { color: var(--sand-400); font-size: 0.78rem; }
.product-info h3 { font-size: 1.02rem; font-weight: 700; margin-top: 0.15rem; line-height: 1.7; }
.price-row { display: flex; align-items: baseline; gap: 0.55rem; margin-top: 0.7rem; }
.price { font-size: 1.18rem; font-weight: 900; color: var(--copper); }
.price-unit { color: var(--sand-400); font-size: 0.78rem; }
.price-was { color: var(--sand-400); text-decoration: line-through; font-size: 0.85rem; }

.rating { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.55rem; color: var(--warn); font-size: 0.82rem; }
.rating svg { width: 14px; height: 14px; }
.rating b { color: var(--sand-200); font-weight: 600; }

/* ============================================================
   value props strip
   ============================================================ */
.values-band {
  border-block: 1px solid rgba(207, 194, 174, 0.1);
  background: var(--ink-900);
}
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(207, 194, 174, 0.1);
  border-radius: var(--radius-m); overflow: hidden;
}
.value-item {
  background: var(--ink-900); padding: 2rem 1.6rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: background-color 0.3s var(--ease-out);
}
.value-item:hover { background: var(--ink-800); }
.value-item svg { width: 30px; height: 30px; flex: none; color: var(--copper); margin-top: 0.2rem; }
.value-item h3 { font-size: 1rem; font-weight: 800; }
.value-item p { color: var(--sand-400); font-size: 0.85rem; line-height: 1.8; margin-top: 0.2rem; }

/* ============================================================
   about / shahi
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.about-media { position: relative; }
.about-media .about-img-main {
  border-radius: var(--radius-l); aspect-ratio: 4 / 4.6; object-fit: cover; width: 100%;
  border: 1px solid rgba(207, 194, 174, 0.12);
}
.about-media .about-img-float {
  position: absolute; bottom: -1.6rem; inset-inline-end: -0.8rem;
  width: 46%; border-radius: var(--radius-m);
  border: 6px solid var(--ink-950);
  box-shadow: var(--shadow-2);
  aspect-ratio: 1; object-fit: cover;
}
.about-exp {
  position: absolute; top: 1.4rem; inset-inline-start: -0.9rem;
  background: var(--copper); color: var(--ink-950);
  border-radius: var(--radius-m); padding: 0.9rem 1.2rem; text-align: center;
  box-shadow: var(--shadow-1);
}
.about-exp b { display: block; font-size: 1.7rem; font-weight: 900; line-height: 1.3; }
.about-exp span { font-size: 0.78rem; font-weight: 700; }

.about-copy h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 900; line-height: 1.45; margin-top: 0.8rem; }
.about-copy > p { color: var(--sand-200); margin-top: 1.1rem; font-weight: 300; }

.shahi-card {
  margin-top: 2.2rem;
  display: flex; gap: 1.4rem; align-items: center;
  background: linear-gradient(135deg, var(--ink-800) 0%, var(--ink-900) 100%);
  border: 1px solid rgba(212, 175, 106, 0.3);
  border-radius: var(--radius-m);
  padding: 1.6rem 1.8rem;
  position: relative; overflow: hidden;
}
.shahi-card::before {
  content: "";
  position: absolute; inset-block: -40%; width: 40%;
  inset-inline-start: -10%;
  background: radial-gradient(closest-side, rgba(212, 175, 106, 0.12), transparent);
  pointer-events: none;
}
.shahi-logo { flex: none; width: 74px; height: 74px; }
.shahi-card h3 { font-size: 1.25rem; font-weight: 900; color: var(--gold); }
.shahi-card p { color: var(--sand-200); font-size: 0.92rem; margin-top: 0.3rem; }

.about-points {
  margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1.6rem;
}
.about-points li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--sand-200); font-size: 0.94rem; }
.about-points svg { width: 19px; height: 19px; flex: none; color: var(--copper); margin-top: 0.35rem; }

/* ============================================================
   testimonials
   ============================================================ */
.quotes-section { background: var(--ink-900); border-block: 1px solid rgba(207, 194, 174, 0.08); }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.quote-card {
  background: var(--ink-850, #201a15);
  border: 1px solid rgba(207, 194, 174, 0.09);
  border-radius: var(--radius-m);
  padding: 1.8rem 1.7rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}
.quote-card:hover { transform: translateY(-4px); border-color: rgba(224, 133, 67, 0.35); }
.quote-card .stars { color: var(--warn); display: flex; gap: 2px; }
.quote-card .stars svg { width: 15px; height: 15px; }
.quote-card blockquote { font-size: 0.97rem; color: var(--cream); font-weight: 300; }
.quote-who { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.quote-who .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  background: var(--ink-700); color: var(--copper); font-weight: 900; font-size: 1.1rem;
  border: 1px solid rgba(224, 133, 67, 0.3);
}
.quote-who b { display: block; font-size: 0.93rem; }
.quote-who span { color: var(--sand-400); font-size: 0.78rem; }

/* ============================================================
   contact / CTA
   ============================================================ */
.contact-section { position: relative; overflow: hidden; }
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: start;
}
.contact-copy h2 { font-size: clamp(1.9rem, 4.4vw, 2.8rem); font-weight: 900; line-height: 1.45; margin-top: 0.8rem; }
.contact-copy > p { color: var(--sand-200); margin-top: 1rem; max-width: 30rem; }

.contact-list { margin-top: 2rem; display: grid; gap: 0.9rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: center;
  background: var(--ink-800); border: 1px solid rgba(207, 194, 174, 0.09);
  border-radius: var(--radius-m); padding: 1rem 1.3rem;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.contact-item:hover { border-color: rgba(224, 133, 67, 0.4); transform: translateX(-4px); }
.contact-item .ci-icon {
  flex: none; width: 48px; height: 48px; border-radius: 14px;
  background: var(--copper-soft); border: 1px solid rgba(224, 133, 67, 0.35);
  display: grid; place-items: center; color: var(--copper);
}
.ci-icon svg { width: 23px; height: 23px; }
.contact-item b { display: block; font-size: 0.85rem; color: var(--sand-400); font-weight: 500; }
.contact-item span { font-weight: 800; font-size: 1.02rem; direction: ltr; unicode-bidi: isolate; }
.contact-item .fa-dir { direction: rtl; unicode-bidi: isolate; }

.contact-form {
  background: var(--ink-800);
  border: 1px solid rgba(207, 194, 174, 0.1);
  border-radius: var(--radius-l);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.contact-form h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 1.4rem; }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-size: 0.87rem; font-weight: 600; margin-bottom: 0.45rem; color: var(--sand-200); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--ink-900);
  border: 1px solid rgba(207, 194, 174, 0.18);
  border-radius: var(--radius-s);
  color: var(--cream); font: inherit; padding: 0.8rem 1rem;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(224, 133, 67, 0.18);
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a89880' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: left 1rem center; background-size: 16px; padding-inline-end: 1rem; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-note { color: var(--sand-400); font-size: 0.78rem; margin-top: 0.9rem; text-align: center; }

/* ============================================================
   footer
   ============================================================ */
.site-footer {
  border-top: 1px solid rgba(207, 194, 174, 0.1);
  background: #100c0a;
  padding-block: 4rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.5rem;
}
.footer-brand p { color: var(--sand-400); font-size: 0.92rem; margin-top: 1rem; max-width: 22rem; }
.footer-col h4 { font-size: 1rem; font-weight: 800; margin-bottom: 1.1rem; color: var(--cream); }
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a { color: var(--sand-400); font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--copper); }
.footer-col li span, .footer-col li address { color: var(--sand-400); font-size: 0.92rem; font-style: normal; }
.footer-col li + li { margin-top: 0.55rem; }
.footer-col .ltr { direction: ltr; unicode-bidi: isolate; }

.footer-bottom {
  margin-top: 3.5rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(207, 194, 174, 0.08);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  color: var(--sand-400); font-size: 0.83rem;
}
.footer-bottom .shahi-mini { display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-bottom .shahi-mini svg { width: 22px; height: 22px; }

/* floating call button (mobile-first, shown on all sizes) */
.call-fab {
  position: fixed; bottom: 1.4rem; inset-inline-start: 1.4rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--copper); color: var(--ink-950);
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -8px rgba(224, 133, 67, 0.65);
  transition: transform 0.2s var(--ease-out), background-color 0.2s;
}
.call-fab:hover { transform: scale(1.07); }
.call-fab svg { width: 24px; height: 24px; }
.call-fab::after {   /* soft ping ring */
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--copper);
  animation: fabPing 2.4s var(--ease-out) infinite;
}
@keyframes fabPing {
  0% { transform: scale(1); opacity: 0.7; }
  80%, 100% { transform: scale(1.55); opacity: 0; }
}

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid { grid-template-columns: 1fr 1fr; }
  .quote-card:last-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed; inset-inline: 0; top: 64px; z-index: 99;
    background: rgba(20, 16, 13, 0.97);
    -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(207, 194, 174, 0.12);
    padding: 1rem 1.5rem 1.6rem;
    /* closed by default; animated with grid-template-rows trick */
    display: grid; grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s var(--ease-drawer);
    visibility: hidden;
  }
  .main-nav.open { grid-template-rows: 1fr; visibility: visible; }
  .main-nav ul { overflow: hidden; display: grid; gap: 0.2rem; min-height: 0; }
  .main-nav a { display: block; padding: 0.8rem 0.6rem; font-size: 1.05rem; }
  .main-nav a::after { display: none; }
  .nav-toggle { display: inline-flex; order: 3; }
  .main-nav { order: 4; }
  .header-phone { margin-inline-start: auto; }
  .nav-toggle { margin-inline-start: 0.4rem; }

  .hero-content { padding-block: 7.5rem 5rem; }
  .hero-stats { gap: 1.6rem 2.2rem; }

  .cat-grid { grid-template-columns: repeat(6, 1fr); }
  .cat-card:nth-child(1) { grid-column: span 6; grid-row: auto; min-height: 260px; }
  .cat-card:nth-child(n+2) { grid-column: span 3; min-height: 190px; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .header-phone span { display: none; }         /* icon-only phone chip */
  .header-phone { padding: 0.5rem 0.75rem; }

  .hero-stats { margin-top: 2.6rem; }
  .stat b { font-size: 1.55rem; }

  .cat-card:nth-child(n+2) { grid-column: span 6; min-height: 170px; }

  .products-grid-cta { text-align: center; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .product-info { padding: 0.85rem 0.9rem 1rem; }
  .price { font-size: 1rem; }
  .product-info h3 { font-size: 0.92rem; }
  .rating { display: none; }

  .values-grid { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .quote-card:last-child { grid-column: auto; }

  .about-points { grid-template-columns: 1fr; }
  .about-img-float { inset-inline-end: 0.4rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .call-fab { width: 52px; height: 52px; bottom: 1.1rem; inset-inline-start: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hint::after, .call-fab::after { animation: none; }
  .hero-media img { animation: none; }
}
