
:root {
  --bg: #fff9ec;
  --text: #2f160c;
  --muted: #7a4a2a;
  --red: #ef3327;
  --red-dark: #981d18;
  --gold: #ffd43b;
  --gold-soft: #fff1a9;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(91, 32, 15, 0.16);
  --radius: 28px;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #ef3327 #fff1d0;
}
body {
  margin: 0;
  font-family: "Cairo", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 212, 59, 0.22), transparent 26%),
    radial-gradient(circle at 84% 8%, rgba(239, 51, 39, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 45%, #ffffff 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(152, 29, 24, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(152, 29, 24, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 78%);
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
img, iframe { max-width: 100%; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 90px 0; position: relative; }
.scroll-progress { position: fixed; top: 0; right: 0; height: 6px; width: 0; background: linear-gradient(90deg, var(--gold), var(--red)); z-index: 60; box-shadow: 0 0 18px rgba(255, 212, 59, .8); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.84);
  border-bottom: 1px solid rgba(152, 29, 24, 0.10);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.94);
  border-bottom-color: rgba(152, 29, 24, 0.14);
  box-shadow: 0 14px 38px rgba(91, 32, 15, 0.10);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 16px; background: #fff; box-shadow: 0 10px 28px rgba(0,0,0,0.08); }
.brand strong { display: block; font-size: 18px; font-weight: 900; line-height: 1.4; }
.brand small { display: block; color: var(--muted); font-size: 11px; direction: ltr; text-align: right; }
.desktop-nav { display: flex; align-items: center; gap: 26px; color: var(--muted); font-weight: 700; margin-inline-start: auto; }
.desktop-nav a { transition: color .25s ease; position: relative; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; width: 0; height: 2px; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--red)); transition: width .25s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--red); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { width: 100%; }
.btn, .contact-form button {
  border: 0;
  border-radius: 999px;
  padding: 13px 24px;
  font-family: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn.primary, .contact-form button {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 30px rgba(239, 51, 39, 0.28);
}
.btn:hover, .contact-form button:hover { transform: translateY(-3px); }
.btn.ghost { background: #fff; border: 1px solid rgba(152, 29, 24, 0.16); color: var(--red-dark); box-shadow: 0 14px 32px rgba(91, 32, 15, 0.08); direction: ltr; }
.hero { min-height: 760px; display: grid; align-items: center; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 54px; }
.eyebrow, .section-title span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-dark);
  background: rgba(255, 212, 59, 0.34);
  border: 1px solid rgba(239, 51, 39, 0.14);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 900;
}
.hero h1 { font-size: clamp(40px, 6vw, 82px); line-height: 1.05; margin: 22px 0; letter-spacing: -1px; }
.hero p, .lead, .contact-info p, .map-copy p, .gallery-caption p { color: var(--muted); font-size: 19px; line-height: 2; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-contacts-panel {
  margin-top: 26px;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255, 247, 212, 0.96));
  border: 1px solid rgba(152, 29, 24, 0.08);
  box-shadow: 0 22px 44px rgba(91, 32, 15, 0.08);
  backdrop-filter: blur(14px);
}
.hero-contacts-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex: 0 0 auto;
  margin: 0;
  min-height: 74px;
  padding: 0 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--gold-soft), #fff4c7);
  border: 1px solid rgba(239, 51, 39, 0.10);
  color: var(--red-dark);
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}
.quick-contact {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}
.quick-contact a {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(152, 29, 24, 0.08);
  box-shadow: 0 14px 30px rgba(91, 32, 15, 0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  min-height: 72px;
}
.quick-contact a:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(91, 32, 15, 0.12);
  border-color: rgba(239, 51, 39, 0.18);
}
.contact-meta { display: flex; align-items: center; justify-content: center; width: 100%; min-width: 0; }
.contact-meta strong { color: var(--red-dark); font-size: 22px; font-weight: 900; direction: ltr; text-align: center; letter-spacing: .4px; line-height: 1; white-space: nowrap; }
.hero-card {
  min-height: 470px;
  border-radius: 48px;
  background: radial-gradient(circle at 65% 30%, rgba(255,212,59,0.48), transparent 36%), linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,241,169,0.32));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.9);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.shine { position: absolute; inset: -40%; background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.55), transparent 58%); transform: translateX(48%) rotate(8deg); animation: shine 5.5s ease infinite; }
