:root {
      --purple: #7c2d8a;
      --purple-dark: #5a1f66;
      --orange: #f59e0b;
      --orange-dark: #d97706;
      --gradient: linear-gradient(90deg, #c026d3 0%, #f59e0b 100%);
      --dark: #1a0a1f;
      --text: #1f2937;
      --muted: #6b7280;
      --light: #f8f5f0;
      --white: #ffffff;
      --card-shadow: 0 10px 40px rgba(0,0,0,0.08);
      --radius: 16px;
      --radius-sm: 10px;
      --radius-full: 9999px;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ============================================================
       Motion system — page-load entrance + scroll-reveal
       ============================================================ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes popIn {
      from { opacity: 0; transform: scale(0.92); }
      to   { opacity: 1; transform: scale(1); }
    }
    @media (prefers-reduced-motion: reduce) {
      * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    }
    /* Scroll-triggered reveal (JS toggles .is-visible via IntersectionObserver) */
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
      opacity: 0; transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform;
    }
    .reveal { transform: translateY(32px); }
    .reveal-left { transform: translateX(-40px); }
    .reveal-right { transform: translateX(40px); }
    .reveal-scale { transform: scale(0.94); }
    .reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible, .reveal-scale.is-visible {
      opacity: 1; transform: translate(0, 0) scale(1);
    }
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 1rem 0; transition: all 0.3s ease;
    }
    .navbar.scrolled {
      background: rgba(26, 10, 31, 0.95);
      backdrop-filter: blur(12px);
      padding: 0.75rem 0;
      box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    }
    .nav-container {
      max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
      display: flex; align-items: center; justify-content: space-between;
    }
    .logo { display: flex; align-items: center; gap: 0.75rem; }
    .logo img { height: 42px; width: auto; }
    .logo-text {
      font-weight: 700; font-size: 0.95rem; color: white; line-height: 1.2;
    }
    .logo-text span { display: block; font-size: 0.7rem; font-weight: 500; opacity: 0.85; }
    .nav-links {
      display: flex; align-items: center; gap: 2rem; list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,0.9); font-weight: 500; font-size: 0.9rem;
      letter-spacing: 0.03em; position: relative; transition: color 0.2s;
    }
    .nav-links a:hover, .nav-links a.active { color: white; }
    .nav-links a.active::after {
      content: ''; position: absolute; bottom: -6px; left: 0;
      width: 100%; height: 2px; background: var(--orange); border-radius: 2px;
    }
    .btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.75rem 1.5rem; border-radius: var(--radius-full);
      font-weight: 600; font-size: 0.875rem; transition: all 0.25s ease;
      border: none; cursor: pointer; white-space: nowrap;
    }
    .btn-primary {
      background: var(--gradient); color: white;
      box-shadow: 0 4px 15px rgba(192, 38, 211, 0.3);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(192, 38, 211, 0.4);
    }
    .btn-outline {
      background: transparent; color: white;
      border: 1.5px solid rgba(255,255,255,0.4);
    }
    .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
    .btn-white { background: white; color: var(--purple-dark); }
    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .btn-dark {
      background: transparent; color: var(--text);
      border: 1.5px solid #d1d5db;
    }
    .btn-dark:hover { border-color: var(--purple); color: var(--purple); }
    .mobile-toggle {
      display: none; background: none; border: none;
      color: white; font-size: 1.5rem; cursor: pointer;
    }
    .hero {
      position: relative; min-height: 100vh;
      display: flex; flex-direction: column; justify-content: center;
      background: var(--dark); overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('assets/hero-crane.jpg') center/cover no-repeat;
      opacity: 0.45;
      animation: heroZoom 16s ease-out forwards;
    }
    @keyframes heroZoom {
      from { transform: scale(1.12); }
      to   { transform: scale(1); }
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(26,10,31,0.85) 0%, rgba(90,31,102,0.7) 50%, rgba(26,10,31,0.6) 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 1280px; margin: 0 auto;
      padding: 8rem 1.5rem 4rem; width: 100%;
    }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: var(--orange); font-weight: 600; font-size: 0.85rem;
      letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem;
      opacity: 0; animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
    }
    .hero-tag::before {
      content: ''; width: 28px; height: 2px; background: var(--orange);
    }
    .hero h1 {
      font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 800;
      line-height: 1.05; color: white; margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }
    .hero h1 span {
      display: inline-block; opacity: 0;
      animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .hero h1 span:nth-of-type(1) { animation-delay: 0.28s; }
    .hero h1 span:nth-of-type(2) { animation-delay: 0.38s; }
    .hero h1 span:nth-of-type(3) { animation-delay: 0.48s; }
    .hero h1 span:nth-of-type(4) { animation-delay: 0.58s; }
    .hero h1 .white { color: white; }
    .hero h1 .orange { color: var(--orange); }
    .hero-desc {
      color: rgba(255,255,255,0.8); font-size: 1.1rem;
      max-width: 480px; margin-bottom: 2rem; line-height: 1.7;
      opacity: 0; animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.68s forwards;
    }
    .hero-actions {
      display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem;
      opacity: 0; animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.78s forwards;
    }
    .hero-badges {
      display: flex; flex-wrap: wrap; gap: 2rem;
      padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15);
      opacity: 0; animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
    }
    .badge-item {
      display: flex; align-items: center; gap: 0.6rem;
      color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 500;
    }
    .badge-item svg {
      width: 22px; height: 22px; color: var(--orange); flex-shrink: 0;
    }
    .scroll-indicator {
      position: absolute; right: 2rem; bottom: 3rem;
      writing-mode: vertical-rl; color: rgba(255,255,255,0.5);
      font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      display: flex; align-items: center; gap: 0.75rem;
      opacity: 0; animation: fadeIn 1s ease 1.2s forwards, bob 2.4s ease-in-out 2.2s infinite;
    }
    .scroll-indicator::after {
      content: ''; width: 1px; height: 40px; background: rgba(255,255,255,0.3);
    }
    @keyframes bob {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(8px); }
    }
    .services-bar {
      background: var(--gradient); padding: 1rem 0; overflow: hidden;
    }
    .marquee {
      display: flex; gap: 2.5rem;
      animation: marquee 30s linear infinite; white-space: nowrap;
    }
    .marquee span {
      color: white; font-weight: 600; font-size: 0.9rem;
      letter-spacing: 0.05em; display: flex; align-items: center; gap: 2.5rem;
    }
    .marquee span::after { content: '•'; opacity: 0.6; }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    section { padding: 5rem 0; }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
    .section-tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: var(--purple); font-weight: 600; font-size: 0.8rem;
      letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem;
    }
    .section-tag::before {
      content: ''; width: 24px; height: 2px; background: var(--orange);
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800;
      color: var(--text); line-height: 1.15; margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }
    .section-desc {
      color: var(--muted); font-size: 1.05rem; max-width: 560px; line-height: 1.7;
    }
    .about { background: var(--light); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
    }
    .about-image {
      position: relative; border-radius: var(--radius);
      overflow: hidden; box-shadow: var(--card-shadow);
    }
    .about-image img {
      width: 100%; height: 100%; object-fit: cover; min-height: 420px;
    }
    .experience-badge {
      position: absolute; bottom: 1.5rem; left: 1.5rem;
      background: white; border-radius: var(--radius-sm);
      padding: 1rem 1.25rem; box-shadow: 0 8px 30px rgba(0,0,0,0.12);
      display: flex; align-items: center; gap: 0.75rem;
    }
    .experience-badge .num {
      font-size: 1.75rem; font-weight: 800; color: var(--purple); line-height: 1;
    }
    .experience-badge .label {
      font-size: 0.75rem; font-weight: 600; color: var(--muted);
      line-height: 1.3; text-transform: uppercase; letter-spacing: 0.03em;
    }
    .about-content .section-title { margin-bottom: 1.25rem; }
    .about-content p {
      color: var(--muted); margin-bottom: 1rem; line-height: 1.75;
    }
    .about-link {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: var(--purple); font-weight: 600; font-size: 0.95rem;
      margin-top: 1rem; transition: gap 0.2s;
    }
    .about-link:hover { gap: 0.75rem; }
    .stats { background: var(--light); padding-top: 0; }
    .stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
    }
    .stat-card {
      background: white; border-radius: var(--radius);
      padding: 2rem 1.5rem; text-align: center;
      box-shadow: var(--card-shadow); transition: transform 0.25s;
    }
    .stat-card:hover { transform: translateY(-4px); }
    .stat-num {
      font-size: 2.5rem; font-weight: 800;
      background: var(--gradient);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text; line-height: 1.1; margin-bottom: 0.5rem;
    }
    .stat-label {
      font-size: 0.8rem; font-weight: 600; color: var(--muted);
      text-transform: uppercase; letter-spacing: 0.04em;
    }
    .services .section-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap;
    }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem; margin-bottom: 2.5rem;
    }
    .service-card {
      background: white; border-radius: var(--radius); overflow: hidden;
      box-shadow: var(--card-shadow); transition: transform 0.3s, box-shadow 0.3s;
      border: 1px solid #f0f0f0;
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }
    .service-img {
      position: relative; height: 200px; overflow: hidden;
    }
    .service-img img {
      width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s;
    }
    .service-card:hover .service-img img { transform: scale(1.05); }
    .service-num {
      position: absolute; top: 1rem; left: 1rem;
      width: 36px; height: 36px; background: rgba(255,255,255,0.95);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 0.9rem; color: var(--purple);
    }
    .service-body { padding: 1.5rem; }
    .service-body h3 {
      font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text);
      text-transform: uppercase; letter-spacing: 0.02em;
    }
    .service-body p {
      color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.6;
    }
    .service-list { list-style: none; }
    .service-list li {
      font-size: 0.85rem; color: var(--muted); padding: 0.3rem 0;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .service-list li::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--orange); flex-shrink: 0;
    }
    .services-cta { text-align: center; }

    /* ============================================================
       Services page — alternating feature rows + "beyond" grid
       ============================================================ */
    .pill-tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--gradient); color: white;
      font-weight: 700; font-size: 0.75rem; letter-spacing: 0.06em;
      text-transform: uppercase; padding: 0.55rem 1.25rem;
      border-radius: var(--radius-full); margin-bottom: 1.5rem;
      box-shadow: 0 6px 20px rgba(124, 45, 138, 0.25);
    }
    .service-row { padding: 5.5rem 0; overflow: hidden; }
    .service-row:nth-of-type(odd) { background: var(--light); }
    .service-row:nth-of-type(even) { background: var(--white); }
    .service-row-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4.5rem; align-items: center;
    }
    .service-row-media {
      position: relative; border-radius: var(--radius);
      overflow: hidden; box-shadow: var(--card-shadow);
    }
    .service-row-media img {
      width: 100%; height: 100%; object-fit: cover; min-height: 340px;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .service-row-media:hover img { transform: scale(1.04); }
    .service-row-content .section-title {
      text-transform: uppercase;
    }
    .service-row-content > p {
      color: var(--muted); font-size: 1.02rem; line-height: 1.75; margin-bottom: 1.5rem; max-width: 520px;
    }
    .service-list-lg { list-style: none; display: grid; gap: 0.75rem; }
    .service-list-lg li {
      font-size: 0.95rem; color: var(--text); font-weight: 500;
      display: flex; align-items: center; gap: 0.75rem;
    }
    .service-list-lg li::before {
      content: ''; width: 8px; height: 8px; border-radius: 50%;
      background: var(--gradient); flex-shrink: 0;
    }

    .beyond {
      background: linear-gradient(135deg, #2d0a36 0%, #1a0a1f 60%, #3b0f4a 100%);
      color: white; position: relative; overflow: hidden;
    }
    .beyond::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 15% 10%, rgba(192,38,211,0.18), transparent 50%),
                  radial-gradient(circle at 85% 70%, rgba(245,158,11,0.12), transparent 50%);
    }
    .beyond .container { position: relative; z-index: 2; }
    .beyond-tag {
      display: inline-flex; align-items: center; gap: 0.75rem;
      color: var(--orange); font-weight: 700; font-size: 0.8rem;
      letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem;
    }
    .beyond-tag::before { content: ''; width: 28px; height: 2px; background: var(--orange); }
    .beyond-header h2 {
      font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; color: white;
      text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 0.75rem;
    }
    .beyond-header p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; }
    .beyond-header { margin-bottom: 3rem; }
    .beyond-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem;
    }
    .beyond-card {
      background: white; border-radius: var(--radius); overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,0.25); transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .beyond-card:hover { transform: translateY(-6px); }
    .beyond-media { position: relative; height: 220px; overflow: hidden; }
    .beyond-media img {
      width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
    }
    .beyond-card:hover .beyond-media img { transform: scale(1.06); }
    .beyond-badge {
      position: absolute; top: 1rem; left: 1rem;
      width: 34px; height: 34px; border-radius: 50%;
      background: rgba(26,10,31,0.85); color: white;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 0.85rem; backdrop-filter: blur(4px);
    }
    .beyond-strip { height: 4px; background: var(--gradient); }
    .beyond-body { padding: 1.75rem; }
    .beyond-body h3 {
      font-size: 1.05rem; font-weight: 700; color: var(--text);
      text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.6rem;
    }
    .beyond-body > p {
      color: var(--muted); font-size: 0.92rem; line-height: 1.65; margin-bottom: 1.1rem;
    }
    .beyond-body .service-list { display: grid; gap: 0.4rem; }
    .project-filters {
      display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem;
    }
    .filter-btn {
      padding: 0.65rem 1.25rem; border-radius: var(--radius-full);
      font-weight: 600; font-size: 0.85rem; letter-spacing: 0.02em;
      border: 1.5px solid #e5e7eb; background: white; color: var(--text);
      cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
    }
    .filter-btn:hover { border-color: var(--purple); color: var(--purple); }
    .filter-btn.active {
      background: var(--gradient); color: white; border-color: transparent;
      box-shadow: 0 4px 15px rgba(192, 38, 211, 0.3);
    }
    .project-card.hidden { display: none; }
    .contact-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1rem;
    }
    .contact-card {
      background: white; border-radius: var(--radius); padding: 2rem 1.75rem;
      box-shadow: var(--card-shadow); border: 1px solid #f0f0f0;
    }
    .contact-card .why-icon { margin-bottom: 1.25rem; }
    .contact-card h3 {
      font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text);
      text-transform: uppercase; letter-spacing: 0.02em;
    }
    .contact-card p, .contact-card a { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
    .contact-card a:hover { color: var(--purple); }
    .page-header {
      background: linear-gradient(135deg, #2d0a36 0%, #1a0a1f 100%);
      padding: 9.5rem 0 4rem; position: relative; overflow: hidden;
    }
    .page-header::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 20% 20%, rgba(192,38,211,0.15), transparent 50%),
                  radial-gradient(circle at 80% 60%, rgba(245,158,11,0.1), transparent 50%);
    }
    .page-header .container { position: relative; z-index: 2; }
    .page-header .back-link {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: rgba(255,255,255,0.6); font-weight: 600; font-size: 0.85rem;
      margin-bottom: 1.5rem; transition: color 0.2s;
    }
    .page-header .back-link:hover { color: white; }
    .page-header .section-tag { color: var(--orange); }
    .page-header .section-tag::before { background: var(--orange); }
    .page-header .section-title { color: white; margin-bottom: 0.75rem; }
    .page-header .section-desc { color: rgba(255,255,255,0.75); max-width: 620px; }
    .why-us {
      background: linear-gradient(135deg, #2d0a36 0%, #1a0a1f 100%);
      color: white;
    }
    .why-us .section-tag { color: var(--orange); }
    .why-us .section-tag::before { background: var(--orange); }
    .why-us .section-title { color: white; }
    .why-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem; margin-top: 3rem;
    }
    .why-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius); padding: 1.75rem; transition: all 0.3s;
    }
    .why-card:hover {
      background: rgba(255,255,255,0.09);
      border-color: rgba(255,255,255,0.15);
      transform: translateY(-4px);
    }
    .why-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: rgba(245, 158, 11, 0.15);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem; color: var(--orange);
    }
    .why-icon svg { width: 22px; height: 22px; }
    .why-card h3 {
      font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem;
      text-transform: uppercase; letter-spacing: 0.02em;
    }
    .why-card p {
      font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.6;
    }
    .projects .section-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 2.5rem; gap: 1.5rem; flex-wrap: wrap;
    }
    .projects-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    }
    .project-card {
      position: relative; border-radius: var(--radius);
      overflow: hidden; height: 280px; box-shadow: var(--card-shadow);
    }
    .project-card img {
      width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
    }
    .project-card:hover img { transform: scale(1.08); }
    .project-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 1.5rem;
    }
    .project-year {
      font-size: 0.75rem; color: var(--orange); font-weight: 600; margin-bottom: 0.25rem;
    }
    .project-name { color: white; font-weight: 700; font-size: 1.1rem; }
    .cta {
      background: linear-gradient(135deg, #2d0a36 0%, #1a0a1f 50%, #3b0f4a 100%);
      text-align: center; padding: 6rem 0; position: relative; overflow: hidden;
    }
    .cta::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 30% 50%, rgba(192,38,211,0.15), transparent 50%),
                  radial-gradient(circle at 70% 50%, rgba(245,158,11,0.1), transparent 50%);
    }
    .cta-content { position: relative; z-index: 2; }
    .cta .section-tag { color: var(--orange); justify-content: center; }
    .cta .section-tag::before { background: var(--orange); }
    .cta h2 {
      font-size: clamp(2rem, 5vw, 3rem); font-weight: 800;
      color: white; margin-bottom: 1rem; letter-spacing: -0.02em;
    }
    .cta p {
      color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 2rem;
      max-width: 480px; margin-left: auto; margin-right: auto;
    }
    .cta-actions {
      display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
    }
    .phone-btn {
      background: rgba(255,255,255,0.1); color: white;
      border: 1.5px solid rgba(255,255,255,0.25);
      border-radius: var(--radius-full); padding: 0.75rem 1.5rem;
      font-weight: 600; font-size: 0.9rem; transition: all 0.25s;
    }
    .phone-btn:hover {
      background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4);
    }
    footer {
      background: #120814; color: rgba(255,255,255,0.7);
      padding: 4rem 0 2rem;
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 3rem; margin-bottom: 3rem;
    }
    .footer-brand .logo { margin-bottom: 1rem; }
    .footer-brand p {
      font-size: 0.9rem; line-height: 1.7; max-width: 280px;
    }
    .footer-col h4 {
      color: white; font-size: 0.85rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.25rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 0.6rem; }
    .footer-col a { font-size: 0.9rem; transition: color 0.2s; }
    .footer-col a:hover { color: var(--orange); }
    .footer-contact li {
      font-size: 0.9rem; margin-bottom: 0.75rem; line-height: 1.5;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.5rem; display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem;
    }
    .footer-tagline { color: var(--orange); font-weight: 600; font-style: italic; }
    .footer-social {
      display: flex; gap: 0.75rem; margin-top: 1.5rem;
    }
    .footer-social a {
      display: flex; align-items: center; justify-content: center;
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
      transition: all 0.25s;
    }
    .footer-social a:hover {
      background: var(--gradient); border-color: transparent; transform: translateY(-2px);
    }
    .footer-social svg { width: 17px; height: 17px; fill: white; }
    .footer-legal { display: flex; gap: 1.5rem; }
    .footer-legal a { transition: color 0.2s; }
    .footer-legal a:hover { color: var(--orange); }
    /* ============================================================
       Legal pages — Terms & Conditions / Privacy Policy
       ============================================================ */
    .legal-content { padding: 5rem 0 6rem; }
    .legal-content .container { max-width: 860px; }
    .legal-content .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 3rem; }
    .legal-content h2 {
      font-size: 1.4rem; margin: 2.5rem 0 1rem; color: var(--dark);
    }
    .legal-content h2:first-of-type { margin-top: 0; }
    .legal-content p { margin-bottom: 1.1rem; color: var(--text); line-height: 1.75; }
    .legal-content ul { margin: 0 0 1.1rem 1.25rem; color: var(--text); line-height: 1.75; }
    .legal-content li { margin-bottom: 0.5rem; }
    .legal-content a.inline-link { color: var(--orange-dark); font-weight: 600; }
    .legal-content a.inline-link:hover { text-decoration: underline; }
    @media (max-width: 1024px) {
      .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid, .why-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .service-row-grid { gap: 3rem; }
    }
    @media (max-width: 768px) {
      .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(26, 10, 31, 0.98); flex-direction: column;
        padding: 1.5rem; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.1);
      }
      .nav-links.open { display: flex; }
      .nav-links .btn { width: 100%; justify-content: center; }
      .mobile-toggle { display: block; }
      .hero-content { padding: 7rem 1.25rem 3rem; }
      .hero h1 { font-size: 2.5rem; }
      .scroll-indicator { display: none; }
      .services-grid, .why-grid, .projects-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .service-row { padding: 3.5rem 0; }
      .service-row-grid { grid-template-columns: 1fr; }
      .service-row.reverse .service-row-grid { direction: ltr; }
      .service-row.reverse .service-row-grid .service-row-media { order: -1; }
      .beyond-grid { grid-template-columns: 1fr; }
    }
    /* ============================================================
       About page — breadcrumb, objectives, values, what-sets-us-apart
       ============================================================ */
    .uppercase-title { text-transform: uppercase; }
    .breadcrumb {
      display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    }
    .breadcrumb a { color: var(--orange); transition: color 0.2s; }
    .breadcrumb a:hover { color: white; }
    .breadcrumb .sep { color: rgba(255,255,255,0.35); }
    .breadcrumb .current { color: rgba(255,255,255,0.55); }

    .deco-lines { display: flex; flex-direction: column; gap: 6px; width: 180px; align-self: flex-end; }
    .deco-lines span { display: block; height: 3px; border-radius: 2px; }
    .deco-lines span:nth-child(1) { background: var(--gradient); width: 100%; }
    .deco-lines span:nth-child(2) { background: rgba(255,255,255,0.3); width: 80%; }
    .deco-lines span:nth-child(3) { background: var(--orange); width: 60%; }
    .apart .deco-lines span:nth-child(2) { background: var(--dark); }

    .objectives {
      background: linear-gradient(135deg, #2d0a36 0%, #1a0a1f 100%); color: white;
    }
    .objectives .section-tag { color: var(--orange); }
    .objectives .section-tag::before { background: var(--orange); }
    .objectives .section-title { color: white; }
    .objectives-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 2.5rem; gap: 1.5rem; flex-wrap: wrap;
    }
    .objectives-list {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius); overflow: hidden;
    }
    .objective-item {
      display: flex; gap: 1.5rem; align-items: flex-start;
      padding: 1.5rem 1.75rem; border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .objective-item:last-child { border-bottom: none; }
    .objective-num { font-size: 1.15rem; font-weight: 800; color: var(--orange); flex-shrink: 0; width: 2.25rem; }
    .objective-text { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.65; }

    .values-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
    }
    .value-card {
      background: white; border: 1px solid #f0f0f0; border-radius: var(--radius);
      padding: 2rem 1.75rem; box-shadow: var(--card-shadow); transition: transform 0.25s;
    }
    .value-card:hover { transform: translateY(-4px); }
    .value-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: rgba(192, 38, 211, 0.08); color: var(--purple);
      display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
    }
    .value-icon svg { width: 22px; height: 22px; }
    .value-card h3 {
      font-size: 1rem; font-weight: 800; margin-bottom: 0.6rem; color: var(--purple-dark);
      text-transform: uppercase; letter-spacing: 0.02em;
    }
    .value-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
    .value-card.quote {
      background: var(--gradient); color: white; display: flex; flex-direction: column; justify-content: center;
    }
    .value-card.quote h3 { color: white; font-size: 1.15rem; text-transform: none; margin-bottom: 0.75rem; }
    .value-card.quote p { color: rgba(255,255,255,0.9); }

    .apart { background: var(--light); }
    .apart-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem;
    }
    .apart-card {
      background: white; border-radius: var(--radius); padding: 2rem;
      box-shadow: var(--card-shadow);
    }
    .apart-card h3 {
      color: var(--purple-dark); font-weight: 800; font-size: 1rem;
      text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.6rem;
    }
    .apart-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

    @media (max-width: 1024px) {
      .values-grid { grid-template-columns: repeat(2, 1fr); }
      .apart-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .values-grid { grid-template-columns: 1fr; }
      .objective-item { gap: 1rem; padding: 1.25rem; }
      .deco-lines { display: none; }
    }

    /* ============================================================
       Contact page — info block, quote form, live map
       ============================================================ */
    .contact-layout {
      display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; align-items: start;
    }
    .info-block {
      background: white; border-radius: var(--radius); box-shadow: var(--card-shadow);
      overflow: hidden; border: 1px solid #f0f0f0; margin-top: 2rem;
    }
    .info-row {
      display: flex; gap: 1.1rem; align-items: flex-start;
      padding: 1.5rem 1.75rem; border-bottom: 1px solid #f0f0f0;
    }
    .info-row:last-child { border-bottom: none; }
    .info-icon {
      width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); color: white;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .info-icon svg { width: 20px; height: 20px; }
    .info-row h4 {
      font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.4rem;
    }
    .info-row p, .info-row a { font-size: 0.95rem; color: var(--text); line-height: 1.55; }
    .info-row a:hover { color: var(--purple); }

    .quote-form {
      background: white; border-radius: var(--radius); box-shadow: var(--card-shadow);
      padding: 2.5rem; border: 1px solid #f0f0f0;
    }
    .quote-form h3 {
      font-size: 1.3rem; font-weight: 800; margin-bottom: 1.75rem;
      color: var(--text); text-transform: uppercase; letter-spacing: -0.01em;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
    .form-field label {
      display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.05em; color: var(--muted); margin-bottom: 0.5rem;
    }
    .form-field { margin-bottom: 1.25rem; }
    .form-field input, .form-field select, .form-field textarea {
      width: 100%; padding: 0.75rem 1rem; border: 1.5px solid #e5e7eb; border-radius: var(--radius-sm);
      font-family: inherit; font-size: 0.9rem; color: var(--text); background: var(--light);
      transition: border-color 0.2s;
    }
    .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
      outline: none; border-color: var(--purple);
    }
    .form-field textarea { resize: vertical; min-height: 110px; }
    .form-note { font-size: 0.8rem; color: var(--muted); margin-top: 1.25rem; line-height: 1.6; }
    .form-note a { color: var(--purple); font-weight: 600; }

    .map-section { background: var(--light); }
    .map-frame {
      border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow);
      margin-top: 2.5rem; border: 1px solid #eee;
    }
    .map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

    @media (max-width: 1024px) {
      .contact-layout { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .form-row { grid-template-columns: 1fr; }
      .map-frame iframe { height: 300px; }
    }

    @media (max-width: 480px) {
      .stats-grid { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { width: 100%; justify-content: center; }
    }

    /* ============================================================
       Media page — News / Gallery tabs
       ============================================================ */
    .media-tabs {
      display: flex; gap: 0.75rem; margin-bottom: 2.5rem; flex-wrap: wrap;
    }
    .media-tab-btn {
      padding: 0.75rem 1.75rem; border-radius: var(--radius-full);
      font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em;
      border: 1.5px solid #e5e7eb; background: white; color: var(--text);
      cursor: pointer; transition: all 0.2s ease;
    }
    .media-tab-btn:hover { border-color: var(--purple); color: var(--purple); }
    .media-tab-btn.active {
      background: var(--gradient); color: white; border-color: transparent;
      box-shadow: 0 4px 15px rgba(192, 38, 211, 0.3);
    }
    .media-panel[hidden] { display: none; }
    .gallery-subtitle-tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: var(--purple); font-weight: 600; font-size: 0.8rem;
      letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem;
    }
    .gallery-subtitle-tag::before {
      content: ''; width: 24px; height: 2px; background: var(--orange);
    }
    .news-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    }
    .news-card {
      background: white; border-radius: var(--radius); padding: 1.75rem;
      box-shadow: var(--card-shadow); border: 1px solid #f0f0f0;
    }
    .news-date {
      display: inline-block; color: var(--orange-dark); font-weight: 700;
      font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase;
      margin-bottom: 0.75rem;
    }
    .news-title {
      font-size: 1.05rem; font-weight: 700; color: var(--text);
      line-height: 1.35; margin-bottom: 0.75rem;
    }
    .news-excerpt {
      color: var(--muted); font-size: 0.92rem; line-height: 1.65;
    }
    @media (max-width: 900px) {
      .news-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .news-grid { grid-template-columns: 1fr; }
    }

    /* ============================================================
       Media page — Documents tab
       ============================================================ */
    .docs-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
    }
    .doc-card {
      display: flex; align-items: center; gap: 1rem;
      background: white; border-radius: var(--radius); padding: 1.25rem 1.5rem;
      box-shadow: var(--card-shadow); border: 1px solid #f0f0f0;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .doc-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,0,0,0.1); }
    .doc-icon {
      flex-shrink: 0; width: 48px; height: 48px; border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
      background: var(--light); color: var(--purple);
    }
    .doc-info { flex: 1; min-width: 0; }
    .doc-title { font-weight: 700; font-size: 0.98rem; color: var(--text); }
    .doc-desc { color: var(--muted); font-size: 0.85rem; margin-top: 0.2rem; }
    .doc-download {
      flex-shrink: 0; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.05em;
      color: var(--orange-dark);
    }
    .docs-empty { color: var(--muted); font-size: 0.95rem; }
    @media (max-width: 640px) {
      .docs-grid { grid-template-columns: 1fr; }
    }

    /* ============================================================
       Preloader — 4-line brand flash + logo reveal (on page load)
       ============================================================ */
    html.preload-active, html.preload-active body { overflow: hidden; height: 100%; }

    #preloader {
      position: fixed; inset: 0; z-index: 9999;
      display: flex; align-items: center; justify-content: center;
      background: var(--dark);
      overflow: hidden;
    }
    #preloader.preloader-hide {
      animation: preloaderFadeOut 0.5s ease forwards;
      pointer-events: none;
    }
    #preloader[hidden] { display: none; }

    .preloader-line {
      position: absolute;
      background: var(--orange);
      opacity: 0;
      transform: scale(0);
    }
    /* Top & bottom lines are horizontal, left & right are vertical —
       together they read as 4 straight lines converging on the mark. */
    .preloader-line--top,
    .preloader-line--bottom {
      left: 50%; height: 3px; width: 46vw; max-width: 560px;
      transform: translateX(-50%) scaleX(0);
      transform-origin: center;
    }
    .preloader-line--left,
    .preloader-line--right {
      top: 50%; width: 3px; height: 46vw; max-height: 560px;
      transform: translateY(-50%) scaleY(0);
      transform-origin: center;
    }
    .preloader-line--top { top: 18%; background: var(--orange); }
    .preloader-line--right { right: 18%; background: var(--purple); }
    .preloader-line--bottom { bottom: 18%; background: var(--purple); }
    .preloader-line--left { left: 18%; background: var(--orange); }

    .preloader-active .preloader-line--top {
      animation: lineFlashX 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .preloader-active .preloader-line--bottom {
      animation: lineFlashX 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
    }
    .preloader-active .preloader-line--left {
      animation: lineFlashY 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
    }
    .preloader-active .preloader-line--right {
      animation: lineFlashY 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.24s forwards;
    }

    .preloader-mark {
      position: relative; width: 84px; height: 84px;
      opacity: 0; transform: scale(0.4);
      filter: drop-shadow(0 0 0 rgba(255,255,255,0));
    }
    .preloader-active .preloader-mark {
      animation: markFlashIn 0.5s ease-out 0.45s forwards;
    }

    @keyframes lineFlashX {
      0%   { opacity: 0; transform: translateX(-50%) scaleX(0); }
      12%  { opacity: 1; }
      55%  { opacity: 0.9; transform: translateX(-50%) scaleX(1); }
      100% { opacity: 0; transform: translateX(-50%) scaleX(1); }
    }
    @keyframes lineFlashY {
      0%   { opacity: 0; transform: translateY(-50%) scaleY(0); }
      12%  { opacity: 1; }
      55%  { opacity: 0.9; transform: translateY(-50%) scaleY(1); }
      100% { opacity: 0; transform: translateY(-50%) scaleY(1); }
    }
    @keyframes markFlashIn {
      0%   { opacity: 0; transform: scale(0.4); filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
      30%  { opacity: 1; transform: scale(1.15); filter: drop-shadow(0 0 22px rgba(255,255,255,0.85)); }
      60%  { opacity: 1; transform: scale(0.95); filter: drop-shadow(0 0 6px rgba(255,255,255,0.25)); }
      100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
    }
    @keyframes preloaderFadeOut {
      from { opacity: 1; }
      to   { opacity: 0; }
    }

    @media (prefers-reduced-motion: reduce) {
      .preloader-line, .preloader-mark { animation: none !important; opacity: 0 !important; }
      #preloader { animation: none !important; }
    }
