/* ==========================================================================
   AWTAR — Public Relations & Marketing
   Premium Design System | Saudi Arabia
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand Colors (from logo) */
  --gold: #c9a961;
  --gold-light: #e0c789;
  --gold-dark: #a8884a;
  --gold-deep: #8a6f3a;
  --ink: #0f1419;
  --ink-soft: #1a1f2e;
  --ink-muted: #232a3d;
  --cream: #f7f2e8;
  --cream-soft: #ede4d3;
  --paper: #fbfaf6;
  --white: #ffffff;

  /* Semantic */
  --bg: var(--ink);
  --bg-elev: var(--ink-soft);
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(201, 169, 97, 0.07);
  --text: #f4ecdb;
  --text-soft: #c7bfae;
  --text-muted: #847d6e;
  --line: rgba(201, 169, 97, 0.18);
  --line-strong: rgba(201, 169, 97, 0.4);

  /* Type */
  --font-ar: 'Tajawal', 'Cairo', 'Segoe UI', system-ui, sans-serif;
  --font-en: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-en-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --container: 1320px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur: 0.6s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-ar);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}
body[dir="ltr"] { font-family: var(--font-en-body); }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; }

::selection { background: var(--gold); color: var(--ink); }

/* ---------- Backgrounds — Ambient Glow ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(800px 600px at 85% -10%, rgba(201, 169, 97, 0.14), transparent 55%),
    radial-gradient(700px 500px at 10% 100%, rgba(201, 169, 97, 0.08), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, #0a0d12 100%);
  z-index: -2;
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,97,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,97,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 75%);
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}

/* ---------- Container & Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { padding-block: var(--section-y); position: relative; }

/* ---------- Type Helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 38px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
body[dir="rtl"] .eyebrow::before {
  background: linear-gradient(270deg, var(--gold), transparent);
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
.display {
  font-size: clamp(2.6rem, 6.8vw, 5.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.display .stroke {
  -webkit-text-stroke: 1.2px var(--gold);
  color: transparent;
  font-style: italic;
  font-weight: 600;
}
.display .grad {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  max-width: 60ch;
  line-height: 1.75;
}
.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 720px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before,
.section-head.center .eyebrow::after { content: ''; width: 38px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0.95rem 1.85rem;
  font-weight: 600;
  font-size: 0.96rem;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  box-shadow: 0 8px 24px -10px rgba(201, 169, 97, 0.6), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(201, 169, 97, 0.7); }
.btn-primary:hover svg { transform: translateX(4px); }
body[dir="rtl"] .btn-primary:hover svg { transform: translateX(-4px); }
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(201,169,97,0.08); border-color: var(--gold); color: var(--gold); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: all 0.45s var(--ease);
  backdrop-filter: blur(0px);
}
.nav.scrolled {
  background: rgba(15, 20, 25, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-brand img { height: 78px; width: auto; transition: height 0.4s var(--ease); }
.nav.scrolled .nav-brand img { height: 62px; }
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  inset: auto 0 -2px 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; gap: 0.8rem; align-items: center; }
.lang-toggle {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  transition: all 0.3s var(--ease);
}
.lang-toggle:hover { background: var(--gold); color: var(--ink); }

.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 50%; align-items: center; justify-content: center; }
.menu-btn span { display: block; position: relative; width: 18px; height: 1.5px; background: var(--gold); transition: 0.3s var(--ease); }
.menu-btn span::before, .menu-btn span::after { content: ''; position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--gold); transition: 0.3s var(--ease); }
.menu-btn span::before { top: -6px; }
.menu-btn span::after { top: 6px; }
.menu-btn.active span { background: transparent; }
.menu-btn.active span::before { top: 0; transform: rotate(45deg); }
.menu-btn.active span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 9rem;
  padding-bottom: 5rem;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
}
.hero-text { position: relative; z-index: 2; }
.hero-text .lede {
  margin: 1.5rem 0 2.2rem;
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  color: var(--text-soft);
  max-width: 56ch;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero-meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-meta .stat strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.45rem;
  font-family: var(--font-en);
}
.hero-meta .stat span { font-size: 0.85rem; color: var(--text-muted); }

/* Hero Visual — Animated rings + logo */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-rings {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(201,169,97,0.12), transparent 65%);
}
.hero-rings::before, .hero-rings::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}
.hero-rings::before { inset: 8%; border-color: var(--line-strong); animation-duration: 45s; }
.hero-rings::after { inset: 18%; border-style: dashed; animation-direction: reverse; animation-duration: 55s; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-orb {
  position: relative;
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  /* Lighter, warmer cream-gold base so the gold logo reads clearly */
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 248, 230, 0.22), transparent 55%),
    radial-gradient(circle at center, rgba(247, 242, 232, 0.18) 0%, rgba(201, 169, 97, 0.28) 45%, rgba(34, 30, 22, 0.85) 100%);
  border: 1px solid rgba(201,169,97,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 0 90px rgba(247, 242, 232, 0.12),
    inset 0 0 30px rgba(201, 169, 97, 0.25),
    0 30px 60px -20px rgba(0, 0, 0, 0.6);
}
.hero-orb img { width: 65%; height: auto; filter: drop-shadow(0 6px 24px rgba(0,0,0,0.55)) drop-shadow(0 2px 8px rgba(201,169,97,0.4)); }

