/* ==========================================================================
   Sukoon Media — site.css
   The "editorial premium" design system (LOCKED): Playfair Display + DM Sans,
   warm cream + gold. Built with CSS logical properties so the Arabic (RTL)
   pages reuse this file unchanged; /ar/ only adds the Arabic type stack.
   ========================================================================== */

/* fonts.css is linked directly in each page <head> before this file (avoids an
   @import request waterfall and works with the woff2 preloads). */

:root {
  /* palette */
  --cream:       #fff1db;
  --cream-deep:  #f7e4c0;
  --paper:       #fffaf0;
  --gold:        #ffb547;   /* accent FILL only — never as text on light */
  --gold-ink:    #785a1e;   /* gold-toned TEXT, AA-safe on cream (~6:1) */
  --gold-dark:   #d4891a;   /* italic <em> emphasis inside headings */
  --ink:         #3b3732;   /* body text */
  --ink-soft:    #6f665b;   /* secondary text */
  --dark-ink:    #221f1c;   /* inverted CTA band */
  --line:        #e7d6b8;   /* hairlines on cream */
  --line-soft:   #efe0c4;

  /* type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --arabic: "SF Arabic", "Geeza Pro", "Noto Naskh Arabic", "Segoe UI", var(--sans);

  /* metrics */
  --maxw: 1200px;
  --pad: clamp(20px, 6vw, 64px);
  --r-card: 14px;
  --r-soft: 10px;
  --r-pill: 999px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --shadow-1: 0 1px 2px rgba(59,55,50,.05), 0 8px 24px rgba(59,55,50,.06);
  --shadow-2: 0 2px 4px rgba(59,55,50,.06), 0 18px 48px rgba(59,55,50,.10);
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 2.5px solid var(--gold-dark); outline-offset: 3px; border-radius: 4px; }

/* numbers: always sans + tabular, never serif */
.num, time, .stat__n { font-family: var(--sans); font-variant-numeric: tabular-nums; }

/* ---- layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
section { position: relative; }
.section { padding-block: clamp(64px, 10vw, 132px); }
.section--cream { background: var(--cream); }
.section--deep  { background: var(--cream-deep); }
.hr-soft { height: 1px; background: var(--line); border: 0; }

/* ---- type primitives ---- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  inline-size: 32px;
  block-size: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; color: var(--ink); line-height: 1.08; }
/* emphasis word uses gold-ink (AA-safe on cream); the locked spec's gold-dark
   (#d4891a) fails contrast even at large sizes. Bright --gold is restored only
   on the dark CTA band via a later override. */
