:root {
  --ink: #0d1b12;
  --forest: #12351f;
  --emerald: #1f5c34;
  --leaf: #7aa63f;
  --gold: #d8b25d;
  --deep-gold: #9f7627;
  --cream: #fff8df;
  --paper: #f8f5e9;
  --muted: #667064;
  --line: rgba(18, 53, 31, 0.18);
  --red: #a6291f;
  --shadow: 0 24px 70px rgba(13, 27, 18, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

:lang(ar) {
  font-family: "Noto Kufi Arabic", Inter, Arial, sans-serif;
}

a {
  color: inherit;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 5vw, 70px);
  color: #fff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(13, 27, 18, 0.9);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(216, 178, 93, 0.82);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #fff7bd, var(--gold) 42%, #765414);
  color: var(--ink);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 1.06rem;
  letter-spacing: 0.04em;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.56fr);
  align-items: end;
  gap: clamp(30px, 5vw, 70px);
  overflow: hidden;
  padding: 128px clamp(20px, 6vw, 80px) 48px;
  background:
    linear-gradient(90deg, rgba(8, 19, 12, 0.98) 0%, rgba(13, 42, 22, 0.88) 54%, rgba(13, 42, 22, 0.62) 100%),
    linear-gradient(0deg, rgba(13, 27, 18, 0.9), rgba(13, 27, 18, 0.1) 52%),
    radial-gradient(circle at 70% 35%, rgba(216, 178, 93, 0.22), transparent 32%),
    var(--forest);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(30deg, rgba(216, 178, 93, 0.12) 12%, transparent 12.5%, transparent 87%, rgba(216, 178, 93, 0.12) 87.5%),
    linear-gradient(150deg, rgba(216, 178, 93, 0.12) 12%, transparent 12.5%, transparent 87%, rgba(216, 178, 93, 0.12) 87.5%);
  background-size: 88px 152px;
  opacity: 0.18;
}

.hero-content,
.hero-product,
.hero-stats {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(720px, 100%);
}

.hero-product {
  width: min(360px, 100%);
  margin: 0;
  justify-self: end;
}

.hero-product img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(216, 178, 93, 0.32);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.pack-section h2,
.contact-copy h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 9vw, 8.2rem);
  line-height: 0.9;
  text-wrap: balance;
}

.hero h1 span,
.section-copy h2 span,
.pack-section h2 span,
.contact-copy h2 span {
  display: block;
  margin-top: 0.35em;
  font-family: "Noto Kufi Arabic", Inter, Arial, sans-serif;
  font-size: 0.42em;
  font-weight: 700;
  line-height: 1.4;
}

.hero-text {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
}

.hero-text span {
  display: block;
  margin-top: 10px;
}

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

.button,
.contact-form button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  padding: 14px 21px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.contact-form button {
  background: linear-gradient(135deg, #ffe391, var(--gold) 52%, #b7842d);
  color: #211706;
}

.button.secondary {
  border: 1px solid rgba(216, 178, 93, 0.58);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(920px, 100%);
  border-top: 1px solid rgba(216, 178, 93, 0.36);
  border-bottom: 1px solid rgba(216, 178, 93, 0.26);
  background: rgba(7, 17, 10, 0.42);
  backdrop-filter: blur(12px);
}

.hero-stats div {
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid rgba(216, 178, 93, 0.22);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong,
.market-grid strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.hero-stats span,
.hero-stats small {
  display: block;
}

.hero-stats span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.hero-stats small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
}

.product-section,
.markets-section,
.pack-section,
.contact-section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 80px);
}

.product-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.86fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 248, 223, 0.78), rgba(248, 245, 233, 0.94)),
    var(--paper);
}

.product-media {
  position: relative;
  width: min(460px, 100%);
  padding: clamp(12px, 2vw, 18px);
  border: 1px solid rgba(159, 118, 39, 0.34);
  background: linear-gradient(145deg, rgba(255, 248, 223, 0.9), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow);
}

.product-media::before {
  position: absolute;
  inset: 10px;
  z-index: 0;
  border: 1px solid rgba(216, 178, 93, 0.42);
  content: "";
  pointer-events: none;
}

.product-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.section-copy h2,
.pack-section h2,
.contact-copy h2 {
  max-width: 700px;
  color: var(--forest);
  font-size: clamp(2.1rem, 4.8vw, 5rem);
  line-height: 0.98;
}

.section-copy h2 span,
.pack-section h2 span {
  color: var(--emerald);
}

.section-copy > p,
.contact-copy > p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.feature-list article,
.market-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  padding: 20px;
}

.feature-list h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 1.05rem;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.markets-section {
  background:
    linear-gradient(135deg, rgba(18, 53, 31, 0.96), rgba(13, 27, 18, 0.98)),
    var(--forest);
  color: #fff;
}

.markets-section .section-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.markets-section .section-copy h2 {
  color: #fff;
}

.markets-section .section-copy h2 span {
  color: rgba(255, 255, 255, 0.74);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.market-grid article {
  min-height: 188px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(216, 178, 93, 0.24);
}

.market-grid span,
.market-grid small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.market-grid small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
}

.pack-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: var(--cream);
}

.pack-section img {
  width: min(420px, 100%);
  height: auto;
  box-shadow: var(--shadow);
}

.pack-section h2 {
  color: var(--forest);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(10, 23, 14, 0.98), rgba(22, 65, 34, 0.96)),
    var(--forest);
  color: #fff;
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy h2 span,
.contact-copy > p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(216, 178, 93, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(216, 178, 93, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(216, 178, 93, 0.25);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 6vw, 80px);
  background: #07110a;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .hero {
    min-height: 88vh;
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(8, 19, 12, 0.96) 0%, rgba(13, 42, 22, 0.86) 58%, rgba(13, 42, 22, 0.7) 100%),
      var(--forest);
  }

  .hero-product {
    width: min(320px, 72vw);
    justify-self: center;
  }

  .product-section,
  .pack-section,
  .contact-section,
  .markets-section .section-copy {
    grid-template-columns: 1fr;
  }

  .feature-list,
  .market-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  .brand small,
  .nav-links a:nth-child(1),
  .nav-links a:nth-child(2) {
    display: none;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 86vh;
    padding: 112px 20px 34px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-actions {
    display: grid;
  }

  .button,
  .contact-form button {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 178, 93, 0.2);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .section-copy h2,
  .pack-section h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .site-footer {
    display: grid;
  }
}
