:root {
  --sand: #efe4d1;
  --paper: rgba(255, 249, 240, 0.9);
  --paper-strong: rgba(255, 252, 246, 0.96);
  --ink: #1f1c18;
  --muted: #6a5d51;
  --line: rgba(31, 28, 24, 0.12);
  --brand: #d89217;
  --brand-deep: #b66c0d;
  --slate: #2e3137;
  --teal: #214b56;
  --navy: #182228;
  --glow: rgba(216, 146, 23, 0.24);
  --shadow: 0 24px 60px rgba(25, 20, 14, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Cairo", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216, 146, 23, 0.16), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(33, 75, 86, 0.12), transparent 24%),
    linear-gradient(180deg, #e6d7bc 0%, #f5eee2 48%, #faf7f1 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(31, 29, 26, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 29, 26, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.landing-body {
  min-height: 100vh;
}

.language-shell,
.page-shell {
  width: min(1200px, calc(100% - 28px));
  margin: 18px auto 32px;
  position: relative;
  z-index: 1;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 90px 0 auto auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 146, 23, 0.16), transparent 68%);
  pointer-events: none;
  filter: blur(10px);
}

.language-hero,
.top-ribbon,
.page-header,
.hero-panel,
.section-card,
.contact-strip,
.footer-bar,
.site-footer {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.language-hero {
  min-height: calc(100vh - 36px);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.92), rgba(242, 231, 212, 0.82)),
    linear-gradient(120deg, rgba(216, 146, 23, 0.12), rgba(33, 75, 86, 0.08));
}

.top-ribbon {
  margin-bottom: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, rgba(24, 34, 40, 0.94), rgba(39, 54, 63, 0.9));
  color: rgba(255, 255, 255, 0.86);
}

.ribbon-group,
.ribbon-status {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ribbon-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}

.ribbon-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd15d, var(--brand));
  box-shadow: 0 0 0 6px rgba(255, 209, 93, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-mark {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  display: grid;
  place-items: center;
  padding: 5px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(24, 34, 40, 0.96), rgba(70, 72, 77, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 22px rgba(17, 15, 13, 0.16);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.9rem;
}

.page-header .brand-mark {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  padding: 4px;
  border-radius: 18px;
}

.page-header .brand-text strong {
  font-size: 1.02rem;
  line-height: 1.15;
}

.page-header .brand-text span {
  font-size: 0.78rem;
  line-height: 1.25;
}

.language-copy h1,
.hero-copy h1,
.section-head h2,
.cta-block h2,
.contact-lead h2 {
  margin: 0;
  line-height: 1.06;
}

.language-copy h1,
.hero-copy h1 {
  max-width: 10ch;
}

.language-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.18;
  max-width: 15ch;
  letter-spacing: -0.01em;
}

.hero-title-compact {
  font-size: clamp(2rem, 3.6vw, 3.3rem) !important;
  line-height: 1.22 !important;
  max-width: 16ch !important;
  letter-spacing: -0.01em;
}

.language-copy p,
.hero-copy p,
.section-copy,
.card-copy,
.cta-block p,
.contact-lead p,
.detail-card p,
.address-card p,
.timeline-list li,
.service-copy {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
}

.eyebrow {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.14em;
  font-size: 0.86rem;
  color: var(--muted);
  text-transform: uppercase;
}

.cta-row,
.hero-actions,
.header-tools,
.inline-nav,
.lang-switch {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button,
.ghost-button,
.lang-switch a,
.lang-toggle {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.ghost-button:hover,
.lang-switch a:hover,
.lang-toggle:hover {
  transform: translateY(-2px);
}

.button-primary,
.lang-switch a.is-active {
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  color: #fff;
  box-shadow: 0 16px 28px rgba(182, 108, 13, 0.18);
}

.button-secondary,
.ghost-button,
.lang-switch a,
.lang-toggle {
  border: 1px solid rgba(31, 28, 24, 0.14);
  background: rgba(255, 255, 255, 0.5);
}

.lang-toggle {
  min-width: 72px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.inline-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--teal);
  font-weight: 700;
}

.language-grid,
.stat-grid,
.feature-grid,
.services-grid,
.gallery-grid,
.contact-grid,
.metric-grid,
.highlights-grid {
  display: grid;
  gap: 18px;
}

.language-grid {
  grid-template-columns: 1fr;
}

.language-card,
.service-card,
.feature-card,
.detail-card,
.metric-card,
.gallery-card,
.contact-card,
.address-card,
.intro-card,
.highlight-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 18px 36px rgba(32, 24, 18, 0.08);
}

.language-card img,
.gallery-card img,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.language-card {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 280px;
}

.language-card img {
  height: 220px;
}

.language-card-body {
  padding: 18px 20px 22px;
  display: grid;
  gap: 4px;
}

.language-card strong,
.contact-card strong,
.metric-card strong,
.stat-number,
.hero-badge strong {
  font-family: "Manrope", sans-serif;
}

.page-header {
  position: sticky;
  top: 14px;
  z-index: 10;
  margin-bottom: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.86), rgba(247, 238, 226, 0.82));
}

