:root {
  --bg: #fffdf8;
  --bg-soft: #f6f2e9;
  --surface: #ffffff;
  --surface-warm: #fff3dd;
  --text: #17140f;
  --muted: #6d6456;
  --dim: #928774;
  --line: rgba(23, 20, 15, 0.14);
  --line-strong: rgba(23, 20, 15, 0.24);
  --amber: #d99021;
  --coral: #ea6956;
  --sky: #4d9fc2;
  --green: #7a9a58;
  --ink: #17140f;
  --shadow: 0 24px 70px rgba(75, 54, 24, 0.16);
  --radius: 8px;
  --gutter: clamp(18px, 5vw, 72px);
  --display: Georgia, "Times New Roman", serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(120deg, rgba(234, 105, 86, 0.11), transparent 35%),
    linear-gradient(260deg, rgba(77, 159, 194, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent 44%),
    var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
body[dir="rtl"] { font-family: "Segoe UI", Tahoma, Arial, system-ui, sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 12px var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
}

.brand, .header-actions, .hero-actions, .profile-card, .site-footer { display: flex; align-items: center; }
.brand { gap: 10px; min-width: max-content; font-weight: 820; }
.brand-mark {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 2px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--coral), 0 8px 20px rgba(234, 105, 86, 0.24);
  background: var(--surface-warm);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.main-nav {
  display: flex;
  gap: clamp(14px, 2.2vw, 30px);
  justify-content: center;
  color: var(--muted);
  font-size: 0.92rem;
}
.main-nav a, .text-link, .instagram-handle { transition: color 180ms ease, transform 180ms ease; }
.main-nav a:hover, .text-link:hover, .instagram-handle:hover { color: var(--text); transform: translateY(-1px); }
.header-actions { gap: 10px; justify-content: end; }
.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}
.lang-btn {
  min-width: 40px;
  height: 31px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 780;
}
.lang-btn.is-active { background: var(--ink); color: #fffdf8; }
.header-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 144, 33, 0.44);
  border-radius: 999px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero {
  display: grid;
  min-height: 90svh;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  padding: 124px var(--gutter) 58px;
}
.hero-copy-block { max-width: 870px; }
.eyebrow, .section-label {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0;
  text-transform: uppercase;
}
body[dir="rtl"] .eyebrow, body[dir="rtl"] .section-label { text-transform: none; }
h1, h2, h3, p, dl, dd { margin-top: 0; }
h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 8.4vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}
body[dir="rtl"] h1 { max-width: 14ch; line-height: 1.08; }
.hero-copy {
  max-width: 720px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.34rem);
}
.hero-copy-block::after { display: block; width: 100%; max-width: 720px; height: 1px; margin-top: 56px; content: ""; background: var(--line); }
.hero-actions { flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 18px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 820;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .lang-btn:focus-visible, .header-cta:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
}
.button-primary { background: var(--ink); color: #fffdf8; }
.button-secondary { border-color: var(--line-strong); background: #fff; color: var(--text); }

.profile-panel {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}
.profile-panel > img {
  width: 100%;
  aspect-ratio: 1231 / 727;
  border-radius: 12px;
  object-fit: contain;
  object-position: center top;
  background: #fff;
}
.profile-card { gap: 12px; }
.profile-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  overflow: hidden;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--coral);
  background: var(--surface-warm);
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-card strong, .profile-card span { display: block; }
.profile-card span { color: var(--muted); font-size: 0.9rem; }
.profile-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 0; }
.profile-stats dt { color: var(--text); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 880; line-height: 1; }
.profile-stats dd { margin: 5px 0 0; color: var(--dim); font-size: 0.76rem; }

.band { padding: clamp(70px, 9vw, 126px) var(--gutter); }
.section-heading, .contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.section-heading { margin-bottom: 34px; align-items: end; }
.section-heading p { max-width: 560px; color: var(--muted); font-size: 1.02rem; }
.section-heading h2, .process h2, .contact h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}
.contact-copy p { color: var(--muted); font-size: 1.08rem; }
.text-link, .instagram-handle { color: var(--ink); font-weight: 820; text-decoration: underline; text-decoration-color: var(--amber); text-underline-offset: 5px; }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 12px 34px rgba(75, 54, 24, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.ig-tile:hover { border-color: var(--ink); box-shadow: 0 18px 44px rgba(75, 54, 24, 0.16); transform: translateY(-3px); }
.reel-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 500ms ease; }
.reel-thumb:hover img { transform: scale(1.04); }
.reel-gallery .reel-thumb::after { display: none; }
.reel-thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(23,20,15,0.02), transparent 48%, rgba(23,20,15,0.72));
  pointer-events: none;
}
.tile-caption { position: absolute; right: 12px; bottom: 12px; left: 12px; z-index: 2; padding: 12px; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: var(--radius); background: rgba(255, 253, 248, 0.88); backdrop-filter: blur(14px); }
.tile-caption span { display: block; color: var(--coral); font-size: 0.72rem; font-weight: 830; }
.tile-caption strong { display: block; margin-top: 3px; color: var(--text); font-size: clamp(0.92rem, 1.2vw, 1.08rem); line-height: 1.15; }

