
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: initial;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: background-color var(--transition-slow), color var(--transition-slow);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.text-center { text-align: center; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--accent-gold-light);
  border-radius: 50px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
  cursor: pointer;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--accent-gold-light);
  color: var(--bg-color);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--accent-gold-dark);
  border-radius: 50px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--accent-gold-dark);
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 1.5rem;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.desktop-nav {
  display: flex;
  gap: 2rem;
}

.desktop-nav a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, var(--accent-gold-dark) 0%, transparent 60%);
  opacity: 0.2;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Section */
.section {
  padding-block: 6rem;
}

.section-lead {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  max-width: 800px;
  margin-inline: auto;
  line-height: 1.6;
  font-family: var(--font-heading);
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-block.reverse .service-grid {
  /* LTR and RTL handle reverse differently. Grid auto handles source order, but we can flex-direction if needed */
}

[dir="ltr"] .service-block.reverse .service-grid {
  grid-template-columns: 1.2fr 0.8fr;
}
[dir="rtl"] .service-block.reverse .service-grid {
  grid-template-columns: 0.8fr 1.2fr;
}


.service-desc {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

.service-images {
  position: relative;
  height: 500px;
}

.img-box {
  background: var(--bg-surface);
  border-radius: 20px;
  position: absolute;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.img-box.vertical {
  width: 200px;
  height: 350px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.img-box.horizontal {
  width: 250px;
  height: 300px;
  right: 0;
  top: 20%;
}

.img-box.square {
  width: 250px;
  height: 250px;
  left: 20%;
  top: 10%;
}

.img-box.tall {
  width: 200px;
  height: 400px;
  right: 10%;
  top: 50%;
  transform: translateY(-30%);
}

[dir="rtl"] .img-box.vertical { left: auto; right: 0; }
[dir="rtl"] .img-box.horizontal { right: auto; left: 0; }
[dir="rtl"] .img-box.square { left: auto; right: 20%; }
[dir="rtl"] .img-box.tall { right: auto; left: 10%; }


/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  border-block: 1px solid rgba(255, 255, 255, 0.05);
  padding-block: 4rem;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--accent-gold-light);
  margin-bottom: 0.5rem;
}

.stat-item p {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Footer */
.main-footer {
  background: var(--bg-surface);
  padding-block: 5rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 4rem;
}

.footer-form p {
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.footer-form input {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  margin-bottom: 1rem;
  border-radius: 5px;
  font-family: var(--font-body);
}

.footer-form .input-group {
  display: flex;
  gap: 1rem;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--accent-gold-dark);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.footer-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand p {
  margin-top: 2rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-contact h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-contact ul {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Animations */
@keyframes pulseGlow {
  0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(214, 198, 180, 0.1)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(214, 198, 180, 0.3)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(214, 198, 180, 0.1)); }
}

.alive-logo {
  animation: pulseGlow 4s infinite ease-in-out;
  display: inline-block;
}

.alive-bg {
  animation: pulseGlow 8s infinite alternate;
}

/* Dynamic Fluid Shape (The Identity) */
.fluid-shape {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--accent-gold-dark), var(--accent-gold-light), #3a2823);
  background-size: 400% 400%;
  animation: fluidMorph 8s ease-in-out infinite alternate, gradientMove 10s ease infinite;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
  opacity: 0.8;
  mix-blend-mode: screen;
}

[data-theme="light"] .fluid-shape {
  mix-blend-mode: multiply;
  opacity: 0.6;
}

@keyframes fluidMorph {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: rotate(0deg) scale(1); }
  34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; transform: rotate(5deg) scale(1.05); }
  67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; transform: rotate(-5deg) scale(0.95); }
  100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: rotate(0deg) scale(1); }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Fullscreen Menu */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-color);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.fullscreen-menu.active {
  opacity: 1;
  pointer-events: all;
}

.menu-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.menu-link {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--text-primary);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  opacity: 0; /* JS will animate */
}

.menu-link:hover {
  color: var(--accent-gold-light);
  transform: scale(1.05);
}

.img-box video {

  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Accordion */
.accordion {
  margin-top: 2rem;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.5rem;
  cursor: pointer;
}

.accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent-gold-light);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-top: 0;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  margin-top: 1rem;
}

/* Clients & Cases Grids */
.clients-grid, .cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.client-box, .case-box {
  background: var(--bg-surface);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-fast);
}

