/* ═══════════════════════════════════════
       ROOT & RESET
    ═══════════════════════════════════════ */
    :root {
      --noir:       #f2f8ff;
      --noir-2:     #e8f2ff;
      --noir-3:     #ddeaff;
      --gold:       #4361ee;
      --gold-light: #7209b7;
      --gold-pale:  #e0ebff;
      --blush:      #e8b4c0;
      --cream:      #faf5ef;
      --text-bright:#0f172a;
      --text-mid:   #475569;
      --text-dim:   #94a3b8;
      --border:     rgba(67,97,238,0.15);
      --border-soft:rgba(67,97,238,0.08);
      --font-display:'Outfit', sans-serif;
      --font-body:  'Inter', sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      background: var(--noir);
    }

    body {
      font-family: var(--font-body);
      background: var(--noir);
      color: var(--text-bright);
      overflow-x: hidden;
      line-height: 1.7;
      cursor: none;
    }

    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { display: block; max-width: 100%; }

    /* ═══════════════════════════════════════
       CUSTOM CURSOR
    ═══════════════════════════════════════ */
    .cursor-ring {
      position: fixed;
      width: 36px; height: 36px;
      border: 1.5px solid rgba(67,97,238,0.7);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
      mix-blend-mode: difference;
    }
    .cursor-dot {
      position: fixed;
      width: 5px; height: 5px;
      background: var(--gold);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.05s ease;
    }
    body:has(a:hover) .cursor-ring,
    body:has(button:hover) .cursor-ring {
      width: 54px; height: 54px;
      border-color: var(--gold);
    }

    /* ═══════════════════════════════════════
       GRAIN OVERLAY
    ═══════════════════════════════════════ */
    .grain {
      position: fixed;
      inset: -50%;
      width: 200%; height: 200%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.04;
      pointer-events: none;
      z-index: 9998;
      animation: grain 0.4s steps(1) infinite;
    }
    @keyframes grain {
      0%,100%{transform:translate(0,0)}
      10%{transform:translate(-2%,-3%)}
      20%{transform:translate(3%,2%)}
      30%{transform:translate(-1%,4%)}
      40%{transform:translate(2%,-2%)}
      50%{transform:translate(-3%,1%)}
      60%{transform:translate(1%,-4%)}
      70%{transform:translate(-2%,3%)}
      80%{transform:translate(3%,-1%)}
      90%{transform:translate(-1%,2%)}
    }

    /* ═══════════════════════════════════════
       PETALS (ambient background elements)
    ═══════════════════════════════════════ */
    .petal-container {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }
    .petal {
      position: absolute;
      border-radius: 50% 0 50% 0;
      opacity: 0;
      animation: petalFall linear infinite;
    }
    @keyframes petalFall {
      0%   { opacity:0; transform: translateY(-60px) rotate(0deg) scale(0.8); }
      5%   { opacity: 0.4; }
      90%  { opacity: 0.15; }
      100% { opacity:0; transform: translateY(105vh) rotate(720deg) scale(1.1); }
    }

    /* ═══════════════════════════════════════
       TYPOGRAPHY
    ═══════════════════════════════════════ */
    .display {
      font-family: var(--font-display);
      font-weight: 300;
      letter-spacing: 0.02em;
    }
    .italic { font-style: italic; }

    .gold-text {
      background: linear-gradient(135deg, #4361ee 0%, #7209b7 50%, #4361ee 100%);
      background-size: 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: goldShimmer 4s ease infinite;
    }
    @keyframes goldShimmer {
      0%,100%{background-position:0%}
      50%{background-position:100%}
    }

    .label {
      font-family: var(--font-body);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ═══════════════════════════════════════
       GOLD LINE DIVIDER
    ═══════════════════════════════════════ */
    .gold-line {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 28px;
    }
    .gold-line::before,
    .gold-line::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .gold-line.left::before { display: none; }
    .gold-line.left::after { flex: 0 0 60px; }

    /* ═══════════════════════════════════════
       CONTAINER
    ═══════════════════════════════════════ */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ═══════════════════════════════════════
       HEADER / NAV
    ═══════════════════════════════════════ */
    header {
      position: fixed;
      top: 0; left: 0; width: 100%;
      z-index: 900;
      padding: 28px 0;
      transition: all 0.5s cubic-bezier(0.25,1,0.5,1);
    }
    header.scrolled {
      padding: 16px 0;
      background: linear-gradient(135deg, rgba(230, 250, 255, 0.85), rgba(235, 240, 255, 0.85));
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid rgba(67, 97, 238, 0.2);
    }
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.65rem;
      font-weight: 400;
      font-style: italic;
      letter-spacing: 0.04em;
      color: var(--gold-light);
    }
    .nav-logo span { font-style: normal; font-weight: 300; color: var(--text-mid); font-size: 0.75rem; display: block; letter-spacing: 0.22em; text-transform: uppercase; }
    .nav-links {
      display: flex;
      gap: 24px;
    }
    .nav-links a {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-mid);
      transition: color 0.3s;
      position: relative;
      white-space: nowrap;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0; height: 1px;
      bottom: -3px; left: 0;
      background: var(--gold);
      transition: width 0.35s ease;
    }
    .nav-links a:hover { color: var(--gold-light); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 24px;
      border: 1px solid var(--border);
      border-radius: 2px;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-light);
      background: transparent;
      cursor: pointer;
      transition: all 0.4s ease;
    }
    .nav-cta:hover {
      background: var(--gold);
      color: var(--noir);
      border-color: var(--gold);
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--gold-light);
      font-size: 1.8rem;
      cursor: none;
    }

    /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }

    .hero-bg-orbs {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      overflow: hidden;
      z-index: 0;
      pointer-events: none;
    }
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.6;
      animation: floatOrb 20s infinite alternate ease-in-out;
    }
    .orb-1 {
      width: 50vw; height: 50vw;
      background: rgba(0, 195, 255, 0.6);
      top: -10vw; left: -10vw;
      animation-delay: 0s;
    }
    .orb-2 {
      width: 40vw; height: 40vw;
      background: rgba(0, 255, 255, 0.5);
      bottom: -10vw; right: -5vw;
      animation-delay: -7s;
    }
    .orb-3 {
      width: 35vw; height: 35vw;
      background: rgba(67, 97, 238, 0.5);
      top: 30%; left: 50%;
      animation-delay: -14s;
      opacity: 0.8;
    }
    @keyframes floatOrb {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(8vw, 12vw) scale(1.15); }
    }

    /* left panel */
    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 120px 64px 80px 48px;
      position: relative;
      z-index: 2;
    }
    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 36px;
      opacity: 0;
      animation: fadeUp 1s 0.3s forwards;
    }
    .hero-eyebrow::after {
      content: '';
      flex: 0 0 48px;
      height: 1px;
      background: var(--gold);
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(4rem, 7vw, 7.5rem);
      font-weight: 300;
      line-height: 0.95;
      letter-spacing: -0.01em;
      color: var(--text-bright);
      margin-bottom: 12px;
      opacity: 0;
      animation: fadeUp 1s 0.5s forwards;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold-light);
      display: block;
    }
    .hero-tagline {
      font-family: var(--font-display);
      font-size: clamp(1.1rem, 2vw, 1.5rem);
      font-weight: 300;
      font-style: italic;
      color: var(--text-mid);
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeUp 1s 0.7s forwards;
    }
    .hero-actions {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 1s 0.9s forwards;
    }

    /* right panel */
    .hero-right {
      position: relative;
      overflow: hidden;
    }
    .hero-image-wrap {
      position: absolute;
      inset: 0;
    }
    .hero-image-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--noir) 0%, transparent 40%),
                  linear-gradient(to top, var(--noir) 0%, transparent 30%);
    }
    .hero-photo {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      filter: brightness(0.75) saturate(0.9);
    }

    /* Placeholder when no real photo */
    .hero-photo-placeholder {
      width: 100%;
      height: 100%;
      background:
        radial-gradient(ellipse at 60% 30%, rgba(67,97,238,0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 30% 80%, rgba(114,9,183,0.15) 0%, transparent 50%),
        linear-gradient(160deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-ornament {
      font-size: 28vw;
      opacity: 0.07;
      color: var(--gold);
      font-family: var(--font-display);
      font-style: italic;
      user-select: none;
      animation: slowRotate 60s linear infinite;
    }
    @keyframes slowRotate {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    /* floating info tag */
    .hero-tag {
      position: absolute;
      bottom: 48px;
      right: 48px;
      z-index: 5;
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(16px);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 20px 28px;
      text-align: right;
      opacity: 0;
      animation: fadeUp 1s 1.2s forwards;
    }
    .hero-tag-name {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 400;
      font-style: italic;
      color: var(--gold-light);
      display: block;
      margin-bottom: 4px;
    }
    .hero-tag-sub {
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    /* scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 48px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      z-index: 5;
      opacity: 0;
      animation: fadeIn 1s 1.5s forwards;
    }
    .scroll-indicator span {
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--text-dim);
      writing-mode: vertical-rl;
    }
    .scroll-line {
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%,100% { transform: scaleY(1); opacity:1; }
      50%     { transform: scaleY(0.6); opacity: 0.5; }
    }

    /* ═══════════════════════════════════════
       BUTTONS
    ═══════════════════════════════════════ */
    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 36px;
      background: linear-gradient(135deg, #4361ee, #7209b7);
      color: var(--noir);
      font-family: var(--font-body);
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      border: none;
      border-radius: 2px;
      cursor: none;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    .btn-gold::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent, rgba(0,0,0,0.1), transparent);
      transform: translateX(-100%);
      transition: 0.6s;
    }
    .btn-gold:hover::before { transform: translateX(100%); }
    .btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(67,97,238,0.4); }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 36px;
      background: transparent;
      color: var(--gold-light);
      font-family: var(--font-body);
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      border: 1px solid var(--border);
      border-radius: 2px;
      cursor: none;
      transition: all 0.4s ease;
    }
    .btn-outline:hover {
      background: var(--border);
      transform: translateY(-3px);
      border-color: var(--gold);
    }

    /* ═══════════════════════════════════════
       REVEAL ANIMATIONS
    ═══════════════════════════════════════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s cubic-bezier(0.25,1,0.5,1), transform 0.9s cubic-bezier(0.25,1,0.5,1);
    }
    .reveal.active { opacity: 1; transform: translateY(0); }
    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.9s cubic-bezier(0.25,1,0.5,1), transform 0.9s cubic-bezier(0.25,1,0.5,1);
    }
    .reveal-left.active { opacity: 1; transform: translateX(0); }
    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.9s cubic-bezier(0.25,1,0.5,1), transform 0.9s cubic-bezier(0.25,1,0.5,1);
    }
    .reveal-right.active { opacity: 1; transform: translateX(0); }

    /* ═══════════════════════════════════════
       MARQUEE STRIP
    ═══════════════════════════════════════ */
    .marquee-wrap {
      background: var(--gold);
      padding: 14px 0;
      overflow: hidden;
      position: relative;
      z-index: 2;
    }
    .marquee-track {
      display: flex;
      gap: 0;
      width: max-content;
      animation: marquee 28s linear infinite;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .marquee-item {
      white-space: nowrap;
      padding: 0 32px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--noir);
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .marquee-item::after {
      content: '✦';
      font-size: 0.5rem;
    }

    /* ═══════════════════════════════════════
       GLOBAL 3D INTERACTIVE GRID
    ═══════════════════════════════════════ */
    .global-3d-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin: 32px 0;
      perspective: 1000px;
    }
    .global-3d-item {
      position: relative;
      padding: 24px;
      background: linear-gradient(145deg, var(--noir-3), var(--noir));
      border: 1px solid var(--border-soft);
      border-radius: 8px;
      transform-style: preserve-3d;
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s, border-color 0.6s;
      display: flex;
      flex-direction: column;
      gap: 12px;
      cursor: pointer;
    }
    .global-3d-item ion-icon {
      font-size: 2.2rem;
      color: var(--gold);
      transform: translateZ(30px);
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .global-3d-item span,
    .global-3d-item h3,
    .global-3d-item p,
    .global-3d-item a {
      font-family: var(--font-body);
      color: var(--text-bright);
      transform: translateZ(20px);
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), color 0.6s;
    }
    .global-3d-item h3 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-display); }
    .global-3d-item p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }
    .global-3d-item:hover {
      transform: rotateX(10deg) rotateY(-10deg) translateY(-8px);
      box-shadow: 20px 25px 40px rgba(0,0,0,0.08), -5px -5px 20px rgba(67,97,238,0.1);
      border-color: rgba(67,97,238,0.5);
    }
    .global-3d-item:hover ion-icon {
      transform: translateZ(60px) scale(1.15);
      color: var(--gold-light);
    }
    .global-3d-item:hover span,
    .global-3d-item:hover h3,
    .global-3d-item:hover a {
      transform: translateZ(45px);
      color: var(--gold-light);
    }
    .global-3d-item:hover p {
      transform: translateZ(35px);
      color: var(--text-bright);
    }
    .global-3d-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(67,97,238,0.15), transparent 70%);
      opacity: 0;
      transition: opacity 0.6s;
      transform: translateZ(-1px);
      border-radius: 8px;
    }
    .global-3d-item:hover::before {
      opacity: 1;
    }

    /* ═══════════════════════════════════════
       TYPOGRAPHY & SECTIONS
    ═══════════════════════════════════════ */
    .section { padding: 120px 0; position: relative; z-index: 1; }
    .section-alt {
      background-color: var(--noir-2);
      background-image: radial-gradient(rgba(67, 97, 238, 0.1) 1.5px, transparent 1.5px);
      background-size: 40px 40px;
      background-attachment: fixed;
    }

    .section-header { margin-bottom: 72px; }
    .section-title-lg {
      font-family: var(--font-display);
      font-size: clamp(3rem, 5.5vw, 5.5rem);
      font-weight: 300;
      line-height: 1;
      letter-spacing: -0.01em;
      color: var(--text-bright);
    }
    .section-title-lg em {
      font-style: italic;
      color: var(--gold-light);
    }
    .section-body {
      font-size: 1.05rem;
      color: var(--text-mid);
      max-width: 480px;
      margin-top: 20px;
      line-height: 1.8;
    }

    /* ═══════════════════════════════════════
       SERVICES
    ═══════════════════════════════════════ */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .service-card {
      background: var(--noir-3);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      cursor: none;
      transition: all 0.5s cubic-bezier(0.25,1,0.5,1);
    }
    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover { background: #e2e8f0; }
    .service-card-num {
      font-family: var(--font-display);
      font-size: 4.5rem;
      font-weight: 300;
      color: var(--border);
      line-height: 1;
      margin-bottom: 24px;
      transition: color 0.4s;
    }
    .service-card:hover .service-card-num { color: rgba(67,97,238,0.2); }
    .service-card-icon {
      font-size: 2rem;
      color: var(--gold);
      margin-bottom: 20px;
      display: block;
      transition: transform 0.4s ease;
    }
    .service-card:hover .service-card-icon { transform: scale(1.15) rotate(-5deg); }
    .service-card-title {
      font-family: var(--font-display);
      font-size: 1.9rem;
      font-weight: 400;
      font-style: italic;
      color: var(--text-bright);
      margin-bottom: 14px;
      transition: color 0.3s;
    }
    .service-card:hover .service-card-title { color: var(--gold-light); }
    .service-card-desc {
      font-size: 0.9rem;
      color: var(--text-dim);
      line-height: 1.75;
    }
    .service-card-arrow {
      position: absolute;
      bottom: 32px;
      right: 32px;
      width: 36px; height: 36px;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-dim);
      font-size: 1rem;
      opacity: 0;
      transform: translate(8px, 8px);
      transition: all 0.4s ease;
    }
    .service-card:hover .service-card-arrow {
      opacity: 1;
      transform: translate(0,0);
      color: var(--gold);
      border-color: var(--gold);
    }

    /* ═══════════════════════════════════════
       ABOUT / PORTFOLIO SPLIT
    ═══════════════════════════════════════ */
    .split-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 680px;
    }
    .split-image {
      position: relative;
      overflow: hidden;
      min-height: 500px;
    }
    .split-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.7) saturate(0.85);
      transition: transform 0.9s cubic-bezier(0.25,1,0.5,1);
    }
    .split-section:hover .split-photo { transform: scale(1.04); }
    .split-photo-placeholder {
      width: 100%;
      height: 100%;
      min-height: 500px;
      background:
        radial-gradient(ellipse at 40% 40%, rgba(67,97,238,0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(114,9,183,0.2) 0%, transparent 50%),
        linear-gradient(135deg, #e2e8f0, #cbd5e1);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .split-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 60%, var(--noir-2) 100%);
    }
    .split-image-tag {
      position: absolute;
      bottom: 40px;
      left: 40px;
      background: rgba(255,255,255,0.8);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: 2px;
      padding: 16px 22px;
    }
    .split-image-tag strong {
      display: block;
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-style: italic;
      font-weight: 400;
      color: var(--gold-light);
    }
    .split-image-tag span {
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    .split-content {
      padding: 80px 72px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .split-content p {
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.9;
      margin-bottom: 20px;
    }
    .split-content p strong {
      color: var(--gold-light);
      font-weight: 500;
    }

    /* stats row */
    .stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid var(--border-soft);
      border-radius: 3px;
      overflow: hidden;
      margin-top: 48px;
    }
    .stat-item {
      padding: 28px 24px;
      border-right: 1px solid var(--border-soft);
      text-align: center;
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat-label {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    /* ═══════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════ */
    .testimonials-wrap {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .testi-card {
      padding: 48px 40px;
      background: var(--noir-3);
      position: relative;
    }
    .testi-quote {
      font-family: var(--font-display);
      font-size: 6rem;
      color: var(--gold);
      opacity: 0.2;
      line-height: 0.6;
      margin-bottom: 20px;
      font-style: italic;
    }
    .testi-text {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-style: italic;
      font-weight: 400;
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 32px;
    }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), #d4a478);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-style: italic;
      color: var(--noir);
      font-weight: 600;
    }
    .testi-name {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--text-bright);
      letter-spacing: 0.04em;
    }
    .testi-occasion {
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 2px;
    }
    .testi-stars {
      margin-left: auto;
      color: var(--gold);
      font-size: 0.65rem;
      letter-spacing: 3px;
    }

    /* ═══════════════════════════════════════
       CERTIFICATION STRIP
    ═══════════════════════════════════════ */
    .cert-strip {
      padding: 64px 0;
      border-top: 1px solid var(--border-soft);
      border-bottom: 1px solid var(--border-soft);
    }
    .cert-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .cert-item {
      padding: 36px 40px;
      border-right: 1px solid var(--border-soft);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }
    .cert-item:last-child { border-right: none; }
    .cert-icon {
      font-size: 1.8rem;
      color: var(--gold);
    }
    .cert-name {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--text-bright);
      letter-spacing: 0.02em;
    }
    .cert-sub {
      font-size: 0.7rem;
      color: var(--text-dim);
      letter-spacing: 0.1em;
    }

    /* ═══════════════════════════════════════
       CTA SECTION
    ═══════════════════════════════════════ */
    .cta-section {
      padding: 140px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 0%, rgba(67,97,238,0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(114,9,183,0.1) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-ornament {
      font-family: var(--font-display);
      font-size: clamp(8rem, 20vw, 18rem);
      font-weight: 300;
      font-style: italic;
      color: rgba(67,97,238,0.04);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
    }
    .cta-content { position: relative; z-index: 2; }
    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 6vw, 6rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--text-bright);
      margin-bottom: 16px;
      letter-spacing: -0.01em;
    }
    .cta-title em {
      font-style: italic;
      color: var(--gold-light);
    }
    .cta-sub {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-style: italic;
      font-weight: 300;
      color: var(--text-mid);
      margin-bottom: 52px;
    }
    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* ═══════════════════════════════════════
       INSTAGRAM STRIP
    ═══════════════════════════════════════ */
    .insta-section { padding: 80px 0; background: var(--noir-2); }
    .insta-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
    }
    .insta-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 3px;
    }
    .insta-cell {
      aspect-ratio: 1;
      background: var(--noir-3);
      position: relative;
      overflow: hidden;
      cursor: none;
    }
    .insta-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--text-dim);
      transition: all 0.4s ease;
    }
    .insta-cell:hover .insta-placeholder {
      background: rgba(67,97,238,0.1);
      color: var(--gold);
      transform: scale(1.1);
    }
    .insta-cell-overlay {
      position: absolute;
      inset: 0;
      background: rgba(7,4,10,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .insta-cell:hover .insta-cell-overlay { opacity: 1; }
    .insta-cell-overlay ion-icon { color: #fff; font-size: 1.5rem; }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    footer {
      background: #040207;
      padding: 80px 0 32px;
      border-top: 1px solid var(--border-soft);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr;
      gap: 64px;
      padding-bottom: 64px;
      border-bottom: 1px solid var(--border-soft);
      margin-bottom: 40px;
    }
    .footer-brand-name {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-style: italic;
      font-weight: 400;
      color: var(--gold-light);
      margin-bottom: 6px;
    }
    .footer-brand-tag {
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 24px;
    }
    .footer-desc {
      font-size: 0.88rem;
      color: var(--text-dim);
      line-height: 1.8;
      max-width: 280px;
      margin-bottom: 32px;
    }
    .footer-socials {
      display: flex;
      gap: 12px;
    }
    .footer-social-btn {
      width: 40px; height: 40px;
      border: 1px solid var(--border);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      color: var(--text-dim);
      transition: all 0.3s ease;
    }
    .footer-social-btn:hover {
      background: var(--gold);
      color: var(--noir);
      border-color: var(--gold);
      transform: translateY(-3px);
    }
    .footer-col-title {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
    }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a {
      font-size: 0.88rem;
      color: var(--text-dim);
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold-light); }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
    }
    .footer-contact-item ion-icon {
      color: var(--gold);
      font-size: 1rem;
      margin-top: 3px;
      flex-shrink: 0;
    }
    .footer-contact-item span {
      font-size: 0.88rem;
      color: var(--text-dim);
      line-height: 1.6;
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy {
      font-size: 0.78rem;
      color: var(--text-dim);
      letter-spacing: 0.04em;
    }
    .footer-copy a { color: var(--gold); }
    .footer-made {
      font-size: 0.75rem;
      color: var(--text-dim);
      font-family: var(--font-display);
      font-style: italic;
    }

    /* ═══════════════════════════════════════
       MOBILE NAV DRAWER
    ═══════════════════════════════════════ */
    @media (max-width: 1100px) {
      .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 36px;
        transition: right 0.4s cubic-bezier(0.25,1,0.5,1);
        border-left: 1px solid var(--border);
        z-index: 800;
      }
      .nav-links.active { right: 0; }
      .nav-links a { font-size: 0.95rem; }
      .mobile-menu-btn { display: block; z-index: 901; }
      .nav-cta { display: none; }
    }

    @media (max-width: 768px) {
      .hero { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .hero-left { padding: 120px 24px 80px; }
      .scroll-indicator { left: 24px; }

      .services-grid { grid-template-columns: 1fr; }
      .split-section { grid-template-columns: 1fr; }
      .split-image { min-height: 320px; }
      .split-content { padding: 48px 24px; }
      .testimonials-wrap { grid-template-columns: 1fr; }
      .cert-grid { grid-template-columns: 1fr 1fr; }
      .cert-item:nth-child(2) { border-right: none; }
      .cert-item { border-bottom: 1px solid var(--border-soft); }
      .insta-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .stat-row { grid-template-columns: 1fr; }
      .stat-item { border-right: none; border-bottom: 1px solid var(--border-soft); }
    }

    @media (max-width: 992px) {
      .services-grid { grid-template-columns: 1fr 1fr; }
      .testimonials-wrap { grid-template-columns: 1fr; }
      .cert-grid { grid-template-columns: 1fr 1fr; }
      .cert-item:nth-child(2) { border-right: none; }
    }