@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #141312;
  --bg-soft: #1b1a18;
  --bg-elevated: #23211e;
  --surface: #2a2723;
  --surface-2: #312d28;
  --line: rgba(201, 170, 126, 0.16);
  --line-strong: rgba(201, 170, 126, 0.28);
  --text: #f2ede3;
  --text-soft: #d3cabf;
  --text-muted: #b2a79a;
  --accent: #c9aa7e;
  --accent-strong: #e2bf8b;
  --accent-deep: #8e724d;
  --olive: #667156;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 12px 26px rgba(0, 0, 0, 0.18);
  --radius: 22px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --container: 1180px;
  --header-height: 88px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", Tahoma, Arial, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(102, 113, 86, 0.14), transparent 34%),
    radial-gradient(circle at top left, rgba(201, 170, 126, 0.12), transparent 24%),
    linear-gradient(180deg, #171513 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.8;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

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

a:hover {
  text-decoration: none;
}

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

iframe {
  border: 0;
}

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

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

button {
  color: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 42px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-block: 1px solid rgba(255, 255, 255, 0.03);
}

.section-gallery {
  background: linear-gradient(180deg, rgba(201, 170, 126, 0.04), rgba(255, 255, 255, 0));
}

.topline {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(13, 12, 11, 0.72);
  backdrop-filter: blur(12px);
}

.topline__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topline p,
.topline a {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.topline__links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topline__links a {
  color: var(--text-soft);
  transition: color 0.22s ease;
}

.topline__links a:hover {
  color: var(--accent-strong);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(20, 19, 18, 0.84);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand span:last-child {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  position: relative;
  background:
    linear-gradient(145deg, rgba(201, 170, 126, 0.94), rgba(142, 114, 77, 0.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 10px 22px rgba(0,0,0,0.22);
  flex: 0 0 auto;
}

.brand__mark::before,
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 11px;
  border: 2px solid rgba(20, 19, 18, 0.88);
}

.brand__mark::after {
  inset: 18px 10px 18px 10px;
  border-inline-width: 8px;
  border-block-width: 2px;
  border-radius: 9px;
}

.site-nav {
  justify-self: center;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.94rem;
  color: var(--text-soft);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(201, 170, 126, 0.1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.02);
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  cursor: pointer;
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.header-call {
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
  color: var(--text);
  white-space: nowrap;
}

.header-call:hover,
.btn:hover,
.mini-card:hover,
.service-card:hover,
.gallery-card:hover,
.trust-card:hover,
.step-card:hover,
.data-item:hover,
.location-card:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #171513;
  box-shadow: 0 16px 30px rgba(142, 114, 77, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 20px 36px rgba(142, 114, 77, 0.32);
}

.btn-secondary {
  background: rgba(255,255,255,0.02);
  color: var(--text);
  border-color: var(--line-strong);
}

.hero,
.page-hero {
  padding: 42px 0 18px;
}

.hero__grid,
.page-hero__grid {
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
}

.hero__content,
.page-hero__content,
.hero__media,
.page-hero__media {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.94rem;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.45rem, 3.4vw, 2.35rem);
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 1rem;
}

.hero__lead {
  margin-top: 18px;
  font-size: 1.06rem;
  color: var(--text-soft);
  max-width: 61ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-actions--compact {
  margin-top: 20px;
}

.hero-meta {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-meta article,
.hero-inline-data span,
.intro-slab,
.mini-card,
.service-card,
.trust-card,
.gallery-card,
.location-card,
.data-item,
.step-card,
.faq-item,
.cta-band,
.site-footer,
.map-frame,
.page-hero__media,
.hero__media {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-soft);
}

.hero-meta article {
  padding: 16px 18px;
  border-radius: 18px;
}

.hero-meta span,
.location-meta span,
.data-item span,
.site-footer__bottom p,
.footer-list a,
.breadcrumbs,
.hero-inline-data span {
  color: var(--text-muted);
}

.hero-meta strong,
.location-meta strong,
.data-item strong {
  display: block;
  font-size: 1.02rem;
  margin-top: 4px;
}

.hero-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
}

.hero-points li {
  position: relative;
  padding: 12px 14px 12px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--text-soft);
}

.hero-points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 8px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(201, 170, 126, 0.12);
}

.hero__media,
.page-hero__media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
}

.hero__media::after,
.page-hero__media::after,
.gallery-card::after,
.service-card__image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 14, 13, 0) 45%, rgba(15, 14, 13, 0.22) 100%);
}

.hero__image,
.page-hero__image,
.service-card__image,
.gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media {
  min-height: 520px;
}

.page-hero__media {
  min-height: 360px;
}

.hero__image,
.page-hero__image {
  min-height: inherit;
}

.intro-slab {
  padding: 22px 24px;
  border-radius: var(--radius);
  color: var(--text-soft);
}

