/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}
[data-theme="dark"] .navbar.scrolled {
  background: rgba(15, 13, 10, 0.95);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.navbar-logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--text-primary);
}
.logo-iyyah {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--rose);
}
.logo-designs {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-primary);
}
.logo-arabic {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}
.navbar-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--rose); }
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.dropdown-item:hover { background: var(--rose-tint); color: var(--rose-deep); }
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.theme-toggle:hover { border-color: var(--rose); }
[data-theme="light"] .theme-icon-dark { display: none; }
[data-theme="dark"] .theme-icon-light { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--surface);
  z-index: 1100;
  padding: 2rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.mobile-overlay.visible { opacity: 1; visibility: visible; }
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-secondary);
}
.mobile-menu-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--rose);
  margin-bottom: 1rem;
}
.mobile-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.1rem;
  font-family: var(--font-display);
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-group { padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.mobile-nav-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.mobile-nav-sub {
  display: block;
  padding: 0.4rem 0.75rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
}
.mobile-nav-sub:hover { color: var(--rose); }

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .navbar-actions .btn-primary { display: none; }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FDFAF7 0%, #FDF6F5 50%, #FDF8F2 100%);
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(196,132,122,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 4rem 0;
}
.hero-headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.5rem;
  color: var(--text-primary);
}
.hero-subheading {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--rose);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

@media (max-width: 768px) {
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-stats { gap: 1.5rem; }
}

/* ========================================
   ALBUM CARDS
   ======================================== */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.album-card {
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.album-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.album-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.album-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.album-card:hover .album-card-img img { transform: scale(1.05); }
.album-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rose-tint), var(--bg-alt));
}
.album-placeholder-glyph { font-size: 3rem; color: var(--rose); opacity: 0.6; }
.album-card-overlay {
  position: absolute;
  top: 1rem; left: 1rem;
}
.album-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}
.album-card-body h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-primary);
}
.album-count { font-size: 0.8rem; color: var(--text-muted); }
.album-arrow { color: var(--rose); font-size: 1.25rem; transition: transform 0.2s; }
.album-card:hover .album-arrow { transform: translateX(4px); }

/* ========================================
   FEATURED / ARTWORK CARDS
   ======================================== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.artwork-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.artwork-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.artwork-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-alt);
}
.artwork-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.artwork-card:hover .artwork-img-wrap img { transform: scale(1.07); }
.artwork-hover {
  position: absolute;
  inset: 0;
  background: rgba(42,31,31,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1rem;
  text-align: center;
}
.artwork-card:hover .artwork-hover { opacity: 1; }
.artwork-hover h4 { color: white; font-family: var(--font-display); font-size: 1.1rem; margin: 0; }
.artwork-hover-icon { font-size: 2rem; color: var(--rose-light); }
.artwork-info { padding: 1rem 1.25rem; }
.artwork-info-top { margin-bottom: 0.4rem; }
.artwork-info h3, .artwork-info h4 { font-size: 1rem; margin: 0.4rem 0 0.5rem; }
.artwork-desc { font-size: 0.85rem; color: var(--text-muted); margin: 0.5rem 0 0.75rem; line-height: 1.5; }
.artwork-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rose-tint), var(--bg-alt));
}
.section-cta { text-align: center; margin-top: 3rem; }

/* ========================================
   SERVICES
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.featured-service { border-color: var(--rose-border); background: var(--rose-tint); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.service-card h3 { margin: 0 0 0.75rem; }
.service-card p { color: var(--text-secondary); font-size: 0.9rem; margin: 0 0 1.5rem; line-height: 1.6; }

/* ========================================
   WORKSHOPS (HOME PREVIEW)
   ======================================== */
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.workshop-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.workshop-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.workshop-price { font-family: var(--font-display); font-size: 1.1rem; color: var(--rose); white-space: nowrap; }
.workshop-card h3 { margin: 0; font-size: 1.2rem; }
.workshop-card p { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.6; flex: 1; }
.workshop-meta { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.8rem; color: var(--text-muted); }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-carousel { overflow: hidden; margin-top: 2.5rem; }
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.testimonial-stars { margin-bottom: 1rem; }
.star { font-size: 1.1rem; color: var(--border); }
.star.filled { color: var(--rose); }
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin: 0 0 1.5rem;
  border: none;
  padding: 0;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--rose);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--text-primary); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }
.carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.carousel-dot.active { background: var(--rose); transform: scale(1.3); }

/* ========================================
   VIDEOS
   ======================================== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.video-embed-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-embed-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-label { padding: 0.75rem 1rem; font-size: 0.875rem; color: var(--text-secondary); margin: 0; }

/* ========================================
   FOOTER
   ======================================== */
