/* PRADORO — pradoro.com
   Production stylesheet. Palette and type locked to the approved brand system. */

:root {
  --pd-green-900: #0B2115;
  --pd-green-800: #0E2A1A;
  --pd-gold-500: #C9A24E;
  --pd-gold-300: #E8CD8A;
  --pd-gold-700: #A87F35;
  --pd-gold-ink: #8C6A2F;
  --pd-ivory: #F5EFE2;
  --pd-sand: #EDE3CC;
  --pd-cream: #FBF7EC;
  --pd-text: #253022;
  --pd-text-sub: #3B4636;
  --pd-text-mute: #63705B;
  --pd-line: #DFD2B0;
  --pd-line-strong: #D5C69E;
  --pd-line-dash: #B9A97F;
  --pd-mono-ink: #8A7D5A;
  --pd-ink: #20241F;

  --pd-font-display: 'Marcellus', Georgia, serif;
  --pd-font-text: 'Archivo', system-ui, -apple-system, sans-serif;
  --pd-font-mono: ui-monospace, Menlo, Consolas, monospace;

  --pd-radius-btn: 4px;
  --pd-radius-input: 6px;
  --pd-radius-card: 12px;
  --pd-radius-lg: 14px;

  --pd-container: 1280px;
  --pd-gutter: clamp(20px, 4vw, 48px);
  --pd-section-y: clamp(64px, 8vw, 110px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--pd-green-900);
  color: var(--pd-ivory);
  font-family: var(--pd-font-text);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--pd-gold-500); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--pd-gold-300); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--pd-gold-500);
  outline-offset: 2px;
}
img, svg { display: block; max-width: 100%; }
::selection { background: var(--pd-gold-500); color: var(--pd-green-900); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.wrap { max-width: var(--pd-container); margin-inline: auto; padding-inline: var(--pd-gutter); }
.section { padding-block: var(--pd-section-y); }
.mono { font-family: var(--pd-font-mono); }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  font-size: 11px; letter-spacing: .3em; font-weight: 600;
  color: var(--pd-gold-500); text-transform: uppercase;
}
.on-light .eyebrow, .eyebrow--ink { color: var(--pd-gold-ink); }

h1, h2, h3 { font-family: var(--pd-font-display); font-weight: 400; margin: 0; }
h1 { font-size: clamp(42px, 5.6vw, 72px); line-height: 1.07; text-wrap: pretty; }
h2 { font-size: clamp(34px, 4.2vw, 52px); line-height: 1.06; text-wrap: pretty; }
h3 { font-size: 22px; line-height: 1.2; }
p { text-wrap: pretty; }

/* ---------- Fields ---------- */
.on-light { background: var(--pd-ivory); color: var(--pd-text); }
.on-sand { background: var(--pd-sand); color: var(--pd-text); }
.on-dark { background: var(--pd-green-900); color: var(--pd-ivory); }
.on-meadow { background: var(--pd-green-800); color: var(--pd-ivory); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 15px 28px;
  border: 1px solid transparent; border-radius: var(--pd-radius-btn);
  font-family: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn--primary { background: var(--pd-gold-500); color: var(--pd-green-900); }
.btn--primary:hover { background: var(--pd-gold-300); color: var(--pd-green-900); }
.btn--ghost { background: transparent; border-color: rgba(201,162,78,.55); color: var(--pd-gold-300); font-weight: 500; }
.btn--ghost:hover { background: rgba(201,162,78,.1); color: var(--pd-gold-300); }
.btn--ghost-ink { background: transparent; border-color: var(--pd-gold-ink); color: var(--pd-gold-ink); font-weight: 500; }
.btn--ghost-ink:hover { background: rgba(140,106,47,.08); color: var(--pd-gold-ink); }
.btn--sm { min-height: 40px; padding: 10px 18px; font-size: 12.5px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11,33,21,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,162,78,.18);
}
.site-header__inner {
  max-width: var(--pd-container); margin-inline: auto;
  padding: 14px var(--pd-gutter);
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px 26px;
}
.brand { display: flex; align-items: center; gap: 10px; flex: none; }
.brand svg { width: 34px; color: var(--pd-gold-500); }
.brand__name { font-family: var(--pd-font-display); font-size: 18px; letter-spacing: .12em; color: var(--pd-ivory); }
.brand__name--ar { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name--ar .lat { font-family: var(--pd-font-display); font-size: 15px; letter-spacing: .12em; color: var(--pd-ivory); }
.brand__name--ar .ara { font-family: var(--pd-font-ar-display); font-size: 13px; color: var(--pd-gold-500); }

.site-nav { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13px; margin-inline-start: auto; }
.site-nav a { color: rgba(245,239,226,.78); }
.site-nav a:hover { color: var(--pd-gold-300); }
.header-actions { display: flex; align-items: center; gap: 18px; flex: none; }
.lang-switch { font-size: 12.5px; color: rgba(245,239,226,.7); }
.lang-switch:hover { color: var(--pd-gold-300); }

/* ---------- Hero ---------- */
.hero { background: var(--pd-green-900); position: relative; overflow: hidden; }
.hero__ornament { position: absolute; pointer-events: none; }
.hero__ornament--tr { top: 0; inset-inline-end: 0; opacity: .12; }
.hero__ornament--bl { bottom: 0; inset-inline-start: 0; opacity: .09; }
.hero__grid {
  max-width: var(--pd-container); margin-inline: auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(28px, 4vw, 56px); align-items: stretch; position: relative;
}
.hero__copy { padding: clamp(48px, 7vw, 96px) var(--pd-gutter); align-self: center; }
.hero__copy .eyebrow { display: block; margin-bottom: 24px; }
.hero__copy h1 { margin-bottom: 22px; }
.hero__lede { font-size: 17.5px; line-height: 1.7; color: rgba(245,239,226,.78); margin: 0 0 32px; max-width: 520px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__link { display: inline-block; margin-top: 22px; font-size: 13.5px; color: rgba(201,162,78,.85); }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 36px;
  font-family: var(--pd-font-mono); font-size: 9.5px; letter-spacing: .14em; color: rgba(245,239,226,.45);
}
.hero__media {
  position: relative; align-self: center;
  width: calc(100% + 76px); margin-inline-start: -76px;
  aspect-ratio: 1; overflow: hidden;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__fade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to right, var(--pd-green-900) 0%, rgba(11,33,21,0) 14%);
}
[dir="rtl"] .hero__fade { background: linear-gradient(to left, var(--pd-green-900) 0%, rgba(11,33,21,0) 14%); }