.client-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  padding: 2rem;
  filter: grayscale(100%);
  opacity: 0.7;
}

.client-box:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-5px);
}

.case-box {
  height: 350px;
}

.case-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.case-box:hover img {
  transform: scale(1.05);
}

.case-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: white;
}

.case-overlay h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  color: var(--accent-gold-light);
}

/* Timeline */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.timeline-step {
  background: var(--bg-surface);
  padding: 2.5rem;
  border-radius: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-5px);
}

.timeline-step h3 {
  font-family: var(--font-heading);
  color: var(--accent-gold-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.timeline-step p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  html {
    font-size: 14px;
  }

  .service-grid, .footer-grid, .stats-grid, .timeline-grid, .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .desktop-nav {
    display: none;
  }

  .reverse .service-grid {
    display: flex;
    flex-direction: column;
  }

  .service-images {
    flex-direction: column;
    height: 400px;
  }

  .img-box.horizontal, .img-box.vertical, .img-box.square, .img-box.tall {
    width: 100%;
    height: 300px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .section {
    padding-block: 4rem;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 1rem;
  }

  .menu-link {
    font-size: 2rem;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }
  
  .footer-form {
    padding: 2rem;
  }
}


/* WordPress Theme Additions */
body.admin-bar .main-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .main-header { top: 46px; } }
.desktop-nav a.active { color: var(--accent-gold-light); }
.sada-alert {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  background: rgba(214, 198, 180, 0.12);
  border: 1px solid var(--accent-gold-dark);
  color: var(--text-primary);
  line-height: 1.6;
}
.sada-alert.error { border-color: #a94442; background: rgba(169, 68, 66, 0.12); }
.footer-form textarea,
.footer-form select,
.sada-form textarea,
.sada-form select,
.sada-form input {
  font-family: var(--font-body);
}
.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}
.hub-card {
  background: var(--bg-surface);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.hub-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.hub-video {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.hub-content { padding: 2rem; }
.hub-title {
  font-family: var(--font-heading);
  color: var(--accent-gold-light);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.cases-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.case-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  transition: transform 0.4s ease;
  height: 400px;
}
.case-card:hover { transform: translateY(-10px); }
.case-card img, .case-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.case-card:hover img, .case-card:hover video { transform: scale(1.05); }
.case-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: white;
  text-align: right;
}
[dir="ltr"] .case-info { text-align: left; }
.case-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--accent-gold-light);
}
.case-service {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}
.team-member { text-align: center; }
.team-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.team-member:hover .team-img {
  filter: grayscale(0%);
  transform: translateY(-10px);
}
.team-name {
  font-family: var(--font-heading);
  color: var(--accent-gold-light);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.team-role {
  color: var(--text-secondary);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 600px) {
  .services-hub-grid { grid-template-columns: 1fr; }
}

/* V2 Dynamic WordPress Archives & Mobile Polish */
.archive-hero {
  min-height: 46vh;
  padding-top: 10rem;
}
.archive-section { padding-top: 2rem; }
.dynamic-archive-grid { align-items: stretch; }
.archive-card { height: 100%; }
.archive-card-media {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--bg-surface);
}
.archive-card-link {
  display: inline-flex;
  margin-top: 1.5rem;
  color: var(--accent-gold-light);
  font-family: var(--font-heading);
}
.empty-state {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}
.empty-state h2 { color: var(--accent-gold-light); margin-bottom: 1rem; }
.empty-state p { color: var(--text-secondary); line-height: 1.8; }
.single-hero {
  min-height: 56vh;
  padding-top: 10rem;
}
.single-hero-content { max-width: 980px; }
.breadcrumb-link {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: var(--accent-gold-light);
  border: 1px solid rgba(214,198,180,0.4);
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: .9rem;
}
.single-lead { max-width: 920px; }
.single-grid { align-items: start; }
.single-media { height: auto; min-height: 420px; }
.single-media-box {
  width: 100% !important;
  height: 420px !important;
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  border-radius: 24px;
}
.single-media-box img,
.single-media-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wp-content p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.wp-content h2,
.wp-content h3,
.wp-content h4 {
  color: var(--accent-gold-light);
  margin: 2rem 0 1rem;
}
.highlight-section {
  background: var(--bg-surface);
}
.section-title-gold {
  font-family: var(--font-heading);
  color: var(--accent-gold-light);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.section-title-gold.small-title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  text-align: start;
}
.section-title-main {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 2rem;
}
.cta-section { padding-top: 2rem; }
.cta-text {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}
.single-case-service {
  color: var(--accent-gold-light);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0;
}
.single-stats-section {
  padding-block: 4rem;
  margin-top: 0;
  background: var(--bg-surface);
}
.case-stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: none;
  padding-block: 0;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}
