:root {
  --ink: #14100b;
  --ink-soft: #2a2119;
  --paper: #fbf7ef;
  --paper-dim: #f3ecdc;
  --gold: #c9a24b;
  --gold-bright: #e6c874;
  --gold-deep: #9a7a2f;
  --line: rgba(20, 16, 11, 0.1);
  --line-dark: rgba(230, 200, 116, 0.18);
  --shadow: 0 20px 40px -20px rgba(20, 16, 11, 0.35);
  --radius: 16px;
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ar: "Amiri", serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; margin: 0 0 0.5em; line-height: 1.12; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
.ar { font-family: var(--font-ar); direction: rtl; unicode-bidi: isolate; margin-inline-start: 0.4em; opacity: 0.85; }

/* ---------- Arabic translations ---------- */
.ar-line {
  display: block;
  font-family: var(--font-ar);
  direction: rtl;
  unicode-bidi: isolate;
  font-weight: 400;
  color: var(--gold-deep);
  margin-top: 0.4em;
}
.eyebrow .ar-line {
  text-transform: none;
  letter-spacing: normal;
  font-size: 1rem;
  margin-top: 4px;
}
.hero h1 .ar-line {
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 600;
  color: var(--gold-bright);
  margin-top: 12px;
}
.about__text h2 .ar-line,
.section-head h2 .ar-line,
.goods__text h2 .ar-line,
.visit__text h2 .ar-line {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 8px;
}
.hero__lede .ar-line,
.about__text p .ar-line,
.section-head__lede .ar-line {
  font-size: 0.95rem;
  opacity: 0.85;
  color: inherit;
}
.badge-card p .ar-line,
.product-card__body p.ar-line {
  font-size: 0.85rem;
  opacity: 0.8;
  color: var(--gold-deep);
  margin-top: 0.35em;
}
.visit-card p.ar-line {
  font-size: 0.88rem;
  opacity: 0.75;
  color: var(--gold);
  margin-top: 0.5em;
}
.footer__note .ar-line {
  font-size: 0.82rem;
  opacity: 0.85;
  color: var(--gold);
  margin-top: 0.3em;
}
.section--dark .eyebrow .ar-line,
.section--dark h2 .ar-line {
  color: var(--gold);
}
.nav a .ar { font-size: 0.82em; opacity: 0.65; }
.btn .ar { opacity: 0.85; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: var(--gold-bright);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 24px;
}
.topbar__badge {
  float: right;
  opacity: 0.85;
}
@media (max-width: 640px) {
  .topbar__badge { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__logo { height: 46px; width: auto; border-radius: 6px; display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__en { font-family: var(--font-head); font-weight: 700; font-size: 1.28rem; letter-spacing: 0.01em; }
.brand__ar { font-family: var(--font-ar); font-size: 0.85rem; color: var(--gold-deep); }
.brand__logo--footer { height: 64px; margin: 0 auto 10px; }

.nav { display: flex; align-items: center; gap: 20px; }
.nav a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav .btn { white-space: nowrap; }
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav a:not(.btn):hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: var(--ink); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--small { padding: 9px 18px; font-size: 0.82rem; background: var(--ink); color: var(--gold-bright); }
.btn--small:hover { background: var(--ink-soft); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  padding: 110px 0 90px;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(230, 200, 116, 0.16), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(230, 200, 116, 0.12), transparent 50%),
    linear-gradient(160deg, #17130d 0%, #14100b 55%, #1c150c 100%);
  z-index: -1;
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  max-width: 15ch;
  color: var(--paper);
}
.hero__lede {
  max-width: 56ch;
  font-size: 1.08rem;
  color: rgba(251, 247, 239, 0.78);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin: 32px 0 56px; }
.hero .btn--ghost { border-color: rgba(251, 247, 239, 0.4); color: var(--paper); }
.hero .btn--ghost:hover { background: var(--paper); color: var(--ink); }

.hero__stats { display: flex; gap: 48px; flex-wrap: wrap; border-top: 1px solid var(--line-dark); padding-top: 28px; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-head); font-size: 2rem; color: var(--gold-bright); }
.hero__stats span { font-size: 0.82rem; color: rgba(251, 247, 239, 0.65); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; scroll-margin-top: 140px; }
.hero, #top { scroll-margin-top: 0; }
.section--tint { background: var(--paper-dim); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dark .eyebrow { color: var(--gold); }
.section--dark h2 { color: var(--paper); }

.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.section-head__lede { color: var(--ink-soft); opacity: 0.75; font-size: 1.02rem; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
.about__text h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); max-width: 14ch; }
.about__text p { color: var(--ink-soft); opacity: 0.85; }
.about__badges { display: flex; flex-direction: column; gap: 18px; }
.badge-card {
  background: var(--paper-dim);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.badge-card h3 { font-size: 1.15rem; color: var(--gold-deep); }
.badge-card p { margin: 0; color: var(--ink-soft); opacity: 0.8; font-size: 0.95rem; }

/* ---------- Product grid ---------- */
.grid--juices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); }
.product-card__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink);
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__body { padding: 18px 20px 22px; }
.product-card__body h3 { font-size: 1.15rem; margin-bottom: 0.3em; }
.product-card__body p { font-size: 0.9rem; color: var(--ink-soft); opacity: 0.78; margin: 0; }

.grid--goods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.grid--goods.grid--narrow { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 0 auto; }
.product-card__img--framed { background: linear-gradient(160deg, #f3ecdc, #e6d9bd); }
.product-card__img--framed img { object-fit: contain; object-position: center; }

/* ---------- Category chips ---------- */
.chips {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 78px;
  z-index: 40;
}
.chips__inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  scrollbar-width: none;
}
.chips__inner::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.chip:hover { background: var(--ink); color: var(--gold-bright); border-color: var(--ink); }
.chip .ar { font-size: 0.85em; opacity: 0.7; }

/* ---------- Goods ---------- */
.goods__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.goods__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.goods__text h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); max-width: 16ch; }
.goods__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 26px 0 34px;
}
.goods__list li {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.goods__list .ar { font-family: var(--font-ar); font-size: 0.85rem; color: var(--gold-deep); margin: 0; order: -1; }

/* ---------- Visit ---------- */
.visit__text { text-align: center; max-width: 720px; margin: 0 auto; }
.visit__text .eyebrow { color: var(--gold); }
.visit__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}
.visit-card {
  background: rgba(251, 247, 239, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px;
}
.visit-card h3 { font-size: 1.05rem; color: var(--gold-bright); margin-bottom: 0.4em; }
.visit-card a { font-weight: 700; font-size: 1.05rem; }
.visit-card p { margin: 0; opacity: 0.75; font-size: 0.92rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(251, 247, 239, 0.6); padding: 40px 0 30px; border-top: 1px solid var(--line-dark); }
.footer__inner { text-align: center; }
.brand--footer { justify-content: center; display: flex; margin-bottom: 10px; }
.brand--footer .brand__en { color: var(--paper); }
.footer__note { font-size: 0.88rem; }
.footer__copy { font-size: 0.78rem; opacity: 0.6; margin: 0; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about { grid-template-columns: 1fr; }
  .goods__inner { grid-template-columns: 1fr; }
  .goods__media { order: -1; }
  .grid--juices { grid-template-columns: repeat(2, 1fr); }
  .grid--goods { grid-template-columns: repeat(2, 1fr); }
  .grid--goods.grid--narrow { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1040px) {
  .nav {
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a:not(.btn) { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 14px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 760px) {
  .hero { padding: 70px 0 60px; }
  .hero__stats { gap: 30px; }
  .visit__cards { grid-template-columns: 1fr; text-align: center; }
  .goods__list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .grid--juices { grid-template-columns: 1fr 1fr; gap: 16px; }
  .grid--goods { grid-template-columns: 1fr 1fr; gap: 16px; }
  .grid--goods.grid--narrow { grid-template-columns: 1fr 1fr; }
  .product-card__body { padding: 14px; }
  .product-card__body h3 { font-size: 1rem; }
}