@media (max-width: 720px) {
  .hero__media { width: 100%; margin-inline-start: 0; aspect-ratio: 4 / 3; }
  .hero__fade { background: linear-gradient(to top, var(--pd-green-900) 0%, rgba(11,33,21,0) 34%); }
  [dir="rtl"] .hero__fade { background: linear-gradient(to top, var(--pd-green-900) 0%, rgba(11,33,21,0) 34%); }
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--pd-green-800);
  border-block: 1px solid rgba(201,162,78,.16);
}
.trust__grid {
  max-width: var(--pd-container); margin-inline: auto;
  padding: 26px var(--pd-gutter);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px;
}
.trust__item { display: flex; align-items: center; gap: 12px; }
.trust__item svg { width: 30px; flex: none; }
.trust__item span { font-size: 12px; letter-spacing: .08em; color: rgba(245,239,226,.85); }

/* ---------- Intro ---------- */
.intro__head { max-width: 760px; }
.intro__head h2 { font-size: clamp(32px, 3.8vw, 46px); line-height: 1.12; margin: 16px 0 20px; }
.intro__head p { font-size: 16px; line-height: 1.7; color: var(--pd-text-sub); margin: 0; }
.intro__cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px; margin-top: 48px;
}
.intro-card { border: 1px solid var(--pd-line); border-radius: var(--pd-radius-lg); overflow: hidden; background: var(--pd-cream); }
.intro-card__media { height: 230px; }
.intro-card__media img { width: 100%; height: 100%; object-fit: cover; }
.intro-card__body { padding: 24px 26px; }
.intro-card__label { font-size: 10.5px; letter-spacing: .26em; color: var(--pd-gold-ink); font-weight: 600; }
.intro-card__body p { font-size: 14.5px; line-height: 1.65; color: var(--pd-text-sub); margin: 10px 0 0; }