.intro-slab--wide {
  max-width: none;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-heading p:last-child {
  color: var(--text-muted);
  max-width: 68ch;
}

.service-grid,
.gallery-grid,
.mini-grid,
.data-grid,
.steps-grid,
.trust-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card {
  border-radius: 22px;
  overflow: hidden;
}

.service-card__image-link {
  display: block;
  position: relative;
  min-height: 196px;
  overflow: hidden;
}

.service-card__image {
  min-height: 196px;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__image,
.gallery-card:hover .gallery-card__image,
.hero__media:hover .hero__image,
.page-hero__media:hover .page-hero__image {
  transform: scale(1.03);
}

.service-card__body {
  padding: 18px;
}

.service-card__body p {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--accent-strong);
  font-weight: 700;
}

.text-link::after {
  content: "←";
  margin-inline-start: 8px;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card,
.step-card,
.data-item,
.mini-card {
  border-radius: 20px;
  padding: 20px;
}

.trust-card p,
.step-card p,
.data-item,
.mini-card span {
  color: var(--text-soft);
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 270px;
}

.gallery-card img {
  min-height: 270px;
}

.gallery-card figcaption {
  position: absolute;
  inset-inline: 18px;
  bottom: 16px;
  z-index: 1;
  font-weight: 700;
  color: var(--text);
}

.mini-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mini-card {
  display: grid;
  gap: 10px;
  min-height: 140px;
}

.mini-card strong {
  color: var(--accent-strong);
}

.location-card {
  padding: 16px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 18px;
  overflow: hidden;
}

.location-card__content {
  padding: 14px;
}

.location-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.location-meta > div,
.hero-inline-data span {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
}

.location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map-frame {
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
}

.map-frame iframe {
  width: 100%;
  min-height: 420px;
  filter: grayscale(0.2) saturate(0.88) contrast(1.02);
}

.data-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.data-item {
  min-height: 134px;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201, 170, 126, 0.18), rgba(102, 113, 86, 0.2));
  color: var(--accent-strong);
  font-weight: 700;
  margin-bottom: 14px;
}

.hero-inline-data {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.breadcrumbs {
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-inline: 8px;
  color: rgba(255,255,255,0.28);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 18px 54px 18px 20px;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  inset-inline-end: 20px;
  top: 50%;
  width: 16px;
  height: 2px;
  margin-top: -1px;
  background: var(--accent-strong);
  transition: transform 0.22s ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0deg);
}

.faq-item > div {
  padding: 0 20px 18px;
  color: var(--text-soft);
}

.section-cta {
  padding-top: 18px;
}

.cta-band {
  padding: 28px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(201, 170, 126, 0.09), rgba(102, 113, 86, 0.08)),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 28px 28px 0 0;
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  padding-bottom: 24px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-list a:hover,
.site-footer a:hover,
.location-card a:hover,
.data-item a:hover,
.text-link:hover {
  color: var(--accent-strong);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  min-height: 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@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;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .service-grid,
  .mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid,
  .data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__grid,
  .page-hero__grid,
  .location-card,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-band__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 78px;
  }

  .site-header__inner {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: center;
  }

  .site-nav {
    position: absolute;
    inset-inline: 16px;
    top: calc(100% + 12px);
    padding: 14px;
    border-radius: 24px;
    background: rgba(20, 19, 18, 0.98);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    justify-content: space-between;
    border-radius: 16px;
  }

  .header-call {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 0.92rem;
  }

  .hero__media {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .topline {
    display: none;
  }

  .site-header {
    position: relative;
    z-index: 90;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions,
  .location-links,
  .cta-band__actions {
    width: 100%;
  }

  .hero,
  .page-hero {
    padding-top: 28px;
  }

  .hero-meta,
  .hero-points,
  .location-meta,
  .service-grid,
  .gallery-grid,
  .mini-grid,
  .data-grid,
  .steps-grid,
  .trust-grid,
  .trust-grid--three {
    grid-template-columns: 1fr;
  }

  .hero-meta article,
  .location-meta > div,
  .data-item,
  .step-card,
  .trust-card,
  .mini-card,
  .service-card__body,
  .intro-slab,
  .cta-band {
    padding-inline: 18px;
  }

  .hero__media,
  .page-hero__media,
  .gallery-card,
  .map-frame,
  .map-frame iframe {
    min-height: 280px;
  }

  .service-card__image-link,
  .service-card__image {
    min-height: 220px;
  }

  .btn {
    width: 100%;
  }

  .site-header__inner {
    min-height: 70px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .brand small {
    font-size: 0.8rem;
  }

  .menu-toggle {
    order: 0;
    grid-column: auto;
    width: auto;
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.9rem;
  }

  .header-call {
    display: none;
  }

  .site-nav {
    inset-inline: 12px;
    top: calc(100% + 10px);
    z-index: 120;
    padding: 12px;
    border-radius: 22px;
    background: rgba(20, 19, 18, 0.985);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  }

  .site-nav ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-nav a {
    justify-content: center;
    width: 100%;
    min-height: 46px;
    background: rgba(255,255,255,0.035);
    color: var(--text);
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    background: rgba(201, 170, 126, 0.14);
    color: var(--text);
  }

  .location-card {
    padding: 12px;
  }

  .location-card__content {
    padding: 8px;
  }

  .faq-item summary {
    padding-inline-start: 18px;
    padding-inline-end: 52px;
  }
}

@media (max-width: 480px) {
  body {
    line-height: 1.75;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding: 34px 0;
  }

  .topline p,
  .topline a,
  .brand small,
  .breadcrumbs,
  .site-footer__bottom p {
    font-size: 0.82rem;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    min-height: 38px;
    padding-inline: 11px;
    font-size: 0.86rem;
  }

  .hero__lead,
  .section-heading p:last-child,
  .intro-slab,
  .service-card__body p,
  .faq-item > div,
  .trust-card p,
  .step-card p {
    font-size: 0.95rem;
  }

  .hero__media {
    min-height: 240px;
  }
}


@media (max-width: 720px) {
  body.menu-open main {
    filter: blur(1px);
  }
}