h1 em, h2 em { font-style: italic; color: var(--gold-ink); }
.h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); }
.h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.12; }
.h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); line-height: 1.2; }
.lede { font-size: clamp(1.05rem, 1.7vw, 1.26rem); color: var(--ink-soft); line-height: 1.55; max-inline-size: 54ch; }
.kicker { font-family: var(--sans); font-weight: 500; color: var(--ink-soft); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-block-size: 52px; padding-inline: 26px; padding-block: 14px;
  border-radius: var(--r-pill); border: 1.5px solid transparent;
  font-family: var(--sans); font-weight: 600; font-size: 1rem; letter-spacing: .005em;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              border-color .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: var(--gold); color: #2a1d05; box-shadow: 0 8px 22px rgba(255,181,71,.30); }
.btn--primary:hover { background: #ffbf60; box-shadow: 0 12px 30px rgba(255,181,71,.40); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(59,55,50,.04); transform: translateY(-2px); }
.btn--on-dark { background: var(--gold); color: #2a1d05; }
.btn--ghost-dark { background: transparent; color: var(--cream); border-color: rgba(255,241,219,.35); }
.btn--ghost-dark:hover { border-color: var(--cream); background: rgba(255,241,219,.08); }
.btn--block { inline-size: 100%; }
.btn--lg { min-block-size: 58px; font-size: 1.05rem; padding-inline: 32px; }

/* whatsapp inline link */
.wa { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-ink); font-weight: 600; }
.wa svg { inline-size: 18px; block-size: 18px; }
.wa:hover { color: var(--gold-dark); }

/* ---- header / nav ---- */
.site-head {
  position: sticky; inset-block-start: 0; z-index: 50;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-block-end: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-head.is-stuck { border-block-end-color: var(--line); background: color-mix(in srgb, var(--cream) 92%, transparent); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; block-size: 72px; }
.brand { display: inline-flex; align-items: baseline; gap: 9px; font-family: var(--serif); font-size: 1.4rem; color: var(--ink); letter-spacing: -0.01em; }
.brand b { font-weight: 500; }
.brand .brand__tag { font-family: var(--sans); font-weight: 600; font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-ink); align-self: center; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-family: var(--sans); font-weight: 500; font-size: .96rem; color: var(--ink-soft); position: relative; padding-block: 6px; transition: color .2s var(--ease); }
.nav__links a::after { content: ""; position: absolute; inset-block-end: 0; inset-inline-start: 0; inline-size: 0; block-size: 2px; background: var(--gold); border-radius: 2px; transition: inline-size .25s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { inline-size: 100%; }
.nav__right { display: flex; align-items: center; gap: 16px; }
.lang { font-family: var(--sans); font-weight: 600; font-size: .86rem; color: var(--ink); border: 1.5px solid var(--line); border-radius: var(--r-pill); padding: 7px 14px; transition: border-color .2s var(--ease), background-color .2s var(--ease); }
.lang:hover { border-color: var(--ink); background: rgba(59,55,50,.04); }
.nav__cta { display: inline-flex; }
.nav__burger { display: none; }

/* ---- hero ---- */
.hero { position: relative; isolation: isolate; overflow: hidden; background: var(--cream); }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { inline-size: 100%; block-size: 100%; object-fit: cover; object-position: center; }
.hero__media::after { /* warm scrim for legibility */
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(255,241,219,.97) 0%, rgba(255,241,219,.86) 34%, rgba(255,241,219,.28) 62%, rgba(255,241,219,0) 86%),
    linear-gradient(0deg, rgba(255,241,219,.55), rgba(255,241,219,0) 40%);
}
@media (max-width: 760px) {
  .hero__media::after { background: linear-gradient(180deg, rgba(255,241,219,.62) 0%, rgba(255,241,219,.86) 52%, rgba(255,241,219,.97) 100%); }
}
.hero__inner { padding-block: clamp(96px, 16vh, 200px); }
.hero__col { max-inline-size: 40rem; }
.hero h1 { margin-block: 18px 22px; }
.hero .lede { max-inline-size: 40ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-block-start: 32px; }
.hero__note { margin-block-start: 22px; font-size: .92rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px; }
.hero__note .dot { inline-size: 7px; block-size: 7px; border-radius: 50%; background: var(--gold); }

/* ---- credibility strip ---- */
.cred { background: var(--dark-ink); color: var(--cream); }
.cred__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.cred__item { padding-block: 30px; padding-inline: 28px; border-inline-start: 1px solid rgba(255,241,219,.12); }
.cred__item:first-child { border-inline-start: 0; }
.cred__item .ci-k { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.cred__item .ci-v { font-family: var(--serif); font-size: 1.18rem; line-height: 1.3; margin-block-start: 8px; color: var(--cream); }
@media (max-width: 760px) {
  .cred__row { grid-template-columns: 1fr; }
  .cred__item { border-inline-start: 0; border-block-start: 1px solid rgba(255,241,219,.12); padding-block: 22px; }
  .cred__item:first-child { border-block-start: 0; }
}

/* ---- section heading block ---- */
.shead { max-inline-size: 46rem; }
.shead--center { margin-inline: auto; text-align: center; }
.shead .h2 { margin-block: 16px 18px; }
.shead--center .lede { margin-inline: auto; }

/* ---- workshop cards ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-block-start: 54px; }
@media (max-width: 940px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-card);
  overflow: hidden; box-shadow: var(--shadow-1);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--line); }
.card__media { aspect-ratio: 4 / 3; background: linear-gradient(135deg, var(--cream-deep), #f0d49e); position: relative; overflow: hidden; }
.card__media img { inline-size: 100%; block-size: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.045); }
.card__n { position: absolute; inset-block-start: 12px; inset-inline-start: 12px; font-family: var(--sans); font-variant-numeric: tabular-nums; font-weight: 600; font-size: 12px; color: var(--gold-ink); background: color-mix(in srgb, var(--cream) 88%, transparent); border-radius: var(--r-pill); padding: 4px 10px; backdrop-filter: blur(4px); }
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__body h3 { color: var(--ink); }
.card__body p { color: var(--ink-soft); font-size: .98rem; line-height: 1.5; }
.card__tag { margin-block-start: auto; padding-block-start: 12px; font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: .04em; color: var(--gold-ink); display: inline-flex; align-items: center; gap: 7px; }
.card__tag .pin { inline-size: 6px; block-size: 6px; border-radius: 50%; background: var(--gold); }

/* ---- studio split ---- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split__media { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-2); aspect-ratio: 4 / 3; background: var(--cream-deep); }
.split__media img { inline-size: 100%; block-size: 100%; object-fit: cover; }
.split__media--tall { aspect-ratio: 3 / 4; }
.feature { display: flex; gap: 16px; padding-block: 16px; border-block-start: 1px solid var(--line); }
.feature:first-of-type { border-block-start: 0; }
.feature__ico { flex: none; inline-size: 38px; block-size: 38px; border-radius: 10px; background: color-mix(in srgb, var(--gold) 22%, var(--cream)); display: grid; place-items: center; color: var(--gold-ink); }
.feature__ico svg { inline-size: 20px; block-size: 20px; }
.feature h3 { font-family: var(--sans); font-weight: 600; font-size: 1.04rem; letter-spacing: 0; color: var(--ink); }
.feature p { color: var(--ink-soft); font-size: .97rem; line-height: 1.5; margin-block-start: 3px; }

/* ---- gear lineup ---- */
.gear { margin-block-start: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 760px) { .gear { grid-template-columns: 1fr; } }
.gear__item { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-soft); padding: 18px 20px; }
.gear__item .gk { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }
.gear__item .gd { font-size: .92rem; color: var(--ink-soft); margin-block-start: 4px; }

/* ---- steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-block-start: 48px; counter-reset: step; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { padding-block-start: 26px; border-block-start: 2px solid var(--gold); }
.step__n { font-family: var(--sans); font-variant-numeric: tabular-nums; font-weight: 600; font-size: 13px; color: var(--gold-ink); letter-spacing: .1em; }
.step h3 { font-family: var(--sans); font-weight: 600; font-size: 1.1rem; letter-spacing: 0; color: var(--ink); margin-block: 8px 6px; }
.step p { color: var(--ink-soft); font-size: .97rem; }

/* ---- lead form ---- */
.lead { background: var(--cream-deep); }
.lead__card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-2); padding: clamp(26px, 4vw, 48px);
  max-inline-size: 620px; margin-inline: auto;
}
.field { display: flex; flex-direction: column; gap: 7px; margin-block-end: 18px; }
.field > label { font-family: var(--sans); font-weight: 600; font-size: .9rem; color: var(--ink); }
.field .req { color: var(--gold-dark); }
.input, .select, .textarea {
  font-family: var(--sans); font-size: 16px; color: var(--ink); background: var(--cream);
  border: 1.5px solid var(--line); border-radius: var(--r-soft);
  padding: 14px 16px; min-block-size: 52px; inline-size: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.textarea { min-block-size: 96px; resize: vertical; line-height: 1.5; }
.input::placeholder, .textarea::placeholder { color: #8a7e6a; }
.input:hover, .select:hover, .textarea:hover { border-color: #d9c39a; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--gold-dark); background: var(--paper); box-shadow: 0 0 0 4px rgba(255,181,71,.18); }
.select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%236f665b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-inline-end: 42px;
}
html[dir="rtl"] .select { background-position: left 16px center; padding-inline-end: 16px; padding-inline-start: 42px; }
[data-field][data-error] .input, [data-field][data-error] .select, [data-field][data-error] .textarea { border-color: #c0492f; box-shadow: 0 0 0 4px rgba(192,73,47,.12); }
.field__err { display: none; font-size: .82rem; color: #c0492f; font-weight: 500; }
[data-field][data-error] .field__err { display: block; }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-block-start: 6px; }
.cf-turnstile { min-block-size: 0; }
.lead__alt { text-align: center; margin-block-start: 20px; font-size: .95rem; color: var(--ink-soft); }
.leadmsg { border-radius: var(--r-soft); padding: 14px 16px; font-size: .96rem; font-weight: 500; margin-block-end: 16px; }
.leadmsg--ok { display: none; background: color-mix(in srgb, var(--gold) 18%, var(--paper)); border: 1px solid var(--gold); color: var(--gold-ink); }
.leadmsg--ok.is-shown { display: block; }
.leadmsg--err { display: none; background: #fcefe9; border: 1px solid #e6b6a6; color: #9a3a22; }
.is-sent .field, .is-sent .form__foot { display: none; }

/* honeypot */
.hp { position: absolute; inline-size: 1px; block-size: 1px; overflow: hidden; clip: rect(0,0,0,0); clip-path: inset(50%); white-space: nowrap; border: 0; padding: 0; margin: -1px; }

/* ---- CTA band ---- */
.cta-band { position: relative; isolation: isolate; background: var(--dark-ink); color: var(--cream); overflow: hidden; text-align: center; }
.cta-band__bg { position: absolute; inset: 0; z-index: -1; opacity: .5; }
.cta-band__bg img { inline-size: 100%; block-size: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(120% 120% at 50% 0%, rgba(34,31,28,.2), rgba(34,31,28,.86) 70%); }
.cta-band h2 { color: var(--cream); margin-block-end: 16px; }
.cta-band h2 em { color: var(--gold); }
.cta-band .lede { color: rgba(255,241,219,.78); margin-inline: auto; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-block-start: 30px; }

/* ---- footer ---- */
.foot { background: var(--cream); border-block-start: 1px solid var(--line); padding-block: 56px 40px; }
.foot__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; }
.foot .brand { font-size: 1.5rem; }
.foot__links { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.foot__links a { font-family: var(--sans); font-weight: 500; font-size: .95rem; color: var(--ink-soft); }
.foot__links a:hover { color: var(--ink); }
.foot__legal { margin-block-start: 34px; padding-block-start: 22px; border-block-start: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--ink-soft); font-size: .85rem; }
.foot__legal .num { color: var(--ink-soft); }

/* ---- reveal motion (only hides when JS is present, so no-JS never blanks) ---- */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0ms); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- mobile nav ---- */
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-grid; place-items: center; inline-size: 46px; block-size: 46px; border-radius: 12px; border: 1.5px solid var(--line); background: transparent; }
  .nav__burger span { display: block; inline-size: 20px; block-size: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: transform .3s var(--ease), opacity .2s var(--ease); }
  .nav__burger span::before, .nav__burger span::after { content: ""; position: absolute; inset-inline: 0; block-size: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease); }
  .nav__burger span::before { inset-block-start: -6px; }
  .nav__burger span::after { inset-block-start: 6px; }
  .menu-open .nav__burger span { background: transparent; }
  .menu-open .nav__burger span::before { transform: translateY(6px) rotate(45deg); }
  .menu-open .nav__burger span::after { transform: translateY(-6px) rotate(-45deg); }
  .mobile-menu {
    position: fixed; inset-block-start: 72px; inset-inline: 0; inset-block-end: 0; z-index: 49;
    background: var(--cream); padding: 18px var(--pad) calc(34px + env(safe-area-inset-bottom));
    transform: translateY(-12px); opacity: 0; pointer-events: none; visibility: hidden;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
    display: flex; flex-direction: column; gap: 6px; border-block-start: 1px solid var(--line);
  }
  .menu-open .mobile-menu { transform: none; opacity: 1; pointer-events: auto; visibility: visible; transition-delay: 0s; }
  .mobile-menu a { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); padding-block: 14px; border-block-end: 1px solid var(--line-soft); }
  .mobile-menu .btn { margin-block-start: 16px; }
}
@media (min-width: 861px) { .mobile-menu { display: none; } }