/* ---------- Product range ---------- */
.range__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 18px; margin-bottom: 36px;
}
.range__head h2 { margin-top: 14px; }
.range__note {
  font-family: var(--pd-font-mono); font-size: 10px; letter-spacing: .1em;
  color: var(--pd-mono-ink); max-width: 340px; line-height: 1.7;
}
.cut-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(245px, 1fr)); gap: 20px; }
.cut-card {
  background: var(--pd-cream); border: 1px solid var(--pd-line);
  border-radius: var(--pd-radius-card); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.cut-card:hover { box-shadow: 0 12px 32px rgba(32,36,31,.14); transform: translateY(-2px); }
.cut-card__media { aspect-ratio: .81; position: relative; }
.cut-card__media img { width: 100%; height: 100%; object-fit: cover; }
.cut-card__tag {
  position: absolute; top: 10px; inset-inline-start: 10px;
  background: rgba(11,33,21,.85); color: var(--pd-gold-300);
  font-family: var(--pd-font-mono); font-size: 8.5px; letter-spacing: .14em;
  padding: 4px 9px; border-radius: 99px;
}
.cut-card__body { padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.cut-card__titles { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.cut-card__en { font-family: var(--pd-font-display); font-size: 20px; color: var(--pd-text); }
.cut-card__ar { font-family: var(--pd-font-ar-display); font-size: 16px; color: var(--pd-gold-ink); }
.cut-card__spec { font-family: var(--pd-font-mono); font-size: 8.5px; letter-spacing: .12em; color: var(--pd-mono-ink); }
.cut-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 10px; border-top: 1px solid #EBE1C6;
  font-size: 12px; color: var(--pd-text-mute);
}
.cut-card__foot a { font-size: 12.5px; font-weight: 600; color: var(--pd-gold-ink); }
.cut-card__foot a:hover { color: var(--pd-gold-700); }

.programme-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 22px;
}
.programme {
  background: var(--pd-green-800); border-radius: var(--pd-radius-card);
  padding: 28px; color: var(--pd-ivory);
}
.programme__label { font-size: 10px; letter-spacing: .26em; color: var(--pd-gold-500); font-weight: 600; }
.programme h3 { margin: 10px 0 8px; }
.programme p { font-size: 13.5px; line-height: 1.6; color: rgba(245,239,226,.7); margin: 0 0 16px; }
.programme a { font-size: 13px; font-weight: 600; color: var(--pd-gold-300); }
.programme a:hover { color: var(--pd-ivory); }

.footnote { margin-top: 22px; font-family: var(--pd-font-mono); font-size: 9.5px; color: var(--pd-mono-ink); }
.footnote--dark { color: rgba(201,162,78,.6); letter-spacing: .12em; }

/* ---------- Origin chain ---------- */
.origin__lede { font-size: 16.5px; line-height: 1.7; color: rgba(245,239,226,.75); max-width: 640px; margin: 0 0 36px; }
.chain {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 44px;
  font-family: var(--pd-font-mono); font-size: 10px; letter-spacing: .1em; color: var(--pd-gold-300);
}
.chain__step { border: 1px solid rgba(201,162,78,.4); border-radius: 99px; padding: 8px 14px; }
.chain__step--end { background: var(--pd-gold-500); color: var(--pd-green-900); font-weight: 600; border-color: var(--pd-gold-500); }
.chain__arrow { color: rgba(201,162,78,.6); }
[dir="rtl"] .chain__arrow { transform: scaleX(-1); display: inline-block; }

.origin__media { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.origin__media figure { margin: 0; }
.origin__media .frame {
  height: 250px; border-radius: var(--pd-radius-card); overflow: hidden;
  border: 1px solid rgba(201,162,78,.25);
}
.origin__media img { width: 100%; height: 100%; object-fit: cover; }
.origin__media figcaption {
  margin-top: 10px; font-family: var(--pd-font-mono);
  font-size: 9.5px; letter-spacing: .1em; color: rgba(245,239,226,.5);
}

/* ---------- Halal steps ---------- */
.halal__lede { font-size: 16.5px; line-height: 1.7; color: var(--pd-text-sub); max-width: 640px; margin: 0 0 40px; }
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); gap: 16px; }
.step {
  background: var(--pd-cream); border: 1px solid var(--pd-line);
  border-radius: var(--pd-radius-card); padding: 22px 24px;
}
.step__n { font-family: var(--pd-font-display); font-size: 19px; color: var(--pd-gold-ink); }
.step__t { font-size: 14.5px; font-weight: 600; margin: 8px 0 6px; }
.step__d { font-size: 13px; line-height: 1.6; color: var(--pd-text-mute); }

.doc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 36px; }
.doc {
  border: 1.5px dashed var(--pd-line-dash); border-radius: var(--pd-radius-card);
  padding: 20px 22px; display: flex; align-items: center; gap: 16px;
}
.doc__icon {
  width: 40px; height: 48px; border: 1.5px solid var(--pd-line-dash); border-radius: 4px;
  flex: none; display: flex; align-items: center; justify-content: center;
  font-family: var(--pd-font-mono); font-size: 8px; color: var(--pd-gold-ink);
}
.doc__t { font-size: 13.5px; font-weight: 600; }
.doc__s { font-family: var(--pd-font-mono); font-size: 9.5px; color: var(--pd-mono-ink); margin-top: 4px; }
.disclaimer { margin-top: 24px; font-family: var(--pd-font-mono); font-size: 10px; line-height: 1.7; color: var(--pd-mono-ink); }