.check-list li {
  position: relative;
  margin-bottom: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-inline-start: 1.8rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  color: var(--accent-gold-light);
  font-weight: 700;
}
.menu-contact-link {
  color: var(--accent-gold-light) !important;
  margin-top: 2rem;
}
.custom-logo { max-height: 58px; width: auto; }

@media (max-width: 1024px) {
  .container { max-width: 100%; padding-inline: 1.5rem; }
  .services-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
  .cases-masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
  .service-grid { gap: 2.5rem; }
}

@media (max-width: 900px) {
  .main-header {
    padding-block: .85rem;
    background: rgba(18, 18, 18, 0.72);
  }
  [data-theme="light"] .main-header {
    background: rgba(248, 245, 240, 0.82);
  }
  .header-inner { min-height: 52px; }
  .header-controls { gap: .55rem; }
  .icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
  }
  .hero { min-height: 72vh; padding-top: 7rem; }
  .archive-hero, .single-hero { min-height: 44vh; padding-top: 7.5rem; }
  .hero-title { line-height: 1.15; margin-bottom: 1.25rem; }
  .section-lead { font-size: 1.18rem; }
  .service-grid,
  .footer-grid,
  .stats-grid,
  .case-stats-grid,
  .timeline-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .service-images,
  .single-media {
    height: auto;
    min-height: 0;
    display: grid;
    gap: 1rem;
  }
  .service-images .img-box,
  .img-box.horizontal,
  .img-box.vertical,
  .img-box.square,
  .img-box.tall {
    width: 100% !important;
    height: 280px !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 !important;
  }
  .single-media-box { height: 320px !important; }
  .stats-grid {
    padding-block: 2.5rem;
    gap: 1.5rem;
  }
  .footer-grid { text-align: center; }
  .footer-contact li { justify-content: center; text-align: start; }
  .footer-form .input-group { flex-direction: column; gap: 0; }
  .main-footer { padding-block: 3.5rem; margin-top: 2rem; }
}

@media (max-width: 720px) {
  .container { padding-inline: 1rem; }
  .services-hub-grid,
  .cases-masonry,
  .clients-grid,
  .cases-grid,
  .timeline-grid,
  .team-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
  }
  .hub-video,
  .archive-card-media { height: 235px; }
  .hub-content { padding: 1.35rem; }
  .hub-title,
  .case-title { font-size: 1.45rem; }
  .case-card { height: 330px; }
  .case-info { padding: 1.35rem; }
  .section { padding-block: 3.2rem; }
  .timeline-step { padding: 1.5rem; }
  .empty-state { padding: 2rem 1rem; }
  .wp-content p { font-size: 1.04rem; }
  .section-title-gold.small-title { text-align: center; }
  .breadcrumb-link { margin-bottom: 1rem; }
  .menu-inner { width: 100%; padding-inline: 1rem; gap: 1.25rem; }
  .menu-link { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .footer-brand > div { width: 110px !important; height: 110px !important; }
}

@media (max-width: 480px) {
  html { font-size: 13.5px; }
  .main-header { padding-block: .65rem; }
  .logo svg { width: 52px; height: 34px; }
  .custom-logo { max-height: 46px; }
  .icon-btn { width: 34px; height: 34px; }
  #lang-toggle { font-size: .78rem; }
  .hero { min-height: 64vh; }
  .archive-hero, .single-hero { min-height: 40vh; }
  .hero-title { letter-spacing: 0; }
  .service-images .img-box,
  .img-box.horizontal,
  .img-box.vertical,
  .img-box.square,
  .img-box.tall { height: 235px !important; }
  .single-media-box { height: 260px !important; }
  .case-card { height: 285px; }
  .stat-item h3 { font-size: 2.15rem; }
  .footer-form { padding: 0; }
  .footer-contact li { gap: .6rem; }
}



