:root {
    --gold: #C9A84C;
    --gold-light: #F0C860;
    --gold-dim: #8B6914;
    --navy: #0A1628;
    --navy-mid: #0D1F3C;
    --navy-light: #152847;
    --blue-steel: #1E3A5F;
    --steel: #2A4A7F;
    --silver: #A8B8CC;
    --silver-light: #D4E0EC;
    --white: #F0F4F8;
    --text-muted: #6B8099;
    --emerald: #1A6B4A;
    --emerald-light: #2E9E6E;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
  }

  /* ─── CURSOR ─── */
  /* * { cursor: none; }
  #cursor {
    position: fixed; width: 12px; height: 12px;
    background: var(--gold); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: screen;
  }
  #cursor-ring {
    position: fixed; width: 40px; height: 40px;
    border: 1px solid rgba(201,168,76,0.5); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: all 0.15s ease-out;
  } */

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 1.2rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, rgba(10,22,40,0.98), transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    transition: all 0.4s;
  }
  nav.scrolled {
    background: rgba(10,22,40,0.98);
    border-bottom: 1px solid rgba(201,168,76,0.25);
    box-shadow: 0 4px 40px rgba(0,0,0,0.5);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .nav-logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 900; font-size: 1rem;
    color: var(--navy);
    box-shadow: 0 0 20px rgba(201,168,76,0.3);
  }
  .nav-logo-text { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--gold); letter-spacing: 0.1em; }
  .nav-logo-sub { font-size: 0.55rem; color: var(--silver); letter-spacing: 0.2em; display: block; }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--silver-light);
    font-size: 0.8rem; letter-spacing: 0.15em;
    text-transform: uppercase; font-weight: 500;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px;
    background: var(--gold); transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width:100%; }

  .nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--navy) !important;
    padding: 0.6rem 1.6rem; border-radius: 2px;
    font-weight: 700; letter-spacing: 0.1em;
    font-size: 0.75rem;
    transition: all 0.3s !important;
    box-shadow: 0 0 20px rgba(201,168,76,0.25);
  }
  .nav-cta:hover { box-shadow: 0 0 40px rgba(201,168,76,0.5) !important; transform: translateY(-1px); }
  .nav-cta::after { display: none !important; }

  /* ─── HERO ─── */
  #home {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding: 8rem 4rem 4rem;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 40%, rgba(30,58,95,0.4) 0%, transparent 70%),
      radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 60%),
      linear-gradient(135deg, #060E1A 0%, #0A1628 40%, #0D1F3C 100%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  }
  .hero-circuit {
    position: absolute; right: 5%; top: 20%;
    width: 300px; height: 300px; opacity: 0.07;
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); border: 1px solid rgba(201,168,76,0.3);
    padding: 0.4rem 1rem; border-radius: 2px;
    margin-bottom: 1.5rem;
    background: rgba(201,168,76,0.05);
    animation: fadeUp 1s ease both;
  }
  .hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }

  .hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900; line-height: 1.05;
    margin-bottom: 0.5rem;
    animation: fadeUp 1s 0.2s ease both;
  }
  .hero-title .gold { color: var(--gold); }
  .hero-title .line2 {
    display: block;
    background: linear-gradient(135deg, var(--silver-light), var(--silver));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-style: italic;
    color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp 1s 0.3s ease both;
  }
  .hero-desc {
    color: var(--silver); font-size: 1rem; line-height: 1.8; font-weight: 300;
    margin-bottom: 2.5rem; max-width: 480px;
    animation: fadeUp 1s 0.4s ease both;
  }
  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 1s 0.5s ease both;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--navy); padding: 1rem 2.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; border: none; border-radius: 2px;
    text-decoration: none; display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 30px rgba(201,168,76,0.3);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(201,168,76,0.5); }
  .btn-secondary {
    border: 1px solid rgba(201,168,76,0.4); color: var(--gold);
    padding: 1rem 2.5rem; font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; border-radius: 2px;
    text-decoration: none; display: inline-block;
    background: transparent; transition: all 0.3s;
  }
  .btn-secondary:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

  .hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    margin-top: 3rem;
    animation: fadeUp 1s 0.6s ease both;
  }
  .stat-item { border-left: 2px solid rgba(201,168,76,0.3); padding-left: 1rem; }
  .stat-num { font-family: 'Cinzel', serif; font-size: 2rem; color: var(--gold); line-height: 1; }
  .stat-label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.3rem; }

  .hero-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
    animation: fadeIn 1.5s 0.5s ease both;
  }
  .hero-logo-wrap {
    width: 320px; height: 320px;
    background: radial-gradient(ellipse at center, rgba(30,58,95,0.6), rgba(10,22,40,0.8));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    box-shadow:
      0 0 60px rgba(201,168,76,0.1),
      0 0 120px rgba(30,58,95,0.3),
      inset 0 0 60px rgba(10,22,40,0.5);
  }
  .hero-logo-wrap::before {
    content: ''; position: absolute; inset: -2px;
    border-radius: 50%; padding: 2px;
    background: conic-gradient(from 0deg, var(--gold), transparent 30%, var(--gold) 60%, transparent 90%, var(--gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    animation: spin 8s linear infinite;
  }
  .hero-logo-inner img {
    width: 200px; filter: drop-shadow(0 0 30px rgba(201,168,76,0.5));
  }
  .hero-orbit {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.15);
    animation: spin 15s linear infinite;
  }
  .hero-orbit-1 { width: 380px; height: 380px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
  .hero-orbit-2 { width: 440px; height: 440px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-direction: reverse; animation-duration: 20s; border-color: rgba(30,58,95,0.3); }

  .orbit-dot {
    position: absolute; width: 8px; height: 8px;
    background: var(--gold); border-radius: 50%;
    top: -4px; left: 50%; transform: translateX(-50%);
    box-shadow: 0 0 10px var(--gold);
  }

  /* ─── SECTION COMMONS ─── */
  section { padding: 7rem 4rem; }
  .section-header { text-align: center; margin-bottom: 4rem; }
  .section-tag {
    display: inline-block; font-size: 0.7rem; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1rem;
    padding: 0.3rem 1rem; border: 1px solid rgba(201,168,76,0.3);
    border-radius: 2px;
  }
  .section-title {
    font-family: 'Cinzel', serif; font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700; line-height: 1.2; color: var(--white);
  }
  .section-title span { color: var(--gold); }
  .section-line {
    width: 60px; height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 1.5rem auto 0; display: block;
  }
  .section-desc { margin-top: 1rem; color: var(--silver); max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.8; }
  .max-w { max-width: 1200px; margin: 0 auto; }

  /* ─── MARQUEE ─── */
  .marquee-wrap {
    background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(30,58,95,0.2));
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 1.2rem 0; overflow: hidden;
  }
  .marquee { display: flex; gap: 3rem; animation: marquee 30s linear infinite; white-space: nowrap; }
  .marquee-item {
    display: flex; align-items: center; gap: 1rem;
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); font-family: 'Rajdhani', sans-serif; font-weight: 500;
    flex-shrink: 0;
  }
  .marquee-sep { color: rgba(201,168,76,0.4); font-size: 1.2rem; }

  /* ─── ABOUT ─── */
  #about { background: var(--navy); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-card-main {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px; padding: 3rem;
    position: relative; overflow: hidden;
  }
  .about-card-main::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-dim), transparent);
  }
  .about-accent {
    position: absolute; bottom: -30px; right: -30px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(201,168,76,0.15), transparent);
    border-radius: 50%;
  }
  .about-card-float {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--navy); padding: 1.5rem 2rem; border-radius: 4px;
    box-shadow: 0 10px 40px rgba(201,168,76,0.3);
  }
  .about-card-float .num { font-family: 'Cinzel', serif; font-size: 2.5rem; font-weight: 900; line-height: 1; }
  .about-card-float .lbl { font-size: 0.7rem; letter-spacing: 0.15em; font-weight: 600; opacity: 0.8; }

  .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
  .about-feat {
    display: flex; align-items: flex-start; gap: 0.8rem; padding: 1rem;
    border: 1px solid rgba(201,168,76,0.1);
    background: rgba(201,168,76,0.02); border-radius: 4px;
    transition: all 0.3s;
  }
  .about-feat:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.05); }
  .feat-icon { font-size: 1.3rem; flex-shrink: 0; }
  .feat-title { font-size: 0.85rem; font-weight: 700; color: var(--gold); margin-bottom: 0.2rem; }
  .feat-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }

  .about-text .section-header { text-align: left; }
  .about-text .section-line { margin-left: 0; }
  .about-body { color: var(--silver); line-height: 1.9; font-size: 0.95rem; margin-top: 1.5rem; }
  .about-pillars { display: flex; gap: 2rem; margin-top: 2rem; }
  .pillar { text-align: center; }
  .pillar-icon {
    width: 48px; height: 48px;
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin: 0 auto 0.5rem;
  }
  .pillar-name { font-size: 0.75rem; letter-spacing: 0.15em; color: var(--gold); font-weight: 600; }

  /* ─── SERVICES ─── */
  #services { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .service-card {
    background: linear-gradient(145deg, var(--navy-light), var(--navy-mid));
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 4px; padding: 2.5rem 2rem;
    position: relative; overflow: hidden;
    transition: all 0.4s;
    group: true;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity 0.4s;
  }
  .service-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(201,168,76,0.05); }
  .service-card:hover::before { opacity: 1; }
  .service-num {
    position: absolute; top: 1.5rem; right: 1.5rem;
    font-family: 'Cinzel', serif; font-size: 2.5rem; font-weight: 900;
    color: rgba(201,168,76,0.06);
  }
  .service-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(30,58,95,0.3));
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 1.5rem;
    transition: all 0.4s;
  }
  .service-card:hover .service-icon { background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(30,58,95,0.4)); box-shadow: 0 0 20px rgba(201,168,76,0.2); }
  .service-title { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
  .service-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
  .service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .tag {
    font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); border: 1px solid rgba(201,168,76,0.25);
    padding: 0.25rem 0.6rem; border-radius: 2px;
    background: rgba(201,168,76,0.05);
  }

  /* ─── PRICING ─── */
  #pricing { background: var(--navy); }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
  .pricing-card {
    background: linear-gradient(145deg, var(--navy-light), var(--navy-mid));
    border: 1px solid rgba(201,168,76,0.12); border-radius: 4px;
    padding: 2.5rem 2rem; position: relative; overflow: hidden;
    transition: all 0.4s;
  }
  .pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(145deg, rgba(30,58,95,0.8), var(--navy-mid));
    transform: scale(1.04);
    box-shadow: 0 20px 60px rgba(201,168,76,0.15);
  }
  .pricing-card.featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(to right, var(--gold-dim), var(--gold), var(--gold-dim));
  }
  .pricing-badge {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--navy); font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.3rem 0.8rem; border-radius: 2px;
  }
  .pricing-tier { font-size: 0.7rem; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; margin-bottom: 1rem; }
  .pricing-name { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 1rem; }
  .pricing-amount {
    display: flex; align-items: flex-start; gap: 0.3rem; margin-bottom: 0.5rem;
  }
  .pricing-currency { font-size: 1rem; color: var(--gold); margin-top: 0.5rem; font-weight: 600; }
  .pricing-value { font-family: 'Cinzel', serif; font-size: 3rem; color: var(--white); line-height: 1; }
  .pricing-period { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 2rem; }
  .pricing-divider { border: none; border-top: 1px solid rgba(201,168,76,0.15); margin: 1.5rem 0; }
  .pricing-features { list-style: none; margin-bottom: 2rem; }
  .pricing-features li {
    display: flex; gap: 0.8rem; align-items: flex-start;
    padding: 0.5rem 0; font-size: 0.88rem; color: var(--silver);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .pricing-features li::before { content: '◆'; color: var(--gold); font-size: 0.5rem; margin-top: 0.35rem; flex-shrink: 0; }
  .pricing-cta {
    display: block; text-align: center; padding: 0.9rem;
    font-family: 'Rajdhani', sans-serif; font-size: 0.85rem;
    font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    text-decoration: none; border-radius: 2px; transition: all 0.3s;
    border: 1px solid rgba(201,168,76,0.4); color: var(--gold);
  }
  .pricing-card.featured .pricing-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--navy); border-color: transparent;
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  }
  .pricing-cta:hover { transform: translateY(-2px); }
  .pricing-card.featured .pricing-cta:hover { box-shadow: 0 8px 30px rgba(201,168,76,0.5); }

  /* ─── QUOTE ─── */
  #quote { background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%); }
  .quote-wrap {
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
    border: 1px solid rgba(201,168,76,0.2); border-radius: 4px;
    padding: 4rem; max-width: 800px; margin: 0 auto;
    position: relative; overflow: hidden;
  }
  .quote-wrap::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(to right, var(--gold-dim), var(--gold), var(--gold-dim));
  }
  .quote-corner {
    position: absolute; bottom: 0; right: 0;
    width: 150px; height: 150px;
    background: radial-gradient(circle at bottom right, rgba(201,168,76,0.1), transparent);
  }
  .quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
  .form-group.full { grid-column: 1 / -1; }
  .form-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
  .form-input, .form-select, .form-textarea {
    background: rgba(10,22,40,0.8); border: 1px solid rgba(201,168,76,0.2);
    color: var(--white); padding: 0.9rem 1rem; border-radius: 2px;
    font-family: 'Rajdhani', sans-serif; font-size: 0.95rem;
    transition: all 0.3s; outline: none;
    -webkit-appearance: none;
  }
  .form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold); box-shadow: 0 0 20px rgba(201,168,76,0.1);
  }
  .form-select option { background: var(--navy-mid); }
  .form-textarea { resize: vertical; min-height: 120px; }
  .form-submit {
    grid-column: 1 / -1; margin-top: 0.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--navy); padding: 1.1rem;
    font-family: 'Rajdhani', sans-serif; font-size: 0.9rem;
    font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    border: none; border-radius: 2px; width: 100%;
    transition: all 0.3s; box-shadow: 0 4px 30px rgba(201,168,76,0.25);
  }
  .form-submit:hover { box-shadow: 0 8px 40px rgba(201,168,76,0.4); transform: translateY(-2px); }

  /* ─── CONTACT ─── */
  #contact { background: var(--navy); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
  .contact-info { display: flex; flex-direction: column; gap: 2rem; }
  .contact-block {
    display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem;
    border: 1px solid rgba(201,168,76,0.1); border-radius: 4px;
    background: rgba(201,168,76,0.02);
    transition: all 0.3s;
  }
  .contact-block:hover { border-color: rgba(201,168,76,0.3); }
  .contact-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(30,58,95,0.3));
    border: 1px solid rgba(201,168,76,0.25); border-radius: 4px;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  }
  .contact-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; font-weight: 600; }
  .contact-val { color: var(--silver-light); font-size: 0.95rem; }
  .contact-social { display: flex; gap: 1rem; margin-top: 1rem; }
  .social-btn {
    width: 44px; height: 44px;
    border: 1px solid rgba(201,168,76,0.25); border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--gold); text-decoration: none;
    background: rgba(201,168,76,0.05); transition: all 0.3s;
  }
  .social-btn:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); transform: translateY(-2px); }

  .contact-form-wrap {
    background: linear-gradient(145deg, var(--navy-light), var(--navy-mid));
    border: 1px solid rgba(201,168,76,0.12); border-radius: 4px; padding: 3rem;
    position: relative; overflow: hidden;
  }
  .contact-form-wrap::before {
    content:''; position:absolute; top:0; left:0; right:0; height:2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  /* ─── FOOTER ─── */
  footer {
    background: linear-gradient(180deg, var(--navy) 0%, #05101E 100%);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 4rem;
  }
  .footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
    padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 2rem;
  }
  .footer-brand .logo { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--gold); font-weight: 700; margin-bottom: 0.5rem; }
  .footer-brand .tagline { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--silver); margin-bottom: 1rem; }
  .footer-brand .desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
  .footer-col-title { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 700; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.75rem; color: var(--text-muted);
  }
  .footer-motto { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold); font-size: 0.9rem; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  @keyframes spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
  @keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.8); } }
  @keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }
  @keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
  @keyframes glow { 0%,100% { box-shadow: 0 0 20px rgba(201,168,76,0.3); } 50% { box-shadow: 0 0 50px rgba(201,168,76,0.6); } }

  .hero-logo-wrap { animation: float 5s ease-in-out infinite; }

  /* ─── SCROLL REVEAL ─── */
  .reveal { opacity:0; transform:translateY(40px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
  .reveal.visible { opacity:1; transform:translateY(0); }

  /* ─── PAGE TABS ─── */
  .page { display: none; }
  .page.active { display: block; }

  /* ─── NOTIFICATION ─── */
  #notify {
    position: fixed; top: 5rem; right: 2rem; z-index: 9000;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--navy); padding: 1rem 2rem; border-radius: 4px;
    font-weight: 700; letter-spacing: 0.1em; font-size: 0.85rem;
    transform: translateX(200%); transition: transform 0.4s;
    box-shadow: 0 10px 40px rgba(201,168,76,0.4);
  }
  #notify.show { transform: translateX(0); }

  /* ═══════════════════════════════════════
     MOBILE HAMBURGER
  ═══════════════════════════════════════ */
  .hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; padding: 6px;
    z-index: 1100; position: relative;
  }
  .hamburger span {
    display: block; width: 26px; height: 2px;
    background: var(--gold); border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile nav drawer */
  .mobile-drawer {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6,14,26,0.98);
    backdrop-filter: blur(20px);
    z-index: 1050;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
  }
  .mobile-drawer.open {
    transform: translateX(0);
  }
  .mobile-drawer-inner {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    width: 100%; padding: 2rem;
  }
  .mobile-drawer .mobile-logo {
    font-family: 'Cinzel', serif; font-size: 1.3rem; color: var(--gold);
    letter-spacing: 0.15em; margin-bottom: 2rem;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding-bottom: 1.5rem; width: 100%; text-align: center;
  }
  .mobile-drawer a {
    display: block; width: 100%; text-align: center;
    padding: 1rem; font-family: 'Cinzel', serif;
    font-size: 1.1rem; letter-spacing: 0.15em;
    color: var(--silver-light); text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.3s;
  }
  .mobile-drawer a:hover, .mobile-drawer a:active { color: var(--gold); }
  .mobile-drawer .mobile-cta {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--navy) !important; font-weight: 700;
    border-radius: 2px; border: none;
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  }
  .mobile-drawer-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: none; border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold); width: 40px; height: 40px;
    border-radius: 50%; font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
  }

  /* ═══════════════════════════════════════
     RESPONSIVE BREAKPOINTS
  ═══════════════════════════════════════ */

  /* ── Tablet: 1024px ── */
  @media (max-width: 1024px) {
    nav { padding: 1rem 2rem; }
    .nav-links { gap: 1.5rem; }
    .hero-content { gap: 2.5rem; }
    .hero-logo-wrap { width: 260px; height: 260px; }
    .hero-logo-inner img { width: 160px; }
    .hero-orbit-1 { width: 310px; height: 310px; }
    .hero-orbit-2 { width: 360px; height: 360px; }
    section { padding: 5rem 2.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing-card.featured { transform: scale(1); }
    .about-grid { gap: 3rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  }

  /* ── Mobile: 768px ── */
  @media (max-width: 768px) {
    /* Cursor off on touch devices */
    #cursor, #cursor-ring { display: none; }
    * { cursor: auto; }

    /* Nav */
    nav { padding: 1rem 1.2rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* Hero */
    #home { padding: 7rem 1.5rem 3rem; min-height: auto; }
    .hero-content {
      grid-template-columns: 1fr; gap: 3rem; text-align: center;
    }
    .hero-left { order: 2; }
    .hero-visual { order: 1; }
    .hero-badge { justify-content: center; font-size: 0.65rem; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-subtitle { font-size: 0.85rem; letter-spacing: 0.12em; }
    .hero-desc { font-size: 0.9rem; margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .stat-num { font-size: 1.5rem; }
    .stat-label { font-size: 0.6rem; }

    .hero-logo-wrap { width: 220px; height: 220px; }
    .hero-logo-inner img { width: 130px; }
    .hero-orbit-1 { width: 260px; height: 260px; }
    .hero-orbit-2 { width: 310px; height: 310px; }

    /* Sections */
    section { padding: 4rem 1.2rem; }
    .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .section-desc { font-size: 0.9rem; }
    .max-w { padding: 0; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-card-main { padding: 1.8rem; }
    .about-card-float { position: static; display: inline-flex; gap: 1rem; align-items: center; margin-top: 1.5rem; }
    .about-features { grid-template-columns: 1fr; }
    .about-pillars { justify-content: center; }
    .about-text .section-header { text-align: center; }
    .about-text .section-line { margin-left: auto; }
    .about-text .btn-primary { display: block; text-align: center; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 2rem 1.5rem; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
    .pricing-card.featured { transform: scale(1); }

    /* Quote */
    .quote-wrap { padding: 2rem 1.2rem; }
    .quote-form { grid-template-columns: 1fr; }
    .form-group.full { grid-column: 1; }
    .form-submit { grid-column: 1; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form-wrap { padding: 1.8rem 1.2rem; }

    /* Footer */
    footer { padding: 3rem 1.5rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.6rem; text-align: center; font-size: 0.7rem; }
    .footer-motto { display: none; }

    /* Notification */
    #notify { right: 1rem; left: 1rem; text-align: center; font-size: 0.8rem; }
  }

  /* ── Small Mobile: 480px ── */
  @media (max-width: 480px) {
    nav { padding: 0.9rem 1rem; }
    .nav-logo-text { font-size: 0.95rem; }
    .nav-logo-sub { display: none; }

    #home { padding: 6rem 1rem 2.5rem; }
    .hero-title { font-size: clamp(1.8rem, 9vw, 2.5rem); }
    .hero-logo-wrap { width: 190px; height: 190px; }
    .hero-logo-inner img { width: 110px; }
    .hero-orbit-1 { width: 220px; height: 220px; }
    .hero-orbit-2 { width: 260px; height: 260px; }
    .hero-stats { gap: 0.6rem; }
    .stat-num { font-size: 1.3rem; }

    .btn-primary, .btn-secondary {
      padding: 0.85rem 1.5rem; font-size: 0.8rem; width: 100%; text-align: center;
    }
    .hero-actions { flex-direction: column; align-items: stretch; }

    section { padding: 3.5rem 1rem; }
    .quote-wrap { padding: 1.5rem 1rem; }
    .contact-form-wrap { padding: 1.5rem 1rem; }
    .about-card-main { padding: 1.4rem; }
    .pricing-card { padding: 2rem 1.4rem; }
    .service-card { padding: 1.8rem 1.2rem; }

    .about-pillars { flex-direction: row; justify-content: center; gap: 1.5rem; }
  }