.services { background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0)); }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.service-card { min-height: 310px; padding: 24px; border: 1px solid var(--line); border-top: 4px solid var(--coral); border-radius: 0; background: rgba(255, 255, 255, 0.72); }
.service-number, .timeline span { color: var(--coral); font-size: 0.82rem; font-weight: 850; }
.service-card h3, .timeline h3 { margin: 64px 0 12px; font-size: 1.32rem; }
.service-card p, .timeline p { color: var(--muted); }
.process { border-top: 1px solid var(--line); background: var(--ink); color: #fffdf8; }
.process .section-label, .process .timeline span { color: #f2b657; }
.process .timeline { border-color: rgba(255,255,255,0.22); }
.process .timeline article { border-color: rgba(255,255,255,0.22); }
.process .timeline p { color: rgba(255,253,248,0.68); }
.process h2 { max-width: 820px; margin-bottom: 36px; }
.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.timeline article { min-height: 230px; padding: 24px; border-right: 1px solid var(--line); }
body[dir="rtl"] .timeline article { border-right: 0; border-left: 1px solid var(--line); }
.timeline article:last-child { border-right: 0; }
body[dir="rtl"] .timeline article:last-child { border-left: 0; }
.timeline h3 { margin-top: 48px; }
.contact { align-items: stretch; background: var(--surface-warm); border-top: 1px solid var(--line); }
.contact-copy { align-self: center; }
.contact-copy p { max-width: 560px; margin: 24px 0; }
.offer-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding: clamp(18px, 3vw, 30px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.76); box-shadow: var(--shadow); }
label { display: grid; gap: 8px; color: var(--muted); font-size: 0.88rem; }
.full { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--text); outline: none; padding: 12px; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(77, 159, 194, 0.18); }
.checkbox { grid-template-columns: 18px 1fr; align-items: start; }
.checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--coral); }
.form-status { min-height: 24px; margin: 0; color: var(--green); }
.site-footer { justify-content: space-between; gap: 20px; padding: 28px var(--gutter); border-top: 1px solid var(--line); color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 1ms !important; animation-duration: 1ms !important; }
}
@media (max-width: 1060px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; overflow-x: auto; padding-bottom: 2px; }
  .hero, .section-heading, .contact { grid-template-columns: 1fr; }
  .profile-panel { width: min(560px, 100%); }
  .instagram-grid, .service-grid, .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }

}
@media (max-width: 680px) {
  .site-header { gap: 14px; padding: 12px 14px; }
  .brand-name, .header-cta { display: none; }
  .main-nav { gap: 18px; font-size: 0.84rem; }
  .lang-btn { min-width: 34px; }
  .hero { min-height: 100svh; gap: 20px; padding: 96px 18px 22px; }
  h1 { font-size: clamp(2.75rem, 12.4vw, 4.55rem); line-height: 0.96; }
  .hero-copy { margin-bottom: 20px; font-size: 1rem; }
  .profile-panel { gap: 10px; padding: 10px; }
  .profile-panel > img { aspect-ratio: 2.2 / 1; }
  .profile-avatar { width: 42px; height: 42px; }
  .profile-stats dt { font-size: 1.2rem; }
  .hero-actions .button, .offer-form .button { width: 100%; }
  .profile-stats { gap: 6px; }
  .instagram-grid, .service-grid, .timeline, .offer-form { grid-template-columns: 1fr; }
  .reel-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .reel-gallery .tile-caption { right: 5px; bottom: 5px; left: 5px; padding: 6px; }
  .reel-gallery .tile-caption span { font-size: 0.58rem; }
  .reel-gallery .tile-caption strong { font-size: 0.66rem; line-height: 1.05; }
  .ig-tile { min-height: 0; }
  .service-card { min-height: 230px; }
  .timeline article, body[dir="rtl"] .timeline article { min-height: auto; border-right: 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .site-footer { flex-direction: column; }
}


/* Qumra editorial finish */
h1, .section-heading h2, .process h2, .contact h2 { font-family: var(--display); font-weight: 500; }
h1 { letter-spacing: 0; }
.profile-panel { border-radius: 4px; box-shadow: 18px 18px 0 var(--surface-warm), var(--shadow); }
.profile-panel > img { border-radius: 4px; }
.ig-tile { border-radius: 0; }
.service-card { border-top: 4px solid var(--coral); border-radius: 0; }
.process { background: var(--ink); color: #fffdf8; }
.process .section-label, .process .timeline span { color: #f2b657; }
.process .timeline, .process .timeline article { border-color: rgba(255,255,255,0.22); }
.process .timeline p { color: rgba(255,253,248,0.68); }
@media (max-width: 680px) { .hero-copy-block::after { margin-top: 22px; } }
