:root {
  --cream: #faf7f0;
  --cream2: #f2ede0;
  --gold: #c9a84c;
  --gold2: #a8873a;
  --gold3: #e8d48a;
  --goldl: rgba(201, 168, 76, 0.12);
  --text: #3d2b1f;
  --muted: #8c7a6b;
  --border: rgba(201, 168, 76, 0.3);
  --page-pad: 4rem;
  --nav-offset: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.5;
}

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

button {
  font: inherit;
  color: inherit;
}

section,
footer {
  scroll-margin-top: calc(var(--nav-offset) + 1rem);
}

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

.deco-line {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.deco-diamond {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0.75rem;
  background: var(--gold);
  transform: rotate(45deg);
}

.inline-link {
  color: var(--gold2);
  transition: color 0.25s;
}

.inline-link:hover {
  color: var(--gold3);
}

nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-offset);
  padding: 1rem var(--page-pad);
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

nav.sc,
nav.nav-open {
  background: rgba(250, 247, 240, 0.94);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}

.n-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0;
  text-decoration: none;
  transition: opacity 0.25s;
}

.n-logo:hover {
  opacity: 0.96;
}

.n-logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  padding: 0.55rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(247, 242, 230, 0.94)),
    radial-gradient(circle at 30% 30%, rgba(232, 212, 138, 0.16), transparent 70%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    0 10px 24px rgba(201, 168, 76, 0.18);
  transition: width 0.3s, height 0.3s, padding 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.n-logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 14px;
}

.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(201, 168, 76, 0.14));
  transition: transform 0.35s, opacity 0.3s;
}

.n-logo:hover .nav-logo-img {
  transform: scale(1.04);
  opacity: 0.96;
}

.n-logo-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  padding-left: 0.9rem;
  position: relative;
}

.n-logo-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05rem;
  bottom: 0.05rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.45), transparent);
}

.n-logo-copy strong {
  color: var(--gold2);
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  line-height: 1.05;
  text-transform: uppercase;
}

.n-logo-copy span {
  color: var(--muted);
  font-family: "Cinzel", serif;
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

nav.sc .n-logo,
nav.nav-open .n-logo {
  opacity: 1;
}

nav.sc .n-logo-mark,
nav.nav-open .n-logo-mark {
  width: 54px;
  height: 54px;
  padding: 0.46rem;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.82),
    0 8px 18px rgba(201, 168, 76, 0.16);
}

.n-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.n-links a {
  position: relative;
  color: var(--muted);
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s;
}

.n-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s;
}

.n-links a:hover {
  color: var(--gold2);
}

.n-links a:hover::after {
  width: 100%;
}

.n-cta {
  padding: 0.5rem 1.5rem;
  background: var(--gold);
  color: #fff !important;
  letter-spacing: 2px;
  transition: background 0.25s !important;
}

.n-cta::after {
  display: none !important;
}

.n-cta:hover {
  background: var(--gold2) !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: rgba(250, 247, 240, 0.85);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}

nav.nav-open .nav-toggle > span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

nav.nav-open .nav-toggle > span:nth-child(2) {
  opacity: 0;
}

nav.nav-open .nav-toggle > span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.promo-bar {
  position: relative;
  z-index: 499;
  margin-top: var(--nav-offset);
  overflow: hidden;
  padding: 0.55rem 0;
  background: var(--gold);
  color: #fff;
}

.promo-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.promo-item {
  padding: 0 1.5rem;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  white-space: nowrap;
}

.promo-sep {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

#hero {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(201, 168, 76, 0.07) 0%, transparent 60%);
}

#petals {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-name {
  color: var(--gold2);
  font-family: "Cinzel", serif;
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 4px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.5s;
}

.hero-name em {
  display: block;
  margin-top: 0.5rem;
  color: var(--text);
  font-size: 0.45em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 10px;
}

.hero-tagline {
  margin-top: 2rem;
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-tagline-ar {
  margin-top: 0.5rem;
  direction: rtl;
  color: var(--muted);
  font-family: "Amiri", serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem auto;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.1s;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.3s;
}

.btn-gold,
.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.25s;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold2);
}

.btn-outline:hover {
  background: var(--goldl);
  transform: translateY(-2px);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 3px;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s ease forwards 2s;
}

.scroll-mouse {
  position: relative;
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--gold);
  border-radius: 12px;
}

.scroll-mouse::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scrollDot 1.5s ease infinite;
}

section {
  position: relative;
  z-index: 2;
  padding: 7rem var(--page-pad);
}

.section-intro {
  text-align: center;
}

.section-intro-wide {
  margin-bottom: 4rem;
}

.section-intro-compact {
  margin-bottom: 3rem;
}

.sec-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.sec-title {
  margin-bottom: 0.75rem;
  color: var(--text);
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.2;
}

