/* ============================================================
   KASHMIR GARDENS — Main Stylesheet
   ============================================================ */

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; border: none; background: none; outline: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* --- Tokens --- */
:root {
  --c-emerald-deep: #0B3D2E;
  --c-emerald: #145A3E;
  --c-emerald-mid: #1E7A56;
  --c-emerald-light: #2D9B6E;
  --c-gold: #C5A55A;
  --c-gold-light: #D9BF78;
  --c-gold-pale: #E8D9A8;
  --c-cream: #FAF6ED;
  --c-off-white: #F3EFE4;
  --c-white: #FFFFFF;
  --c-charcoal: #1A1A1A;
  --c-text: #2A2A2A;
  --c-text-light: #6B6B6B;
  --c-border: #E0DACE;
  --c-overlay: rgba(11, 61, 46, 0.92);

  --ff-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-arabic: 'Noto Naskh Arabic', 'Traditional Arabic', serif;

  --fs-hero: clamp(3.2rem, 8vw, 7.5rem);
  --fs-h2: clamp(2rem, 5vw, 4rem);
  --fs-h3: clamp(1.3rem, 2.5vw, 1.8rem);
  --fs-h4: clamp(1rem, 1.5vw, 1.15rem);
  --fs-body: clamp(0.95rem, 1.1vw, 1.1rem);
  --fs-small: clamp(0.8rem, 0.9vw, 0.9rem);
  --fs-tag: clamp(0.7rem, 0.8vw, 0.8rem);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --max-width: 1280px;
  --nav-height: 72px;
}

/* --- Typography Globals --- */
body {
  font-family: var(--ff-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-cream);
}

h1, h2, h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h4 {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: var(--fs-h4);
  letter-spacing: 0.01em;
}

em {
  font-style: italic;
  color: var(--c-gold);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section-tag {
  font-family: var(--ff-sans);
  font-size: var(--fs-tag);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: var(--fs-h2);
  color: var(--c-charcoal);
  margin-bottom: var(--space-md);
}

.section-title--light {
  color: var(--c-white);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--ff-sans);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-emerald-deep);
  color: var(--c-white);
  border: 1.5px solid var(--c-emerald-deep);
}
.btn--primary:hover {
  background: var(--c-emerald);
  border-color: var(--c-emerald);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* --- Placeholder Images --- */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: var(--fs-h4);
  font-style: italic;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: var(--space-md);
  position: relative;
  overflow: hidden;
}

.placeholder-img::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.08) 20px, rgba(255,255,255,0.08) 21px);
}

