:root {
  --bg: #fffaf5;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #24201f;
  --muted: #6b6865;
  --primary: #f58220;
  --primary-dark: #ca6210;
  --accent: #4d4f54;
  --accent-soft: #8f949b;
  --line: rgba(77, 79, 84, 0.12);
  --shadow: 0 20px 60px rgba(29, 22, 15, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(245, 130, 32, 0.15), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 44%, #fff 100%);
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  overflow: hidden;
}

.topbar {
  width: var(--container);
  margin: 0 auto;
  padding: 22px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, var(--primary) 0%, #ffb067 100%);
  box-shadow: 0 18px 30px rgba(245, 130, 32, 0.28);
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.72);
}

.brand-mark::after {
  inset: 18px 13px;
  border-radius: 10px;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1.05rem;
}

.brand-text small {
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: 0.25s ease;
}

.nav a:hover {
  background: rgba(245, 130, 32, 0.12);
  color: var(--text);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.lang-btn {
  border: 0;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.lang-btn:hover {
  transform: translateY(-1px);
  color: var(--text);
}

.lang-btn.is-active {
  background: linear-gradient(135deg, var(--primary) 0%, #ff9b47 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(245, 130, 32, 0.25);
}

.hero {
  width: var(--container);
  min-height: 92vh;
  margin: 8px auto 0;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  padding: 72px 56px;
  isolation: isolate;
  background: linear-gradient(135deg, rgba(36, 32, 31, 0.72), rgba(36, 32, 31, 0.38));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(36, 32, 31, 0.88) 10%, rgba(36, 32, 31, 0.46) 48%, rgba(245, 130, 32, 0.12) 100%),
    url("hero.webp") center bottom/cover;
  transform: scale(1.02);
  z-index: -2;
}

.hero-backdrop {
  position: absolute;
  inset: auto auto -90px -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.42), transparent 65%);
  filter: blur(12px);
  z-index: -1;
}

.hero-content {
  width: 100%;
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 430px);
  gap: 34px;
  align-items: start;
}

.hero-main {
  max-width: 560px;
}

.hero-side {
  justify-self: start;
  max-width: 430px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(20, 18, 17, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  line-height: 1.18;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  max-width: 10ch;
}

.hero-text {
  max-width: 36ch;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.contact-actions,
.gallery-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #ff9b47 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(245, 130, 32, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
}

.hero-points li {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  line-height: 1.7;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 110px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading p:last-child {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.9;
}

.section-heading-center {
  text-align: center;
  margin-inline: auto;
}

.page-intro {
  padding-top: 36px;
}

.page-intro-card {
  background:
    linear-gradient(135deg, rgba(77, 79, 84, 0.96), rgba(36, 32, 31, 0.92)),
    linear-gradient(135deg, rgba(245, 130, 32, 0.18), transparent);
  color: #fff;
  border-radius: 36px;
  padding: 56px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.page-intro-card::before,
.page-intro-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.18);
}

.page-intro-card::before {
  width: 220px;
  height: 220px;
  top: -80px;
  left: -40px;
}

.page-intro-card::after {
  width: 140px;
  height: 140px;
  bottom: -30px;
  right: 5%;
}

.page-intro-card > * {
  position: relative;
  z-index: 1;
}

.page-intro-card h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.2;
}

.page-intro-card p:last-of-type {
  max-width: 60ch;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
}

.page-intro-link {
  border-color: rgba(255, 255, 255, 0.24);
}

.gallery-page-section {
  padding-top: 28px;
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: 30px;
  align-items: center;
}

.about-image-wrap,
.contact-card,
.gallery-grid > article {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.about-image-wrap {
  border-radius: var(--radius-xl);
  padding: 16px;
}

.about-image {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 8px);
  object-fit: cover;
}

.about-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.95;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.value-panel,
.value-highlight {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.feature-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(245, 130, 32, 0.18), rgba(245, 130, 32, 0.28));
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.feature-card h3,
.value-panel h3 {
  margin: 0 0 12px;
}

.value-panel-head {
  margin-bottom: 24px;
}

.value-kicker {
  margin: 0 0 10px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.value-kicker-light {
  color: rgba(255, 255, 255, 0.78);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.value-panel,
.value-highlight {
  padding: 30px;
  border-radius: var(--radius-xl);
}

.value-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.value-list li {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(245, 130, 32, 0.08), rgba(245, 130, 32, 0.03));
  color: var(--text);
  line-height: 1.8;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(245, 130, 32, 0.08);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), #ffb067);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(245, 130, 32, 0.22);
}

.value-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.value-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.value-highlight {
  background:
    linear-gradient(135deg, rgba(77, 79, 84, 0.96), rgba(36, 32, 31, 0.92)),
    linear-gradient(135deg, rgba(245, 130, 32, 0.18), transparent);
  color: #fff;
}

