:root {
  --ink: #0E0B06;
  --parchment: #F2E8D0;
  --parchment-warm: #EAD9B5;
  --gold: #B8922A;
  --gold-light: #D4AF5A;
  --gold-pale: #F0D98A;
  --amber: #7A5010;
  --text-body: #3A2E1C;
  --text-muted: #8A7555;
  --white: #FBF6EC;
}

/* ── FIX: iOS Safari breaks Arabic cursive connections with letter-spacing ── */
/* Zero out letter-spacing on all elements using Arabic fonts */
[style*="Noto Naskh Arabic"],
[style*="Tajawal"],
.logo-arabic,
h1,
h2,
h3,
h4,
h5,
.tag,
.step-num,
.scroll-cue,
.nav-links a,
.benefit-product,
.eyebrow,
.hero-desc,
.body-text,
.step-title,
.step-text,
.story-content h4,
.story-content p,
.num-label,
.showcase-item-name,
.showcase-item-desc,
.pkg-feat h5,
.pkg-feat p,
.benefit-title,
.benefit-body,
.cta-title,
.cta-desc,
.heritage-quote cite {
  letter-spacing: 0 !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--ink);
  color: var(--parchment);
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  background: var(--amber);
}

/* ══════════════ NAV ══════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s;
}

nav.scrolled {
  padding: 16px 60px;
  background: rgba(14, 11, 6, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 146, 42, 0.15);
}

/* ── LOGO REDESIGN ── */
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(184, 146, 42, 0.4));
  transition: all 0.3s;
}

.logo:hover .logo-img {
  filter: drop-shadow(0 4px 12px rgba(184, 146, 42, 0.6));
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo-arabic {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #C8A84B 0%, #F0D98A 40%, #B8922A 70%, #E8C870 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 8px rgba(184, 146, 42, 0.35));
}

.logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: rgba(242, 232, 208, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

/* ── MOBILE MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 201;
  padding: 10px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--gold-light);
  transition: all 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ══════════════ HERO ══════════════ */
#hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(122, 80, 16, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(184, 146, 42, 0.06) 0%, transparent 60%),
    linear-gradient(160deg, #0E0B06 0%, #1A1208 50%, #0E0B06 100%);
}

/* Islamic geometric pattern */
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C8A84B' stroke-width='0.5'%3E%3Cpolygon points='30,2 58,17 58,43 30,58 2,43 2,17'/%3E%3Cpolygon points='30,12 48,21 48,39 30,48 12,39 12,21'/%3E%3Cline x1='30' y1='2' x2='30' y2='12'/%3E%3Cline x1='58' y1='17' x2='48' y2='21'/%3E%3Cline x1='58' y1='43' x2='48' y2='39'/%3E%3Cline x1='30' y1='58' x2='30' y2='48'/%3E%3Cline x1='2' y1='43' x2='12' y2='39'/%3E%3Cline x1='2' y1='17' x2='12' y2='21'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-text {
  position: relative;
  z-index: 2;
  padding: 140px 60px 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  animation: fadeUp 1s ease 0.2s both;
}

.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

h1.hero-name {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 700;
  line-height: 0.9;
  background: linear-gradient(160deg, #F0D98A 0%, #C8A84B 35%, #8A6020 65%, #D4AF5A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 24px rgba(184, 146, 42, 0.3));
  animation: fadeUp 1s ease 0.4s both;
  margin-bottom: 12px;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 4px;
  animation: fadeUp 1s ease 0.6s both;
  margin-bottom: 40px;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(242, 232, 208, 0.6);
  font-weight: 300;
  max-width: 420px;
  animation: fadeUp 1s ease 0.8s both;
  margin-bottom: 48px;
  border-right: 2px solid rgba(184, 146, 42, 0.3);
  padding-right: 20px;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 3px;
  animation: fadeUp 1s ease 1s both;
}

.scroll-cue::after {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--amber);
}

.hero-visual {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 60px 80px 20px;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  animation: fadeIn 1.4s ease 0.5s both;
}

.hero-img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
  filter: sepia(15%) contrast(1.1) brightness(0.88);
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(184, 146, 42, 0.25);
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
}

.hero-img-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(14, 11, 6, 0.8), transparent);
  z-index: 2;
}

.hero-img-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(240, 217, 138, 0.7);
  letter-spacing: 2px;
}

/* ══════════════ SECTION SHARED ══════════════ */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.tag {
  font-size: 0.65rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(to left, var(--gold), transparent);
  margin-bottom: 28px;
}

h2.sec-title {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--parchment);
  margin-bottom: 20px;
}