.logo-orbit { width: min(410px, 86%); aspect-ratio: 1; border-radius: 50%; position: relative; display: grid; place-items: center; z-index: 2; }
.logo-orbit img { width: 78%; height: 78%; object-fit: contain; border-radius: 36px; background: #fff; box-shadow: 0 22px 54px rgba(91, 32, 15, 0.16); padding: 12px; }
.logo-orbit span { position: absolute; border-radius: 50%; border: 1px solid rgba(239, 51, 39, 0.18); inset: 0; animation: pulse 5s ease infinite; }
.logo-orbit span:nth-child(2){ inset: 34px; animation-delay: .8s; }
.logo-orbit span:nth-child(3){ inset: 68px; animation-delay: 1.6s; }
.hero-bg { position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(20px); opacity: .35; pointer-events: none; }
.glow-one { background: var(--gold); top: 130px; right: -140px; }
.glow-two { background: var(--red); bottom: 30px; left: -180px; }
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,249,236,0.65));
  pointer-events: none;
}
.scroll-wave { position: relative; height: 90px; margin-top: -48px; z-index: 3; overflow: hidden; pointer-events: none; }
.scroll-wave span { position: absolute; left: -5%; right: -5%; bottom: 0; height: 110px; border-radius: 50% 50% 0 0 / 100% 100% 0 0; background: rgba(255, 255, 255, 0.78); box-shadow: 0 -24px 70px rgba(91, 32, 15, 0.08); }
.scroll-wave span:nth-child(2) { bottom: 18px; background: linear-gradient(90deg, rgba(255, 212, 59, 0.18), rgba(239, 51, 39, 0.12)); filter: blur(6px); }
.split, .map-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.glass-panel { background: rgba(255,255,255,.68); border: 1px solid rgba(255,255,255,.9); border-radius: 34px; padding: 34px; box-shadow: 0 20px 70px rgba(91, 32, 15, 0.08); backdrop-filter: blur(14px); }
.section-title h2, .map-copy h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.25; margin: 16px 0 0; }
.map-copy h2 { margin-bottom: 18px; }
.center { text-align: center; max-width: 720px; margin: 0 auto 38px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: rgba(255,255,255,0.86); border: 1px solid rgba(152, 29, 24, 0.10); border-radius: var(--radius); padding: 30px; box-shadow: 0 18px 44px rgba(91, 32, 15, 0.08); min-height: 230px; transition: transform .25s ease, box-shadow .25s ease; position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--red)); opacity: .85; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.icon { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; color: var(--red-dark); background: linear-gradient(135deg, var(--gold), #fff3ad); font-size: 27px; margin-bottom: 18px; }
.card h3, .gallery-caption h3 { margin: 0 0 10px; font-size: 23px; }
.card p { margin: 0; color: var(--muted); line-height: 1.9; }
.gallery-section { padding-top: 60px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.gallery-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(152, 29, 24, 0.10);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(91, 32, 15, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.gallery-card.wide { grid-column: span 2; }
.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-caption { padding: 18px 18px 20px; }
.map-section { padding-top: 60px; }
.map-copy .btn { display: inline-flex; margin-top: 28px; }
.map-card { padding: 12px; border-radius: 34px; background: #fff; box-shadow: var(--shadow); border: 1px solid rgba(152, 29, 24, 0.10); overflow: hidden; }
.map-card iframe { display: block; width: 100%; height: 430px; border-radius: 24px; }
.contact-section { background: linear-gradient(135deg, #3d170f 0%, #821d17 52%, #ef3327 100%); color: #fff; border-radius: 46px 46px 0 0; margin-top: 40px; overflow: hidden; }
.contact-section::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: rgba(255,212,59,.18); right: -160px; top: -160px; filter: blur(6px); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; position: relative; z-index: 2; }
.contact-info .eyebrow { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.18); }
.contact-info h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.2; margin: 18px 0; }
.contact-info p { color: rgba(255,255,255,.82); }
.info-list { margin-top: 28px; display: grid; gap: 12px; }
.info-list a { display: flex; justify-content: space-between; gap: 16px; align-items: center; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16); border-radius: 20px; padding: 15px 17px; backdrop-filter: blur(8px); }
.info-list span { direction: ltr; }
.contact-form { background: #fff; color: var(--text); border-radius: 34px; padding: 30px; box-shadow: 0 26px 70px rgba(0,0,0,.24); display: grid; gap: 15px; }
.contact-form label { display: grid; gap: 8px; font-weight: 900; color: var(--red-dark); }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(152, 29, 24, 0.16); border-radius: 18px; padding: 14px 16px; font-family: inherit; font-size: 15px; outline: none; background: #fffaf0; color: var(--text); transition: border .25s ease, box-shadow .25s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(239, 51, 39, 0.10); }
.contact-form textarea { resize: vertical; }
.contact-form button { width: 100%; font-size: 16px; }
.form-note { margin: 0; text-align: center; color: var(--muted); font-size: 14px; direction: ltr; }
footer { background: #32150f; color: rgba(255,255,255,.85); text-align: center; padding: 22px 0; }
footer p { margin: 0; font-weight: 700; }
.hero-copy, .hero-card, .map-copy, .map-card, .contact-info, .contact-form, .card, .glass-panel, .gallery-card { will-change: transform, opacity; }
.reveal { opacity: 0; transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1), filter .9s cubic-bezier(.2,.7,.2,1); filter: blur(10px); }
.reveal-up { transform: translateY(42px); }
.reveal-left { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal.in-view { opacity: 1; transform: translate3d(0,0,0); filter: blur(0); }
.delay-sm { transition-delay: .12s; }
.delay { transition-delay: .22s; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .35; } 50% { transform: scale(1.05); opacity: .7; } }
@keyframes shine { 0%, 45% { transform: translateX(62%) rotate(8deg); } 72%, 100% { transform: translateX(-62%) rotate(8deg); } }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: linear-gradient(180deg, #fff8df, #ffffff); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold), var(--red)); border-radius: 999px; border: 3px solid #fff6dc; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #ffe16a, var(--red-dark)); }
@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-card.wide { grid-column: span 2; }
}
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 9px; }
  .hero { min-height: auto; padding-top: 60px; }
  .hero-grid, .split, .contact-grid, .map-grid, .cards { grid-template-columns: 1fr; }
  .hero-card { min-height: 360px; border-radius: 34px; order: -1; }
  .section { padding: 64px 0; }
  .contact-section { border-radius: 32px 32px 0 0; }
  .info-list a { align-items: flex-start; flex-direction: column; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-card.wide { grid-column: span 2; }
  .scroll-wave { height: 70px; margin-top: -34px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 22px, 1120px); }
  .nav-wrap { gap: 12px; }
  .brand img { width: 48px; height: 48px; border-radius: 14px; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 8px; }
  .hero h1 { font-size: 38px; }
  .hero p, .lead, .contact-info p, .map-copy p, .gallery-caption p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-contacts-panel { width: 100%; flex-direction: column; align-items: stretch; }
  .hero-contacts-title { min-height: auto; padding: 12px 16px; }
  .quick-contact { grid-template-columns: 1fr; }
  .quick-contact a { width: 100%; }
  .contact-meta strong { font-size: 20px; }
  .btn { text-align: center; width: 100%; justify-content: center; }
  .contact-form { padding: 22px; border-radius: 26px; }
  .map-card iframe { height: 340px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.wide { grid-column: span 1; }
  .gallery-card img { aspect-ratio: 16 / 10; }
}
