
:root {
  --navy: #142a55;
  --navy-deep: #0d1d3d;
  --blue: #214b80;
  --red: #d9272e;
  --ivory: #f7f2eb;
  --cream: #fffaf4;
  --rose: #ead4ce;
  --ink: #17191e;
  --muted: #68645f;
  --line: rgba(20, 42, 85, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Tahoma, sans-serif;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

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

svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.arabic-site {
  font-family: Tahoma, Arial, sans-serif;
}

.english-site {
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.announcement {
  background: var(--navy-deep);
  color: white;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.site-header {
  width: min(1280px, calc(100% - 48px));
  height: 92px;
  margin: auto;
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 20;
}

.brand {
  width: 142px;
  justify-self: start;
}

.brand img {
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.4vw, 48px);
  color: #343a45;
  font-size: 0.94rem;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 50%;
  bottom: 3px;
  height: 2px;
  background: var(--red);
  transition: inset 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  inset-inline: 0;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-toggle,
.menu-toggle {
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
  cursor: pointer;
}

.language-toggle {
  min-width: 58px;
  height: 38px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.8rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 0 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 180ms ease;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(0, 1.13fr);
  align-items: center;
  gap: clamp(32px, 5vw, 82px);
  padding-block: 52px 72px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(3.5rem, 6.1vw, 6rem);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.arabic-site .hero h1 {
  letter-spacing: -0.035em;
}

.hero h1 span {
  display: block;
}

.hero-description {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy);
  color: white;
}

.button-primary:hover {
  background: var(--red);
}

.button-secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
}

.english-site .button svg {
  transform: none;
}

.arabic-site .button svg,
.arabic-site .card-content a svg {
  transform: scaleX(-1);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 28px;
  color: #575c65;
  font-size: 0.77rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 88%;
  inset-inline-end: -24px;
  top: -30px;
  border: 1px solid rgba(217, 39, 46, 0.22);
  border-radius: 48% 48% 12px 12px;
}

.hero-visual img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: center;
  border-radius: 240px 240px 10px 10px;
  box-shadow: 0 26px 60px rgba(43, 35, 28, 0.14);
  position: relative;
}

.hero-seal {
  position: absolute;
  inset-inline-start: -28px;
  bottom: 48px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
  border: 7px solid var(--cream);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: 0.1em;
}

.trust-strip {
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.trust-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
}

.trust-strip > div + div {
  border-inline-start: 1px solid var(--line);
}

.trust-strip svg {
  width: 25px;
  height: 25px;
}

.collections {
  padding-block: 126px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}

.section-heading h2,
.about h2,
.promise h2,
.contact-section h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.8;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.collection-card {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  color: white;
  isolation: isolate;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.card-2 img,
.card-5 img {
  object-position: center center;
}

.collection-card:hover img {
  transform: scale(1.045);
}

.card-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 17, 31, 0.02) 22%, rgba(10, 17, 31, 0.87) 100%);
}

.card-1 .card-shade { background: linear-gradient(180deg, rgba(255, 75, 132, 0.02) 18%, rgba(96, 14, 54, 0.9) 100%); }
.card-2 .card-shade { background: linear-gradient(180deg, rgba(45, 188, 188, 0.02) 18%, rgba(19, 55, 77, 0.9) 100%); }
.card-3 .card-shade { background: linear-gradient(180deg, rgba(229, 43, 74, 0.02) 18%, rgba(105, 15, 37, 0.9) 100%); }
.card-4 .card-shade { background: linear-gradient(180deg, rgba(255, 160, 76, 0.02) 18%, rgba(82, 43, 38, 0.9) 100%); }
.card-5 .card-shade { background: linear-gradient(180deg, rgba(95, 90, 210, 0.02) 18%, rgba(22, 34, 76, 0.91) 100%); }
.card-6 .card-shade { background: linear-gradient(180deg, rgba(76, 192, 157, 0.02) 18%, rgba(17, 70, 66, 0.9) 100%); }
.card-7 .card-shade { background: linear-gradient(180deg, rgba(242, 179, 57, 0.02) 18%, rgba(98, 50, 28, 0.9) 100%); }
.card-8 .card-shade { background: linear-gradient(180deg, rgba(163, 92, 216, 0.02) 18%, rgba(34, 27, 73, 0.9) 100%); }

.card-content {
  position: absolute;
  inset-inline: 28px;
  bottom: 28px;
}

.card-content > span {
  display: block;
  margin-bottom: 12px;
  color: #f5d8d2;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.card-content h3 {
  margin: 0;
  font-size: 1.75rem;
}

.card-content p {
  max-width: 340px;
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.65;
}

.card-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
}

.card-content a svg {
  width: 17px;
}

.about {
  background: var(--navy-deep);
  color: white;
  overflow: hidden;
}

.about-inner {
  min-height: 590px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 92px;
  padding-block: 100px;
  position: relative;
}