h2.sec-title em {
  font-style: normal;
  background: linear-gradient(135deg, #F0D98A, #B8922A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.body-text {
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(242, 232, 208, 0.6);
  font-weight: 300;
}

/* ══════════════ BRAND INTRO ══════════════ */
#brand-intro {
  padding: 120px 60px;
  background: var(--ink);
  position: relative;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.intro-text {}

.intro-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.num-card {
  border: 1px solid rgba(184, 146, 42, 0.2);
  padding: 24px 20px;
  border-radius: 2px;
  transition: border-color 0.3s;
}

.num-card:hover {
  border-color: rgba(184, 146, 42, 0.5);
}

.num-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.num-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  line-height: 1.5;
}

.intro-img-stack {
  position: relative;
  height: 560px;
}

.intro-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 420px;
  overflow: hidden;
}

.intro-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(10%) brightness(0.85) contrast(1.1);
}

.intro-img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 260px;
  overflow: hidden;
  border: 4px solid var(--ink);
}

.intro-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(20%) brightness(0.9) contrast(1.05);
}

.intro-img-badge {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--ink);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 1px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.intro-img-badge strong {
  font-size: 1.4rem;
  line-height: 1;
}

/* ══════════════ HERITAGE / STORY ══════════════ */
#heritage {
  padding: 120px 60px;
  background: linear-gradient(180deg, rgba(20, 15, 6, 0.95) 0%, rgba(14, 11, 6, 1) 100%);
  position: relative;
  overflow: hidden;
}

/* large faded arabic letter background */
#heritage::before {
  content: 'يمن';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Noto Naskh Arabic', serif;
  font-size: 28vw;
  color: rgba(184, 146, 42, 0.025);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.heritage-text {}

.heritage-story {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.story-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.story-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(184, 146, 42, 0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
  text-align: center;
}

.story-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.story-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(242, 232, 208, 0.55);
  font-weight: 300;
}

.heritage-visual {
  padding-top: 60px;
}

.heritage-img-wrap {
  position: relative;
  margin-bottom: 24px;
}

.heritage-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 2px;
  filter: sepia(25%) contrast(1.1) brightness(0.82);
}

.heritage-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 11, 6, 0.6));
  z-index: 1;
}

.heritage-quote {
  border-right: 2px solid var(--gold);
  padding-right: 24px;
}

.heritage-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(240, 217, 138, 0.7);
  line-height: 1.7;
}

.heritage-quote cite {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: normal;
}

/* ══════════════ PRODUCTS SHOWCASE ══════════════ */
#showcase {
  padding: 120px 60px;
  background: var(--ink);
}

.showcase-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.showcase-header .rule {
  margin: 0 auto 28px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid rgba(184, 146, 42, 0.15);
}

.showcase-item {
  padding: 0;
  border-right: 1px solid rgba(184, 146, 42, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.showcase-item:last-child {
  border-right: none;
}

.showcase-item-img {
  height: 340px;
  overflow: hidden;
  position: relative;
}

.showcase-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
  filter: sepia(15%) brightness(0.8) contrast(1.1);
}

.showcase-item:hover .showcase-item-img img {
  transform: scale(1.06);
}

.showcase-item-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 11, 6, 0.75) 0%, transparent 50%);
}

.showcase-item-body {
  padding: 32px 28px;
  border-top: 1px solid rgba(184, 146, 42, 0.15);
  background: rgba(20, 15, 6, 0.6);
}

.showcase-item-name {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.showcase-item-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.showcase-item-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(242, 232, 208, 0.55);
  font-weight: 300;
}

.showcase-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.showcase-item:hover::before {
  transform: scaleX(1);
}

/* ══════════════ PRODUCTION PROCESS ══════════════ */
#process {
  padding: 120px 60px;
  background: linear-gradient(160deg, #0E0B06, #150F05, #0E0B06);
  position: relative;
}

.process-header {
  max-width: 600px;
  margin-bottom: 80px;
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* vertical line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50%;
  margin-right: -1px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184, 146, 42, 0.3) 10%, rgba(184, 146, 42, 0.3) 90%, transparent);
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 60px;
}

.process-step:nth-child(even) .step-content {
  order: 3;
  text-align: right;
  padding-right: 0;
  padding-left: 40px;
}

.process-step:nth-child(even) .step-spacer {
  order: 2;
}

.process-step:nth-child(even) .step-empty {
  order: 1;
}

.process-step:nth-child(odd) .step-content {
  text-align: right;
  padding-right: 40px;
}

.process-step:nth-child(odd) .step-empty {
  order: 3;
}

.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid rgba(184, 146, 42, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  margin: 0 auto;
}

.step-content {}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 8px;
  display: block;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 10px;
}

.step-text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(242, 232, 208, 0.5);
  font-weight: 300;
}

/* ══════════════ HEALTH BENEFITS ══════════════ */
#benefits {
  padding: 120px 60px;
  background: var(--ink);
}