.hero-tag {
  position: absolute;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.5rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(15,20,25,0.85);
  backdrop-filter: blur(8px);
  animation: float 6s ease-in-out infinite;
}
.hero-tag.t1 { top: 8%; inset-inline-end: 0; }
.hero-tag.t2 { bottom: 14%; inset-inline-start: 0; animation-delay: -2s; }
.hero-tag.t3 { top: 48%; inset-inline-start: -8%; animation-delay: -4s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.scroll-cue .line {
  width: 1px; height: 36px; background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
}
.scroll-cue .line::after {
  content: ''; position: absolute; top: 0; left: -1px; width: 1.5px; height: 12px;
  background: var(--gold);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(28px); opacity: 0; } }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding: 2rem 0;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--text-soft);
}
.marquee-item .stroke { -webkit-text-stroke: 1px var(--gold); color: transparent; font-style: italic; }
.marquee-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }
body[dir="rtl"] .marquee-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl { to { transform: translateX(50%); } }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.service-card {
  position: relative;
  padding: 2.2rem 1.9rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  isolation: isolate;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,97,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: -1;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--bg-card-hover);
}
.service-card:hover::before { opacity: 1; }
.service-num {
  position: absolute;
  top: 1.4rem;
  inset-inline-end: 1.6rem;
  font-family: var(--font-en);
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.55;
  letter-spacing: 0.1em;
}
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,169,97,0.18), rgba(201,169,97,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--gold); stroke-width: 1.4; fill: none; transition: stroke 0.4s var(--ease); }
.service-card:hover .service-icon svg { stroke: var(--ink); }
.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text);
}
.service-desc { color: var(--text-soft); font-size: 0.96rem; line-height: 1.75; }
.service-link {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.service-link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(4px); }
body[dir="rtl"] .service-card:hover .service-link svg { transform: translateX(-4px) rotate(180deg); }
body[dir="rtl"] .service-link svg { transform: rotate(180deg); }