/* ---------- Cold chain rail ---------- */
.rail { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 14px; scrollbar-width: thin; }
.rail__card {
  min-width: 205px; flex: none;
  border: 1px solid rgba(201,162,78,.28); border-radius: var(--pd-radius-card);
  padding: 22px; background: rgba(245,239,226,.03);
}
.rail__n { display: flex; align-items: center; gap: 10px; }
.rail__n span:first-child { font-family: var(--pd-font-display); font-size: 20px; color: var(--pd-gold-300); }
.rail__n span:last-child { height: 1px; flex: 1; background: rgba(201,162,78,.35); }
.rail__t { font-size: 14.5px; font-weight: 600; margin: 12px 0 6px; }
.rail__d { font-size: 12.5px; line-height: 1.6; color: rgba(245,239,226,.6); }

/* ---------- UAE market ---------- */
.buyer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 14px; }
.buyer {
  background: var(--pd-cream); border: 1px solid var(--pd-line); border-radius: 10px;
  padding: 18px 20px; font-size: 14.5px; font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.buyer::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--pd-gold-500); flex: none; }
.request-panel {
  margin-top: 36px; padding: 26px 28px;
  background: var(--pd-green-800); border-radius: var(--pd-radius-lg); color: var(--pd-ivory);
}
.request-panel__label { font-size: 10.5px; letter-spacing: .26em; color: var(--pd-gold-500); font-weight: 600; margin-bottom: 16px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid rgba(201,162,78,.4); border-radius: 99px;
  padding: 8px 15px; font-size: 12.5px; color: rgba(245,239,226,.85);
}

/* ---------- Private label ---------- */
.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.split h2 { margin: 14px 0 20px; line-height: 1.08; }
.split p { font-size: 16px; line-height: 1.7; color: var(--pd-text-sub); margin: 0 0 22px; }
.tick-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; font-size: 14.5px; color: var(--pd-text-sub); }
.tick-list li { display: flex; gap: 10px; }
.tick-list li::before { content: "—"; color: var(--pd-gold-ink); }
.label-diagram {
  background: var(--pd-cream); border: 1px solid var(--pd-line);
  border-radius: var(--pd-radius-lg); padding: clamp(32px, 4vw, 56px); text-align: center;
}
.label-diagram__pack {
  width: min(260px, 72%); aspect-ratio: .8; margin-inline: auto;
  border-radius: 10px; overflow: hidden; border: 1px solid #E4D9BC;
}
.label-diagram__pack img { width: 100%; height: 100%; object-fit: cover; }
.label-diagram__stem { width: 1px; height: 26px; background: var(--pd-line-dash); margin: 18px auto; }
.endorsement {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--pd-line-strong); border-radius: 99px; padding: 10px 18px;
}
.endorsement svg { width: 22px; color: var(--pd-gold-ink); flex: none; }
.endorsement span { font-size: 10.5px; letter-spacing: .2em; font-weight: 600; color: var(--pd-text); }
.label-diagram__note { margin-top: 18px; font-family: var(--pd-font-mono); font-size: 9.5px; color: var(--pd-mono-ink); }

/* ---------- Enquiry form ---------- */
.enquiry-wrap { max-width: 1080px; margin-inline: auto; padding-inline: var(--pd-gutter); }
.enquiry__head { text-align: center; margin-bottom: 40px; }
.enquiry__head h2 { margin: 14px 0; }
.enquiry__head p { font-size: 15.5px; line-height: 1.7; color: var(--pd-text-sub); margin-inline: auto; max-width: 560px; }
.form-card {
  background: var(--pd-cream); border: 1px solid var(--pd-line);
  border-radius: 16px; padding: clamp(26px, 4vw, 44px);
}
.field-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.field label, .fieldset__legend {
  display: block; font-size: 10.5px; letter-spacing: .18em;
  color: var(--pd-gold-ink); font-weight: 600; margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%; background: var(--pd-ivory);
  border: 1px solid var(--pd-line-strong); border-radius: var(--pd-radius-input);
  padding: 12px 14px; font-size: 14px; font-family: var(--pd-font-text); color: var(--pd-text);
  min-height: 44px;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: #A79A78; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--pd-gold-500); outline: none;
}
.radio-row { display: flex; flex-wrap: wrap; gap: 16px 40px; margin-top: 24px; }
.radio-group { display: flex; gap: 18px; font-size: 14px; }
.radio-group label {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; letter-spacing: normal; color: var(--pd-text); font-weight: 400; margin: 0;
  text-transform: none;
}
.radio-group input { accent-color: var(--pd-gold-ink); }
.form-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 26px; }
.form-actions .mono { font-size: 9.5px; color: var(--pd-mono-ink); }