.page-header.is-scrolled {
  box-shadow: 0 16px 34px rgba(31, 28, 24, 0.1);
  border-color: rgba(216, 146, 23, 0.16);
}

.inline-nav a {
  padding: 10px 14px;
  border-radius: 999px;
}

.inline-nav a.is-active,
.inline-nav a:hover {
  background: rgba(33, 75, 86, 0.08);
}

.hero-panel,
.section-card,
.contact-strip,
.footer-bar,
.site-footer {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(248, 241, 231, 0.9));
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  margin-bottom: 18px;
  isolation: isolate;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(145deg, rgba(216, 146, 23, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto 6% 18% auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(216, 146, 23, 0.18);
  border-radius: 28px;
  transform: rotate(18deg);
  pointer-events: none;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.hero-media {
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 22px 50px rgba(17, 16, 14, 0.18);
}

.hero-media::after {
  content: attr(data-caption);
  position: absolute;
  inset-inline-start: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31, 28, 24, 0.66);
  color: #fff;
  font-size: 0.9rem;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: auto auto 16px 16px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(216, 146, 23, 0.18));
  backdrop-filter: blur(10px);
}

.hero-visual-stack {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  min-height: 460px;
}

.hero-main-shot,
.hero-side-stack,
.media-tile,
.hero-float-card {
  border-radius: 24px;
  overflow: hidden;
}

.hero-main-shot {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 26px 54px rgba(16, 14, 12, 0.18);
}

.hero-main-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-shot::after {
  content: attr(data-label);
  position: absolute;
  inset-inline-start: 18px;
  top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(24, 34, 40, 0.68);
  color: #fff;
  font-size: 0.88rem;
}

.hero-side-stack {
  display: grid;
  gap: 14px;
}

.media-tile {
  position: relative;
  min-height: 223px;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-tile::after {
  content: attr(data-label);
  position: absolute;
  inset-inline-end: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-float-card {
  position: absolute;
  inset: auto auto 18px 18px;
  min-width: 180px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(24, 34, 40, 0.92), rgba(44, 60, 69, 0.9));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 34px rgba(17, 15, 13, 0.22);
}

.hero-float-card strong {
  display: block;
  margin-top: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
}

.hero-float-card span,
.hero-float-card p {
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.hero-badge,
.metric-card,
.contact-card,
.intro-card,
.highlight-card,
.feature-card,
.service-card,
.detail-card,
.address-card {
  padding: 20px;
}

.hero-badge {
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 238, 227, 0.68));
  border: 1px solid rgba(31, 28, 24, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.hero-badge strong,
.stat-number,
.metric-card strong {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.9rem);
}

.section-card {
  margin-bottom: 18px;
  isolation: isolate;
}

.section-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 120px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(216, 146, 23, 0));
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.intro-split,
.content-split,
.contact-strip {
  display: grid;
  gap: 18px;
}

.intro-split,
.content-split {
  grid-template-columns: 1.1fr 0.9fr;
}

.stat-grid,
.feature-grid,
.metric-grid,
.contact-grid,
.highlights-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  min-height: 240px;
  position: relative;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.service-card h3,