/* ---------- Packages ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.package {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all 0.45s var(--ease);
}
.package:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.package.featured {
  background: linear-gradient(180deg, rgba(201,169,97,0.12), rgba(15,20,25,0.4));
  border: 1px solid var(--gold);
  box-shadow: 0 30px 80px -30px rgba(201,169,97,0.35);
}
.package-badge {
  position: absolute;
  top: -14px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
}
body[dir="rtl"] .package-badge { transform: translateX(50%); }
.package-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.package-tag {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  min-height: 3.5em;
}
.package-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  flex: 1;
}
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.94rem;
  color: var(--text);
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed var(--line);
}
.package-features li:last-child { border-bottom: 0; padding-bottom: 0; }
.package-features svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}
.package .btn { width: 100%; }

/* ---------- Process Timeline ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  position: relative;
}
.process-step {
  position: relative;
  padding: 2rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: all 0.4s var(--ease);
}
.process-step:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.process-num {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.process-title { font-size: 1.18rem; font-weight: 700; margin-bottom: 0.55rem; }
.process-desc { font-size: 0.92rem; color: var(--text-soft); line-height: 1.7; }

/* ---------- About / Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(201,169,97,0.15), rgba(15,20,25,0.95));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(201,169,97,0.25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201,169,97,0.18), transparent 55%);
  mix-blend-mode: screen;
}
.split-visual .glyph {
  position: relative;
  font-family: var(--font-en);
  font-size: clamp(8rem, 18vw, 14rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  font-style: italic;
  z-index: 2;
}
.split-visual .badge-floating {
  position: absolute;
  padding: 1.2rem 1.6rem;
  background: rgba(15,20,25,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  z-index: 3;
}
.split-visual .badge-floating .num {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.split-visual .badge-floating .label { font-size: 0.82rem; color: var(--text-soft); margin-top: 0.25rem; }
.split-visual .b1 { top: 6%; inset-inline-end: 6%; }
.split-visual .b2 { bottom: 8%; inset-inline-start: 6%; }

.split-text .why-list {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}
.split-text .why-list li {
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 500;
  transition: all 0.35s var(--ease);
}
.split-text .why-list li:hover { border-color: var(--line-strong); transform: translateX(4px); }
body[dir="rtl"] .split-text .why-list li:hover { transform: translateX(-4px); }
.split-text .why-list svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ---------- CTA Band ---------- */
.cta-band {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 30%, rgba(201,169,97,0.22), transparent 60%),
    linear-gradient(135deg, var(--ink-soft), var(--ink));
  border: 1px solid var(--line-strong);
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(201,169,97,0.04) 12px 13px);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-band p { color: var(--text-soft); max-width: 50ch; margin: 0 auto 2rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}
.contact-info {
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-info .info-block { display: grid; gap: 1.5rem; margin-top: 2rem; }
.info-row { display: flex; align-items: center; gap: 1rem; padding-bottom: 1.5rem; border-bottom: 1px dashed var(--line); }
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-row .icon { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(201,169,97,0.06); display: grid; place-items: center; flex-shrink: 0; }
.info-row .icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.info-row .label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }
.info-row .value { font-size: 1.05rem; font-weight: 600; color: var(--text); margin-top: 3px; }
.info-row .value a:hover { color: var(--gold); }

