:root {
  --bg: #ffffff;
  --bg-soft: #f6f4ee;
  --text: #111111;
  --muted: #5f5f5f;
  --card: rgba(255, 255, 255, 0.76);
  --border: rgba(17, 17, 17, 0.12);
  --yellow: #ffd21f;
  --yellow-dark: #c99800;
  --black: #050505;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
}

html[data-theme="dark"] {
  --bg: #050505;
  --bg-soft: #101010;
  --text: #f7f7f7;
  --muted: #b8b8b8;
  --card: rgba(22, 22, 22, 0.78);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 210, 31, 0.22), transparent 28rem),
    radial-gradient(circle at 85% 5%, rgba(255, 210, 31, 0.12), transparent 20rem),
    var(--bg);
  color: var(--text);
  transition: background 0.3s ease, color 0.3s ease;
}
html[dir="rtl"] body { font-family: Tahoma, Arial, "Segoe UI", sans-serif; }
a { color: inherit; text-decoration: none; }

.cursor-glow {
  position: fixed;
  width: 22rem;
  height: 22rem;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 210, 31, 0.2), transparent 68%);
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--border);
}

.brand, .nav-links, .header-actions { position: relative; z-index: 1; }
.brand { display: flex; align-items: center; gap: 0.75rem; font-weight: 800; letter-spacing: -0.02em; }
.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  color: #000;
  background: var(--yellow);
  box-shadow: 0 12px 32px rgba(255, 210, 31, 0.35);
}

.nav-links { display: flex; align-items: center; gap: 1.2rem; color: var(--muted); font-size: 0.95rem; }
.nav-links a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 0.55rem; }
.theme-toggle, .lang-toggle {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  border-radius: 999px;
  min-height: 2.8rem;
  padding: 0.65rem 0.85rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  font-weight: 900;
}
.lang-toggle { display: inline-flex; align-items: center; gap: 0.4rem; }
.lang-icon { font-size: 1rem; }
.lang-label { font-size: 0.8rem; letter-spacing: 0.03em; }
html[data-theme="light"] .moon { display: none; }
html[data-theme="dark"] .sun { display: none; }

.section-shell {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.hero {
  min-height: calc(100vh - 4.5rem);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 4rem;
  padding-top: 4rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--yellow-dark);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
html[dir="rtl"] .eyebrow { letter-spacing: 0; }

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  margin-bottom: 1.4rem;
}
h2 { font-size: clamp(2rem, 5vw, 4rem); line-height: 0.95; letter-spacing: -0.055em; margin-bottom: 1rem; }
html[dir="rtl"] h1, html[dir="rtl"] h2 { letter-spacing: -0.035em; line-height: 1.05; }
h3 { font-size: 1.25rem; margin-bottom: 0.65rem; }
.hero-text, .about-text p, .cta-card p, .feature-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.hero-text { max-width: 650px; font-size: 1.16rem; }

.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.2rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--yellow); color: #000; box-shadow: 0 16px 42px rgba(255, 210, 31, 0.35); border-color: transparent; }
.btn.secondary { background: var(--card); color: var(--text); }
.btn-icon { font-size: 1.05rem; }

.quick-stats { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.quick-stats span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-visual { display: flex; justify-content: center; }
.photo-card {
  position: relative;
  width: min(100%, 460px);
  border-radius: 2rem;
  padding: 0.8rem;
  background: linear-gradient(145deg, var(--yellow), var(--card) 42%, var(--black));
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
html[dir="rtl"] .photo-card { transform: rotate(-1.5deg); }
.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 1.45rem;
  filter: saturate(1.02) contrast(1.02);
}
.floating-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  border-radius: 1rem;
  padding: 0.75rem 0.95rem;
  font-weight: 900;
  box-shadow: 0 14px 44px rgba(0,0,0,0.16);
}
.floating-card.top { right: -1.5rem; top: 3rem; }
.floating-card.bottom { left: -1.2rem; bottom: 2rem; }
html[dir="rtl"] .floating-card.top { right: auto; left: -1.5rem; }
html[dir="rtl"] .floating-card.bottom { left: auto; right: -1.2rem; }

.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: start; }
.about-text { padding: 1.6rem; background: var(--card); border: 1px solid var(--border); border-radius: 1.5rem; box-shadow: var(--shadow); }
.about-text p:last-child { margin-bottom: 0; }
.section-heading { max-width: 720px; margin-bottom: 2rem; }

