:root {
  --ink: #070b14;
  --navy: #0b1220;
  --navy-2: #121b2f;
  --panel: #151e33;
  --line: rgba(212, 168, 83, 0.28);
  --gold: #d4a853;
  --gold-2: #f0d48a;
  --gold-dim: rgba(212, 168, 83, 0.12);
  --sand: #f4ead8;
  --paper: #f7f3ea;
  --white: #fbfaf7;
  --muted: #9aa4b8;
  --text: #e8e4d9;
  --text-dark: #1a2030;
  --ok: #2a9d8f;
  --danger: #c45c5c;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --header-h: 86px;
  --font-display: "Syne", "Tajawal", sans-serif;
  --font-serif: "Cormorant Garamond", "Noto Naskh Arabic", serif;
  --font-body: "Manrope", "Tajawal", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

html[lang="ar"] {
  --font-display: "Tajawal", sans-serif;
  --font-serif: "Noto Naskh Arabic", serif;
  --font-body: "Tajawal", sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 14px;
  z-index: 100;
}
.skip:focus {
  left: 8px;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(7, 11, 20, 0.78);
  border-bottom: 1px solid rgba(212, 168, 83, 0.16);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--navy);
}
.brand .word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand .word b {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: var(--sand);
}
.brand .word span {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

nav.primary {
  display: flex;
  gap: 18px;
  margin-inline-start: auto;
  font-size: 0.86rem;
  font-weight: 600;
}
nav.primary a {
  color: var(--muted);
  position: relative;
  padding: 6px 0;
}
nav.primary a:hover,
nav.primary a.active {
  color: var(--sand);
}
nav.primary a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
html[dir="rtl"] nav.primary a::after {
  transform-origin: right;
}
nav.primary a:hover::after,
nav.primary a.active::after {
  transform: scaleX(1);
}

.controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.seg {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}
.seg button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 7px 10px;
  cursor: pointer;
}
.seg button.on {
  background: var(--gold);
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(212, 168, 83, 0.25);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--sand);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}
.btn-dark {
  background: var(--ink);
  color: var(--sand);
  border-color: rgba(255, 255, 255, 0.08);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--sand);
  cursor: pointer;
}

/* HERO SLIDER */
.hero {
  position: relative;
  height: min(92vh, 820px);
  min-height: 560px;
  overflow: hidden;
}
.slides {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.9s ease, transform 6s ease;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 20, 0.88) 0%, rgba(7, 11, 20, 0.55) 48%, rgba(7, 11, 20, 0.25) 100%),
    linear-gradient(180deg, rgba(7, 11, 20, 0.2), rgba(7, 11, 20, 0.55));
}
html[dir="rtl"] .slide::after {
  background:
    linear-gradient(270deg, rgba(7, 11, 20, 0.88) 0%, rgba(7, 11, 20, 0.55) 48%, rgba(7, 11, 20, 0.25) 100%),
    linear-gradient(180deg, rgba(7, 11, 20, 0.2), rgba(7, 11, 20, 0.55));
}

.hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 92px;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.kicker {
  color: var(--gold-2);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-copy h1,
.hero-copy h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.8vw, 4.2rem);
  line-height: 1.08;
  max-width: 18ch;
  color: var(--white);
}
.hero-copy p.lede {
  max-width: 46ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-nav {
  position: absolute;
  z-index: 3;
  inset-inline: 0;
  bottom: 28px;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.dots {
  display: flex;
  gap: 8px;
}
.dots button {
  width: 42px;
  height: 3px;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
}
.dots button.on {
  background: var(--gold);
}
.arrows {
  display: flex;
  gap: 8px;
}
.arrows button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(7, 11, 20, 0.5);
  color: var(--sand);
  cursor: pointer;
  font-size: 1.1rem;
}

.section {
  padding: 96px 0;
  position: relative;
}
.section.sand {
  background: var(--paper);
  color: var(--text-dark);
}
.section.navy {
  background: var(--navy);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 52px;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.12;
  font-weight: 600;
}
.section.sand .section-head h2 {
  color: var(--navy);
}
.section-head p {
  color: var(--muted);
}
.section.sand .section-head p {
  color: #5b6272;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 340px;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.service img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.service:hover img {
  transform: scale(1.06);
}
.service .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 20, 0.15), rgba(7, 11, 20, 0.88));
}
.service .body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.service h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 8px;
}
.service p {
  color: #c9c3b6;
  font-size: 0.95rem;
}
.service .tag {
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--gold-2);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.limited-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border: 1px solid var(--gold);
  background: linear-gradient(90deg, rgba(212, 168, 83, 0.16), rgba(212, 168, 83, 0.04));
  border-radius: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.pulse i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5a5a;
  box-shadow: 0 0 0 0 rgba(255, 90, 90, 0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(255, 90, 90, 0);
  }
}