/* ---------- About ---------- */
.about { max-width: 820px; margin-inline: auto; padding-inline: var(--pd-gutter); text-align: center; }
.about svg { width: 64px; color: var(--pd-gold-ink); margin: 0 auto 22px; }
.about h2 { font-size: clamp(32px, 4vw, 46px); line-height: 1.1; margin: 16px 0 18px; }
.about p { font-size: 16.5px; line-height: 1.75; color: var(--pd-text-sub); margin: 0; }

/* ---------- Boutique ---------- */
.pill-badge {
  display: inline-block; border: 1px solid rgba(201,162,78,.4); border-radius: 99px;
  padding: 7px 16px; font-family: var(--pd-font-mono); font-size: 9.5px;
  letter-spacing: .16em; color: var(--pd-gold-300); margin-bottom: 22px;
}
.boutique__media {
  height: clamp(300px, 36vw, 440px); border-radius: var(--pd-radius-lg);
  overflow: hidden; border: 1px solid rgba(201,162,78,.35);
}
.boutique__media img { width: 100%; height: 100%; object-fit: cover; }
.boutique p { color: rgba(245,239,226,.72); font-size: 15.5px; max-width: 480px; }
.chip--soft { border-color: rgba(201,162,78,.35); font-size: 12px; padding: 7px 14px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pd-green-800); color: var(--pd-ivory);
  border-top: 1px solid rgba(201,162,78,.18);
}
.site-footer__inner {
  max-width: var(--pd-container); margin-inline: auto;
  padding: clamp(56px, 7vw, 88px) var(--pd-gutter) 40px;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(28px, 4vw, 56px); align-items: start; }
.footer-col__label { font-size: 10.5px; letter-spacing: .26em; color: var(--pd-gold-500); font-weight: 600; margin-bottom: 16px; }
.footer-col address { font-style: normal; font-size: 13.5px; line-height: 2; color: rgba(245,239,226,.75); }
.footer-col p { font-size: 13.5px; line-height: 1.65; color: rgba(245,239,226,.6); margin: 0 0 16px; max-width: 280px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand svg { width: 42px; color: var(--pd-gold-500); }
.footer-brand span { font-family: var(--pd-font-display); font-size: 20px; letter-spacing: .12em; }
.footer-note { margin-top: 14px; font-family: var(--pd-font-mono); font-size: 9.5px; letter-spacing: .1em; color: rgba(245,239,226,.4); }
.footer-legal {
  margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(201,162,78,.16);
  display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(245,239,226,.5);
}
.footer-legal a { color: rgba(245,239,226,.5); }
.footer-legal a:hover { color: var(--pd-gold-300); }
.footer-legal__links { display: flex; gap: 20px; }

/* ---------- Arabic / RTL ---------- */
[lang="ar"] {
  --pd-font-text: 'Cairo', system-ui, sans-serif;
  --pd-font-display: 'Amiri', 'Cairo', serif;
}
[lang="ar"] body { font-family: 'Cairo', system-ui, sans-serif; }
[lang="ar"] h1, [lang="ar"] h2, [lang="ar"] h3 { font-family: 'Amiri', serif; font-weight: 700; }
[lang="ar"] h1 { line-height: 1.5; font-size: clamp(36px, 5vw, 60px); }
[lang="ar"] h2 { line-height: 1.5; font-size: clamp(30px, 3.9vw, 46px); }
[lang="ar"] p, [lang="ar"] li, [lang="ar"] .hero__lede { line-height: 2; }
[lang="ar"] .eyebrow { letter-spacing: .08em; font-weight: 700; font-size: 12px; }
[lang="ar"] .btn { font-weight: 700; font-size: 14.5px; }
[lang="ar"] .cut-card__ar { font-family: 'Amiri', serif; font-size: 22px; font-weight: 700; color: var(--pd-text); }
[lang="ar"] .cut-card__en { font-family: 'Marcellus', serif; font-size: 15px; color: var(--pd-gold-ink); }
[lang="ar"] .brand__name--ar .lat,
[lang="ar"] .footer-brand span { font-family: 'Marcellus', serif; font-weight: 400; }
.ltr { direction: ltr; unicode-bidi: isolate; }

@media (max-width: 560px) {
  .site-nav { order: 3; width: 100%; margin-inline-start: 0; }
  .range__head { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

@media print {
  .site-header { position: static; }
  .hero__ornament { display: none; }
}