.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.feature-card, .social-card, .cta-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}
.feature-card { padding: 1.4rem; min-height: 260px; transition: transform 0.2s ease, border-color 0.2s ease; }
.feature-card:hover { transform: translateY(-6px); border-color: rgba(255, 210, 31, 0.65); }
.card-icon { display: inline-grid; place-items: center; width: 3rem; height: 3rem; border-radius: 1rem; background: var(--yellow); margin-bottom: 1.2rem; font-size: 1.3rem; }

.projects-section { padding-top: 3rem; }
.projects-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}
.project-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 190px;
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.2), transparent 42%),
    var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 210, 31, 0.8);
}
.project-badge {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}
.project-icon {
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  border-radius: 1.25rem;
  background: var(--yellow);
  color: #000;
  font-weight: 1000;
  font-size: 1.4rem;
  box-shadow: 0 14px 32px rgba(255, 210, 31, 0.3);
}
.project-copy { padding-top: 1.4rem; }
.project-copy h3 { font-size: clamp(1.6rem, 3vw, 2.35rem); margin-bottom: 0.45rem; }
.project-copy p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.project-link {
  align-self: end;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  font-weight: 900;
  white-space: nowrap;
}

.channels-section { padding-top: 3rem; }
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.social-card {
  padding: 1.25rem 1rem;
  display: flex;
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.social-card strong { font-size: 1rem; }
.social-card:hover { transform: translateY(-5px); border-color: rgba(255, 210, 31, 0.8); }
.social-card.highlight { background: var(--yellow); color: #000; }
.social-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 1.25rem;
  font-weight: 1000;
  font-size: 1.55rem;
  color: #fff;
  background: #111;
  box-shadow: 0 14px 32px rgba(0,0,0,0.16);
}
.social-icon.instagram { background: radial-gradient(circle at 30% 105%, #feda75 0 18%, #fa7e1e 30%, #d62976 52%, #962fbf 72%, #4f5bd5 100%); }
.social-icon.tiktok { background: #000; text-shadow: 2px 0 #25f4ee, -2px 0 #fe2c55; }
.social-icon.youtube { background: #ff0033; }
.social-icon.snapchat { background: #fffc00; color: #111; }
.social-icon.x { background: #000; }
.social-icon.music { background: linear-gradient(135deg, #111, #5e2cff); }
.social-icon.boutique { background: #000; }
.social-icon.email { background: var(--yellow); color: #000; }

.cta-section { padding-top: 3rem; }
.cta-card {
  padding: clamp(1.4rem, 4vw, 4rem);
  overflow: hidden;
  position: relative;
}
.cta-card::after {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  right: -5rem;
  top: -5rem;
  background: var(--yellow);
  border-radius: 999px;
  opacity: 0.18;
}
html[dir="rtl"] .cta-card::after { right: auto; left: -5rem; }
.cta-card > * { position: relative; z-index: 1; max-width: 760px; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem clamp(1rem, 4vw, 4rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}
.site-footer a { font-weight: 800; color: var(--text); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero, .about-grid { grid-template-columns: 1fr; }
  .hero { gap: 2rem; padding-top: 2rem; }
  .hero-visual { order: -1; }
  .photo-card { width: min(100%, 390px); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card { grid-template-columns: 1fr; align-items: start; }
  .project-copy { padding-top: 0; }
  .project-link { justify-self: start; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .floating-card.top { right: 0.5rem; }
  .floating-card.bottom { left: 0.5rem; }
  html[dir="rtl"] .floating-card.top { left: 0.5rem; }
  html[dir="rtl"] .floating-card.bottom { right: 0.5rem; }
}

@media (max-width: 640px) {
  .site-header { padding: 0.85rem 1rem; }
  .brand span:last-child { display: none; }
  .section-shell { padding: 4rem 0; }
  h1 { font-size: clamp(3rem, 17vw, 4.6rem); }
  .cards-grid, .social-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .project-card { min-height: auto; padding-top: 4rem; }
  .project-badge { inset-inline-start: 1.25rem; inset-inline-end: auto; }
  .social-card { min-height: 130px; }
  .site-footer { flex-direction: column; }
  .floating-card { font-size: 0.78rem; }
}
