@font-face { font-family: "Cormorant Garamond"; src: url("../fonts/cormorant-garamond.woff2") format("woff2"); font-style: normal; font-weight: 400 600; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope.woff2") format("woff2"); font-style: normal; font-weight: 400 700; font-display: swap; }
@font-face { font-family: "Noto Kufi Arabic"; src: url("../fonts/noto-kufi-arabic.woff2") format("woff2"); font-style: normal; font-weight: 400 600; font-display: swap; }

:root {
  --ink: #19161a;
  --ink-soft: #514950;
  --wine: #751f32;
  --wine-deep: #49121f;
  --wine-bright: #932b42;
  --indigo: #332c78;
  --gold: #b69662;
  --paper: #fbfaf8;
  --mist: #f2efed;
  --white: #fff;
  --line: rgba(41, 25, 31, .16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --arabic: "Noto Kufi Arabic", Arial, sans-serif;
  --header-height: 86px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); overflow-x: hidden; }
body.is-arabic { font-family: var(--arabic); }
body.language-changing #app { opacity: .4; transform: translateY(4px); }
#app { transition: opacity .18s ease, transform .18s ease; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
svg { width: 18px; height: 18px; flex: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: .98; }
.is-arabic h1, .is-arabic h2, .is-arabic h3 { font-family: var(--arabic); line-height: 1.45; }
.skip-link { position: fixed; inset-inline-start: 16px; top: -80px; z-index: 100; padding: 12px 18px; background: var(--ink); color: white; transition: top .2s; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 40; height: var(--header-height); padding: 0 4vw;
  display: grid; grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr); align-items: center;
  color: var(--ink); background: rgba(251, 250, 248, .94); border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px); transition: transform .35s ease, border-color .25s ease, background .25s ease;
}
.site-header.is-hidden { transform: translateY(-102%); }
.site-header.is-scrolled { border-color: var(--line); background: rgba(251, 250, 248, .98); }
.brand { display: inline-flex; align-items: center; gap: 10px; justify-self: start; min-width: 0; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand span { display: grid; gap: 1px; }
.brand b { font: 600 18px/1 var(--serif); letter-spacing: 0; }
.is-arabic .brand b { font-family: var(--arabic); }
.brand small { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-soft); }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 34px; }
.desktop-nav a { position: relative; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; padding: 12px 0; }
.is-arabic .desktop-nav a { font-size: 13px; text-transform: none; letter-spacing: 0; }
.desktop-nav a::after { content: ""; position: absolute; height: 1px; width: 0; inset-inline-start: 0; bottom: 5px; background: var(--wine); transition: width .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { width: 100%; }
.header-actions { display: flex; align-items: center; justify-self: end; gap: 8px; }
.language-switch, .icon-link, .menu-toggle { border: 0; background: none; cursor: pointer; min-height: 42px; display: inline-flex; align-items: center; justify-content: center; }
.language-switch { gap: 8px; padding: 0 12px; font-size: 12px; font-weight: 600; }
.icon-link, .menu-toggle { width: 42px; border: 1px solid var(--line); }
.icon-link:hover, .menu-toggle:hover { background: var(--wine); border-color: var(--wine); color: white; }
.menu-toggle { display: none; }
.mobile-panel { position: absolute; inset: var(--header-height) 0 auto; padding: 28px 5vw 38px; background: var(--paper); border-top: 1px solid var(--line); box-shadow: 0 18px 40px rgba(35, 20, 26, .12); }
.mobile-panel nav { display: grid; gap: 0; margin-bottom: 24px; }
.mobile-panel nav a { padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 28px; }
.is-arabic .mobile-panel nav a { font-family: var(--arabic); font-size: 20px; }

.button { min-height: 48px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; transition: background .25s, color .25s, border-color .25s, transform .25s; }
.is-arabic .button { letter-spacing: 0; text-transform: none; font-size: 12px; }
.button:hover { transform: translateY(-2px); }
.button-solid { background: var(--wine); color: white; }
.button-solid:hover { background: var(--wine-deep); }
.button-light { background: white; color: var(--ink); }
.button-light:hover { background: var(--gold); color: white; }
.button-ghost-light { border-color: rgba(255,255,255,.55); color: white; }
.button-ghost-light:hover { background: white; color: var(--wine-deep); }
.button-outline { border-color: var(--ink); }
.button-outline:hover { background: var(--ink); color: white; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--wine); font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; border-bottom: 1px solid rgba(117,31,50,.4); padding-bottom: 7px; }
.is-arabic .text-link { letter-spacing: 0; text-transform: none; }
.eyebrow { margin-bottom: 19px; font-size: 11px; line-height: 1.4; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--wine); }
.is-arabic .eyebrow { font-size: 11px; letter-spacing: 0; text-transform: none; }