.contact-form {
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
.field { position: relative; }
.field label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  font-size: 0.96rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--gold); background: rgba(0,0,0,0.4); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { height: 100px; width: auto; margin-bottom: 1.2rem; }
.footer-brand p { color: var(--text-soft); font-size: 0.96rem; line-height: 1.8; max-width: 36ch; }
.footer-col h4 {
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  font-weight: 600;
}
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a { color: var(--text-soft); font-size: 0.94rem; transition: all 0.3s var(--ease); position: relative; display: inline-block; }
.footer-col a:hover { color: var(--gold); transform: translateX(4px); }
body[dir="rtl"] .footer-col a:hover { transform: translateX(-4px); }
.socials { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  transition: all 0.35s var(--ease);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px) !important; }
.socials a:hover svg { stroke: var(--ink); }
.socials svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.6; transition: stroke 0.3s var(--ease); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Legal Pages ---------- */
.legal-hero {
  padding-top: 11rem;
  padding-bottom: 3rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.6rem;
}
.legal-hero .updated { color: var(--text-muted); font-size: 0.88rem; letter-spacing: 0.1em; }
.legal-body { max-width: 860px; margin-inline: auto; padding-block: 4rem; }
.legal-body h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--gold);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.15rem; margin: 1.6rem 0 0.7rem; color: var(--text); }
.legal-body p, .legal-body li { color: var(--text-soft); line-height: 1.95; font-size: 1.02rem; margin-bottom: 0.85rem; }
.legal-body ul, .legal-body ol { padding-inline-start: 1.6rem; margin-bottom: 1.4rem; }
.legal-body li { list-style: disc; }
.legal-body ol li { list-style: decimal; }
.legal-body strong { color: var(--text); font-weight: 700; }
.legal-toc {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 3rem;
}
.legal-toc h4 { font-size: 0.84rem; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-bottom: 1rem; }
.legal-toc ol { padding-inline-start: 1.3rem; margin: 0; columns: 2; column-gap: 2rem; }
.legal-toc li { font-size: 0.94rem; margin-bottom: 0.5rem; list-style: decimal; color: var(--text-soft); }
.legal-toc a:hover { color: var(--gold); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  inset-inline: 1.5rem;
  bottom: 1.5rem;
  z-index: 200;
  padding: 1.4rem 1.6rem;
  background: rgba(15,20,25,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  display: none;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  max-width: 880px;
  margin-inline: auto;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { color: var(--text-soft); font-size: 0.92rem; flex: 1; min-width: 240px; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.6rem; }
.cookie-actions .btn { padding: 0.65rem 1.3rem; font-size: 0.86rem; }

/* ---------- Reveal animations (Progressive Enhancement) ---------- */
/* Default: elements are visible — fail-safe for no-JS / SEO crawlers / screenshots */
.reveal, .reveal-stagger > * { opacity: 1; transform: none; }
/* Hidden state applies ONLY after JS confirms IntersectionObserver is active */
.js-reveal .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js-reveal .reveal.in { opacity: 1; transform: none; }
.js-reveal .reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js-reveal .reveal-stagger.in > * { opacity: 1; transform: none; }
.js-reveal .reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.js-reveal .reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.js-reveal .reveal-stagger.in > *:nth-child(3) { transition-delay: 0.19s; }
.js-reveal .reveal-stagger.in > *:nth-child(4) { transition-delay: 0.26s; }
.js-reveal .reveal-stagger.in > *:nth-child(5) { transition-delay: 0.33s; }
.js-reveal .reveal-stagger.in > *:nth-child(6) { transition-delay: 0.4s; }
.js-reveal .reveal-stagger.in > *:nth-child(7) { transition-delay: 0.47s; }
.js-reveal .reveal-stagger.in > *:nth-child(8) { transition-delay: 0.54s; }

/* ==========================================================================
   Responsive — Mobile-First Professional Breakpoints
   ==========================================================================
   1280px  — Large desktop / wide laptops
   1024px  — Tablet landscape / small laptops
   880px   — Tablet portrait
   640px   — Large phone / small tablet
   480px   — Standard phone
   380px   — Small phone (iPhone SE, etc.)
   ========================================================================== */

/* ---- Large breakpoint: Hero adjusts to stack ---- */
@media (max-width: 1024px) {
  :root {
    --section-y: clamp(3rem, 7vw, 5.5rem);
  }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 420px; margin-inline: auto; }
  .hero { padding-top: 8rem; padding-bottom: 3rem; min-height: auto; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
  .nav-brand img { height: 64px; }
  .nav.scrolled .nav-brand img { height: 52px; }
  .page-hero { padding-top: 9rem; padding-bottom: 3rem; }
  .page-hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
}

/* ---- Tablet portrait — collapse nav to hamburger ---- */
@media (max-width: 880px) {
  .nav { padding: 0.85rem 0; }
  .nav-brand img { height: 60px; }
  .nav.scrolled .nav-brand img { height: 50px; }
  .nav-links {
    display: none;
    position: fixed;
    inset-block-start: 76px;
    inset-inline: 0;
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    background: rgba(15,20,25,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-block-start: 1px solid var(--line);
    border-block-end: 1px solid var(--line);
    gap: 0;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    z-index: 99;
  }
  .nav-links.open { display: flex; animation: slideDown 0.35s var(--ease); }
  .nav-links a {
    font-size: 1.1rem;
    padding: 1rem 0.5rem;
    width: 100%;
    border-block-end: 1px solid rgba(201,169,97,0.08);
  }
  .nav-links a:last-child { border-block-end: 0; }
  .nav-links a::after { display: none; }
  .menu-btn { display: flex; }
  /* hide language toggle + nav CTA on mobile to save space; keep only burger */
  .nav-actions { gap: 0.5rem; }
  .nav-actions .btn { display: none; }
  .nav.scrolled { padding: 0.6rem 0; }

  /* Layouts collapse */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .footer-brand p { max-width: 480px; margin-inline: auto; }
  .footer-brand .socials { justify-content: center; }
  .hero-meta { gap: 1.5rem; flex-wrap: wrap; }
  .legal-toc ol { columns: 1; }

  /* Sub-pages */
  .img-collage { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; gap: 1rem; }
  .img-collage > .img-frame { aspect-ratio: 16/10; grid-column: auto !important; grid-row: auto !important; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; padding-block: 3rem; }
  .service-detail.reverse .service-detail-text { order: 1; }
  .service-detail.reverse .service-detail-visual { order: 2; }
  .service-detail-text ul.deliverables { grid-template-columns: 1fr; }
  .service-detail-visual .float-tag { inset-block-start: 1rem; inset-inline-end: 1rem; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-map-wrap { min-height: 380px; order: 2; }
  .contact-page-grid .contact-form { order: 1; }
  .channels-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .img-strip { grid-template-columns: 1fr 1fr; }
  .numbers-band { grid-template-columns: 1fr 1fr; gap: 1.5rem 0; padding: 2rem 1rem; }
  .numbers-band .n-item:nth-child(2) { border-inline-end: 0; }
  .numbers-band .n-item:nth-child(1), .numbers-band .n-item:nth-child(2) { border-block-end: 1px solid var(--line); padding-block-end: 1.5rem; }
  .numbers-band .n-item:nth-child(3), .numbers-band .n-item:nth-child(4) { padding-block-start: 1.5rem; }

  .page-hero h1 { font-size: clamp(1.9rem, 7vw, 3rem); }
  .display { font-size: clamp(2.2rem, 9vw, 4rem); }

  /* CTA band tighter */
  .cta-band { padding: 2.5rem 1.5rem; }
  .cta-band h2 { font-size: clamp(1.5rem, 5vw, 2.4rem); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Large phone ---- */
@media (max-width: 640px) {
  :root {
    --section-y: clamp(2.5rem, 7vw, 4.5rem);
    --gutter: 1.1rem;
  }
  .nav-brand img { height: 54px; }
  .nav.scrolled .nav-brand img { height: 46px; }

  /* Hero */
  .hero { padding-top: 6.5rem; padding-bottom: 2.5rem; }
  .hero-text .lede { font-size: 1rem; margin: 1.1rem 0 1.6rem; }
  .hero-actions { gap: 0.7rem; }
  .hero-actions .btn { padding: 0.85rem 1.5rem; font-size: 0.92rem; flex: 1; min-width: 140px; }
  .hero-visual { max-width: 320px; }
  .hero-meta { margin-top: 2.5rem; padding-top: 1.5rem; gap: 1.2rem; justify-content: space-between; }
  .hero-meta .stat { flex: 1; min-width: 90px; }
  .hero-meta .stat strong { font-size: 1.5rem; }
  .hero-meta .stat span { font-size: 0.78rem; }

  /* Page hero */
  .page-hero { padding-top: 7.5rem; padding-bottom: 2rem; }
  .page-hero h1 { font-size: clamp(1.75rem, 8vw, 2.4rem); line-height: 1.15; }
  .page-hero p { font-size: 0.96rem; line-height: 1.75; }

  /* Section heads */
  .section-title { font-size: clamp(1.55rem, 6vw, 2.1rem); }
  .section-sub { font-size: 0.96rem; line-height: 1.75; }
  .section-head { margin-bottom: 2rem; }
  .eyebrow { font-size: 0.72rem; letter-spacing: 0.14em; }

  /* Services grid */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.6rem 1.4rem; }
  .service-title { font-size: 1.12rem; }
  .service-desc { font-size: 0.92rem; line-height: 1.7; }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .package { padding: 1.8rem 1.4rem; }
  .package.featured { transform: none; }
  .package-name { font-size: 1.25rem; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 1rem; }
  .process-step { padding: 1.4rem 1.3rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-brand { text-align: center; }
  .footer-col h4::after { margin-inline: auto; }
  .footer-col ul { align-items: center; }
  .footer-col li { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 0.6rem; text-align: center; }
  .socials { justify-content: center; }

  /* Forms */
  .contact-form { padding: 1.6rem 1.3rem; }
  .form-grid { gap: 0.9rem; }
  .field input, .field select, .field textarea { padding: 0.9rem 1rem; font-size: 16px; /* prevents iOS zoom on focus */ }
  .field label { font-size: 0.88rem; }

  /* Channels grid (contact page) */
  .channels-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .channel-card { padding: 1.3rem 1rem; }
  .channel-card h4 { font-size: 0.92rem; }
  .channel-card a { font-size: 0.86rem; word-break: break-all; }
  .channel-card .ch-meta { font-size: 0.75rem; }

  /* Values grid (about page) */
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }
  .value-card { padding: 1.6rem 1.4rem; }

  /* Image strip / collage */
  .img-strip { grid-template-columns: 1fr; }
  .img-collage > .img-frame { aspect-ratio: 4/3; }

  /* Service detail */
  .service-detail-text h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .service-detail-text p { font-size: 0.96rem; }
  .service-detail-visual .float-tag { font-size: 0.74rem; padding: 0.5rem 0.9rem; }

  /* Numbers band */
  .numbers-band { padding: 1.8rem 1rem; }
  .numbers-band .n-item strong { font-size: 1.8rem; }

  /* Timeline */
  .timeline { padding-inline-start: 1.4rem; }
  .timeline-item h4 { font-size: 1.02rem; }
  .timeline-item p { font-size: 0.9rem; }

  /* FAQ */
  .faq-item summary { padding: 1rem 1.2rem; font-size: 0.95rem; }
  .faq-item .faq-body { padding: 0 1.2rem 1.2rem; font-size: 0.9rem; }

  /* Buttons */
  .btn { padding: 0.85rem 1.4rem; font-size: 0.92rem; }

  /* CTA */
  .cta-band { padding: 2rem 1.2rem; }
  .cta-band h2 { font-size: clamp(1.4rem, 6vw, 2rem); line-height: 1.25; }
  .cta-band p { font-size: 0.95rem; }

  /* Marquee — smaller items */
  .marquee-item { font-size: 1.2rem; padding-inline: 1.2rem; }
  .marquee { padding-block: 1.2rem; }

  /* Cookie banner */
  .cookie-banner { inset-inline: 0.6rem; bottom: 0.6rem; padding: 1rem 1.2rem; }
  .cookie-banner p { font-size: 0.82rem; }
  .cookie-actions .btn { padding: 0.55rem 1rem; font-size: 0.82rem; }

  /* Breadcrumbs */
  .breadcrumbs { font-size: 0.72rem; flex-wrap: wrap; }

  /* Read-more button */
  .read-more { padding: 0.7rem 1.2rem; font-size: 0.88rem; }

  /* Map overlay */
  .contact-map-wrap { min-height: 320px; }
  .contact-map-overlay { padding: 1rem 1.2rem; inset-block-end: 0.8rem; inset-inline: 0.8rem; }
  .contact-map-overlay .o-icon { width: 40px; height: 40px; }
  .contact-map-overlay .o-text strong { font-size: 0.9rem; }
  .contact-map-overlay .o-text span { font-size: 0.78rem; }
}

/* ---- Small phone (iPhone SE 320-380px) ---- */
@media (max-width: 380px) {
  :root { --gutter: 0.9rem; }
  .nav-brand img { height: 48px; }
  .nav.scrolled .nav-brand img { height: 42px; }
  .hero-tag { font-size: 0.62rem; padding: 0.35rem 0.7rem; }
  .channels-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .nav-actions .lang-toggle { padding: 0.35rem 0.75rem; font-size: 0.78rem; }
  .menu-btn { width: 40px; height: 40px; }
  .display { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .package-features li { font-size: 0.88rem; }
  .hero-tag.t3 { inset-inline-start: 0; }
  .service-detail-visual .float-tag { inset-inline-end: 0.6rem; padding: 0.55rem 0.9rem; font-size: 0.7rem; }
}

/* ---- Anti-overflow safety net (all viewports) ---- */
html, body { max-width: 100%; overflow-x: clip; }
.hero, .marquee, .page-hero, section { overflow-x: clip; }
.hero-visual { overflow: visible; }
img, video, iframe { max-width: 100%; height: auto; }

/* ==========================================================================
   Footer credit line — Dropidea attribution
   ========================================================================== */
.credit-line {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  margin-top: 0.4rem;
}
.credit-link {
  color: var(--gold);
  font-weight: 600;
  position: relative;
  transition: color 0.3s var(--ease), text-shadow 0.3s var(--ease);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.credit-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
  text-shadow: 0 0 12px rgba(201,169,97,0.35);
}

/* ---- Tap target safety (all mobile) ---- */
@media (hover: none) and (pointer: coarse) {
  /* Ensure every clickable element is at least 44x44 — accessibility */
  .nav-links a,
  .footer-col a,
  .socials a,
  .read-more,
  .service-link,
  .faq-item summary {
    min-height: 44px;
  }
  /* Disable hover-only effects on touch devices */
  .img-frame:hover img { transform: none; }
  .service-card:hover { transform: none; }
  .package:hover { transform: none; }
  .value-card:hover { transform: none; }
  .channel-card:hover { transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .nav, .footer, .cookie-banner, .hero-visual { display: none; }
  body { background: white; color: black; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ==========================================================================
   White Logo (Nav + Footer)
   ========================================================================== */
.nav-brand img,
.footer-brand img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  opacity: 0.96;
  transition: opacity 0.35s var(--ease), filter 0.35s var(--ease);
}
.nav-brand:hover img { opacity: 1; filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(201,169,97,0.5)); }
.footer-brand img { max-height: 92px; height: auto; width: auto; margin-bottom: 1.2rem; }
@media (max-width: 768px) {
  .footer-brand img { max-height: 78px; }
}

/* Hero orb logo retains its original colors (gold on dark) */
.hero-orb img { filter: none; }

/* ==========================================================================
   Page Hero (sub-pages: about, services, contact)
   ========================================================================== */
.page-hero {
  padding-top: 11rem;
  padding-bottom: 4rem;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 50% 0%, rgba(201,169,97,0.16), transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero .eyebrow::after { content: ''; width: 38px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.page-hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.page-hero h1 .stroke {
  -webkit-text-stroke: 1.2px var(--gold);
  color: transparent;
  font-style: italic;
  font-weight: 600;
}
.page-hero h1 .grad {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero p {
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.85;
  max-width: 720px;
  margin: 0 auto;
}
.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.breadcrumbs a { color: var(--gold); transition: opacity 0.3s var(--ease); }
.breadcrumbs a:hover { opacity: 0.75; }
.breadcrumbs .sep { color: var(--text-muted); }

/* ==========================================================================
   Image Frames — premium animated imagery
   ========================================================================== */
.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  isolation: isolate;
}
.img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,97,0.0) 0%, rgba(201,169,97,0.0) 60%, rgba(201,169,97,0.25) 100%);
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,20,25,0.6) 100%);
  z-index: 2;
  pointer-events: none;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter 0.6s var(--ease);
  display: block;
}
.img-frame:hover img { transform: scale(1.06); }
.img-frame .img-caption {
  position: absolute;
  inset-inline-start: 1.4rem;
  inset-block-end: 1.2rem;
  z-index: 3;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  background: rgba(15,20,25,0.85);
  backdrop-filter: blur(8px);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.img-frame.float-anim {
  animation: gentle-float 8s var(--ease) infinite;
}
@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Image collage — for about page */
.img-collage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 0.7fr;
  gap: 1.1rem;
  height: 560px;
}
.img-collage > .img-frame:nth-child(1) {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.img-collage > .img-frame:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.img-collage > .img-frame:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* Image grid (services page) */
.img-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-block: 3rem;
}
.img-strip .img-frame { aspect-ratio: 4/5; }

/* ==========================================================================
   Read More CTA — used in home page sections
   ========================================================================== */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.4s var(--ease);
  background: rgba(201,169,97,0.04);
}
.read-more svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.read-more:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -10px rgba(201,169,97,0.5);
}
.read-more:hover svg { transform: translateX(4px); }
body[dir="rtl"] .read-more:hover svg { transform: translateX(-4px); }
.section-foot {
  margin-top: 2.5rem;
  text-align: center;
}

/* ==========================================================================
   About Page — specific blocks
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}
.value-card {
  position: relative;
  padding: 2rem 1.7rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(201,169,97,0.06));
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.value-card:hover { border-color: var(--line-strong); transform: translateY(-6px); }
.value-card:hover::before { opacity: 1; }
.value-card .value-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,169,97,0.18), rgba(201,169,97,0.04));
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
}
.value-card .value-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { font-size: 1.18rem; margin-bottom: 0.7rem; color: var(--text); position: relative; z-index: 1; }
.value-card p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.75; position: relative; z-index: 1; }

/* Timeline — about page journey */
.timeline {
  position: relative;
  margin-block: 3.5rem;
  padding-inline-start: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  inset-block: 0.4rem 0;
  inset-inline-start: 0.5rem;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
.timeline-item {
  position: relative;
  padding-block: 0.6rem 1.6rem;
  padding-inline-start: 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  inset-inline-start: -1.55rem;
  inset-block-start: 1rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,169,97,0.18);
}
.timeline-item .t-year {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-en);
}
.timeline-item h4 { font-size: 1.1rem; margin: 0.3rem 0 0.5rem; }
.timeline-item p { color: var(--text-soft); font-size: 0.93rem; line-height: 1.75; }

/* Numbers band — about page stats */
.numbers-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem 2rem;
  background:
    radial-gradient(600px 300px at 50% 50%, rgba(201,169,97,0.08), transparent 70%),
    linear-gradient(135deg, var(--ink-soft), var(--ink-muted));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-block: 3.5rem;
}
.numbers-band .n-item { text-align: center; padding: 0.5rem 1rem; border-inline-end: 1px solid var(--line); }
.numbers-band .n-item:last-child { border-inline-end: 0; }
.numbers-band .n-item strong {
  display: block;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--gold);
  font-weight: 800;
  font-family: var(--font-en);
  margin-bottom: 0.4rem;
}
.numbers-band .n-item span { font-size: 0.88rem; color: var(--text-soft); letter-spacing: 0.04em; }