.sec-title-ar {
  margin-bottom: 2.5rem;
  direction: rtl;
  color: var(--muted);
  font-family: "Amiri", serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
}

.sec-sub {
  max-width: 580px;
  margin: 0 auto 3rem;
  color: var(--muted);
  font-size: 1.1rem;
  font-style: italic;
  text-align: center;
}

.rev,
.rev-l,
.rev-r {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}

.rev {
  transform: translateY(32px);
}

.rev-l {
  transform: translateX(-32px);
}

.rev-r {
  transform: translateX(32px);
}

.rev.vis,
.rev-l.vis,
.rev-r.vis {
  opacity: 1;
  transform: none;
}

.marq {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream2);
}

.marq-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.m-i {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2.5rem;
  border-right: 1px solid var(--border);
  color: var(--muted);
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.m-i::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.7rem;
}

#services {
  background: var(--cream2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.svc-card {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  background: var(--cream);
  text-align: center;
  transition: transform 0.35s, box-shadow 0.35s;
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--goldl), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.svc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.4s;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.15);
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-card:hover::after {
  width: 80%;
}

.svc-icon {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 2.5rem;
  animation: float 4s ease infinite;
}

.svc-card:nth-child(2) .svc-icon {
  animation-delay: 0.5s;
}

.svc-card:nth-child(3) .svc-icon {
  animation-delay: 1s;
}

.svc-card:nth-child(4) .svc-icon {
  animation-delay: 1.5s;
}

.svc-card:nth-child(5) .svc-icon {
  animation-delay: 2s;
}

.svc-card:nth-child(6) .svc-icon {
  animation-delay: 2.5s;
}

.svc-name {
  margin-bottom: 0.4rem;
  color: var(--gold2);
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.svc-name-ar {
  margin-bottom: 0.75rem;
  direction: rtl;
  color: var(--muted);
  font-family: "Amiri", serif;
  font-size: 1.1rem;
}

.svc-desc {
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
}

.svc-desc-ar {
  margin-top: 0.4rem;
  direction: rtl;
  color: var(--muted);
  font-family: "Amiri", serif;
  font-size: 0.9rem;
}

#about {
  background: var(--cream);
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0.65rem 0.6rem 0.45rem;
  text-align: center;
}

.about-img-wrap::before {
  content: "";
  position: absolute;
  inset: 1.1rem 0 0 1.1rem;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.08), rgba(255, 255, 255, 0.18));
}

.about-img-wrap::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  left: 0.15rem;
  top: 0.1rem;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12), transparent 72%);
  filter: blur(12px);
  opacity: 0.52;
  pointer-events: none;
}

.about-img-frame {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 392px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  padding: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(245, 240, 229, 0.98)),
    radial-gradient(circle at top left, rgba(201, 168, 76, 0.08), transparent 58%);
  box-shadow:
    0 18px 42px rgba(61, 43, 31, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.about-img-frame::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 22px;
  pointer-events: none;
}

.about-img-frame::after {
  display: none;
}

.about-logo {
  position: relative;
  z-index: 1;
  width: calc(100% - 0.2rem);
  max-width: 356px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 10px 18px rgba(201, 168, 76, 0.08));
  object-fit: contain;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.about-img-wrap:hover .about-logo {
  transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 14px 26px rgba(201, 168, 76, 0.1));
}

.about-corner {
  display: none;
}

.about-corner.tl {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.about-corner.tr {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
}

.about-corner.bl {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
}

.about-corner.br {
  right: -1px;
  bottom: -1px;
  border-width: 0 2px 2px 0;
}

.about-text p {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.about-text p strong {
  color: var(--text);
}

.about-text-ar {
  direction: rtl;
  color: var(--muted);
  font-family: "Amiri", serif;
  font-size: 1.1rem;
  line-height: 2;
  text-align: right;
}

.about-vals {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.val {
  text-align: center;
}

.val-n {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.val-l {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

#gallery {
  padding: 7rem var(--page-pad);
  background: var(--text);
}

#gallery .sec-label {
  color: var(--gold);
}

#gallery .sec-title {
  color: var(--gold3);
}

#gallery .sec-title-ar {
  color: rgba(201, 168, 76, 0.55);
}

.gal-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.gf {
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: transparent;
  color: rgba(250, 247, 240, 0.4);
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.25s;
}

.gf:hover {
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--gold3);
}

.gf.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}

.gi {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
}

.gi-tall {
  grid-row: span 2;
}

.gi-wide {
  grid-column: span 2;
}

.gi-inner {
  position: absolute;
  inset: 0;
}

.gi-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.gi:hover .gi-media {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.gi-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #1a1208, #0d0a05);
}

.gi-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.2) 0%, transparent 60%);
}