.about-inner::before {
  content: "AE";
  position: absolute;
  inset-inline-start: -30px;
  bottom: -65px;
  font-family: Georgia, serif;
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: -0.08em;
}

.eyebrow.light {
  color: #e8aaa5;
}

.about h2 {
  color: white;
}

.about-copy > p:last-child {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2;
}

.value-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.value-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding-block: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.value-list article > span {
  color: #e8aaa5;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.value-list h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.value-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.87rem;
  line-height: 1.7;
}

.promise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
  padding-block: 130px;
}

.promise-image {
  position: relative;
}

.promise-image::after {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid rgba(217, 39, 46, 0.26);
  z-index: -1;
}

.promise-image img {
  aspect-ratio: 1 / 1.05;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.quote-mark {
  display: block;
  height: 82px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.promise-copy p {
  margin: 28px 0;
  color: var(--muted);
  line-height: 1.9;
}

.signature {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.contact-section {
  padding-bottom: 110px;
}

.contact-card {
  min-height: 280px;
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 44px;
  padding: 54px;
  background: #efe4dc;
  border-radius: 12px;
}

.contact-card h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.address-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--navy);
}

.address-block > svg {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  margin-top: 3px;
}

.address-block p {
  margin: 0 0 8px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.address-block p + p {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer {
  background: #f2eee8;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.55fr;
  align-items: center;
  gap: 60px;
  padding-block: 54px 38px;
}

.footer-brand img {
  width: 165px;
}

.footer-brand p,
.payment-block > p,
.social-block > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.payment-block > p,
.social-block > p {
  margin: 0 0 14px;
  color: var(--navy);
  font-weight: 800;
}

.payment-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.payment-icons > span {
  height: 34px;
  min-width: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 42, 85, 0.13);
  border-radius: 5px;
  background: white;
  padding: 0 10px;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 900;
}

.visa {
  font-style: italic;
  letter-spacing: -0.06em;
}

.mastercard i {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #e0292f;
}

.mastercard i + i {
  margin-inline-start: -7px;
  background: #e9a02c;
  opacity: 0.9;
}

.paypal {
  color: #153d72 !important;
  font-style: italic;
}

.paypal span {
  color: #2c78b8;
}

.cod {
  letter-spacing: 0.08em;
}

.social-icons {
  display: flex;
  gap: 9px;
}

.social-icons > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
}

.social-icons svg {
  width: 20px;
  height: 20px;
}

.social-icons .solid-dot {
  fill: currentColor;
  stroke: none;
}

.security-row {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  border-block: 1px solid var(--line);
  color: #5d626b;
}

.security-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 800;
}

.security-row svg {
  color: var(--navy);
}

.footer-bottom {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #77736d;
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--navy);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 145px 1fr 120px;
  }

  .main-nav {
    gap: 20px;
    font-size: 0.84rem;
  }

  .hero {
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 600px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 500px;
    height: 500px;
  }

  .collection-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-inner {
    gap: 54px;
  }

  .contact-card {
    grid-template-columns: 1fr 1.25fr;
  }

  .contact-card .button {
    grid-column: span 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .site-header {
    width: min(100% - 32px, 620px);
  }

  .site-header {
    height: 78px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 118px;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    inset-inline: 0;
    display: grid;
    gap: 0;
    padding: 10px 18px 18px;
    background: rgba(255, 250, 244, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 35px rgba(13, 29, 61, 0.12);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 12px 2px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-block: 36px 54px;
    gap: 46px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-buttons,
  .hero-proof {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .hero-visual,
  .hero-visual img {
    min-height: 430px;
    height: 430px;
  }

  .hero-visual img {
    border-radius: 180px 180px 10px 10px;
  }

  .hero-seal {
    inset-inline-start: 14px;
    bottom: 22px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding-block: 10px;
  }

  .trust-strip > div {
    min-height: 58px;
  }

  .trust-strip > div + div {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }

  .collections {
    padding-block: 88px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .collection-grid,
  .about-inner,
  .promise,
  .contact-card,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: 460px;
  }

  .about-inner {
    gap: 54px;
    padding-block: 78px;
  }

  .promise {
    gap: 64px;
    padding-block: 90px;
  }

  .promise-image {
    width: calc(100% - 20px);
  }

  .contact-section {
    padding-bottom: 80px;
  }

  .contact-card {
    gap: 28px;
    padding: 34px 26px;
  }

  .contact-card .button {
    grid-column: auto;
    justify-self: stretch;
  }

  .footer-main {
    gap: 34px;
  }

  .footer-brand img {
    width: 150px;
  }

  .security-row {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 24px;
  }

  .security-row span {
    white-space: nowrap;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-block: 22px;
  }
}

@media (max-width: 420px) {
  .announcement {
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-proof {
    flex-direction: column;
    align-items: center;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 370px;
    height: 370px;
  }

  .collection-card {
    min-height: 430px;
  }

  .payment-icons {
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