.footer { background: #2A1F1F; color: var(--text-inverse); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; color: var(--rose-light); margin-bottom: 0.75rem; }
.footer-tagline { color: rgba(253,250,247,0.7); font-size: 0.9rem; margin: 0.5rem 0; }
.footer-arabic { font-size: 1.1rem; color: var(--rose-light); opacity: 0.7; margin-top: 1rem; display: block; }
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(253,250,247,0.7); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--rose-light); }
.footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact li { display: flex; align-items: center; gap: 0.75rem; }
.footer-contact svg { flex-shrink: 0; color: var(--rose-light); }
.footer-contact a { color: rgba(253,250,247,0.7); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--rose-light); }
.footer-bottom {
  border-top: 1px solid rgba(250,247,242,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(250,247,242,0.4);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ========================================
   PAGE HERO (non-home pages)
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--rose-tint) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}
.page-hero h1 { margin: 0.5rem 0 1rem; }
.page-hero-sub {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
}
.back-link {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--rose); }

/* ========================================
   GALLERY HUB
   ======================================== */
.gallery-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-hub-card { display: block; text-decoration: none; border-radius: var(--radius-xl); overflow: hidden; }
.gallery-hub-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); }
.gallery-hub-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-hub-card:hover .gallery-hub-img img { transform: scale(1.06); }
.album-placeholder-lg {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rose-tint), var(--bg-alt));
}
.album-placeholder-lg span { font-size: 4rem; color: var(--rose); opacity: 0.5; }
.gallery-hub-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.85) 0%, rgba(26,20,16,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  gap: 0.4rem;
  color: white;
}
.gallery-hub-overlay h2 { font-size: 1.7rem; margin: 0; color: white; letter-spacing: -0.01em; }
.hub-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light, #E8D49A);
}
.hub-arrow span { transition: transform 0.3s ease; }
.gallery-hub-card:hover .hub-arrow span { transform: translateX(5px); }

/* ========================================
   ALBUM DETAIL PAGE
   ======================================== */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.album-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.album-switcher-btn {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  color: var(--text-secondary);
  transition: all 0.2s;
  background: transparent;
}
.album-switcher-btn:hover, .album-switcher-btn.active {
  background: var(--rose);
  color: white;
  border-color: var(--rose);
}
.empty-state {
  text-align: center;
  padding: 5rem 0;
  color: var(--text-muted);
}
.empty-state p { margin-top: 1rem; }
.album-grid-section { padding-top: 0; }

/* ========================================
   WORKSHOPS DETAIL PAGE
   ======================================== */