.gi-icon {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  opacity: 0.5;
}

.gi-label {
  position: relative;
  z-index: 1;
  color: rgba(201, 168, 76, 0.35);
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 4px;
}

.gi-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85));
  opacity: 0;
  transition: opacity 0.35s;
}

.gi:hover .gi-overlay {
  opacity: 1;
}

.gi-cat {
  color: var(--gold3);
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gi.hidden {
  display: none;
}

.gi.fade-out {
  opacity: 0;
  transform: scale(0.97);
}

.gal-note {
  margin-top: 2rem;
  color: rgba(250, 247, 240, 0.3);
  font-size: 0.88rem;
  font-style: italic;
  text-align: center;
}

#testimonials {
  background: var(--cream);
}

.testi-wrap {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testi-card {
  position: relative;
  padding: 3rem;
  border: 1px solid var(--border);
  background: var(--cream2);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 8rem;
  line-height: 1;
  opacity: 0.15;
}

.testi-text {
  margin-bottom: 1.5rem;
  color: var(--text);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
}

.testi-text-ar {
  margin-top: 0.75rem;
  direction: rtl;
  color: var(--muted);
  font-family: "Amiri", serif;
  font-size: 1.15rem;
  line-height: 2;
}

.testi-author {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.t-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.t-dot:hover {
  background: var(--gold2);
  transform: scale(1.05);
}

.t-dot.active {
  background: var(--gold);
}

#contact {
  position: relative;
  overflow: hidden;
  padding: 8rem var(--page-pad);
  background: var(--text);
  color: var(--cream);
  text-align: center;
}

#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
}

#contact .sec-title {
  color: var(--gold3);
}

#contact .sec-title-ar {
  color: rgba(201, 168, 76, 0.6);
}

#contact .sec-sub {
  color: rgba(250, 247, 240, 0.5);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.ci {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.ci-icon {
  font-size: 1.5rem;
}

.ci-label {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.ci-val {
  color: var(--cream);
  font-size: 1rem;
  font-style: italic;
}

.ci-val a {
  color: var(--gold3);
  text-decoration: none;
}

.ci-val a:hover {
  color: var(--gold);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.soc-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.8rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold3);
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}

.soc-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem var(--page-pad);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  background: #1a1208;
}

footer p {
  color: rgba(201, 168, 76, 0.5);
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes scrollDot {
  0%,
  100% {
    top: 5px;
    opacity: 1;
  }

  80% {
    top: 16px;
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .n-logo {
    gap: 0.72rem;
  }

  .n-logo-mark {
    width: 56px;
    height: 56px;
  }

  .n-logo-copy strong {
    font-size: 0.76rem;
  }

  .n-logo-copy span {
    font-size: 0.52rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-wrap {
    padding: 0.55rem 0.5rem 0.4rem;
  }

  .about-img-frame {
    max-width: 368px;
  }
}

@media (max-width: 900px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gi-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --page-pad: 1.5rem;
    --nav-offset: 68px;
  }

  nav {
    padding: 1rem var(--page-pad);
  }

  .n-logo {
    gap: 0.62rem;
  }

  .n-logo-copy span {
    display: none;
  }

  .n-logo-copy {
    padding-left: 0.72rem;
  }

  .n-logo-copy strong {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  .nav-toggle {
    display: inline-block;
  }

  .n-links {
    display: none;
  }

  nav.nav-open .n-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: var(--page-pad);
    left: var(--page-pad);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--border);
    background: rgba(250, 247, 240, 0.97);
    box-shadow: 0 18px 45px rgba(61, 43, 31, 0.12);
  }

  nav.nav-open .n-links a {
    text-align: center;
  }

  section {
    padding: 4rem var(--page-pad);
  }

  #hero {
    padding: 7rem var(--page-pad) 4rem;
  }

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

  .contact-info {
    gap: 2rem;
  }

  #contact {
    padding: 5rem var(--page-pad);
  }

  footer {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .n-logo-copy {
    display: none;
  }
}

@media (max-width: 600px) {
  .promo-track {
    animation-duration: 24s;
  }

  .about-img-wrap {
    padding: 0.45rem 0.4rem 0.35rem;
  }

  .about-img-wrap::before {
    inset: 0.65rem 0 0 0.65rem;
  }

  .about-img-frame {
    padding: 0.8rem;
  }

  .about-logo {
    width: 100%;
    max-width: 304px;
  }

  .hero-btns,
  .social-row {
    flex-direction: column;
  }

  .btn-gold,
  .btn-outline,
  .soc-btn {
    width: 100%;
    justify-content: center;
  }

  .about-vals {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .gi-wide,
  .gi-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .testi-card {
    padding: 2.25rem 1.5rem;
  }
}

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

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