*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: initial;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: background-color var(--transition-slow), color var(--transition-slow);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.text-center { text-align: center; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--accent-gold-light);
  border-radius: 50px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
  cursor: pointer;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--accent-gold-light);
  color: var(--bg-color);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--accent-gold-dark);
  border-radius: 50px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--accent-gold-dark);
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 1.5rem;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.desktop-nav {
  display: flex;
  gap: 2rem;
}

.desktop-nav a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, var(--accent-gold-dark) 0%, transparent 60%);
  opacity: 0.2;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Section */
.section {
  padding-block: 6rem;
}

.section-lead {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  max-width: 800px;
  margin-inline: auto;
  line-height: 1.6;
  font-family: var(--font-heading);
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-block.reverse .service-grid {
  /* LTR and RTL handle reverse differently. Grid auto handles source order, but we can flex-direction if needed */
}

[dir="ltr"] .service-block.reverse .service-grid {
  grid-template-columns: 1.2fr 0.8fr;
}
[dir="rtl"] .service-block.reverse .service-grid {
  grid-template-columns: 0.8fr 1.2fr;
}


.service-desc {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

.service-images {
  position: relative;
  height: 500px;
}

.img-box {
  background: var(--bg-surface);
  border-radius: 20px;
  position: absolute;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.img-box.vertical {
  width: 200px;
  height: 350px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.img-box.horizontal {
  width: 250px;
  height: 300px;
  right: 0;
  top: 20%;
}

.img-box.square {
  width: 250px;
  height: 250px;
  left: 20%;
  top: 10%;
}

.img-box.tall {
  width: 200px;
  height: 400px;
  right: 10%;
  top: 50%;
  transform: translateY(-30%);
}

[dir="rtl"] .img-box.vertical { left: auto; right: 0; }
[dir="rtl"] .img-box.horizontal { right: auto; left: 0; }
[dir="rtl"] .img-box.square { left: auto; right: 20%; }
[dir="rtl"] .img-box.tall { right: auto; left: 10%; }


/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  border-block: 1px solid rgba(255, 255, 255, 0.05);
  padding-block: 4rem;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--accent-gold-light);
  margin-bottom: 0.5rem;
}

.stat-item p {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Footer */
.main-footer {
  background: var(--bg-surface);
  padding-block: 5rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 4rem;
}

.footer-form p {
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.footer-form input {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  margin-bottom: 1rem;
  border-radius: 5px;
  font-family: var(--font-body);
}

.footer-form .input-group {
  display: flex;
  gap: 1rem;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--accent-gold-dark);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.footer-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand p {
  margin-top: 2rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-contact h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-contact ul {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Animations */
@keyframes pulseGlow {
  0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(214, 198, 180, 0.1)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(214, 198, 180, 0.3)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(214, 198, 180, 0.1)); }
}

.alive-logo {
  animation: pulseGlow 4s infinite ease-in-out;
  display: inline-block;
}

.alive-bg {
  animation: pulseGlow 8s infinite alternate;
}

/* Dynamic Fluid Shape (The Identity) */
.fluid-shape {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--accent-gold-dark), var(--accent-gold-light), #3a2823);
  background-size: 400% 400%;
  animation: fluidMorph 8s ease-in-out infinite alternate, gradientMove 10s ease infinite;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
  opacity: 0.8;
  mix-blend-mode: screen;
}

[data-theme="light"] .fluid-shape {
  mix-blend-mode: multiply;
  opacity: 0.6;
}

@keyframes fluidMorph {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: rotate(0deg) scale(1); }
  34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; transform: rotate(5deg) scale(1.05); }
  67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; transform: rotate(-5deg) scale(0.95); }
  100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: rotate(0deg) scale(1); }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Fullscreen Menu */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-color);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.fullscreen-menu.active {
  opacity: 1;
  pointer-events: all;
}

.menu-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.menu-link {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--text-primary);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  opacity: 0; /* JS will animate */
}

.menu-link:hover {
  color: var(--accent-gold-light);
  transform: scale(1.05);
}

.img-box video {

  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Accordion */
.accordion {
  margin-top: 2rem;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.5rem;
  cursor: pointer;
}

.accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent-gold-light);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-top: 0;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  margin-top: 1rem;
}

/* Clients & Cases Grids */
.clients-grid, .cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.client-box, .case-box {
  background: var(--bg-surface);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-fast);
}