.hero { position: relative; min-height: 100svh; color: white; overflow: hidden; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; animation: heroSettle 1.5s cubic-bezier(.2,.7,.2,1) both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(25,7,13,.82) 0%, rgba(25,7,13,.42) 46%, rgba(25,7,13,.04) 78%); }
[dir="rtl"] .hero-shade { transform: scaleX(-1); }
.hero-content { position: absolute; z-index: 2; inset-inline-start: 8vw; top: 52%; width: min(610px, 78vw); transform: translateY(-46%); }
.hero-content .eyebrow { color: #e2c9a6; }
.hero-content h1 { max-width: 580px; margin-bottom: 31px; font-size: 66px; letter-spacing: 0; }
.is-arabic .hero-content h1 { font-size: 50px; max-width: 660px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-index { position: absolute; z-index: 2; inset-inline-end: 4vw; bottom: 45px; display: flex; align-items: center; gap: 17px; color: rgba(255,255,255,.76); }
.hero-index span { font-size: 10px; letter-spacing: .28em; writing-mode: vertical-rl; }
.hero-index b { font: 400 48px/1 var(--serif); }
.scroll-cue { position: absolute; z-index: 2; inset-inline-start: 50%; bottom: 29px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; animation: float 2s ease-in-out infinite; }

.intro-section { position: relative; min-height: 620px; display: grid; grid-template-columns: minmax(260px, .8fr) minmax(340px, .65fr); align-content: center; gap: 9vw; padding: 110px 10vw; overflow: hidden; }
.section-number { position: absolute; inset-inline-start: 1vw; top: 50%; translate: 0 -50%; color: rgba(117,31,50,.055); font: 400 420px/1 var(--arabic); pointer-events: none; }
.intro-heading, .intro-copy { position: relative; z-index: 1; }
.intro-heading h2 { max-width: 610px; font-size: 54px; }
.is-arabic .intro-heading h2 { font-size: 41px; }
.intro-copy { padding-top: 54px; }
.intro-copy > p { margin-bottom: 29px; color: var(--ink-soft); font-size: 17px; line-height: 1.9; }

.collection-section, .catalogue-section { padding: 105px 4vw 120px; background: var(--mist); }
.section-head { max-width: 1280px; margin: 0 auto 54px; display: grid; grid-template-columns: 1fr minmax(300px, .52fr); gap: 8vw; align-items: end; }
.section-head h2 { margin-bottom: 0; font-size: 54px; }
.is-arabic .section-head h2 { font-size: 40px; }
.section-head > p { margin-bottom: 5px; color: var(--ink-soft); font-size: 14px; line-height: 1.8; }
.product-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.product-grid-full { grid-template-columns: repeat(2, 1fr); gap: 40px 2px; }
.product-card { background: var(--paper); overflow: hidden; }
.product-image { position: relative; display: block; height: 610px; overflow: hidden; background: #d8cfca; }
.product-grid-full .product-image { height: 730px; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.65,.2,1); }
.product-image:hover img { transform: scale(1.035); }
.product-image > span { position: absolute; inset-inline-start: 18px; bottom: 18px; padding: 8px 10px; color: white; background: rgba(26,14,19,.78); backdrop-filter: blur(8px); font: 600 9px/1 var(--sans); letter-spacing: .12em; }
.product-copy { padding: 27px 28px 32px; }
.product-copy > div { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.product-copy > div p { flex: none; margin: 0; color: var(--wine); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.is-arabic .product-copy > div p { letter-spacing: 0; text-transform: none; }
.product-copy h3 { flex: 1; margin: 0; text-align: end; font-size: 30px; }
.is-arabic .product-copy h3 { font-size: 22px; }
.product-copy > p { min-height: 50px; margin: 20px 0; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.product-copy > a { display: inline-flex; align-items: center; gap: 8px; color: var(--wine); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.product-copy > a svg { width: 14px; height: 14px; transition: transform .2s; }
.product-copy > a:hover svg { transform: translateX(3px); }
[dir="rtl"] .product-copy > a:hover svg { transform: translateX(-3px); }
.section-action { display: flex; justify-content: center; margin-top: 45px; }

.craft-story { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 690px; background: var(--wine-deep); color: white; }
.craft-image { min-height: 690px; overflow: hidden; }
.craft-image img { width: 100%; height: 100%; object-fit: cover; }
.craft-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 90px 8vw; overflow: hidden; }
.craft-copy .eyebrow { color: #d7bd93; }
.craft-copy h2 { position: relative; z-index: 1; margin-bottom: 29px; font-size: 52px; }
.is-arabic .craft-copy h2 { font-size: 38px; }
.craft-copy > p:not(.eyebrow) { position: relative; z-index: 1; font-size: 14px; line-height: 1.9; color: rgba(255,255,255,.72); }
.arabic-mark { position: absolute; inset-inline-end: -30px; bottom: -10px; color: rgba(255,255,255,.045); font: 500 130px/1 var(--arabic); white-space: nowrap; }

.pillars-section { padding: 30px 5vw; background: var(--paper); }
.pillars { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.pillar { min-height: 300px; padding: 55px 4vw; border-inline-end: 1px solid var(--line); }
.pillar:last-child { border-inline-end: 0; }
.pillar > span, .value > span { color: var(--gold); font: 600 10px/1 var(--sans); letter-spacing: .15em; }
.pillar h3 { margin: 50px 0 16px; font-size: 34px; }
.is-arabic .pillar h3 { font-size: 24px; }
.pillar p { color: var(--ink-soft); font-size: 14px; line-height: 1.8; }

.contact-band { min-height: 430px; padding: 80px 8vw; display: flex; align-items: center; justify-content: space-between; gap: 6vw; background: var(--wine); color: white; }
.contact-band .eyebrow { color: #e1c9a7; }
.contact-band h2 { max-width: 700px; margin-bottom: 19px; font-size: 52px; }
.is-arabic .contact-band h2 { font-size: 38px; }
.contact-band p:not(.eyebrow) { max-width: 660px; color: rgba(255,255,255,.72); line-height: 1.8; }
.contact-band-actions { flex: none; display: flex; flex-wrap: wrap; gap: 10px; }

.inner-hero { position: relative; min-height: 780px; margin-top: var(--header-height); display: grid; grid-template-columns: .82fr 1.18fr; background: var(--paper); overflow: hidden; }
.inner-hero-copy { align-self: center; padding: 90px 7vw; position: relative; z-index: 2; }
.inner-hero-copy h1 { margin-bottom: 28px; font-size: 64px; }
.is-arabic .inner-hero-copy h1 { font-size: 46px; }
.inner-hero-copy > p:last-child { max-width: 510px; color: var(--ink-soft); line-height: 1.9; font-size: 14px; }
.inner-hero-image { height: 780px; overflow: hidden; clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%); }
[dir="rtl"] .inner-hero-image { clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%); }
.inner-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.inner-hero-mark { position: absolute; z-index: 1; inset-inline-start: 37%; bottom: -50px; color: rgba(117,31,50,.07); font: 400 330px/1 var(--arabic); }
.catalogue-section { background: var(--paper); }
.catalogue-note { max-width: 900px; margin: 0 auto 60px; padding: 20px 24px; display: flex; align-items: center; justify-content: center; gap: 13px; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); color: var(--ink-soft); }
.catalogue-note p { margin: 0; font-size: 14px; line-height: 1.7; }
.service-panel { min-height: 390px; padding: 80px 10vw; display: flex; align-items: center; justify-content: space-between; gap: 8vw; color: white; background: var(--indigo); }
.service-panel .eyebrow { color: #d8c5a6; }
.service-panel h2 { max-width: 680px; font-size: 50px; }
.is-arabic .service-panel h2 { font-size: 37px; }
.service-panel p:not(.eyebrow) { max-width: 680px; color: rgba(255,255,255,.72); line-height: 1.8; }

.quote-section { position: relative; min-height: 500px; padding: 100px 12vw; display: grid; place-items: center; text-align: center; overflow: hidden; }
.quote-section blockquote { position: relative; z-index: 1; max-width: 970px; margin: 0; color: var(--wine); font: 500 50px/1.25 var(--serif); }
.is-arabic .quote-section blockquote { font: 500 36px/1.8 var(--arabic); }
.quote-section > span { position: absolute; color: rgba(51,44,120,.045); font: 500 260px/1 var(--arabic); }
.story-section { min-height: 720px; display: grid; grid-template-columns: 1fr 1fr; background: var(--mist); }
.story-image { height: 720px; overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; }
.story-copy { align-self: center; padding: 90px 10vw; }
.story-copy h2 { margin-bottom: 30px; font-size: 53px; }
.is-arabic .story-copy h2 { font-size: 38px; }
.story-copy > p:last-child { color: var(--ink-soft); font-size: 15px; line-height: 2; }
.values-section { max-width: 1300px; margin: 0 auto; padding: 100px 4vw; display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; }
.value { padding-top: 24px; border-top: 1px solid var(--ink); }
.value h3 { margin: 50px 0 12px; font-size: 38px; }
.is-arabic .value h3 { font-size: 27px; }
.value p { color: var(--ink-soft); font-size: 13px; line-height: 1.7; }

.contact-hero { margin-top: var(--header-height); min-height: 700px; padding: 110px 9vw; display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; color: white; background: var(--wine-deep); }
.contact-title { align-self: center; }
.contact-title .eyebrow { color: #ddc29a; }
.contact-title h1 { max-width: 600px; margin-bottom: 30px; font-size: 63px; }
.is-arabic .contact-title h1 { font-size: 46px; }
.contact-title > p:last-child { max-width: 570px; color: rgba(255,255,255,.72); line-height: 1.9; }
.contact-detail { align-self: center; border-top: 1px solid rgba(255,255,255,.2); }
.contact-detail article { display: grid; grid-template-columns: 30px 1fr; gap: 18px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.contact-detail article > svg { margin-top: 3px; color: #dbc195; }
.contact-detail h2 { margin-bottom: 10px; font-family: var(--sans); font-size: 13px; font-weight: 700; }
.is-arabic .contact-detail h2 { font-family: var(--arabic); }
.contact-detail p { color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.7; }
.contact-detail a { display: inline-flex; align-items: center; gap: 8px; color: #e1caa7; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.contact-detail a svg { width: 13px; height: 13px; }
.contact-form-section { min-height: 720px; padding: 100px 10vw; display: grid; grid-template-columns: .7fr 1.1fr; gap: 12vw; }
.form-intro { position: relative; align-self: start; overflow: hidden; padding-bottom: 90px; }
.form-intro > span { position: absolute; z-index: -1; inset-inline-start: -15px; top: 15px; color: rgba(117,31,50,.06); font: 500 290px/1 var(--arabic); }
.form-intro h2 { max-width: 460px; font-size: 54px; }
.is-arabic .form-intro h2 { font-size: 40px; }
.contact-form { display: grid; gap: 29px; }
.contact-form label { display: grid; gap: 10px; }
.contact-form label > span { color: var(--ink-soft); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.is-arabic .contact-form label > span { letter-spacing: 0; text-transform: none; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 2px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; outline: none; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--wine); box-shadow: 0 1px 0 var(--wine); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-form .button { justify-self: start; }
.contact-form small { color: var(--ink-soft); font-size: 11px; line-height: 1.6; }
.form-error { margin: -12px 0 0; color: #a1122f; font-size: 12px; }
.form-status { margin: -12px 0 0; color: #286a52; font-size: 13px; line-height: 1.6; }
.form-trap { position: absolute !important; inset-inline-start: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.legal-main { margin-top: var(--header-height); padding: 110px 8vw 130px; }
.legal-main > header { max-width: 1280px; margin: 0 auto 90px; padding-bottom: 50px; border-bottom: 1px solid var(--ink); }
.legal-main > header h1 { margin-bottom: 24px; font-size: 64px; }
.is-arabic .legal-main > header h1 { font-size: 46px; }
.legal-main > header > p:last-child { color: var(--ink-soft); font-size: 12px; }
.legal-layout { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 260px 1fr; gap: 10vw; }
.legal-layout aside { position: sticky; top: 120px; align-self: start; display: grid; }
.legal-layout aside a { padding: 14px 0; color: var(--ink-soft); border-bottom: 1px solid var(--line); font-size: 11px; line-height: 1.5; }
.legal-layout article { display: grid; gap: 65px; }
.legal-layout article section { scroll-margin-top: 120px; display: grid; grid-template-columns: 55px 1fr; }
.legal-layout article section > span { color: var(--gold); font-size: 10px; }
.legal-layout article h2 { font-size: 35px; }
.is-arabic .legal-layout article h2 { font-size: 26px; }
.legal-layout article p { grid-column: 2; max-width: 760px; color: var(--ink-soft); font-size: 14px; line-height: 2; }

.site-footer { min-height: 260px; padding: 55px 5vw; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 5vw; background: #171419; color: white; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { width: 70px; height: 70px; object-fit: contain; filter: brightness(0) invert(1); opacity: .88; }
.footer-brand div { display: grid; gap: 7px; }
.footer-brand strong { font: 500 25px/1 var(--serif); }
.is-arabic .footer-brand strong { font-family: var(--arabic); font-size: 19px; }
.footer-brand span { color: rgba(255,255,255,.58); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.footer-contact { display: grid; gap: 9px; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.72); }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 22px; color: rgba(255,255,255,.58); font-size: 11px; }
.footer-legal a:hover, .footer-contact a:hover { color: white; }
.floating-whatsapp { position: fixed; z-index: 30; inset-inline-end: 22px; bottom: 22px; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--wine); box-shadow: 0 12px 30px rgba(64,10,26,.3); transition: transform .2s, background .2s; }
.floating-whatsapp:hover { transform: translateY(-3px); background: #287b59; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgba(51,44,120,.42); outline-offset: 3px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease var(--delay, 0ms), transform .75s cubic-bezier(.2,.7,.2,1) var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes heroSettle { from { transform: scale(1.045); } to { transform: scale(1); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-content h1 { font-size: 57px; }
  .product-image { height: 510px; }
  .product-grid-full .product-image { height: 650px; }
  .contact-band { align-items: flex-start; flex-direction: column; }
  .inner-hero-copy h1, .contact-title h1 { font-size: 54px; }
}

@media (max-width: 760px) {
  :root { --header-height: 72px; }
  .site-header { padding: 0 18px; }
  .brand img { width: 44px; height: 44px; }
  .brand b { font-size: 16px; }
  .brand small { display: none; }
  .language-switch { width: 42px; padding: 0; border: 1px solid var(--line); }
  .language-switch span { display: none; }
  .icon-link { display: none; }
  .hero { min-height: 820px; }
  .hero > img { object-position: 66% center; }
  [dir="rtl"] .hero > img { object-position: 72% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(25,7,13,.9) 0%, rgba(25,7,13,.42) 56%, rgba(25,7,13,.04) 82%); }
  [dir="rtl"] .hero-shade { transform: none; }
  .hero-content { inset-inline: 23px; top: auto; bottom: 92px; width: auto; transform: none; }
  .hero-content h1 { font-size: 45px; margin-bottom: 25px; }
  .is-arabic .hero-content h1 { font-size: 33px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-index { display: none; }
  .scroll-cue { display: none; }
  .intro-section { min-height: 0; display: block; padding: 85px 24px; }
  .section-number { font-size: 260px; inset-inline-start: -40px; }
  .intro-heading h2, .section-head h2 { font-size: 43px; }
  .is-arabic .intro-heading h2, .is-arabic .section-head h2 { font-size: 30px; }
  .intro-copy { padding-top: 25px; }
  .intro-copy > p { font-size: 14px; }
  .collection-section, .catalogue-section { padding: 80px 18px; }
  .section-head { display: block; margin-bottom: 38px; }
  .section-head > p { margin-top: 24px; }
  .product-grid, .product-grid-full { grid-template-columns: 1fr; gap: 24px; }
  .product-image, .product-grid-full .product-image { height: 570px; }
  .product-copy { padding: 22px 20px 28px; }
  .product-copy h3 { font-size: 29px; }
  .craft-story { display: block; }
  .craft-image { min-height: 460px; height: 460px; }
  .craft-image img { object-position: 24% center; }
  .craft-copy { min-height: 460px; padding: 70px 25px; }
  .craft-copy h2 { font-size: 41px; }
  .is-arabic .craft-copy h2 { font-size: 30px; }
  .pillars-section { padding: 25px 24px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { min-height: 230px; padding: 40px 0; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: 0; }
  .pillar h3 { margin-top: 30px; }
  .contact-band { min-height: 0; padding: 75px 24px; }
  .contact-band h2 { font-size: 42px; }
  .is-arabic .contact-band h2 { font-size: 30px; }
  .contact-band-actions { width: 100%; display: grid; grid-template-columns: 1fr; }
  .inner-hero { min-height: 0; display: flex; flex-direction: column-reverse; margin-top: var(--header-height); }
  .inner-hero-image { height: 520px; clip-path: none; }
  [dir="rtl"] .inner-hero-image { clip-path: none; }
  .inner-hero-copy { padding: 65px 24px 75px; }
  .inner-hero-copy h1 { font-size: 47px; }
  .is-arabic .inner-hero-copy h1 { font-size: 33px; }
  .inner-hero-mark { inset-inline-start: auto; inset-inline-end: -35px; bottom: 400px; font-size: 210px; }
  .catalogue-note { align-items: flex-start; }
  .service-panel { min-height: 0; padding: 75px 24px; display: block; }
  .service-panel h2 { font-size: 40px; }
  .is-arabic .service-panel h2 { font-size: 29px; }
  .service-panel .button { width: 100%; margin-top: 20px; }
  .quote-section { min-height: 390px; padding: 75px 24px; }
  .quote-section blockquote { font-size: 37px; }
  .is-arabic .quote-section blockquote { font-size: 27px; }
  .story-section { display: block; }
  .story-image { height: 520px; }
  .story-copy { padding: 75px 24px; }
  .story-copy h2 { font-size: 43px; }
  .is-arabic .story-copy h2 { font-size: 30px; }
  .values-section { padding: 75px 24px; grid-template-columns: 1fr; gap: 35px; }
  .contact-hero { min-height: 0; padding: 80px 24px; display: block; }
  .contact-title h1 { font-size: 47px; }
  .is-arabic .contact-title h1 { font-size: 33px; }
  .contact-detail { margin-top: 60px; }
  .contact-form-section { min-height: 0; padding: 80px 24px; display: block; }
  .form-intro { padding-bottom: 40px; }
  .form-intro h2 { font-size: 44px; }
  .is-arabic .form-intro h2 { font-size: 31px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form .button { width: 100%; }
  .legal-main { padding: 75px 24px 100px; }
  .legal-main > header { margin-bottom: 55px; }
  .legal-main > header h1 { font-size: 47px; }
  .is-arabic .legal-main > header h1 { font-size: 34px; }
  .legal-layout { display: block; }
  .legal-layout aside { display: none; }
  .legal-layout article section { grid-template-columns: 38px 1fr; }
  .legal-layout article p { grid-column: 1 / -1; margin-top: 15px; }
  .site-footer { padding: 50px 24px 80px; grid-template-columns: 1fr; gap: 35px; align-items: start; }
  .footer-legal { justify-content: flex-start; }
  .floating-whatsapp { width: 48px; height: 48px; inset-inline-end: 16px; bottom: 16px; }
}

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