.placeholder-img--valley {
  background: linear-gradient(145deg, #2D5A3E 0%, #1A3D2A 40%, #0F2B1D 100%);
}
.placeholder-img--chili {
  background: linear-gradient(145deg, #8B2D10 0%, #6B1E08 40%, #4A1505 100%);
}
.placeholder-img--honey {
  background: linear-gradient(145deg, #C5A55A 0%, #A68B3E 40%, #7A6528 100%);
}
.placeholder-img--walnut {
  background: linear-gradient(145deg, #6B5B3E 0%, #4E422D 40%, #362E1E 100%);
}
.placeholder-img--acv {
  background: linear-gradient(145deg, #5A7A3E 0%, #3E5A2A 40%, #2A3D1B 100%);
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--c-emerald-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__leaf {
  width: 72px;
  animation: preloaderFloat 2s var(--ease-in-out) infinite;
}
.preloader__leaf img {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.preloader__text {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--c-gold-pale);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0;
  animation: preloaderTextIn 0.8s 0.3s var(--ease-out) forwards;
}

.preloader__bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: preloaderTextIn 0.5s 0.6s var(--ease-out) forwards;
}

.preloader__bar-fill {
  width: 0%;
  height: 100%;
  background: var(--c-gold);
  border-radius: 2px;
  animation: preloaderFill 2.5s 0.5s var(--ease-in-out) forwards;
}

@keyframes preloaderFloat {
  0%, 100% { transform: translateY(4px) scale(0.95); opacity: 0.6; }
  50% { transform: translateY(-4px) scale(1); opacity: 1; }
}

@keyframes preloaderTextIn {
  to { opacity: 1; }
}

@keyframes preloaderFill {
  0% { width: 0%; }
  30% { width: 40%; }
  60% { width: 70%; }
  100% { width: 100%; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav.is-scrolled {
  background: rgba(11, 61, 46, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--c-white);
  z-index: 1001;
}

.nav__logo-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  object-fit: contain;
  mix-blend-mode: screen;
  border-radius: 2px;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav__logo-en {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav__logo-ar {
  font-family: var(--ff-arabic);
  font-size: 0.7rem;
  opacity: 0.6;
  direction: rtl;
}

.nav__links {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav__link {
  font-size: var(--fs-small);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color 0.3s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width 0.35s var(--ease-out);
}
.nav__link:hover,
.nav__link.is-active {
  color: var(--c-white);
}
.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__cta {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--c-emerald-deep);
  background: var(--c-gold);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  transition: all 0.3s var(--ease-out);
}
.nav__cta:hover {
  background: var(--c-gold-light);
  transform: translateY(-1px);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all 0.35s var(--ease-out);
  transform-origin: center;
}
.nav__burger.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__burger.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--c-emerald-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.mobile-menu__link {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--c-white);
  padding: 0.3rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.3s;
}
.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.32s; }

.mobile-menu__link:hover {
  color: var(--c-gold);
}

.mobile-menu__footer {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.5);
}
.mobile-menu__footer a:hover {
  color: var(--c-gold);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--c-emerald-deep);
  background-image:
    linear-gradient(to bottom, rgba(11,61,46,0.55) 0%, rgba(11,61,46,0.4) 40%, rgba(11,61,46,0.7) 100%),
    url('../images/hero-kashmir.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + var(--space-lg)) 0 var(--space-lg);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__leaf {
  position: absolute;
  opacity: 0.3;
  mix-blend-mode: screen;
}
.hero__leaf--1 {
  width: clamp(300px, 50vw, 700px);
  top: -5%;
  right: -8%;
  rotate: 15deg;
}
.hero__leaf--2 {
  width: clamp(180px, 28vw, 400px);
  bottom: 5%;
  left: -6%;
  rotate: -25deg;
}
.hero__leaf--3 {
  width: clamp(100px, 15vw, 220px);
  top: 35%;
  right: 15%;
  rotate: 45deg;
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.hero__tag {
  font-family: var(--ff-sans);
  font-size: var(--fs-tag);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--c-gold);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-size: var(--fs-hero);
  color: var(--c-white);
  margin-bottom: var(--space-md);
  max-width: 14ch;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: var(--c-gold);
  font-style: italic;
}

.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex !important;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   HERITAGE
   ============================================================ */
.heritage {
  padding: var(--space-2xl) 0;
}

.heritage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.heritage__visual {
  position: relative;
}

.heritage__img-wrap {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.heritage__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heritage__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--c-emerald-deep);
  color: var(--c-white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.heritage__badge-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}

.heritage__badge-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.35rem;
  opacity: 0.8;
}

.heritage__text {
  padding-right: clamp(0rem, 3vw, 2rem);
}

.heritage__body {
  margin-bottom: var(--space-lg);
}

.heritage__body p {
  color: var(--c-text-light);
  margin-bottom: var(--space-sm);
}

.heritage__stats {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-top: var(--space-md);
  border-top: 1px solid var(--c-border);
}

.heritage__stat-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--c-emerald-deep);
  line-height: 1;
}

.heritage__stat-label {
  display: block;
  font-size: var(--fs-small);
  color: var(--c-text-light);
  margin-top: 0.3rem;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee__track span {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--c-charcoal);
  white-space: nowrap;
  opacity: 0.35;
  transition: opacity 0.3s;
}
.marquee:hover .marquee__track span {
  opacity: 0.55;
}

.marquee__dot {
  width: 6px;
  height: 6px;
  fill: var(--c-gold);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  padding: var(--space-2xl) 0;
  background: var(--c-white);
}

.products__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}

.product-card {
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
}

.product-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-card__img img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-white);
  background: var(--c-emerald-deep);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
}

.product-card__body {
  padding: clamp(1.2rem, 2vw, 1.8rem);
}

.product-card__name {
  font-size: var(--fs-h3);
  color: var(--c-charcoal);
  margin-bottom: 0.6rem;
}

.product-card__desc {
  font-size: var(--fs-small);
  color: var(--c-text-light);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: var(--space-sm);
}

.product-card__origin {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-light);
}

.product-card__price {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-emerald-deep);
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--c-emerald-deep);
  transition: gap 0.3s var(--ease-out);
}
.product-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}
.product-card__link:hover {
  gap: 0.7rem;
}
.product-card__link:hover svg {
  transform: translateX(3px);
}

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.feature-strip {
  padding: var(--space-xl) 0;
  background: var(--c-off-white);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.feature-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.feature-strip__item {
  text-align: center;
}

.feature-strip__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--space-sm);
  color: var(--c-emerald-deep);
}

.feature-strip__item h4 {
  margin-bottom: 0.4rem;
  color: var(--c-charcoal);
}

.feature-strip__item p {
  font-size: var(--fs-small);
  color: var(--c-text-light);
  line-height: 1.55;
}

/* ============================================================
   PROMISE
   ============================================================ */
.promise {
  position: relative;
  padding: var(--space-2xl) 0;
  background: var(--c-emerald-deep);
  overflow: hidden;
}

.promise__bg-leaf {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(400px, 60vw, 900px);
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: screen;
}
.promise__bg-leaf img {
  width: 100%;
  height: auto;
}

.promise__header {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.promise__intro {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255,255,255,0.6);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
}

.promise__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 2vw, 1.8rem);
  position: relative;
  z-index: 1;
}

.promise__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  transition: background 0.4s, border-color 0.4s;
}
.promise__card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}

.promise__card-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.promise__card h3 {
  font-size: var(--fs-h3);
  color: var(--c-white);
  margin-bottom: 0.6rem;
}