.client-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  padding: 2rem;
  filter: grayscale(100%);
  opacity: 0.7;
}

.client-box:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-5px);
}

.case-box {
  height: 350px;
}

.case-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.case-box:hover img {
  transform: scale(1.05);
}

.case-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: white;
}

.case-overlay h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  color: var(--accent-gold-light);
}

/* Timeline */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.timeline-step {
  background: var(--bg-surface);
  padding: 2.5rem;
  border-radius: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-5px);
}

.timeline-step h3 {
  font-family: var(--font-heading);
  color: var(--accent-gold-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.timeline-step p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  html {
    font-size: 14px;
  }

  .service-grid, .footer-grid, .stats-grid, .timeline-grid, .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .desktop-nav {
    display: none;
  }

  .reverse .service-grid {
    display: flex;
    flex-direction: column;
  }

  .service-images {
    flex-direction: column;
    height: 400px;
  }

  .img-box.horizontal, .img-box.vertical, .img-box.square, .img-box.tall {
    width: 100%;
    height: 300px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .section {
    padding-block: 4rem;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 1rem;
  }

  .menu-link {
    font-size: 2rem;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }
  
  .footer-form {
    padding: 2rem;
  }
}

/* -------------------------------------------------- */
/* PREMIUM ADDITIONS v2                              */
/* -------------------------------------------------- */

/* HEADER SCROLLED */
.main-header.scrolled { padding-block: 0.8rem; background: rgba(26,22,21,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(214,198,180,0.15); }
[data-theme='light'] .main-header.scrolled { background: rgba(245,242,235,0.92); }

/* GRADIENT TEXT */
.gradient-text { background: linear-gradient(135deg, var(--accent-gold-light) 0%, #f0d9b5 50%, var(--accent-gold-dark) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* MARQUEE */
.marquee-section { padding-block: 3rem; overflow: hidden; border-block: 1px solid rgba(255,255,255,0.06); }
.marquee-wrapper { display: flex; overflow: hidden; user-select: none; }
.marquee-track { display: flex; align-items: center; gap: 4rem; white-space: nowrap; flex-shrink: 0; min-width: 100%; }
.marquee-item { font-family: var(--font-heading); font-size: 1.1rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 3px; display: flex; align-items: center; gap: 1.5rem; opacity: 0.7; transition: opacity 0.3s; }
.marquee-item:hover { opacity: 1; }
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-gold-light); flex-shrink: 0; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; margin-top: 4rem; }
.testimonial-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(214,198,180,0.12); backdrop-filter: blur(10px); padding: 3rem; border-radius: 24px; transition: transform 0.4s ease, border-color 0.4s ease; position: relative; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 1.5rem; right: 2rem; font-size: 6rem; font-family: var(--font-heading); color: var(--accent-gold-light); opacity: 0.15; line-height: 1; }
.testimonial-card:hover { transform: translateY(-8px); border-color: rgba(214,198,180,0.3); }
.testimonial-text { font-size: 1.15rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1.2rem; }
.testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent-gold-light); }
.testimonial-name { font-family: var(--font-heading); color: var(--accent-gold-light); font-size: 1.1rem; display: block; margin-bottom: 0.25rem; }
.testimonial-role { color: var(--text-secondary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.stars { color: var(--accent-gold-light); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1.5rem; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; margin-top: 4rem; }
.why-card { text-align: center; padding: 3rem 2rem; background: var(--bg-surface); border-radius: 20px; transition: transform 0.4s ease, box-shadow 0.4s ease; border: 1px solid transparent; }
.why-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.3); border-color: rgba(214,198,180,0.2); }
.why-icon { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold-light)); font-size: 2rem; }
.why-title { font-family: var(--font-heading); color: var(--accent-gold-light); font-size: 1.4rem; margin-bottom: 1rem; }
.why-desc { color: var(--text-secondary); line-height: 1.7; font-size: 1rem; }

/* SECTION LABEL */
.section-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 4px; color: var(--accent-gold-light); margin-bottom: 1.5rem; display: block; }

/* MENU CLOSE */
.menu-close { position: absolute; top: 2rem; left: 2rem; background: none; border: none; cursor: pointer; color: var(--text-primary); font-size: 2rem; display: flex; align-items: center; justify-content: center; }