/* safe-area for fixed/sticky bottoms if any */
body { padding-block-end: env(safe-area-inset-bottom); }

/* ---- Arabic / RTL type layer (loaded EN too; only bites under dir=rtl) ---- */
html[dir="rtl"] body,
html[dir="rtl"] .input, html[dir="rtl"] .select, html[dir="rtl"] .textarea,
html[dir="rtl"] .btn, html[dir="rtl"] .nav__links a, html[dir="rtl"] .lang { font-family: var(--arabic); }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3,
html[dir="rtl"] .brand, html[dir="rtl"] .card__body h3, html[dir="rtl"] .gear__item .gk,
html[dir="rtl"] .cred__item .ci-v { font-family: var(--arabic); }
/* naskh needs a touch more air and no Latin tracking/casing */
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3 { letter-spacing: normal; line-height: 1.22; }
html[dir="rtl"] .eyebrow, html[dir="rtl"] .brand__tag, html[dir="rtl"] .cred__item .ci-k,
html[dir="rtl"] .card__n, html[dir="rtl"] .step__n { letter-spacing: normal; }
html[dir="rtl"] .h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); }
/* keep Latin runs (numbers, @handles, phone, brand line names) LTR + sans tabular */
html[dir="rtl"] .ltr, html[dir="rtl"] .num { direction: ltr; unicode-bidi: isolate; font-family: var(--sans); }
/* hero legibility scrim must fade toward the OTHER side under RTL (text sits at inline-start = right) */
html[dir="rtl"] .hero__media::after {
  background:
    linear-gradient(260deg, rgba(255,241,219,.97) 0%, rgba(255,241,219,.86) 34%, rgba(255,241,219,.28) 62%, rgba(255,241,219,0) 86%),
    linear-gradient(0deg, rgba(255,241,219,.55), rgba(255,241,219,0) 40%);
}
@media (max-width: 760px) {
  html[dir="rtl"] .hero__media::after { background: linear-gradient(180deg, rgba(255,241,219,.62) 0%, rgba(255,241,219,.86) 52%, rgba(255,241,219,.97) 100%); }
}
