    :root {
      --bg: #fffaf7;
      --surface: rgba(255,255,255,0.78);
      --surface-solid: #ffffff;
      --text: #1d2240;
      --muted: #5f6684;
      --purple: #6b4eff;
      --purple-2: #8b5cf6;
      --pink: #ff6fb1;
      --gold: #f6c453;
      --teal: #2fc7c0;
      --sky: #dff7ff;
      --lavender: #f3ecff;
      --blush: #fff0f6;
      --mint: #ecfff8;
      --border: rgba(107, 78, 255, 0.12);
      --shadow: 0 20px 50px rgba(40, 33, 92, 0.12);
      --shadow-soft: 0 12px 30px rgba(40, 33, 92, 0.08);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --container: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Inter", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(246,196,83,0.25), transparent 24%),
        radial-gradient(circle at top right, rgba(255,111,177,0.18), transparent 24%),
        radial-gradient(circle at bottom left, rgba(47,199,192,0.14), transparent 22%),
        var(--bg);
      line-height: 1.6;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    .container { width: min(92%, var(--container)); margin: 0 auto; }
    .section { padding: 88px 0; }
    .section-sm { padding: 64px 0; }
    h1,h2,h3,h4 { font-family: "Poppins", sans-serif; line-height: 1.12; margin: 0 0 12px; }
    h1 { font-size: clamp(2.6rem, 5vw, 4.9rem); }
    h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); }
    h3 { font-size: 1.2rem; }
    p { margin: 0; color: var(--muted); }
    .lead { font-size: 1.08rem; max-width: 760px; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(246,196,83,0.25), rgba(255,111,177,0.16));
      color: var(--purple);
      font-weight: 700;
      margin-bottom: 18px;
      border: 1px solid rgba(107, 78, 255, 0.08);
    }

    .btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 700;
      transition: 0.2s ease;
      border: none;
      cursor: pointer;
      font-family: "Poppins", sans-serif;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      background: linear-gradient(135deg, var(--purple), var(--pink));
      color: white;
      box-shadow: 0 16px 28px rgba(107, 78, 255, 0.24);
    }
    .btn-secondary {
      background: linear-gradient(135deg, var(--gold), #ffdc83);
      color: #342a15;
      box-shadow: 0 16px 28px rgba(246,196,83,0.22);
    }

    .topbar {
      background: linear-gradient(90deg, var(--purple), var(--pink), var(--gold));
      color: white;
      font-size: 0.95rem;
      padding: 10px 0;
    }
    .topbar .container {
      display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
    }

    .navbar {
      position: sticky; top: 0; z-index: 100;
      backdrop-filter: blur(14px);
      background: rgba(255,255,255,0.8);
      border-bottom: 1px solid rgba(107,78,255,0.08);
    }
    .nav-wrap {
      min-height: 86px;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
    }
    .brand {
      display: flex; align-items: center; gap: 14px; min-width: 0;
    }
    .brand-logo {
      width: 62px; height: 62px; border-radius: 16px; overflow: hidden;
      background: white; box-shadow: var(--shadow-soft); flex-shrink: 0;
      display: grid; place-items: center; border: 1px solid rgba(107,78,255,0.08);
    }
    .brand-logo img { width: 100%; height: 100%; object-fit: cover; }
    .brand-text { min-width: 0; }
    .brand-text strong { display: block; font-family: "Poppins", sans-serif; font-size: 1rem; }
    .brand-text span { display: block; color: var(--muted); font-size: 0.92rem; }
    .nav-links {
      display: flex; align-items: center; gap: 24px; font-weight: 600;
    }
    .nav-links a:hover { color: var(--purple); }

    .hero {
      position: relative; overflow: hidden; padding: 84px 0 96px;
    }
    .hero::before, .hero::after {
      content: ""; position: absolute; border-radius: 50%; filter: blur(8px);
    }
    .hero::before {
      width: 320px; height: 320px; left: -110px; top: -70px;
      background: rgba(107,78,255,0.12);
    }
    .hero::after {
      width: 360px; height: 360px; right: -110px; bottom: -100px;
      background: rgba(47,199,192,0.1);
    }
    .hero-grid {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 34px; align-items: center;
    }
    .hero-card {
      background: var(--surface);
      border: 1px solid rgba(107,78,255,0.1);
      border-radius: var(--radius-xl);
      padding: 22px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }
    .hero-card img {
      border-radius: 22px; aspect-ratio: 4 / 3; object-fit: cover; margin-bottom: 18px;
    }
    .hero-stat-grid {
      display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 20px;
    }
    .hero-stat {
      background: white; border-radius: 18px; padding: 14px; box-shadow: var(--shadow-soft);
    }
    .hero-stat strong { display: block; font-family: "Poppins", sans-serif; font-size: 1.1rem; }

    .value-strip {
      margin-top: -26px; position: relative; z-index: 2;
    }
    .value-grid {
      display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
    }
    .value-item {
      padding: 22px 18px; border-radius: 22px; box-shadow: var(--shadow-soft); text-align: center;
    }
    .value-item:nth-child(1) { background: var(--lavender); }
    .value-item:nth-child(2) { background: var(--blush); }
    .value-item:nth-child(3) { background: #eefbff; }
    .value-item:nth-child(4) { background: #fff7e5; }
    .value-item .icon {
      width: 56px; height: 56px; margin: 0 auto 12px; border-radius: 18px; display: grid; place-items: center;
      background: rgba(255,255,255,0.84); font-size: 1.35rem;
    }

    .split {
      display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center;
    }
    .panel {
      background: var(--surface-solid);
      border-radius: var(--radius-xl);
      padding: 30px;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
    }
    .image-panel img {
      width: 100%; min-height: 460px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow);
    }
    .check-list {
      list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px;
    }
    .check-list li {
      background: #fff; padding: 14px 16px; border-radius: 16px; box-shadow: var(--shadow-soft); border-left: 5px solid var(--pink);
      color: var(--text); font-weight: 600;
    }

    .grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
    .card {
      background: white; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); border: 1px solid var(--border);
    }
    .service-card:nth-child(1) { background: linear-gradient(180deg, #fff, #faf7ff); }
    .service-card:nth-child(2) { background: linear-gradient(180deg, #fff, #fff4fa); }
    .service-card:nth-child(3) { background: linear-gradient(180deg, #fff, #f2fdff); }
    .service-card:nth-child(4) { background: linear-gradient(180deg, #fff, #fffaf1); }
    .service-card:nth-child(5) { background: linear-gradient(180deg, #fff, #f4fff9); }
    .service-card:nth-child(6) { background: linear-gradient(180deg, #fff, #f9f6ff); }
    .card-icon {
      width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 16px;
      background: rgba(107,78,255,0.1); font-size: 1.3rem;
    }

    .studio-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 28px; }
    .studio-card {
      background: white; border-radius: 22px; padding: 22px; box-shadow: var(--shadow); border-top: 6px solid var(--purple);
    }
    .studio-card:nth-child(2) { border-top-color: var(--pink); }
    .studio-card:nth-child(3) { border-top-color: var(--teal); }
    .studio-card:nth-child(4) { border-top-color: var(--gold); }
    .studio-card:nth-child(5) { border-top-color: #4f88ff; }
    .studio-card:nth-child(6) { border-top-color: #28b66f; }

    .gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; }
    .gallery-item {
      position: relative; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow);
    }
    .gallery-item img { width: 100%; height: 280px; object-fit: cover; }
    .gallery-item span {
      position: absolute; left: 14px; bottom: 14px; padding: 8px 12px; border-radius: 999px;
      background: rgba(255,255,255,0.88); font-weight: 700; font-size: 0.92rem;
    }

    .team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 28px; }
    .team-card {
      background: white; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border);
    }
    .team-card img { width: 100%; height: 270px; object-fit: cover; }
    .team-body { padding: 20px; }
    .team-role { color: var(--purple); font-weight: 700; margin-bottom: 10px; }

    .cta-box {
      background: linear-gradient(135deg, var(--purple), var(--pink), var(--gold));
      color: white; padding: 56px 34px; border-radius: 34px; text-align: center; box-shadow: var(--shadow);
    }
    .cta-box h2, .cta-box p { color: white; }

    .contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 24px; align-items: stretch; }
    .contact-card {
      background: white; border-radius: 30px; padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border);
    }
    .contact-list { display: grid; gap: 14px; margin-top: 20px; }
    .contact-item {
      padding: 14px 16px; border-radius: 16px; background: #faf8ff; border-left: 5px solid var(--purple); box-shadow: var(--shadow-soft);
    }
    .map-wrap iframe { width: 100%; height: 100%; min-height: 460px; border: 0; border-radius: 30px; box-shadow: var(--shadow); }

    .footer {
      margin-top: 26px; padding: 28px 0; background: linear-gradient(90deg, #281f4d, #443181); color: #ece6ff;
    }
    .footer-wrap {
      display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    }

    .mobile-menu-btn { display: none; }
    .mobile-cta {
      display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 120;
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .split,
      .value-grid,
      .grid-3,
      .gallery-grid,
      .team-grid,
      .contact-grid { grid-template-columns: repeat(2,1fr); }
      .studio-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 820px) {
      .mobile-menu-btn {
        display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
        border-radius: 14px; border: 1px solid var(--border); background: white; box-shadow: var(--shadow-soft); cursor: pointer;
      }
      .nav-links {
        display: none; position: absolute; top: 86px; left: 4%; right: 4%; padding: 16px;
        border-radius: 22px; background: rgba(255,255,255,0.97); box-shadow: var(--shadow);
        flex-direction: column; align-items: flex-start;
      }
      .nav-links.open { display: flex; }
      .nav-cta { display: none; }
      .hero-grid,
      .split,
      .value-grid,
      .grid-3,
      .gallery-grid,
      .team-grid,
      .contact-grid { grid-template-columns: 1fr; }
      .section { padding: 68px 0; }
      .section-sm { padding: 52px 0; }
      .hero { padding: 60px 0 82px; }
      .image-panel img { min-height: 320px; }
      .topbar .container,
      .footer-wrap { flex-direction: column; }
      .mobile-cta { display: inline-flex; }
      body { padding-bottom: 90px; }
    }