.packages {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}
.pack {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pack.featured {
  background:
    radial-gradient(800px 280px at 10% -10%, rgba(212, 168, 83, 0.22), transparent 50%),
    linear-gradient(180deg, #1a243c, #101827);
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(212, 168, 83, 0.2);
}
.ribbon {
  position: absolute;
  top: 18px;
  inset-inline-end: -36px;
  background: #c0392b;
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 44px;
  transform: rotate(32deg);
}
html[dir="rtl"] .ribbon {
  transform: rotate(-32deg);
  inset-inline-end: auto;
  inset-inline-start: -36px;
}
.pack h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 6px 0 4px;
}
.pack .aka {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.price {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  margin: 18px 0 6px;
  color: var(--white);
}
.price small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
  margin-top: 6px;
  font-style: normal;
}
.pack .summary {
  color: var(--muted);
  margin-bottom: 18px;
  min-height: 3.2em;
}
.pack ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 8px 0 22px;
  flex: 1;
}
.pack li {
  position: relative;
  padding-inline-start: 22px;
  font-size: 0.92rem;
  color: #d5d0c4;
}
.pack li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.pack .note {
  font-size: 0.8rem;
  color: #8b93a6;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  margin-bottom: 18px;
}
.fine {
  font-size: 0.78rem;
  color: #8b93a6;
  margin-top: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.stat {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: white;
  border-radius: 16px;
  padding: 16px;
}
.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--navy);
}
.stat span {
  color: #667;
  font-size: 0.82rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.shot {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 240px;
}
.shot:nth-child(1) {
  grid-column: span 7;
  min-height: 340px;
}
.shot:nth-child(2) {
  grid-column: span 5;
}
.shot:nth-child(3),
.shot:nth-child(4) {
  grid-column: span 4;
}
.shot:nth-child(5),
.shot:nth-child(6) {
  grid-column: span 6;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  transition: transform 0.7s ease;
}
.shot:hover img {
  transform: scale(1.05);
}
.shot .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  background: linear-gradient(transparent, rgba(7, 11, 20, 0.9));
}
.shot .cap small {
  color: var(--gold-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
}
.shot .cap strong {
  display: block;
  font-family: var(--font-display);
}

.clients-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 18px 0;
  margin-top: 12px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
html[dir="rtl"] .track {
  animation-name: marquee-rtl;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-rtl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}
.client {
  min-width: 220px;
  height: 92px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  color: var(--navy);
}
.client svg {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.client b {
  display: block;
  font-size: 0.92rem;
}
.client span {
  font-size: 0.75rem;
  color: #778;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
}
.contact-card {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 28px;
}
.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 10px;
}
.meta-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.meta-list li {
  display: flex;
  gap: 12px;
  color: var(--muted);
}
.meta-list a {
  color: var(--gold-2);
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
}

form.enquiry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: #0e1628;
  border: 1px solid rgba(212, 168, 83, 0.18);
  border-radius: 24px;
  padding: 26px;
}
form.enquiry .full {
  grid-column: 1 / -1;
}
label {
  display: grid;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
input,
select,
textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--sand);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.95rem;
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}
textarea {
  min-height: 120px;
  resize: vertical;
}
select option {
  background: #121b2f;
}
.form-note {
  font-size: 0.78rem;
  color: #8b93a6;
  grid-column: 1 / -1;
}
.form-status {
  grid-column: 1 / -1;
  display: none;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
}
.form-status.ok {
  display: block;
  background: rgba(42, 157, 143, 0.15);
  color: #7ee0d3;
}
.form-status.err {
  display: block;
  background: rgba(196, 92, 92, 0.15);
  color: #f0a8a8;
}

footer.site {
  border-top: 1px solid rgba(212, 168, 83, 0.16);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.88rem;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.float-cta {
  position: fixed;
  inset-inline-end: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 981px) {
  .float-cta {
    display: none;
  }
}

@media (max-width: 980px) {
  nav.primary {
    position: fixed;
    inset: var(--header-h) 16px auto 16px;
    background: #101827;
    border: 1px solid var(--line);
    border-radius: 16px;
    flex-direction: column;
    padding: 16px;
    display: none;
    margin: 0;
  }
  nav.primary.open {
    display: flex;
  }
  .menu-btn {
    display: grid;
    place-items: center;
  }
  .header-cta {
    display: none;
  }
  .section-head,
  .about-grid,
  .contact-grid,
  .packages,
  .services {
    grid-template-columns: 1fr;
  }
  .shot:nth-child(n) {
    grid-column: span 12;
    min-height: 220px;
  }
  .hero-copy h1 {
    max-width: 100%;
  }
  form.enquiry {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .brand .word {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .slide,
  .track,
  .service img,
  .shot img,
  .pulse i {
    animation: none !important;
    transition: none !important;
  }
}