.promise__card p {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ============================================================
   VISION / QUOTE
   ============================================================ */
.vision {
  padding: var(--space-2xl) 0;
  background: var(--c-cream);
}

.vision__quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vision__quote p {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c-charcoal);
  line-height: 1.45;
  margin-bottom: var(--space-md);
}

.vision__quote cite {
  font-family: var(--ff-sans);
  font-style: normal;
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-gold);
}

/* ============================================================
   WHOLESALE
   ============================================================ */
.wholesale {
  padding: var(--space-2xl) 0;
  background: var(--c-white);
}

.wholesale__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.wholesale__body {
  color: var(--c-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.wholesale__terms {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.wholesale__term {
  padding: var(--space-sm);
  background: var(--c-cream);
  border-radius: var(--radius-md);
}

.wholesale__term h4 {
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-emerald-deep);
  margin-bottom: 0.25rem;
}

.wholesale__term p {
  font-size: var(--fs-small);
  color: var(--c-text-light);
  line-height: 1.55;
}

.wholesale__table-wrap {
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
}

.wholesale__table th,
.wholesale__table td {
  text-align: left;
  padding: 1rem 1.2rem;
  font-size: var(--fs-small);
}

.wholesale__table thead {
  background: var(--c-emerald-deep);
}
.wholesale__table th {
  color: var(--c-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.wholesale__table tbody tr {
  border-bottom: 1px solid var(--c-border);
}
.wholesale__table tbody tr:last-child {
  border-bottom: none;
}
.wholesale__table td {
  color: var(--c-text);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--space-2xl) 0;
  background: var(--c-cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact__body {
  color: var(--c-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.contact__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.contact__detail {
  padding: var(--space-sm);
  background: var(--c-white);
  border-radius: var(--radius-md);
}

.contact__detail h4 {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-gold);
  margin-bottom: 0.3rem;
}

.contact__detail p,
.contact__detail a {
  font-size: var(--fs-small);
  color: var(--c-text);
  line-height: 1.5;
}

.contact__detail a:hover {
  color: var(--c-emerald);
}

/* Contact Form */
.contact__form {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--c-cream);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-small);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-emerald);
  box-shadow: 0 0 0 3px rgba(20, 90, 62, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--c-text-light);
  opacity: 0.5;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%236B6B6B' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact__form .btn {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-charcoal);
  color: var(--c-white);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--space-sm);
}

.footer__logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.footer__logo span {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.footer__tagline {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

.footer__tagline-ar {
  font-family: var(--ff-arabic);
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.3);
  direction: rtl;
  margin-top: 0.3rem;
}

.footer__col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
}

.footer__col li {
  margin-bottom: 0.45rem;
}

.footer__col li,
.footer__col a {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}

.footer__col a:hover {
  color: var(--c-white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   MODAL / POPUP FORM
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s var(--ease-out);
}

.modal-overlay.is-open .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--c-text-light);
  transition: background 0.2s, color 0.2s;
}
.modal__close:hover {
  background: var(--c-cream);
  color: var(--c-charcoal);
}
.modal__close svg {
  width: 20px;
  height: 20px;
}

.modal__header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.modal__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.modal__header-text {
  text-align: left;
}

.modal__title {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--c-charcoal);
  line-height: 1.2;
}

.modal__sub {
  font-size: 0.8rem;
  color: var(--c-text-light);
  margin-top: 0.15rem;
}

.modal__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.modal__form .form-group input,
.modal__form .form-group select,
.modal__form .form-group textarea {
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  background: var(--c-cream);
}

.modal__form .form-group textarea {
  resize: none;
}

.modal__form .form-group:last-of-type,
.modal__form .modal__submit {
  grid-column: 1 / -1;
}

.modal__submit {
  margin-top: 0.25rem;
  padding: 0.8rem 2rem;
}

.modal__success {
  text-align: center;
  padding: var(--space-lg) 0;
}

.modal__success h3 {
  font-family: var(--ff-serif);
  font-size: var(--fs-h3);
  color: var(--c-emerald-deep);
  margin-bottom: 0.5rem;
}

.modal__success p {
  font-size: var(--fs-small);
  color: var(--c-text-light);
}

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

/* Tablet */
@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--nav-height) + var(--space-xl));
    align-items: flex-end;
    padding-bottom: 6rem;
  }

  .hero__scroll {
    display: none;
  }

  .hero__actions {
    flex-direction: column !important;
    gap: 1.2rem !important;
  }

  .hero__actions .btn {
    text-align: center;
    justify-content: center;
  }

  .heritage__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .heritage__visual {
    order: -1;
  }

  .heritage__img-wrap {
    aspect-ratio: 16/10;
  }

  .heritage__badge {
    bottom: -1rem;
    right: var(--space-sm);
  }

  .heritage__text {
    padding-right: 0;
  }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .promise__grid {
    grid-template-columns: 1fr;
  }

  .wholesale__grid {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__form {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }

  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .modal {
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: translateY(100%);
  }

  .modal-overlay.is-open .modal {
    transform: translateY(0);
  }

  .modal__form {
    grid-template-columns: 1fr;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .heritage__stats {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .feature-strip__grid {
    grid-template-columns: 1fr;
  }

  .contact__details {
    grid-template-columns: 1fr;
  }

}