.workshops-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.workshop-detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.featured-workshop { border-color: var(--gold-border); background: var(--gold-tint); }
.workshop-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.workshop-detail-header h2 { margin: 0.5rem 0 0; }
.workshop-price-block { text-align: right; }
.price-label { display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.price-amount { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); }
.workshop-description { color: var(--text-secondary); line-height: 1.7; margin: 0 0 1.5rem; }
.workshop-detail-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.meta-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-secondary); }
.meta-icon { font-style: normal; }
.workshop-included h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--text-primary); }
.workshop-included ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.4rem;
}
.workshop-included li { font-size: 0.875rem; color: var(--text-secondary); }
.private-section { background: var(--bg-alt); }
.private-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.private-arabic { text-align: center; }
.private-glyph { font-size: 5rem; color: var(--gold); opacity: 0.6; display: block; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.step { text-align: center; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h3 { margin: 0 0 0.5rem; }
.step p { font-size: 0.875rem; color: var(--text-secondary); margin: 0; line-height: 1.6; }
.faq-container { max-width: 720px; margin: 0 auto; }
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 1.25rem; color: var(--gold); flex-shrink: 0; transition: transform 0.2s; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 400px; padding-bottom: 1.25rem; }
.faq-answer p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin: 0; }

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .private-container { grid-template-columns: 1fr; }
  .private-arabic { display: none; }
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.pull-quote-section { background: var(--gold-tint); padding: 5rem 0; text-align: center; }
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
  border: none;
  padding: 0;
}
.pull-quote-mark {
  font-size: 4rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -1rem;
  margin-right: 0.5rem;
  font-style: normal;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about-artwork-frame {
  background: linear-gradient(135deg, var(--gold-tint), var(--bg-alt));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-glyph { font-size: 2.5rem; color: var(--gold); line-height: 2; }
.about-text p { color: var(--text-secondary); margin-bottom: 1.25rem; line-height: 1.8; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-card { background: var(--surface); padding: 2.5rem; text-align: center; }
.stat-big {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.stat-desc {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: block;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.value-icon { font-size: 2rem; color: var(--gold); display: block; margin-bottom: 1rem; }
.value-card h3 { margin: 0 0 0.75rem; }
.value-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 480px;
  margin: 2.5rem auto 0;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.contact-row:hover { color: var(--gold); }
.contact-icon { font-size: 1.5rem; }
.contact-row div { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-row strong { font-size: 0.95rem; color: var(--text-primary); }
.contact-row span { font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-hub-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   PHASE 3 LAYOUT ADDITIONS
============================================================ */

/* --- Gallery masonry variant --- */
.album-grid-masonry {
  columns: 4;
  column-gap: 1rem;
}
.album-grid-masonry .artwork-card {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
}
.album-grid-masonry .artwork-img-wrap {
  aspect-ratio: unset; /* Allow natural heights for masonry */
}
@media (max-width: 1024px) { .album-grid-masonry { columns: 3; } }
@media (max-width: 768px) { .album-grid-masonry { columns: 2; } }
@media (max-width: 480px) { .album-grid-masonry { columns: 1; } }

/* --- Enhanced announcement bar --- */
.announcement-bar {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep));
  background-size: 200% 100%;
  animation: goldShift 8s ease infinite;
}
@keyframes goldShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.announcement-item {
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* --- Enhanced navbar glass --- */
.navbar.scrolled {
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--gold-border);
}
[data-theme="dark"] .navbar.scrolled {
  background: rgba(15, 13, 10, 0.88);
  border-bottom-color: rgba(201, 168, 76, 0.2);
}

/* --- Enhanced hero --- */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

/* --- Hero animated text shimmer --- */
.hero-headline {
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--text-primary) 40%,
    var(--gold) 50%,
    var(--text-primary) 60%,
    var(--text-primary) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 6s linear infinite;
}
@keyframes textShimmer {
  from { background-position: 200% center; }
  to { background-position: -200% center; }
}

/* --- Enhanced section labels --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

/* --- Services featured card gradient border --- */
.featured-service {
  position: relative;
  border: none;
}
.featured-service::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--gold), var(--rose), var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* --- Artwork card enhanced hover --- */
.artwork-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.artwork-card:hover { transform: translateY(-8px) scale(1.01); }

/* --- Album card image zoom is smoother --- */
.album-card-img img { transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.album-card:hover .album-card-img img { transform: scale(1.08); }

/* --- Gallery hub card: title always legible, arrow reveals on hover --- */
.gallery-hub-overlay h2 { opacity: 1; }
.hub-arrow {
  opacity: 0.8;
  transition: opacity 0.35s ease;
}
.gallery-hub-card:hover .hub-arrow { opacity: 1; }

/* --- Testimonial card quote decoration --- */
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.07;
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card { position: relative; overflow: hidden; }

/* --- Workshop card level indicator strip --- */
.workshop-detail-card {
  border-left: 4px solid var(--border);
}
.workshop-detail-card:has(.badge-gold) { border-left-color: var(--gold); }
.workshop-detail-card:has(.badge-rose) { border-left-color: var(--rose); }
.workshop-detail-card:has(.badge-muted) { border-left-color: var(--text-muted); }

/* --- About pull quote enhanced --- */
.pull-quote-section {
  background: linear-gradient(135deg, var(--gold-tint) 0%, var(--bg-alt) 50%, var(--gold-tint) 100%);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* --- Stat cards hover glow --- */
.stat-card {
  transition: background 0.3s ease;
}
.stat-card:hover {
  background: var(--gold-tint);
}

/* --- Contact rows hover --- */
.contact-row {
  transition: all 0.25s ease;
  padding-left: 0.5rem;
  margin-left: -0.5rem;
  border-radius: var(--radius-sm);
}
.contact-row:hover {
  background: var(--gold-tint);
  padding-left: 1rem;
}

/* --- FAQ question hover fill --- */
.faq-question:hover {
  background: var(--gold-tint);
  padding-left: 0.75rem;
  border-radius: var(--radius-sm);
}
.faq-question { transition: background 0.2s ease, padding-left 0.2s ease; }

/* --- Step number glow --- */
.step:hover .step-num { opacity: 0.8; text-shadow: 0 0 30px rgba(201,168,76,0.3); }
.step-num { transition: opacity 0.3s ease, text-shadow 0.3s ease; }

/* --- Workshop price shimmer --- */
.price-amount {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Footer link hover with underline --- */
.footer-links a, .footer-contact a {
  position: relative;
  padding-bottom: 1px;
}
.footer-links a::after, .footer-contact a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.footer-links a:hover::after, .footer-contact a:hover::after { width: 100%; }

/* --- Image loading state for artwork cards --- */
.artwork-img-wrap, .album-card-img, .gallery-hub-img {
  background: linear-gradient(135deg, var(--bg-alt), var(--surface-2), var(--bg-alt));
  background-size: 200% 100%;
}

/* --- Smooth anchor offset for fixed navbar --- */
:target { scroll-margin-top: 100px; }

/* --- 404 page --- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--bg) 0%, var(--gold-tint) 100%);
  padding: 8rem 0;
}
.error-arabic {
  display: block;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1rem;
  font-family: var(--font-arabic);
}
.error-heading { margin-bottom: 1rem; }
.error-message { color: var(--text-secondary); max-width: 480px; margin: 0 auto 2rem; }
.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.error-arabic-large { font-size: 6rem; color: var(--gold); opacity: 0.06; margin-top: 3rem; line-height: 1; }