/* ==========================================================================
   Services Page — detailed service blocks
   ========================================================================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--line);
}
.service-detail:last-of-type { border-bottom: 0; }
.service-detail.reverse { grid-template-columns: 1fr 1fr; }
.service-detail.reverse .service-detail-text { order: 2; }
.service-detail.reverse .service-detail-visual { order: 1; }
.service-detail-text .service-num-big {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-family: var(--font-en);
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.service-detail-text h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  margin-bottom: 1.2rem;
  letter-spacing: -0.015em;
}
.service-detail-text p {
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 1.02rem;
  margin-bottom: 1.4rem;
}
.service-detail-text ul.deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.4rem;
  margin-top: 1.5rem;
}
.service-detail-text ul.deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.service-detail-text ul.deliverables li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.45rem;
  box-shadow: 0 0 0 3px rgba(201,169,97,0.12);
}
.service-detail-visual { position: relative; }
.service-detail-visual .img-frame { aspect-ratio: 4/3; }
.service-detail-visual .float-tag {
  position: absolute;
  inset-block-start: -1.2rem;
  inset-inline-end: -1rem;
  padding: 0.7rem 1.2rem;
  background: var(--ink-soft);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  box-shadow: 0 14px 36px -10px rgba(0,0,0,0.6);
  z-index: 5;
}

/* ==========================================================================
   Contact Page — map + form layout
   ========================================================================== */