.detail-card h3,
.feature-card h3,
.intro-card h3,
.highlight-card h3,
.address-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
}

.timeline-list,
.service-points,
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline-list li,
.service-points li,
.contact-list li {
  position: relative;
  padding-inline-start: 18px;
  margin-bottom: 12px;
}

.timeline-list li::before,
.service-points li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.contact-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin-bottom: 18px;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card span,
.address-card span,
.mini-label {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-card a,
.address-card a {
  display: inline-block;
  margin-top: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.footer-bar {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(24, 34, 40, 0.96), rgba(44, 60, 69, 0.92));
  color: #fff;
}

.footer-bar .eyebrow,
.footer-bar p {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  margin-bottom: 24px;
  padding: 30px 28px 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(245, 237, 225, 0.92)),
    radial-gradient(circle at top right, rgba(216, 146, 23, 0.12), transparent 30%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: start;
}

.footer-grid > section {
  min-width: 0;
}

.footer-brand {
  display: grid;
  gap: 12px;
  max-width: 420px;
}

.footer-brand p,
.footer-note,
.footer-link-list a,
.footer-contact-list li,
.footer-tagline {
  color: var(--muted);
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-mark .brand-mark {
  width: 74px;
  height: 74px;
  flex-basis: 74px;
  padding: 6px;
}

.footer-title {
  margin: 4px 0 14px;
  font-size: 1rem;
}

.footer-link-list,
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-link-list a {
  transition: color 160ms ease, transform 160ms ease;
}

.footer-link-list a:hover {
  color: var(--teal);
  transform: translateX(2px);
}

.footer-pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(31, 28, 24, 0.08);
  font-size: 0.92rem;
}

.footer-footnote {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 28, 24, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-note {
  margin: 0;
}

.footer-brand > p {
  margin: 0;
  line-height: 1.75;
  max-width: 34ch;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.showcase-copy {
  display: grid;
  gap: 18px;
}

.showcase-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.image-chip {
  min-height: 180px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 18px 36px rgba(17, 15, 13, 0.12);
}

.image-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card,
.metric-card,
.service-card,
.detail-card,
.intro-card,
.address-card,
.contact-card,
.highlight-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.metric-card:hover,
.service-card:hover,
.detail-card:hover,
.intro-card:hover,
.address-card:hover,
.contact-card:hover,
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(25, 20, 14, 0.14);
  border-color: rgba(216, 146, 23, 0.24);
}

.page-shell[dir="ltr"] {
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.page-shell[dir="ltr"] .hero-copy h1,
.page-shell[dir="ltr"] .section-head h2,
.page-shell[dir="ltr"] .cta-block h2,
.page-shell[dir="ltr"] .contact-lead h2 {
  max-width: 16ch;
}

@media (max-width: 1080px) {
  .footer-grid,
  .showcase-grid,
  .hero-visual-stack,
  .language-hero,
  .hero-panel,
  .intro-split,
  .content-split,
  .contact-strip,
  .services-grid,
  .gallery-grid,
  .feature-grid,
  .metric-grid,
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-badges,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .language-shell,
  .page-shell {
    width: min(100% - 14px, 100%);
    margin: 8px auto 18px;
  }

  .language-hero,
  .page-header,
  .hero-panel,
  .section-card,
  .contact-strip,
  .footer-bar,
  .site-footer,
  .top-ribbon {
    padding: 18px;
    border-radius: 22px;
  }

  .top-ribbon,
  .language-hero,
  .footer-grid,
  .showcase-grid,
  .hero-visual-stack,
  .hero-panel,
  .intro-split,
  .content-split,
  .contact-strip,
  .services-grid,
  .gallery-grid,
  .feature-grid,
  .metric-grid,
  .highlights-grid,
  .hero-badges,
  .contact-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .page-header,
  .section-head,
  .footer-bar,
  .footer-footnote {
    flex-direction: column;
    align-items: flex-start;
  }

  .language-copy h1,
  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.3rem, 11vw, 3.8rem);
  }

  .button,
  .ghost-button,
  .lang-switch a {
    width: 100%;
  }
}