.benefits-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 80px;
}

.benefits-header .rule {
  margin: 0 auto 28px;
}

.benefits-two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefit-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(184, 146, 42, 0.1);
  align-items: start;
  transition: all 0.3s;
}

.benefit-row:hover {
  border-color: rgba(184, 146, 42, 0.35);
}

.benefit-icon {
  font-size: 1.8rem;
  line-height: 1.2;
}

.benefit-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.benefit-body {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(242, 232, 208, 0.55);
  font-weight: 300;
}

/* label tag per product */
.benefit-product {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 2px;
  padding: 2px 8px;
  border: 1px solid rgba(184, 146, 42, 0.3);
  color: var(--text-muted);
  border-radius: 20px;
  margin-bottom: 8px;
}

.benefits-visual {
  position: sticky;
  top: 100px;
}

.benefits-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
  filter: sepia(20%) brightness(0.85) contrast(1.1);
  margin-bottom: 24px;
}

.benefits-callout {
  background: rgba(184, 146, 42, 0.08);
  border: 1px solid rgba(184, 146, 42, 0.2);
  border-radius: 2px;
  padding: 28px 24px;
}

.benefits-callout p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(240, 217, 138, 0.7);
  line-height: 1.7;
  text-align: center;
}

/* ══════════════ PACKAGING ══════════════ */
#packaging {
  padding: 120px 60px;
  background: linear-gradient(160deg, #0E0B06, #1A1208);
  overflow: hidden;
  position: relative;
}

.pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.pkg-img-area {
  position: relative;
}

.pkg-img-area img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
  filter: brightness(0.9) contrast(1.05);
}

.pkg-img-area::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(184, 146, 42, 0.2);
  border-radius: 2px;
  z-index: -1;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.pkg-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pkg-feat-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(184, 146, 42, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  margin-top: 2px;
}

.pkg-feat h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 4px;
}

.pkg-feat p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(242, 232, 208, 0.5);
  font-weight: 300;
}

/* ══════════════ CTA STRIP ══════════════ */
#contact {
  padding: 100px 60px;
  background: var(--ink);
  text-align: center;
  border-top: 1px solid rgba(184, 146, 42, 0.1);
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-ornament {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: rgba(184, 146, 42, 0.15);
  line-height: 1;
  margin-bottom: 24px;
}

.cta-title {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.cta-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(242, 232, 208, 0.5);
  font-weight: 300;
  margin-bottom: 48px;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 18px 44px;
  border-radius: 2px;
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.2);
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.35);
}

/* ══════════════ FOOTER ══════════════ */
footer {
  padding: 60px;
  border-top: 1px solid rgba(184, 146, 42, 0.1);
  background: #0A0805;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-logo .logo-arabic {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #C8A84B, #F0D98A, #B8922A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 4px;
}

.footer-logo .logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem;
  letter-spacing: 7px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(242, 232, 208, 0.25);
  letter-spacing: 1px;
}

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social a {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--gold-light);
}

/* ══════════════ ANIMATIONS ══════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* scroll reveal (JS powered) */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 900px) {
  nav {
    padding: 20px 24px;
  }

  nav.scrolled {
    padding: 14px 24px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(14, 11, 6, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 40px;
    gap: 30px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(184, 146, 42, 0.2);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(184, 146, 42, 0.1);
  }

  .logo-img {
    height: 50px;
  }

  .logo-arabic {
    font-size: 1.5rem;
  }

  .logo-en {
    font-size: 0.55rem;
    letter-spacing: 4px;
  }

  #hero {
    grid-template-columns: 1fr;
  }

  .hero-text {
    padding: 120px 24px 60px;
  }

  .hero-visual {
    display: none;
  }

  #brand-intro,
  #heritage,
  #showcase,
  #process,
  #benefits,
  #packaging,
  #contact {
    padding: 80px 24px;
  }

  .intro-grid,
  .heritage-grid,
  .pkg-grid,
  .benefits-two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-item {
    border-right: none;
    border-bottom: 1px solid rgba(184, 146, 42, 0.15);
  }

  .process-timeline {
    padding-right: 16px;
  }

  .process-timeline::before {
    right: 36px;
    left: auto;
  }

  .process-step {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: flex-start;
  }

  .step-dot {
    margin: 0;
  }

  .process-step:nth-child(even) .step-content,
  .process-step:nth-child(odd) .step-content {
    order: 2;
    text-align: right;
    padding: 0 0 0 16px;
  }

  .process-step:nth-child(even) .step-spacer,
  .process-step:nth-child(odd) .step-spacer {
    order: 1;
  }

  .process-step:nth-child(even) .step-empty,
  .process-step .step-empty {
    display: none;
  }

  footer .footer-inner {
    flex-direction: column;
    align-items: flex-end;
  }
}