.contact-page-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-block: 3rem;
}
.contact-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  height: 100%;
  min-height: 480px;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.65) brightness(0.95) contrast(0.95);
  display: block;
}
.contact-map-overlay {
  position: absolute;
  inset-block-end: 1.4rem;
  inset-inline-start: 1.4rem;
  inset-inline-end: 1.4rem;
  padding: 1.2rem 1.5rem;
  background: rgba(15,20,25,0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 5;
}
.contact-map-overlay .o-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-map-overlay .o-icon svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; stroke-width: 2; }
.contact-map-overlay .o-text strong { color: var(--text); font-weight: 700; font-size: 0.98rem; display: block; margin-bottom: 0.2rem; }
.contact-map-overlay .o-text span { color: var(--text-soft); font-size: 0.85rem; }

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-block: 3rem;
}
.channel-card {
  padding: 1.7rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.channel-card:hover { transform: translateY(-4px); border-color: var(--line-strong); background: var(--bg-card-hover); }
.channel-card .ch-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,169,97,0.2), rgba(201,169,97,0.05));
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}
.channel-card .ch-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.channel-card h4 { font-size: 0.98rem; color: var(--text); margin-bottom: 0.2rem; }
.channel-card a { color: var(--gold); font-weight: 600; font-size: 0.95rem; }
.channel-card a:hover { text-decoration: underline; text-underline-offset: 4px; }
.channel-card .ch-meta { font-size: 0.82rem; color: var(--text-muted); }

