
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --pink:        #e30044;
      --pink-hover:  #c20b42;
      --pink-soft:   rgba(227,0,68,0.06);
      --pink-mid:    rgba(227,0,68,0.12);
      --pink-light:  rgba(227,0,68,0.04);
      --white:       #ffffff;
      --off-white:   #faf9f8;
      --warm-gray:   #f5f3f0;
      --dark:        #1a1919;
      --dark-mid:    #2c2b2b;
      --gray-light:  #f7f5f2;
      --gray-mid:    #e8e4df;
      --gray-text:   #7a7674;
      --gray-subtle: #c4bfba;
      --glass-bg:    rgba(255,255,255,0.72);
      --glass-border:rgba(255,255,255,0.6);
    }

    html { scroll-behavior: smooth; }

  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg-3); }
  ::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 2px; }
    body {
      font-family: 'Open Sans', sans-serif;
      background: var(--white);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ===================== HEADER ===================== */
    header {
      background: var(--white);
      border-bottom: 1px solid rgba(0,0,0,0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header-inner {
      max-width: 1240px; margin: 0 auto; padding: 0 2rem;
      height: 104px; display: flex; align-items: center; justify-content: space-between;
    }
    .logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
    .logo img { height: 90px; }

    nav.desktop-nav { display: flex; align-items: center; gap: 2px; }
    .nav-link {
      position: relative; font-family: 'Poppins', sans-serif; font-size: 13.5px;
      font-weight: 500; letter-spacing: 0.01em; color: var(--dark); text-decoration: none;
      padding: 8px 13px; border-radius: 6px;
      transition: color 0.2s ease, background 0.2s ease;
      display: flex; align-items: center; gap: 4px; cursor: pointer; user-select: none; white-space: nowrap;
    }
    .nav-link:hover, .nav-link.active { color: var(--pink); background: var(--pink-soft); }
    .nav-link .ti-chevron-down { font-size: 11px; transition: transform 0.22s ease; margin-top: 1px; }
    .nav-item { position: relative; }
    .nav-item:hover > .nav-link .ti-chevron-down,
    .nav-item:focus-within > .nav-link .ti-chevron-down { transform: rotate(180deg); }
    .dropdown {
      position: absolute; top: calc(100% + 10px); left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: var(--white); border: 1px solid rgba(0,0,0,0.09);
      border-radius: 10px; padding: 6px; min-width: 190px;
      box-shadow: 0 10px 36px rgba(0,0,0,0.13);
      opacity: 0; pointer-events: none; transition: opacity 0.18s ease, transform 0.18s ease;
    }
    .nav-item:focus-within .dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
    .dropdown a {
      display: block; padding: 9px 14px; font-size: 13px;
      font-family: 'Open Sans', sans-serif; color: var(--dark); text-decoration: none;
      border-radius: 6px; transition: color 0.15s, background 0.15s;
    }
    .dropdown a:hover { color: var(--pink); background: var(--pink-soft); }
    .nav-cta {
      background: var(--pink); color: var(--white) !important; padding: 9px 22px !important;
      border-radius: 6px !important; margin-left: 8px; transition: background 0.2s ease, transform 0.15s ease !important;
    }
    .nav-cta:hover { background: var(--pink-hover) !important; color: var(--white) !important; transform: translateY(-1px); }
    .hamburger {
      display: none; flex-direction: column; justify-content: center; gap: 5px;
      cursor: pointer; background: none; border: none; padding: 6px;
    }
    .hamburger span { display: block; width: 23px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.25s ease; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: none; background: var(--white); border-top: 1px solid rgba(0,0,0,0.07); padding: 10px 1.5rem 24px; }
    .mobile-nav.open { display: block; }
    .mobile-nav a { display: block; padding: 13px 0; font-size: 15px; font-weight: 500; font-family: 'Poppins', sans-serif; color: var(--dark); text-decoration: none; border-bottom: 1px solid rgba(0,0,0,0.06); transition: color 0.15s; }
    .mobile-nav a:hover { color: var(--pink); }
    .mobile-nav .mob-cta { display: inline-block; margin-top: 18px; background: var(--pink); color: var(--white) !important; padding: 11px 28px; border-radius: 6px; border-bottom: none; font-size: 14px; }
    .mobile-nav .mob-cta:hover { background: var(--pink-hover) !important; }

    /* ===================== REVEAL ANIMATIONS ===================== */
    .reveal {
      opacity: 0; transform: translateY(32px);
      transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }
    .reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
    .reveal-scale.visible { opacity: 1; transform: scale(1); }
    .delay-1 { transition-delay: 0.1s !important; }
    .delay-2 { transition-delay: 0.2s !important; }
    .delay-3 { transition-delay: 0.3s !important; }
    .delay-4 { transition-delay: 0.4s !important; }
    .delay-5 { transition-delay: 0.5s !important; }

    /* ===================== HERO ===================== */
    .hero {
      position: relative; overflow: hidden;
      background: var(--white);
      min-height: 92vh;
      display: flex; align-items: center;
    }

    .hero-bg {
      position: absolute; inset: 0; pointer-events: none; overflow: hidden;
    }
    .blob {
      position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55;
      animation: blobFloat 8s ease-in-out infinite alternate;
    }
    .blob-1 { width: 520px; height: 520px; top: -120px; right: -100px; background: radial-gradient(circle, rgba(227,0,68,0.15) 0%, rgba(227,0,68,0.03) 70%); animation-duration: 9s; }
    .blob-2 { width: 380px; height: 380px; bottom: -60px; left: -80px; background: radial-gradient(circle, rgba(255,180,200,0.2) 0%, transparent 70%); animation-duration: 12s; animation-delay: -3s; }
    .blob-3 { width: 260px; height: 260px; top: 40%; left: 40%; background: radial-gradient(circle, rgba(227,0,68,0.08) 0%, transparent 70%); animation-duration: 7s; animation-delay: -5s; }
    @keyframes blobFloat { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(20px, -30px) scale(1.08); } }

    .hero-grid-overlay {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
    }

    .hero-inner {
      max-width: 1240px; margin: 0 auto; padding: 6rem 2rem;
      position: relative; z-index: 2; width: 100%;
    }

    .hero-label {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--pink-soft); border: 1px solid var(--pink-mid);
      border-radius: 100px; padding: 6px 16px;
      font-size: 11px; font-family: 'Poppins', sans-serif; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink);
      margin-bottom: 2rem;
    }
    .hero-label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); animation: pulse 2s ease-in-out infinite; }
    @keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.4); } }

    .hero-headline {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2.6rem, 6vw, 5rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.03em;
      color: var(--dark);
      max-width: 820px;
      margin-bottom: 1.5rem;
    }
    .hero-headline .accent { color: var(--pink); }
    .hero-headline em { font-style: italic; font-weight: 300; color: var(--gray-text); }

    .hero-sub {
      font-size: clamp(15px, 2vw, 17px);
      color: var(--gray-text);
      max-width: 560px;
      line-height: 1.75;
      margin-bottom: 2.5rem;
    }

    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 4rem; }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--pink); color: #fff;
      padding: 14px 28px; border-radius: 8px;
      font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
      text-decoration: none; letter-spacing: 0.01em;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(227,0,68,0.25);
    }
    .btn-primary:hover { background: var(--pink-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(227,0,68,0.35); }

    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: var(--dark);
      padding: 13px 28px; border-radius: 8px;
      border: 1.5px solid var(--gray-mid);
      font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
      text-decoration: none; letter-spacing: 0.01em;
      transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
    }
    .btn-outline:hover { border-color: var(--pink); color: var(--pink); background: var(--pink-soft); transform: translateY(-2px); }

    /* SCROLL INDICATOR */
    .scroll-hint {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-subtle);
      font-family: 'Poppins', sans-serif; z-index: 2;
    }
    .scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, var(--pink), transparent);
      animation: scrollDrop 2s ease-in-out infinite;
    }
    @keyframes scrollDrop { 0%,100% { opacity: 1; transform: scaleY(1); transform-origin: top; } 50% { opacity: 0.4; transform: scaleY(0.5); transform-origin: top; } }

    /* ===================== SECTION UTILITIES ===================== */
    .section { padding: 7rem 2rem; }
    .section-sm { padding: 4rem 2rem; }
    .container { max-width: 1240px; margin: 0 auto; }
    .container-narrow { max-width: 960px; margin: 0 auto; }

    .section-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Poppins', sans-serif; font-size: 10.5px; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink);
      margin-bottom: 1rem;
    }
    .section-tag::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--pink); }

    .section-headline {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.9rem, 4vw, 3.2rem);
      font-weight: 700; line-height: 1.15; letter-spacing: -0.025em;
      color: var(--dark); margin-bottom: 1rem;
    }
    .section-headline .accent { color: var(--pink); }

    .section-sub {
      font-size: 15.5px; color: var(--gray-text); line-height: 1.75; max-width: 520px;
    }

    .divider { width: 100%; height: 1px; background: var(--gray-mid); margin: 0; }

    /* ===================== DETAILED CASE STUDY SECTIONS ===================== */
    .cs-detail { padding: 7rem 2rem; }
    .cs-detail:nth-child(odd) { background: var(--off-white); }
    .cs-detail:nth-child(even) { background: var(--white); }
    .cs-detail-wrap { max-width: 1200px; margin: 0 auto; }

    .cs-detail-hero {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
      margin-bottom: 4rem;
    }
    .cs-detail-hero.reverse { direction: rtl; }
    .cs-detail-hero.reverse > * { direction: ltr; }

    .cs-detail-text {}
    .cs-detail-overline {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 1.25rem;
    }
    .cs-detail-badge {
      background: var(--pink-soft); border: 1px solid var(--pink-mid);
      border-radius: 100px; padding: 4px 14px;
      font-size: 10.5px; font-family: 'Poppins', sans-serif; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink);
    }
    .cs-detail-num {
      font-family: 'Poppins', sans-serif; font-size: 11px; color: var(--gray-subtle);
      font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    }

    .cs-detail-title {
      font-family: 'Poppins', sans-serif; font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      font-weight: 700; line-height: 1.15; letter-spacing: -0.025em;
      color: var(--dark); margin-bottom: 1rem;
    }

    .cs-detail-desc { font-size: 15px; color: var(--gray-text); line-height: 1.8; margin-bottom: 1.5rem; }

    /* ===================== PREMIUM GALLERY SYSTEM ===================== */

    /* Gallery wrapper — sits between the hero 2-col and the two-col info blocks */
    .cs-gallery {
      margin: 0 0 4rem 0;
      display: grid;
      grid-template-rows: auto auto;
      gap: 12px;
    }

    /* ---- Main (featured) image ---- */
    .cs-main-image {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 16 / 7;
      background: var(--warm-gray);
      cursor: zoom-in;
    }

    .cs-main-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }
    .cs-main-image:hover img { transform: scale(1.04); }

    /* Cinematic letterbox overlay at top & bottom */
    .cs-main-image::before,
    .cs-main-image::after {
      content: '';
      position: absolute;
      left: 0; right: 0;
      height: 28%;
      pointer-events: none;
      z-index: 2;
    }
    .cs-main-image::before {
      top: 0;
      background: linear-gradient(to bottom, rgba(26,25,25,0.28) 0%, transparent 100%);
    }
    .cs-main-image::after {
      bottom: 0;
      background: linear-gradient(to top, rgba(26,25,25,0.42) 0%, transparent 100%);
    }

    /* Glassmorphism label on main image */
    .cs-main-label {
      position: absolute;
      bottom: 1.25rem; left: 1.5rem;
      z-index: 3;
      background: rgba(255,255,255,0.14);
      backdrop-filter: blur(18px) saturate(1.6);
      -webkit-backdrop-filter: blur(18px) saturate(1.6);
      border: 1px solid rgba(255,255,255,0.28);
      border-radius: 10px;
      padding: 0.6rem 1.1rem;
      display: flex; align-items: center; gap: 10px;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .cs-main-image:hover .cs-main-label {
      opacity: 1;
      transform: translateY(0);
    }
    .cs-main-label-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--pink);
      flex-shrink: 0;
      box-shadow: 0 0 0 3px rgba(227,0,68,0.3);
    }
    .cs-main-label-text {
      font-family: 'Poppins', sans-serif;
      font-size: 11.5px; font-weight: 600;
      color: rgba(255,255,255,0.92);
      letter-spacing: 0.04em;
    }

    /* ---- Sub-image grid ---- */
    .cs-sub-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .cs-sub-image {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: var(--warm-gray);
      cursor: pointer;
      /* Stagger animation is applied inline via JS / CSS custom prop */
      opacity: 0;
      transform: translateY(18px) scale(0.97);
      transition:
        opacity 0.65s cubic-bezier(0.22,1,0.36,1),
        transform 0.65s cubic-bezier(0.22,1,0.36,1),
        box-shadow 0.4s ease;
    }
    .cs-sub-image.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    .cs-sub-image:nth-child(1) { transition-delay: 0.05s; }
    .cs-sub-image:nth-child(2) { transition-delay: 0.13s; }
    .cs-sub-image:nth-child(3) { transition-delay: 0.21s; }
    .cs-sub-image:nth-child(4) { transition-delay: 0.29s; }

    .cs-sub-image:hover {
      box-shadow: 0 12px 36px rgba(0,0,0,0.15);
      z-index: 2;
    }

    .cs-sub-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
      will-change: transform;
    }
    .cs-sub-image:hover img { transform: scale(1.08); }

    /* Glassmorphism overlay on sub-images */
    .cs-sub-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,25,25,0.55) 0%, rgba(26,25,25,0) 50%);
      opacity: 0;
      transition: opacity 0.35s ease;
      display: flex;
      align-items: flex-end;
      padding: 0.75rem;
      pointer-events: none;
    }
    .cs-sub-image:hover .cs-sub-overlay { opacity: 1; }

    .cs-sub-overlay-chip {
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 6px;
      padding: 4px 10px;
      font-family: 'Poppins', sans-serif;
      font-size: 10px; font-weight: 600;
      color: rgba(255,255,255,0.88);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* Pink accent corner on first sub-image */
    .cs-sub-image:first-child::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px;
      height: 32px;
      background: var(--pink);
      border-radius: 0 0 3px 0;
      z-index: 3;
    }

    /* ---- Lightbox ---- */
    .cs-lightbox {
      position: fixed;
      inset: 0;
      background: rgba(10,8,8,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 9998;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .cs-lightbox.open {
      opacity: 1;
      pointer-events: all;
    }
    .cs-lightbox-img {
      max-width: 90vw;
      max-height: 88vh;
      border-radius: 16px;
      box-shadow: 0 40px 100px rgba(0,0,0,0.5);
      transform: scale(0.94);
      transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
      object-fit: contain;
    }
    .cs-lightbox.open .cs-lightbox-img { transform: scale(1); }
    .cs-lightbox-close {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      font-size: 22px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background 0.2s;
    }
    .cs-lightbox-close:hover { background: var(--pink); }

    /* ===================== Process steps ===================== */
    .process-steps { display: flex; flex-direction: column; gap: 0; }
    .process-step {
      display: flex; gap: 1.25rem; padding: 1.25rem 0;
      border-bottom: 1px solid var(--gray-mid);
    }
    .process-step:last-child { border-bottom: none; }
    .step-num {
      width: 32px; height: 32px; border-radius: 50%;
      background: var(--pink); color: #fff; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 700;
    }
    .step-content {}
    .step-title { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
    .step-desc { font-size: 13.5px; color: var(--gray-text); line-height: 1.65; }

    /* Pull quote */
    .pull-quote {
      background: linear-gradient(135deg, #1a1919 0%, #2c1810 100%);
      border-radius: 18px; padding: 3rem 3.5rem;
      margin: 3.5rem 0; position: relative; overflow: hidden;
    }
    .pull-quote::before {
      content: '"'; position: absolute; top: -1rem; left: 1.5rem;
      font-family: 'Poppins', sans-serif; font-size: 10rem; line-height: 1;
      color: rgba(255,255,255,0.06); font-weight: 800;
    }
    .pull-quote::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(227,0,68,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .pull-quote p {
      font-family: 'Poppins', sans-serif; font-size: clamp(1.1rem, 2vw, 1.5rem);
      font-weight: 600; color: #fff; line-height: 1.5; position: relative; z-index: 1;
    }
    .pull-quote-attr {
      font-family: 'Open Sans', sans-serif; font-size: 13px; color: rgba(255,255,255,0.5);
      margin-top: 1rem; position: relative; z-index: 1;
    }

    /* Results grid */
    .results-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--gray-mid);
      border: 1px solid var(--gray-mid); border-radius: 16px; overflow: hidden;
      margin: 2.5rem 0;
    }
    .result-cell {
      background: var(--white); padding: 2rem 1.5rem; text-align: center;
      transition: background 0.25s;
    }
    .result-cell:hover { background: var(--pink-light); }
    .result-cell-val {
      font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 800;
      color: var(--pink); display: block; margin-bottom: 0.4rem; line-height: 1;
    }
    .result-cell-label { font-size: 12px; color: var(--gray-text); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

    /* Two column layout */
    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin: 2.5rem 0; }
    .info-block {
      padding: 2rem; background: var(--gray-light); border-radius: 14px;
      border: 1px solid var(--gray-mid);
    }
    .info-block-title {
      font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.12em; color: var(--pink);
      margin-bottom: 1rem;
    }
    .info-block p { font-size: 14px; color: var(--gray-text); line-height: 1.75; }
    .info-block ul { padding-left: 1.1rem; }
    .info-block li { font-size: 14px; color: var(--gray-text); line-height: 1.75; margin-bottom: 4px; }

    /* Accordion */
    .accordion { margin-top: 2rem; }
    .accordion-item { border: 1px solid var(--gray-mid); border-radius: 12px; margin-bottom: 8px; overflow: hidden; }
    .accordion-trigger {
      width: 100%; padding: 1.25rem 1.5rem;
      background: var(--white); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
      color: var(--dark); text-align: left;
      transition: background 0.2s;
    }
    .accordion-trigger:hover { background: var(--pink-light); }
    .accordion-trigger.open { background: var(--pink-soft); color: var(--pink); }
    .accordion-icon { font-size: 18px; transition: transform 0.3s; flex-shrink: 0; }
    .accordion-trigger.open .accordion-icon { transform: rotate(45deg); }
    .accordion-body {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1), padding 0.3s ease;
      padding: 0 1.5rem;
    }
    .accordion-body.open { max-height: 500px; padding: 0.25rem 1.5rem 1.5rem; }
    .accordion-body p { font-size: 13.5px; color: var(--gray-text); line-height: 1.75; }

    /* ===================== CTA BAND ===================== */
    .cta-band {
      background: linear-gradient(135deg, #1a1919 0%, #2c1810 100%);
      padding: 6rem 2rem; text-align: center; position: relative; overflow: hidden;
    }
    .cta-band::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(227,0,68,0.2) 0%, transparent 70%);
    }
    .cta-band-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
    .cta-band h2 {
      font-family: 'Poppins', sans-serif; font-size: clamp(1.9rem, 4vw, 3rem);
      font-weight: 700; color: #fff; line-height: 1.2; letter-spacing: -0.025em; margin-bottom: 1rem;
    }
    .cta-band h2 span { color: var(--pink); }
    .cta-band p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 2rem; }
    .cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .btn-white {
      display: inline-flex; align-items: center; gap: 8px;
      background: #fff; color: var(--dark);
      padding: 14px 28px; border-radius: 8px;
      font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
      text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: rgba(255,255,255,0.85);
      padding: 13px 28px; border-radius: 8px;
      border: 1.5px solid rgba(255,255,255,0.25);
      font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
      text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: #fff; transform: translateY(-2px); }

    /* ===================== FOOTER ===================== */
    footer { background: #000000; color: var(--white); }
    .footer-top {
      max-width: 1240px; margin: 0 auto; padding: 3.5rem 2rem 2.5rem;
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 3rem;
    }
    .footer-brand { display: block; margin-bottom: 18px; }
    .foot-logo img { height: 120px; width: 190px; object-fit: contain; }
    .footer-tagline { font-family: 'Open Sans', sans-serif; font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,0.55); max-width: 230px; margin-bottom: 22px; }
    .footer-socials { display: flex; gap: 10px; margin-top: 16px; }
    .social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 16px; transition: background 0.2s, color 0.2s; }
    .social-btn:hover { background: var(--pink); color: var(--white); }
    .footer-col-title { font-family: 'Poppins', sans-serif; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); font-weight: 600; margin-bottom: 20px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .footer-links a { font-family: 'Open Sans', sans-serif; font-size: 13.5px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
    .footer-links a:hover { color: var(--white); }
    .contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
    .contact-icon-wrap { width: 40px; height: 40px; border-radius: 50%; background: rgba(210,34,93,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--pink); font-size: 16px; }
    .contact-icon-wrap img { width: 20px; height: 20px;}
    .contact-label { font-family: 'Open Sans', sans-serif; font-size: 10.5px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
    .contact-value { font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); }
    .contact-value a { color: var(--white); text-decoration: none; transition: color 0.15s; }
    .contact-value a:hover { color: var(--pink); }
    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); max-width: 1240px; margin: 0 auto; }
    .footer-bottom { max-width: 1240px; margin: 0 auto; padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
    .footer-copy { font-family: 'Open Sans', sans-serif; font-size: 12.5px; color: rgba(255,255,255,0.38); }
    .footer-copy span { color: var(--pink); }
    .footer-legal { display: flex; gap: 22px; }
    .footer-legal a { font-family: 'Open Sans', sans-serif; font-size: 12px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.15s; }
    .footer-legal a:hover { color: rgba(255,255,255,0.75); }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 900px) {
      nav.desktop-nav { display: none; }
      .hamburger { display: flex; }
      .cs-detail-hero { grid-template-columns: 1fr; gap: 2rem; }
      .cs-detail-hero.reverse { direction: ltr; }
      .two-col { grid-template-columns: 1fr; }
      .results-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
      .cs-sub-grid { grid-template-columns: repeat(2, 1fr); }
      .cs-main-image { aspect-ratio: 16 / 9; }
    }

    @media (max-width: 600px) {
      .hero-headline { letter-spacing: -0.02em; }
      .results-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .pull-quote { padding: 2rem; }
      .section { padding: 4rem 1.25rem; }
      .cs-detail { padding: 4rem 1.25rem; }
      .cs-sub-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
      .cs-gallery { gap: 8px; }
      .cs-main-image { aspect-ratio: 4 / 3; border-radius: 14px; }
      .cs-sub-image { border-radius: 10px; }
    }