.value-highlight-top {
  padding-bottom: 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-quote {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.8;
  font-weight: 700;
}

.mini-stats {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.mini-stats div {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mini-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.mini-stats span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.identity-card {
  padding: 22px 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.65));
  border: 1px solid var(--line);
}

.identity-card h3 {
  margin: 12px 0 8px;
}

.identity-card p {
  margin: 0;
  font-size: 0.96rem;
}

.swatch {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 18px;
}

.swatch-primary {
  background: linear-gradient(135deg, var(--primary), #ffb067);
}

.swatch-neutral {
  background: linear-gradient(135deg, var(--accent), #91969d);
}

.swatch-light {
  background: linear-gradient(135deg, #ffffff, #ece6de);
  border: 1px solid rgba(36, 32, 31, 0.08);
}

.showcase {
  width: 100%;
  direction: ltr;
}

.showcase .section-heading,
.gallery-cta {
  width: var(--container);
  margin-inline: auto;
}

.image-strip {
  width: var(--container);
  margin-inline: auto;
  overflow: hidden;
  padding: 14px 0;
  margin-top: 22px;
  direction: ltr;
}

.image-strip-alt {
  margin-top: 10px;
}

.strip-track {
  display: flex;
  gap: 0;
  width: max-content;
  direction: ltr;
  justify-content: flex-start;
  animation: marquee 28s linear infinite;
}

.strip-group {
  display: flex;
  gap: 18px;
  flex: 0 0 auto;
  direction: ltr;
}

.strip-track-reverse {
  animation-direction: reverse;
  animation-duration: 34s;
}

.strip-card {
  width: min(34vw, 390px);
  height: min(25vw, 290px);
  border-radius: 28px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.strip-card.portrait {
  width: min(22vw, 270px);
  height: min(29vw, 360px);
}

.strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid > article {
  border-radius: 26px;
  overflow: hidden;
}

.gallery-grid button {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid button:hover img {
  transform: scale(1.04);
}

.contact-layout {
  align-items: stretch;
}

.contact-card {
  padding: 30px;
  border-radius: var(--radius-xl);
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.contact-list li {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(245, 130, 32, 0.08);
  display: grid;
  gap: 4px;
}

.contact-list span,
.contact-card p {
  color: var(--muted);
}

.phone-stack {
  display: grid;
  gap: 6px;
  justify-items: start;
}

.phone-link {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
}

.phone-separator {
  margin-inline: 8px;
}

.map-frame {
  margin-top: 26px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(77, 79, 84, 0.1);
  box-shadow: var(--shadow);
  background: #f5f2ee;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.map-preview {
  min-height: 120px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(77, 79, 84, 0.92), rgba(36, 32, 31, 0.88)),
    linear-gradient(135deg, rgba(245, 130, 32, 0.18), transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  gap: 8px;
  margin-top: 18px;
  position: relative;
  overflow: hidden;
}

.map-preview::before,
.map-preview::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.18);
  filter: blur(2px);
}

.map-preview::before {
  width: 160px;
  height: 160px;
  top: -48px;
  left: -32px;
}

.map-preview::after {
  width: 110px;
  height: 110px;
  bottom: 28px;
  right: -24px;
}

.map-preview span,
.map-preview strong {
  position: relative;
  z-index: 1;
}

.footer {
  width: var(--container);
  margin: 90px auto 28px;
  padding: 22px 0 8px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 14, 13, 0.9);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 100;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(92vw, 1200px);
  max-height: 82vh;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

html[dir="ltr"] .lightbox-close {
  left: auto;
  right: 24px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .hero,
  .section {
    width: min(100vw - 28px, var(--container));
  }

  .topbar,
  .showcase .section-heading,
  .gallery-cta,
  .footer {
    width: min(100vw - 28px, var(--container));
  }

  .hero {
    padding: 54px 28px;
  }

  .header-tools {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    max-width: 100%;
  }

  .page-intro-card {
    padding: 42px 28px;
  }

  .hero-points,
  .identity-grid,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout,
  .contact-layout,
  .value-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    position: static;
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    justify-content: center;
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .header-tools {
    flex-direction: column;
    align-items: stretch;
  }

  .lang-switch {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    border-radius: 28px;
    padding: 40px 20px;
  }

  .hero-side {
    padding: 20px;
    border-radius: 22px;
  }

  .page-intro {
    padding-top: 18px;
  }

  .page-intro-card {
    border-radius: 28px;
    padding: 34px 20px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-points,
  .identity-grid,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .strip-card {
    width: 74vw;
    height: 56vw;
  }

  .strip-card.portrait {
    width: 52vw;
    height: 72vw;
  }

  .section {
    padding-top: 82px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .value-panel,
  .value-highlight,
  .feature-card {
    padding: 24px 20px;
  }

  .value-list li {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
  }

  .value-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .footer {
    margin-top: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