/* FAQ accordion (contact page) */
.faq-list {
  display: grid;
  gap: 0.7rem;
  margin-block: 2.5rem;
  max-width: 860px;
  margin-inline: auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.4s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-item .faq-body {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.85;
}

/* ==========================================================================
   Image fade-in animation
   ========================================================================== */
.img-frame { opacity: 0; transform: translateY(20px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.img-frame.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive — sub-pages
   ========================================================================== */
@media (max-width: 968px) {
  .img-collage { grid-template-columns: 1fr; grid-template-rows: auto auto auto; height: auto; }
  .img-collage > .img-frame { aspect-ratio: 16/10; }
  .img-collage > .img-frame:nth-child(1),
  .img-collage > .img-frame:nth-child(2),
  .img-collage > .img-frame:nth-child(3) { grid-column: auto; grid-row: auto; }

  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail.reverse .service-detail-text { order: 1; }
  .service-detail.reverse .service-detail-visual { order: 2; }

  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-map-wrap { min-height: 360px; }

  .img-strip { grid-template-columns: 1fr 1fr; }
  .numbers-band { grid-template-columns: 1fr 1fr; gap: 1.5rem 0; padding: 2rem 1rem; }
  .numbers-band .n-item:nth-child(2) { border-inline-end: 0; }
  .numbers-band .n-item:nth-child(1), .numbers-band .n-item:nth-child(2) { border-block-end: 1px solid var(--line); padding-block-end: 1.5rem; }
  .numbers-band .n-item:nth-child(3), .numbers-band .n-item:nth-child(4) { padding-block-start: 1.5rem; }

  .service-detail-text ul.deliverables { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .img-strip { grid-template-columns: 1fr; }
}
