
  :root {
    --orange: #F47920;
    --orange-light: #10BBB2;
    --orange-pale: #FFF3EB;
    --black: #0D0D0D;
    --charcoal: #1A1A1A;
    --grey: #4A4A4A;
    --light: #F7F4F0;
    --white: #FFFFFF;
    --border: rgba(255,94,0,0.15);
  }

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

  html { scroll-behavior: smooth; }

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

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 5px 60px;
    background: rgba(13,13,13,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,94,0,0.12);
    transition: background 0.3s;
  }
  .nav-logo img{
    max-width: 220px;
    width: 100%;
  }
  .nav-logo span { color: var(--orange); }
  .nav-links { display: flex; gap: 20px; list-style: none; }
  .nav-links a {
    font-size: 13px; font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase; color: rgba(255,255,255,0.7);
    text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta {
    background: var(--orange); color: var(--white);
    font-size: 13px; font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase; padding: 10px 24px;
    border: none; cursor: pointer; text-decoration: none;
    transition: background 0.2s; white-space: nowrap;
  }
  .nav-cta:hover { background: var(--orange-light); }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    padding: 120px 60px 80px;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 60% 70% at 80% 50%, rgba(255,94,0,0.12) 0%, transparent 70%),
      repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,94,0,0.04) 80px),
      repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,94,0,0.04) 80px);
  }
  .hero-bg::after {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,94,0,0.15) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.1);opacity:0.7} }

  .hero-content { position: relative; z-index: 1; }
  .hero-badge {
    display: inline-block;
    font-size: 11px; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; color: var(--orange);
    border: 1px solid var(--orange); padding: 6px 16px; margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 6vw, 96px);
    line-height: 0.95; letter-spacing: 2px;
    margin-bottom: 8px;
    animation: fadeUp 0.8s 0.1s ease both;
  }
  .hero-title .accent { color: var(--orange); }
  .hero-sub {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-style: italic;
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
    animation: fadeUp 0.8s 0.2s ease both;
  }
  .hero-desc {
    font-size: 15px; line-height: 1.8;
    color: rgba(255,255,255,0.65); max-width: 480px;
    margin-bottom: 40px;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s 0.4s ease both; }
  .btn-primary {
    background: var(--orange); color: var(--white);
    padding: 14px 32px; font-size: 14px; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
  .btn-outline {
    background: transparent; color: var(--white);
    padding: 14px 32px; font-size: 14px; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3); text-decoration: none;
    transition: border-color 0.2s, transform 0.2s; display: inline-block;
  }
  .btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

  .hero-tags {
    display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px;
    animation: fadeUp 0.8s 0.5s ease both;
  }
  .hero-tags span {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #10bbb2;
    padding: 5px 12px;
    /*border: 1px solid rgba(255, 255, 255, 0.1);*/
  }

  .hero-right {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .hero-graphic {
    width: 420px; height: 420px; position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-ring {
    position: absolute; border-radius: 50%; border: 1px solid;
  }
  .ring1 { width:100%; height:100%; border-color: rgba(255,94,0,0.15); animation: spin 30s linear infinite; }
  .ring2 { width:76%; height:76%; border-color: rgba(255,94,0,0.25); animation: spin 20s linear infinite reverse; }
  .ring3 { width:52%; height:52%; border-color: rgba(255,94,0,0.35); animation: spin 12s linear infinite; }
  @keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
  .hero-center {
    z-index: 1; text-align: center;
    font-family: 'Bebas Neue', sans-serif;
  }
  .hero-center-big { font-size: 80px; color: var(--orange); line-height: 1; }
  .hero-center-txt { font-size: 14px; color: rgba(255,255,255,0.5); letter-spacing: 4px; }

  .ring-dot {
    position: absolute; width: 8px; height: 8px; border-radius: 50%;
    background: var(--orange); top: 0; left: 50%; transform: translateX(-50%);
  }

  @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

  /* ─── TICKER ─── */
  .ticker {
    background: var(--orange); padding: 14px 0;
    overflow: hidden; white-space: nowrap;
  }
  .ticker-inner {
    display: inline-block;
    animation: ticker 30s linear infinite;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px; letter-spacing: 4px;
    color: var(--white);
  }
  @keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
  .ticker-sep { margin: 0 32px; opacity: 0.5; }

  /* ─── SECTION BASE ─── */
  section { padding: 100px 60px; }
  .section-label {
    font-size: 11px; font-weight: 500; letter-spacing: 3px;
    text-transform: uppercase; color: var(--orange);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 4vw, 64px);
    line-height: 1; letter-spacing: 2px;
    margin-bottom: 20px;
  }
  .section-title .accent { color: var(--orange-light); }
  .section-body {
    font-size: 15px; line-height: 1.9;
    color: rgba(255,255,255,0.6);
  }

  /* ─── ABOUT ─── */
  #about { background: var(--charcoal); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .about-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
    margin-top: 48px;
  }
  .stat {
    background: var(--black); padding: 32px 28px;
    border-left: 3px solid var(--orange);
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 52px;
    color: var(--orange); line-height: 1;
  }
  .stat-label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 6px; }

  .about-right { padding-top: 8px; }
  .about-pillars { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
  .pillar {
    padding: 20px 0; border-bottom: 1px solid rgba(255,94,0,0.12);
    display: flex; align-items: flex-start; gap: 20px;
  }
  .pillar-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 22px;
    color: var(--orange); min-width: 40px; line-height: 1.2;
  }
  .pillar-title { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
  .pillar-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

  /* ─── SERVICES ─── */
  #services { background: var(--black); }
  .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .service-card {
    background: var(--charcoal); padding: 40px 36px;
    position: relative; overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 0; height: 3px; background: var(--orange);
    transition: width 0.4s ease;
  }
  .service-card:hover { background: #222; }
  .service-card:hover::before { width: 100%; }
  .service-icon {
    width: 52px; height: 52px; background: rgba(255,94,0,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px; font-size: 24px;
    border: 1px solid rgba(255,94,0,0.2);
  }
  .service-name {
    font-family: 'Bebas Neue', sans-serif; font-size: 28px;
    letter-spacing: 1px; margin-bottom: 12px;
  }
  .service-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 20px; }
  .service-list { list-style: none; }
  .service-list li {
    font-size: 12px; color: rgba(255,255,255,0.4);
    padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-left: 14px; position: relative;
  }
  .service-list li::before {
    content: '→'; position: absolute; left: 0;
    color: var(--orange); font-size: 10px;
  }

  /* ─── MEDIA PLANNING ─── */
  #media { background: var(--charcoal); }
  .media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .media-visual {
    position: relative; height: 480px;
    display: flex; align-items: center; justify-content: center;
  }
  .media-box {
    position: absolute; background: var(--black);
    border: 1px solid rgba(255,94,0,0.15);
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; text-align: center;
    transition: border-color 0.3s;
  }
  .media-box:hover { border-color: var(--orange); }
  .mb1 { width: 180px; height: 180px; top: 10%; left: 5%; padding: 20px; }
  .mb2 { width: 160px; height: 160px; top: 10%; right: 5%; padding: 16px; }
  .mb3 { width: 200px; height: 80px; bottom: 20%; left: 0; right: 0; margin: auto; padding: 16px; flex-direction: row; gap: 12px; }
  .mb4 { width: 140px; height: 140px; bottom: 5%; left: 10%; padding: 16px; }
  .mb5 { width: 140px; height: 140px; bottom: 5%; right: 10%; padding: 16px; }
  .mb-icon { font-size: 28px; margin-bottom: 8px; }
  .mb-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
  .center-dot {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--orange); z-index: 2;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; font-size: 10px;
    letter-spacing: 1px; text-align: center; padding: 8px;
    box-shadow: 0 0 40px rgba(255,94,0,0.4);
  }
  .connector {
    position: absolute; background: rgba(255,94,0,0.2);
    z-index: 1;
  }

  .media-services { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .ms-item {
    background: var(--black); padding: 14px 18px;
    font-size: 13px; color: rgba(255,255,255,0.6);
    border-left: 2px solid var(--orange);
  }

  /* ─── INDUSTRIES ─── */
  #industries { position: relative; overflow: hidden; }
  .ind-deco {
    position: absolute; top: -60px; right: -60px;
    width: 340px; height: 340px;
    pointer-events: none; z-index: 0;
  }
  .ind-deco-ring {
    position: absolute; border-radius: 50%; border: 1px solid;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
  }
  .idr1 { width: 340px; height: 340px; border-color: rgba(255,94,0,0.08); animation: spin 40s linear infinite; }
  .idr2 { width: 250px; height: 250px; border-color: rgba(255,94,0,0.14); animation: spin 28s linear infinite reverse; }
  .idr3 { width: 160px; height: 160px; border-color: rgba(255,94,0,0.22); animation: spin 18s linear infinite; }
  .idr4 { width: 80px;  height: 80px;  border-color: rgba(255,94,0,0.35); animation: spin 10s linear infinite reverse; }
  .idr-dot {
    position: absolute; width: 7px; height: 7px; border-radius: 50%;
    background: var(--orange); top: 0; left: 50%;
    transform-origin: 0 0;
  }
  .idr-dot2 {
    position: absolute; width: 5px; height: 5px; border-radius: 50%;
    background: var(--orange-light); opacity: 0.7;
    top: 50%; right: 0; transform-origin: 0 0;
  }
  .idr-center {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 36px; height: 36px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,94,0,0.5), rgba(255,94,0,0.1));
    box-shadow: 0 0 24px rgba(255,94,0,0.3);
    animation: pulse 4s ease-in-out infinite;
  }
  #industries { background: var(--black); position: relative; overflow: hidden; }
  .ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 60px; }
  .ind-card {
    padding: 32px 24px; background: var(--charcoal);
    border: 1px solid transparent; transition: border-color 0.3s, transform 0.3s;
    cursor: default;
  }
  .ind-card:hover { border-color: var(--orange); transform: translateY(-4px); }
  .ind-icon { font-size: 32px; margin-bottom: 16px; }
  .ind-name { font-size: 15px; font-weight: 500; margin-bottom: 8px; }
  .ind-list { list-style: none; }
  .ind-list li { font-size: 12px; color: rgba(255,255,255,0.4); padding: 3px 0; }

  /* ─── WHY CHOOSE ─── */
  #why { background: var(--charcoal); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 60px; }
  .why-item {
    background: var(--black); padding: 40px 36px;
    border-bottom: 3px solid transparent; transition: border-color 0.3s;
  }
  .why-item:hover { border-bottom-color: var(--orange-light); }
  .why-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 56px;
    color: rgba(255,94,0,0.15); line-height: 1; margin-bottom: 8px;
  }
  .why-title { font-size: 16px; font-weight: 500; margin-bottom: 10px; }
  .why-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; }

  /* ─── VISION MISSION ─── */
  #vision {
    background: var(--light); color: var(--black);
    padding: 100px 60px;
  }
  .vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
  .vm-label {
    font-size: 11px; font-weight: 500; letter-spacing: 3px;
    text-transform: uppercase; color: rgba(0,0,0,0.5);
    margin-bottom: 16px;
  }
  .vm-title {
    font-family: 'Bebas Neue', sans-serif; font-size: 52px;
    color: var(--orange); margin-bottom: 24px; letter-spacing: 2px;
  }
  .vm-text { font-size: 16px; line-height: 1.9; color: rgba(0,0,0,0.7); }
  .mission-list { list-style: none; }
  .mission-list li {
    font-size: 14px; color: rgba(0,0,0,0.75);
    padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.12);
    display: flex; align-items: flex-start; gap: 12px;
  }
  .mission-list li::before {
    content: '✦'; color: var(--black); font-size: 10px; margin-top: 3px; flex-shrink: 0;
  }
  
    /* ─── COMPANIES WE ASSOCIATE WITH ─── */
  #associates { background: var(--black); }
  .associates-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .associate-card {
    background: var(--charcoal);
    padding: 40px 36px;
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 24px; text-decoration: none; color: var(--white);
    position: relative; overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
  }
  .associate-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 0; height: 3px; background: var(--orange);
    transition: width 0.4s ease;
  }
  .associate-card:hover {
    border-color: rgba(255,94,0,0.3);
    background: #222;
    transform: translateY(-4px);
  }
  .associate-card:hover::before { width: 100%; }

  .associate-logo {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: center;
    width: 100%;
    transition: border-color 0.3s;
  }
  .associate-logo img{width: 250px;
    height: 250px;
    object-fit: contain;}
  .associate-card:hover .associate-logo {
    border-color: rgba(255,94,0,0.2);
  }

  .associate-info { flex: 1; }
  .associate-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; letter-spacing: 1px;
    color: var(--white); margin-bottom: 6px;
  }
  .associate-url {
    font-size: 12px; letter-spacing: 1px;
    color: var(--orange); text-transform: lowercase;
    opacity: 0.8;
  }
  .associate-arrow {
    position: absolute; top: 24px; right: 28px;
    font-size: 20px; color: rgba(255,255,255,0.15);
    transition: color 0.3s, transform 0.3s;
  }
  .associate-card:hover .associate-arrow {
    color: var(--orange);
    transform: translate(2px, -2px);
  }

  /* ─── CTA ─── */
  #cta {
    background: var(--black); text-align: center;
    padding: 120px 60px;
    position: relative; overflow: hidden;
  }
  #cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,94,0,0.08) 0%, transparent 70%);
  }
  .cta-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 8vw, 120px);
    line-height: 0.9; letter-spacing: 2px;
    margin-bottom: 32px; position: relative; z-index: 1;
  }
  .cta-big .line2 { color: var(--orange); display: block; }
  .cta-sub {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-style: italic;
    color: rgba(255,255,255,0.5); margin-bottom: 48px;
    position: relative; z-index: 1;
  }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

  /* ─── CONTACT ─── */
  #contact { background: var(--charcoal); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 60px; }
  .contact-info { display: flex; flex-direction: column; gap: 0; }
  .contact-item {
    padding: 24px 0; border-bottom: 1px solid rgba(255,94,4,0.12);
    display: flex; align-items: flex-start; gap: 20px;
  }
  .c-icon { font-size: 20px; min-width: 28px; margin-top: 2px; }
  .c-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
  .c-value { font-size: 15px; color: rgba(255,255,255,0.8); }

  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-field input,
  .form-field textarea,
  .form-field select {
    width: 100%; background: var(--black);
    border: 1px solid rgba(255,94,0,0.2);
    padding: 14px 18px; font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--white); outline: none;
    transition: border-color 0.2s;
    resize: none;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: rgba(255,255,255,0.3); }
  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus { border-color: var(--orange); }
  .form-field textarea { height: 120px; }
  .form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 6 5-6' stroke='%23FF5E00' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
  }
  .form-field select option { background: var(--charcoal); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--black); padding: 20px 60px 10px;
    border-top: 1px solid rgba(255,94,0,0.12);
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px; letter-spacing: 2px;
  }
  .footer-logo span { color: var(--orange); }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; padding: 10px 60px 20px; }
  .footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
  .footer-links a {
    font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
    color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--orange); }

  /* ─── SCROLL ANIMATIONS ─── */
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left {
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }

  /* ─── BURGER MENU ─── */
  .menu-toggle {
    display: none;
    flex-direction: column; justify-content: center; align-items: center;
    width: 40px; height: 40px; cursor: pointer; gap: 5px;
    background: none; border: none; padding: 4px; z-index: 200;
  }
  .menu-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
  }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ─── Mobile drawer ─── */
  .mobile-drawer {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(20px);
    z-index: 150;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
  }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-drawer a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px; letter-spacing: 3px;
    color: rgba(255,255,255,0.6); text-decoration: none;
    padding: 14px 0; width: 100%; text-align: center;
    border-bottom: 1px solid rgba(255,94,0,0.1);
    transition: color 0.2s;
  }
  .mobile-drawer a:hover { color: var(--orange); }
  .mobile-drawer .drawer-cta {
    margin-top: 32px;
    background: var(--orange); color: var(--white) !important;
    padding: 14px 48px !important; font-size: 18px !important;
    border-bottom: none !important; width: auto !important;
  }
  .drawer-logo {
    position: absolute; top: 32px; left: 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; letter-spacing: 2px; color: var(--white);
  }
  .drawer-logo img { max-width: 180px; }

  /* ─── DRAWER CLOSE BUTTON ─── */
  .drawer-close {
    position: absolute; top: 24px; right: 24px;
    width: 44px; height: 44px;
    background: rgba(255,94,0,0.1);
    border: 1px solid rgba(255,94,0,0.3);
    cursor: pointer; z-index: 200;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    padding: 0;
  }
  .drawer-close:hover { background: rgba(255,94,0,0.25); border-color: var(--orange); }
  .drawer-close span {
    position: absolute; width: 20px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: background 0.2s;
  }
  .drawer-close span:nth-child(1) { transform: rotate(45deg); }
  .drawer-close span:nth-child(2) { transform: rotate(-45deg); }
  .drawer-close:hover span { background: var(--orange); }

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

  /* ─── LARGE DESKTOP (1400px+) ─── */
  @media (min-width: 1400px) {
    nav { padding: 8px 80px; }
    section { padding: 120px 80px; }
    #hero { padding: 140px 80px 100px; }
    #vision { padding: 120px 80px; }
    #cta { padding: 140px 80px; }
    footer { padding: 24px 80px 12px; }
    .footer-copy { padding: 10px 80px 24px; }
    .about-grid { gap: 100px; }
    .vm-grid { gap: 100px; }
    .contact-grid { gap: 100px; }
    .media-grid { gap: 100px; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .ind-grid { grid-template-columns: repeat(4, 1fr); }
    .hero-graphic { width: 500px; height: 500px; }
  }

  /* ─── TABLET LANDSCAPE / SMALL DESKTOP (1024px–1199px) ─── */
  @media (max-width: 1199px) and (min-width: 1025px) {
    nav { padding: 6px 40px; }
    .nav-links { gap: 20px; }
    .nav-logo img { max-width: 180px; }
    section { padding: 80px 40px; }
    #hero { padding: 100px 40px 70px; }
    #vision { padding: 80px 40px; }
    #cta { padding: 100px 40px; }
    footer { padding: 20px 40px 10px; }
    .footer-copy { padding: 10px 40px 16px; }
    .about-grid { gap: 50px; }
    .vm-grid { gap: 50px; }
    .contact-grid { gap: 50px; }
    .media-grid { gap: 50px; }
    .hero-graphic { width: 340px; height: 340px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .ind-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .vm-title { font-size: 40px; }
  }

  /* ─── TABLET PORTRAIT (768px–1024px) ─── */
  @media (max-width: 1024px) and (min-width: 768px) {
    nav { padding: 6px 32px; }
    .nav-links { gap: 16px; }
    .nav-links a { font-size: 12px; letter-spacing: 0.5px; }
    .nav-logo img { max-width: 160px; }
    .nav-cta { padding: 8px 16px; font-size: 12px; }

    #hero {
      grid-template-columns: 1fr;
      padding: 120px 32px 60px;
      min-height: auto;
    }
    .hero-bg {
      background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(255,94,0,0.13) 0%, transparent 70%),
        repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,94,0,0.04) 80px),
        repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,94,0,0.04) 80px) !important;
    }
    .hero-bg::after {
      top: -150px; right: -100px;
      width: 550px; height: 550px;
    }
    .hero-right {
      display: flex;
      margin-top: 40px;
      justify-content: center;
    }
    .hero-graphic { width: 300px; height: 300px; }
    .hero-desc { max-width: 100%; }

    section { padding: 70px 32px; }
    #vision { padding: 70px 32px; }
    #cta { padding: 80px 32px; }
    footer { padding: 20px 32px 10px; }
    .footer-copy { padding: 10px 32px 16px; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-stats { grid-template-columns: repeat(4, 1fr); }

    .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }

    .media-grid { grid-template-columns: 1fr; gap: 48px; }
    .media-visual { height: 380px; }

    .ind-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ind-deco { width: 240px; height: 240px; }

    .why-grid { grid-template-columns: 1fr 1fr; }

    .vm-grid { grid-template-columns: 1fr; gap: 48px; }
    .vm-title { font-size: 44px; }

    .contact-grid { grid-template-columns: 1fr; gap: 48px; }

    footer { flex-wrap: wrap; gap: 16px; justify-content: space-between; }
  }

  /* ─── MOBILE LARGE (600px–767px) ─── */
  @media (max-width: 767px) and (min-width: 600px) {
    nav { padding: 10px 24px; }
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .nav-cta { display: none; }
    .nav-logo img { max-width: 150px; }

    #hero {
      grid-template-columns: 1fr;
      padding: 100px 24px 60px;
      min-height: auto;
    }
    .hero-right { display: none; }
    .hero-title { font-size: clamp(48px, 12vw, 72px); }
    .hero-desc { max-width: 100%; }
    .hero-btns { flex-direction: row; }
    .hero-tags { gap: 8px; }

    section { padding: 60px 24px; }
    #vision { padding: 60px 24px; }
    #cta { padding: 80px 24px; }
    footer { padding: 20px 24px 10px; flex-direction: column; gap: 20px; align-items: center; text-align: center; }
    .footer-copy { padding: 10px 24px 16px; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .stat { padding: 24px 20px; }

    .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .service-card { padding: 28px 24px; }

    .media-grid { grid-template-columns: 1fr; gap: 40px; }
    .media-visual { height: 320px; }
    .media-services { grid-template-columns: 1fr; gap: 8px; }

    .ind-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ind-deco { display: none; }

    .why-grid { grid-template-columns: 1fr; }
    .why-item { padding: 28px 24px; }
    .why-num { font-size: 40px; }

    .vm-grid { grid-template-columns: 1fr; gap: 40px; }
    .vm-title { font-size: 36px; }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr 1fr; }

    .cta-btns { flex-direction: row; gap: 12px; }
    .cta-sub { font-size: 16px; }
  }

  /* ─── MOBILE (up to 599px) ─── */
  @media (max-width: 599px) {
    nav { padding: 10px 16px; }
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .nav-cta { display: none; }
    .nav-logo img { max-width: 140px; }

    #hero {
      grid-template-columns: 1fr;
      padding: 90px 16px 50px;
      min-height: 100vh;
    }
    .hero-right { display: none; }
    .hero-badge { font-size: 9px; letter-spacing: 1px; padding: 5px 12px; margin-bottom: 20px; }
    .hero-title { font-size: clamp(44px, 14vw, 64px); letter-spacing: 1px; }
    .hero-sub { font-size: 15px; margin-bottom: 20px; }
    .hero-desc { font-size: 14px; margin-bottom: 28px; max-width: 100%; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 14px 20px; }
    .hero-tags { gap: 6px; margin-top: 28px; }
    .hero-tags span { font-size: 10px; padding: 4px 10px; }

    .ticker-inner { font-size: 14px; letter-spacing: 2px; }
    .ticker-sep { margin: 0 16px; }

    section { padding: 50px 16px; }
    #vision { padding: 50px 16px; }
    #cta { padding: 60px 16px; }

    .section-title { letter-spacing: 1px; }
    .section-body { font-size: 14px; }

    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 2px; }
    .stat { padding: 20px 16px; }
    .stat-num { font-size: 40px; }
    .stat-label { font-size: 10px; }
    .about-pillars { margin-top: 28px; }
    .pillar { gap: 14px; padding: 16px 0; }

    .services-header { flex-direction: column; gap: 14px; margin-bottom: 32px; }
    .services-grid { grid-template-columns: 1fr; gap: 2px; }
    .service-card { padding: 28px 20px; }
    .service-icon { width: 44px; height: 44px; font-size: 20px; margin-bottom: 16px; }
    .service-name { font-size: 24px; }

    .media-grid { grid-template-columns: 1fr; gap: 36px; }
    .media-visual {
      height: auto;
      padding: 20px 0;
    }
    .media-visual svg { max-width: 100%; height: auto; }
    .media-services { grid-template-columns: 1fr; gap: 8px; margin-top: 24px; }
    .ms-item { font-size: 12px; padding: 12px 14px; }

    .ind-deco { display: none; }
    .ind-grid { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 36px; }
    .ind-card { padding: 20px 16px; }
    .ind-icon { font-size: 24px; margin-bottom: 10px; }
    .ind-name { font-size: 13px; }
    .ind-list li { font-size: 11px; }

    .why-grid { grid-template-columns: 1fr; gap: 2px; margin-top: 36px; }
    .why-item { padding: 28px 20px; }
    .why-num { font-size: 40px; }
    .why-title { font-size: 15px; }

    .vm-grid { grid-template-columns: 1fr; gap: 36px; }
    .vm-title { font-size: 32px; letter-spacing: 1px; }
    .vm-text { font-size: 14px; }
    .mission-list li { font-size: 13px; }

    .cta-big { letter-spacing: 1px; }
    .cta-sub { font-size: 15px; margin-bottom: 32px; }
    .cta-btns { flex-direction: column; align-items: center; gap: 12px; }
    .cta-btns .btn-primary, .cta-btns .btn-outline { width: 100%; max-width: 300px; text-align: center; }

    .contact-grid { grid-template-columns: 1fr; gap: 36px; margin-top: 36px; }
    .contact-item { gap: 14px; padding: 18px 0; }
    .c-value { font-size: 13px; }
    .form-row { grid-template-columns: 1fr; gap: 12px; }
    .form-field input, .form-field textarea, .form-field select { padding: 12px 14px; font-size: 13px; }

    footer {
      padding: 20px 16px 10px;
      flex-direction: column; gap: 16px;
      align-items: center; text-align: center;
    }
    .footer-logo { font-size: 18px; }
    .footer-links { gap: 16px; justify-content: center; }
    .footer-copy { padding: 8px 16px 16px; font-size: 11px; }

    .mobile-drawer a { font-size: 32px; padding: 12px 0; }
    .drawer-logo { left: 16px; top: 24px; }
    .drawer-logo img { max-width: 140px; }
    .mobile-drawer .drawer-cta { font-size: 15px !important; padding: 12px 32px !important; }
  }

  /* ─── VERY SMALL DEVICES (360px and below) ─── */
  @media (max-width: 360px) {
    nav { padding: 8px 12px; }
    .nav-logo img { max-width: 120px; }

    #hero { padding: 80px 12px 40px; }
    .hero-title { font-size: 40px; }
    .hero-badge { font-size: 8px; }

    section { padding: 40px 12px; }
    #vision { padding: 40px 12px; }
    #cta { padding: 50px 12px; }
    footer { padding: 16px 12px 8px; }
    .footer-copy { padding: 8px 12px 12px; }

    .about-stats { grid-template-columns: 1fr 1fr; }
    .ind-grid { grid-template-columns: 1fr; }
    .vm-title { font-size: 28px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .mobile-drawer a { font-size: 28px; }
    .hero-btns .btn-primary, .hero-btns .btn-outline { font-size: 12px; padding: 12px 16px; }
  }

  /* ─── PRINT / HIGH RESOLUTION ─── */
  @media (min-resolution: 2dppx) {
    .hero-bg { background-size: 40px 40px; }
  }
/* ═══════════════════════════════════════════════════════
   9. ASSOCIATES SECTION — Additional Breakpoints
   ═══════════════════════════════════════════════════════ */
 
/* Tablet portrait */
@media (min-width: 768px) and (max-width: 1024px) {
  .associates-grid { grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .associate-card { padding: 28px 22px; gap: 18px; }
  .associate-name { font-size: 18px; }
}
 
/* Mobile landscape */
@media (min-width: 481px) and (max-width: 767px) {
  .associates-grid { grid-template-columns: 1fr; gap: 2px; }
  .associate-card { padding: 28px 22px; flex-direction: row; align-items: center; gap: 20px; }
  .associate-logo { width: 140px; flex-shrink: 0; padding: 14px 16px; }
  .associate-arrow { top: 20px; right: 20px; }
}
 
/* Mobile portrait */
@media (max-width: 480px) {
  .associates-grid { grid-template-columns: 1fr; gap: 2px; }
  .associate-card { padding: 24px 18px; gap: 16px; }
  .associate-logo { padding: 14px 16px; }
  .associate-name { font-size: 18px; }
  .associate-url { font-size: 11px; }
  .associate-arrow { top: 18px; right: 18px; font-size: 16px; }
}

/* ════════════════════════════════════════════════════════
   PORTFOLIO SECTION
════════════════════════════════════════════════════════ */

#portfolio {
  background: var(--black);
  padding: 100px 60px;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 40px;
}
.portfolio-intro {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 360px;
  text-align: right;
}

/* ─── FILTER TABS ─── */
.pf-filters {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255,94,0,0.15);
}
.pf-filter {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}
.pf-filter:hover { color: rgba(255,255,255,0.8); }
.pf-filter.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ─── PORTFOLIO GRID ─── */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}
.pf-card--wide {
  grid-column: span 2;
}

/* ─── CARD ─── */
.pf-card {
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  transition: opacity 0.35s ease, transform 0.35s ease;
  position: relative;
  overflow: hidden;
}
.pf-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--orange);
  transition: width 0.4s ease;
  z-index: 2;
}
.pf-card:hover::before { width: 100%; }

/* ─── THUMBNAIL ─── */
.pf-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.pf-card--wide .pf-thumb { height: 280px; }

.pf-thumb-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s ease;
}
.pf-card:hover .pf-thumb-bg { transform: scale(1.05); }

.pf-thumb-content {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.pf-thumb-icon {
  font-size: 48px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}
.pf-card:hover .pf-thumb-icon { transform: scale(1.1) translateY(-4px); }

.pf-thumb-title-bg {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.2);
  text-align: center;
  padding: 0 20px;
}

.pf-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.3s ease;
}
.pf-card:hover .pf-overlay { background: rgba(0,0,0,0.55); }

.pf-view-btn {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 12px 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}
.pf-card:hover .pf-view-btn { opacity: 1; transform: translateY(0); }

/* ─── CARD BODY ─── */
.pf-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px 0;
}
.pf-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  background: rgba(244,121,32,0.12);
  padding: 4px 12px;
  border: 1px solid rgba(244,121,32,0.25);
}
.pf-tag--digital { color: var(--orange-light); background: rgba(16,187,178,0.1); border-color: rgba(16,187,178,0.25); }
.pf-tag--web     { color: #a78bfa; background: rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.25); }

.pf-year {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
}
.pf-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 1.15;
  color: var(--white);
  padding: 12px 28px 8px;
}
.pf-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  padding: 0 28px 20px;
  flex: 1;
}
.pf-results {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,94,0,0.1);
  margin-top: auto;
}
.pf-result {
  flex: 1;
  padding: 14px 20px;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
  border-right: 1px solid rgba(255,94,0,0.1);
  text-align: center;
}
.pf-result:last-child { border-right: none; }
.pf-result span {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.pf-cta { text-align: center; padding-top: 12px; }

/* ════════════════════════════════════════════════════════
   CASE STUDY MODAL
════════════════════════════════════════════════════════ */

.cs-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cs-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cs-modal {
  background: var(--charcoal);
  width: 100%;
  max-width: 960px;
  position: relative;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}
.cs-overlay.open .cs-modal { transform: translateY(0); }

/* ─── CLOSE BUTTON ─── */
.cs-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
}
.cs-close:hover { background: rgba(244,121,32,0.2); border-color: var(--orange); }
.cs-close span {
  position: absolute;
  width: 18px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.2s;
}
.cs-close span:nth-child(1) { transform: rotate(45deg); }
.cs-close span:nth-child(2) { transform: rotate(-45deg); }
.cs-close:hover span { background: var(--orange); }

/* ─── MODAL HERO ─── */
.cs-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.cs-hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.cs-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
}
.cs-hero-content {
  position: relative; z-index: 1;
  padding: 40px 48px 36px;
  width: 100%;
}
.cs-category {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.cs-client {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 6px;
}
.cs-headline {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.cs-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cs-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 12px;
}

/* ─── MODAL BODY ─── */
.cs-body { padding: 48px; }

/* ─── KPIs ─── */
.cs-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}
.cs-kpi {
  background: var(--black);
  padding: 24px 20px;
  border-left: 3px solid var(--orange);
  text-align: center;
}
.cs-kpi-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.cs-kpi-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ─── TWO-COL ─── */
.cs-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.cs-block { margin-bottom: 32px; }
.cs-block--full { margin-bottom: 40px; }
.cs-block-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,94,0,0.2);
}
.cs-block-text {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
}
.cs-services-list {
  list-style: none;
}
.cs-services-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-left: 18px;
  position: relative;
}
.cs-services-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--orange);
  font-size: 11px;
}
.cs-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.cs-result-item {
  background: var(--black);
  padding: 16px;
  text-align: center;
}
.cs-result-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--orange);
  line-height: 1;
}
.cs-result-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

/* ─── PROCESS STEPS ─── */
.cs-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.cs-step {
  background: var(--black);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}
.cs-step::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 1px; height: 100%;
  background: rgba(255,94,0,0.15);
}
.cs-step:last-child::after { display: none; }
.cs-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: rgba(244,121,32,0.2);
  line-height: 1;
  margin-bottom: 6px;
}
.cs-step-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.cs-step-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* ─── TESTIMONIAL ─── */
.cs-testimonial {
  position: relative;
  background: var(--black);
  border-left: 3px solid var(--orange);
  padding: 36px 40px 36px 52px;
  margin-bottom: 40px;
}
.cs-quote-mark {
  position: absolute; top: 12px; left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  color: rgba(244,121,32,0.25);
  line-height: 1;
}
.cs-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.cs-quote-author {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
}

/* ─── MODAL CTA ─── */
.cs-modal-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: rgba(244,121,32,0.06);
  border: 1px solid rgba(244,121,32,0.15);
  gap: 24px;
}
.cs-modal-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}
.cs-cta-btn { white-space: nowrap; }

/* ════════════════════════════════════════════════════════
   PORTFOLIO & MODAL — RESPONSIVE
════════════════════════════════════════════════════════ */

/* Tablet landscape */
@media (max-width: 1199px) and (min-width: 1025px) {
  #portfolio { padding: 80px 40px; }
  .pf-grid { grid-template-columns: repeat(3, 1fr); }
  .cs-body { padding: 36px; }
  .cs-process { grid-template-columns: repeat(5, 1fr); }
}

/* Tablet portrait */
@media (max-width: 1024px) and (min-width: 768px) {
  #portfolio { padding: 70px 32px; }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .portfolio-intro { text-align: left; max-width: 100%; }
  .pf-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-card--wide { grid-column: span 2; }
  .pf-filters { flex-wrap: wrap; }
  .pf-filter { padding: 12px 20px; font-size: 12px; }
  .cs-overlay { padding: 24px 16px; }
  .cs-hero-content { padding: 32px 32px 28px; }
  .cs-body { padding: 32px; }
  .cs-kpis { grid-template-columns: repeat(4, 1fr); }
  .cs-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cs-process { grid-template-columns: repeat(3, 1fr); }
  .cs-step:nth-child(3)::after { display: none; }
}

/* Mobile large */
@media (max-width: 767px) and (min-width: 600px) {
  #portfolio { padding: 60px 24px; }
  .portfolio-header { flex-direction: column; gap: 14px; }
  .portfolio-intro { text-align: left; max-width: 100%; }
  .pf-grid { grid-template-columns: 1fr 1fr; }
  .pf-card--wide { grid-column: span 2; }
  .pf-filters { flex-wrap: wrap; gap: 0; }
  .pf-filter { padding: 10px 16px; font-size: 11px; }
  .cs-overlay { padding: 16px 12px; }
  .cs-hero { min-height: 220px; }
  .cs-hero-content { padding: 24px 24px 20px; }
  .cs-body { padding: 24px; }
  .cs-kpis { grid-template-columns: repeat(2, 1fr); }
  .cs-cols { grid-template-columns: 1fr; }
  .cs-process { grid-template-columns: 1fr 1fr; }
  .cs-results-grid { grid-template-columns: 1fr 1fr; }
  .cs-modal-cta { flex-direction: column; text-align: center; }
  .cs-modal-cta .btn-outline { width: 100%; text-align: center; }
}

/* Mobile */
@media (max-width: 599px) {
  #portfolio { padding: 50px 16px; }
  .portfolio-header { flex-direction: column; gap: 12px; margin-bottom: 28px; }
  .portfolio-intro { font-size: 13px; text-align: left; max-width: 100%; }
  .pf-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    margin-bottom: 28px;
  }
  .pf-filters::-webkit-scrollbar { display: none; }
  .pf-filter { padding: 10px 16px; font-size: 11px; white-space: nowrap; flex-shrink: 0; }
  .pf-grid { grid-template-columns: 1fr; gap: 2px; margin-bottom: 32px; }
  .pf-card--wide { grid-column: span 1; }
  .pf-thumb { height: 200px; }
  .pf-card--wide .pf-thumb { height: 200px; }
  .pf-thumb-icon { font-size: 36px; }
  .pf-title { font-size: 19px; padding: 10px 20px 6px; }
  .pf-desc { font-size: 12px; padding: 0 20px 16px; }
  .pf-meta { padding: 16px 20px 0; }
  .pf-result { padding: 12px 10px; }
  .pf-result span { font-size: 18px; }
  /* Modal */
  .cs-overlay { padding: 0; align-items: flex-end; }
  .cs-modal { max-width: 100%; min-height: 90vh; border-radius: 16px 16px 0 0; }
  .cs-hero { min-height: 200px; }
  .cs-client { font-size: 28px; }
  .cs-headline { font-size: 15px; }
  .cs-hero-content { padding: 20px 20px 18px; }
  .cs-body { padding: 20px; }
  .cs-kpis { grid-template-columns: repeat(2, 1fr); gap: 2px; margin-bottom: 28px; }
  .cs-kpi { padding: 18px 12px; }
  .cs-kpi-val { font-size: 28px; }
  .cs-cols { grid-template-columns: 1fr; gap: 0; }
  .cs-process { grid-template-columns: 1fr 1fr; gap: 2px; }
  .cs-step { padding: 18px 14px; }
  .cs-results-grid { grid-template-columns: 1fr 1fr; }
  .cs-testimonial { padding: 24px 20px 24px 36px; }
  .cs-quote-text { font-size: 14px; }
  .cs-modal-cta { flex-direction: column; padding: 20px; text-align: center; gap: 16px; }
  .cs-modal-cta p { font-size: 14px; }
  .cs-modal-cta .btn-primary { width: 100%; text-align: center; }
  .cs-close { top: 14px; right: 14px; }
}

/* Very small */
@media (max-width: 360px) {
  #portfolio { padding: 40px 12px; }
  .pf-grid { grid-template-columns: 1fr; }
  .cs-kpis { grid-template-columns: 1fr 1fr; }
  .cs-process { grid-template-columns: 1fr; }
  .cs-client { font-size: 24px; }
}

/* ════════════════════════════════════════════════════════
   THREE PILLARS — SERVICES OVERVIEW CARDS
════════════════════════════════════════════════════════ */

#services { background: var(--black); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 0;
}

.pillar-card {
  background: var(--charcoal);
  padding: 44px 36px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.pillar-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
}
.pillar-card--ads::before    { background: var(--orange); }
.pillar-card--brand::before  { background: #a78bfa; }
.pillar-card--digital::before{ background: var(--orange-light); }
.pillar-card:hover { background: #222; }

.pillar-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  line-height: 1;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 20px; right: 28px;
  letter-spacing: 2px;
}
.pillar-card-icon {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1;
}
.pillar-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  line-height: 1.05;
}
.pillar-card--brand .pillar-card-name  { color: #c4b5fd; }
.pillar-card--digital .pillar-card-name{ color: var(--orange-light); }

.pillar-card-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.pillar-card-list {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.pillar-card-list li {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-left: 16px;
  position: relative;
}
.pillar-card-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--orange);
  font-size: 10px;
}
.pillar-card--brand  .pillar-card-list li::before { color: #a78bfa; }
.pillar-card--digital .pillar-card-list li::before{ color: var(--orange-light); }

.pillar-card-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(244,121,32,0.3);
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
  margin-top: auto;
}
.pillar-card--brand  .pillar-card-cta { color: #a78bfa; border-color: rgba(167,139,250,0.3); }
.pillar-card--digital .pillar-card-cta{ color: var(--orange-light); border-color: rgba(16,187,178,0.3); }
.pillar-card-cta:hover { color: var(--white); border-color: var(--white); }


/* ════════════════════════════════════════════════════════
   BRANDING DEEP DIVE
════════════════════════════════════════════════════════ */

.service-deep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.branding-process {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bp-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(167,139,250,0.12);
}
.bp-icon {
  font-size: 22px;
  min-width: 36px;
  margin-top: 2px;
}
.bp-text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.bp-text strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 2px;
}

.branding-services-panel {
  background: var(--black);
  padding: 40px;
  border-top: 3px solid #a78bfa;
}
.bsp-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(167,139,250,0.2);
}
.bsp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.bsp-item {
  background: var(--charcoal);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}
.bsp-item:hover { background: #2a2a2a; }
.bsp-icon { font-size: 20px; }
.bsp-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════
   DIGITAL MARKETING DEEP DIVE
════════════════════════════════════════════════════════ */

.digital-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.dp-card {
  background: var(--charcoal);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.dp-card:hover { background: #222; transform: translateY(-4px); }
.dp-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
}
.dp-card--website::before { background: #7c3aed; }
.dp-card--seo::before     { background: var(--orange); }
.dp-card--smo::before     { background: #ec4899; }
.dp-card--perf::before    { background: var(--orange-light); }

.dp-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.dp-icon { font-size: 28px; }
.dp-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 1.1;
}
.dp-card--website .dp-name { color: #a78bfa; }
.dp-card--seo     .dp-name { color: var(--orange); }
.dp-card--smo     .dp-name { color: #f9a8d4; }
.dp-card--perf    .dp-name { color: var(--orange-light); }

.dp-desc {
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.dp-list {
  list-style: none;
  flex: 1;
}
.dp-list li {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-left: 14px;
  position: relative;
}
.dp-list li::before {
  content: '→';
  position: absolute; left: 0;
  font-size: 9px;
}
.dp-card--website li::before { color: #7c3aed; }
.dp-card--seo     li::before { color: var(--orange); }
.dp-card--smo     li::before { color: #ec4899; }
.dp-card--perf    li::before { color: var(--orange-light); }


/* ════════════════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
════════════════════════════════════════════════════════ */

@media (max-width: 1199px) and (min-width: 1025px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .digital-pillars { grid-template-columns: repeat(2, 1fr); }
  .service-deep-grid { gap: 50px; }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 2px; }
  .pillar-card { padding: 36px 28px; flex-direction: row; flex-wrap: wrap; gap: 0; }
  .pillar-card-icon { min-width: 48px; margin-bottom: 0; margin-right: 16px; }
  .pillar-card-name { width: calc(100% - 64px); }
  .pillar-card-desc { width: 100%; }
  .digital-pillars { grid-template-columns: 1fr 1fr; }
  .service-deep-grid { grid-template-columns: 1fr; gap: 48px; }
  .branding-services-panel { padding: 28px; }
  .bsp-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) and (min-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 2px; }
  .digital-pillars { grid-template-columns: 1fr 1fr; }
  .service-deep-grid { grid-template-columns: 1fr; gap: 36px; }
  .bsp-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 599px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 2px; }
  .pillar-card { padding: 28px 20px; }
  .pillar-card-icon { font-size: 32px; margin-bottom: 14px; }
  .pillar-card-name { font-size: 24px; }
  .digital-pillars { grid-template-columns: 1fr; gap: 2px; }
  .dp-card { padding: 26px 20px; }
  .dp-name { font-size: 19px; }
  .service-deep-grid { grid-template-columns: 1fr; gap: 28px; }
  .branding-services-panel { padding: 22px; }
  .bsp-grid { grid-template-columns: 1fr 1fr; }
  .bsp-item { padding: 14px 12px; }
  .bsp-label { font-size: 11px; }
  .bp-step { gap: 12px; padding: 14px 0; }
  .bp-text { font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════ */
/* GALLERY SECTION */
/* ═══════════════════════════════════════════════════════════ */

#gallery {
  background: var(--black);
  padding: 100px 60px 60px;
  position: relative;
  overflow: hidden;
}
#gallery::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 40%, rgba(255,94,0,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 60%, rgba(16,187,178,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.gallery-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.gallery-intro {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── UNIVERSE / PLANET SELECTOR ── */
.gallery-universe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  height: 340px;
  margin-bottom: 20px;
}

.gallery-universe::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,94,0,0.15) 30%, rgba(255,94,0,0.15) 70%, transparent 100%);
  pointer-events: none;
}

.g-center-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 0;
  pointer-events: none;
}
.g-center-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: rgba(255,94,0,0.25);
  line-height: 1.4;
}
.g-center-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.1);
  margin-top: 8px;
  text-transform: uppercase;
}

/* PLANET */
.g-planet {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}

.g-planet-core {
  position: relative;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 1px solid rgba(255,94,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.5s cubic-bezier(.175,.885,.32,1.275),
              border-color 0.3s, box-shadow 0.4s;
  z-index: 2;
}

#gp-creative .g-planet-core { background: radial-gradient(circle at 40% 35%, #1c1008, #0d0d0d); }
#gp-ads .g-planet-core      { background: radial-gradient(circle at 40% 35%, #07181a, #0d0d0d); }
#gp-brand .g-planet-core    { background: radial-gradient(circle at 40% 35%, #1a0f00, #0d0d0d); }

.g-planet:hover .g-planet-core,
.g-planet.active .g-planet-core {
  transform: scale(1.12);
  border-color: var(--orange);
  box-shadow: 0 0 40px rgba(255,94,0,0.3), inset 0 0 30px rgba(255,94,0,0.08);
}

#gp-ads:hover .g-planet-core,
#gp-ads.active .g-planet-core {
  border-color: #10BBB2;
  box-shadow: 0 0 40px rgba(16,187,178,0.25), inset 0 0 30px rgba(16,187,178,0.08);
}

.g-planet-glow {
  position: absolute; inset: -20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,94,0,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.g-planet:hover .g-planet-glow,
.g-planet.active .g-planet-glow { opacity: 1; }

.g-planet-icon {
  font-size: 28px;
  color: var(--orange);
  line-height: 1;
  transition: transform 0.4s;
}
.g-planet:hover .g-planet-icon,
.g-planet.active .g-planet-icon { transform: scale(1.2) rotate(15deg); }

#gp-ads .g-planet-icon { color: #10BBB2; }

.g-planet-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.g-planet-count {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* Orbiting ring */
.g-planet-ring {
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  border: 1px dashed rgba(255,94,0,0.12);
  animation: galSpin 18s linear infinite;
  pointer-events: none;
}
#gp-ads .g-planet-ring {
  border-color: rgba(16,187,178,0.12);
  animation-duration: 22s;
  animation-direction: reverse;
}
#gp-brand .g-planet-ring { animation-duration: 14s; }

@keyframes galSpin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* Orbiting dot */
.g-planet-dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  top: calc(50% - 128px);
  left: 50%;
  transform-origin: 0 128px;
  animation: galSpin 18s linear infinite;
  pointer-events: none;
}
#gp-ads .g-planet-dot { background: #10BBB2; animation-duration: 22s; animation-direction: reverse; }
#gp-brand .g-planet-dot { animation-duration: 14px; }

/* Connector lines between planets */
.g-planet:not(:last-child)::after {
  content: '· · · ·';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  letter-spacing: 4px;
  color: rgba(255,94,0,0.2);
  pointer-events: none;
  z-index: 0;
}

/* ── DRAWER ── */
.g-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(.77,0,.175,1);
  background: var(--charcoal);
  border: 1px solid rgba(255,94,0,0.1);
  border-top: none;
  margin-top: 20px;
}
.g-drawer.open {
  max-height: 900px;
  overflow: visible;
}

.g-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  border-bottom: 2px solid var(--orange);
  position: sticky;
  top: 80px;
  background: var(--charcoal);
  z-index: 10;
}
.g-drawer-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.g-drawer-cat-icon {
  font-size: 24px;
  color: var(--orange);
}
.g-drawer-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 3px;
}
.g-drawer-close {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.g-drawer-close:hover { border-color: var(--orange); color: var(--orange); }

/* ── IMAGE GRID ── */
.g-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
  padding: 2px;
  max-height: 680px;
  overflow-y: auto;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) var(--charcoal);
}
.g-image-grid::-webkit-scrollbar { width: 4px; }
.g-image-grid::-webkit-scrollbar-track { background: var(--charcoal); }
.g-image-grid::-webkit-scrollbar-thumb { background: var(--orange); }

.g-img-card {
  position: relative;
  background: var(--black);
  cursor: pointer;
  overflow: hidden;
  animation: gCardIn 0.5s ease both;
}
@keyframes gCardIn {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

.g-img-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.g-img-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.g-img-card:hover .g-img-thumb img { transform: scale(1.08); }

.g-img-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,13,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.g-img-card:hover .g-img-overlay { opacity: 1; }
.g-img-zoom {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 10px 20px;
  transition: border-color 0.2s, color 0.2s;
}
.g-img-card:hover .g-img-zoom { border-color: var(--orange); color: var(--orange); }

.g-img-meta {
  padding: 16px 18px;
}
.g-img-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}
.g-img-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* ── PDF GRID ── */
.g-pdf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
  padding: 2px;
  max-height: 680px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #FF8C38 var(--charcoal);
}
.g-pdf-grid::-webkit-scrollbar { width: 4px; }
.g-pdf-grid::-webkit-scrollbar-thumb { background: #FF8C38; }

.g-pdf-card {
  background: var(--black);
  cursor: pointer;
  overflow: hidden;
  animation: gCardIn 0.5s ease both;
  transition: transform 0.3s;
}
.g-pdf-card:hover { transform: translateY(-4px); }

.g-pdf-cover {
  position: relative;
  aspect-ratio: 3/4;
  background: #111;
  overflow: hidden;
}
.g-pdf-cover > img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s, filter 0.5s;
  display: block;
}
.g-pdf-card:hover .g-pdf-cover > img { transform: scale(1.05); filter: brightness(0.5); }

.g-pdf-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.g-pdf-card:hover .g-pdf-overlay { opacity: 1; }

.g-pdf-pages-preview {
  position: relative;
  width: 80px; height: 100px;
  margin: 0 auto;
}
.g-pdf-page-thumb {
  position: absolute;
  width: 65px; height: 85px;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(255,255,255,0.3);
  top: 0; left: 0;
  transition: transform 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.g-pdf-open {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 18px;
  background: rgba(13,13,13,0.6);
  transition: border-color 0.2s, color 0.2s;
}
.g-pdf-card:hover .g-pdf-open { border-color: #FF8C38; color: #FF8C38; }

.g-pdf-meta {
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.g-pdf-icon {
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.g-pdf-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}
.g-pdf-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* ── LIGHTBOX ── */
.g-lightbox {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.g-lightbox.open { opacity: 1; pointer-events: all; }

.g-lb-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
}

.g-lb-close {
  position: absolute; top: 24px; right: 32px; z-index: 2;
  background: transparent; border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7); font-size: 18px;
  width: 44px; height: 44px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.g-lb-close:hover { border-color: var(--orange); color: var(--orange); }

.g-lb-prev, .g-lb-next {
  position: absolute; top: 50%; z-index: 2;
  transform: translateY(-50%);
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7); font-size: 32px;
  width: 52px; height: 52px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.g-lb-prev { left: 24px; }
.g-lb-next { right: 24px; }
.g-lb-prev:hover, .g-lb-next:hover { border-color: var(--orange); color: var(--orange); }

.g-lb-content {
  position: relative; z-index: 1;
  max-width: 80vw; max-height: 80vh;
  display: flex; flex-direction: column;
  align-items: center;
}
.g-lb-img {
  max-width: 100%; max-height: 65vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}
.g-lb-info {
  margin-top: 20px; text-align: center;
}
.g-lb-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 2px;
  color: var(--white);
}
.g-lb-desc {
  font-size: 12px; color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

/* ── FLIPBOOK MODAL ── */
.g-flipbook-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.g-flipbook-modal.open { opacity: 1; pointer-events: all; }

.g-fb-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
}

.g-fb-wrap {
  position: relative; z-index: 1;
  width: 90vw; max-width: 900px;
  background: #111;
  border: 1px solid rgba(255,94,0,0.15);
}

.g-fb-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255,94,0,0.15);
  background: #0d0d0d;
}
.g-fb-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 3px;
  color: #FF8C38;
}
.g-fb-close {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 16px; cursor: pointer;
  transition: all 0.2s;
}
.g-fb-close:hover { border-color: var(--orange); color: var(--orange); }

.g-fb-book {
  padding: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}

.g-fb-pages {
  display: flex; gap: 4px;
  width: 100%;
  justify-content: center;
  perspective: 1200px;
  min-height: 420px;
  align-items: stretch;
}

.g-fb-page {
  flex: 1;
  max-width: 380px;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 4px 0 20px rgba(0,0,0,0.6);
  transform-origin: right center;
  transition: transform 0.45s ease;
}
.g-fb-page-left {
  border-right: 2px solid rgba(0,0,0,0.8);
  box-shadow: 2px 0 8px rgba(0,0,0,0.8), inset -4px 0 12px rgba(0,0,0,0.4);
  transform-origin: right center;
}
.g-fb-page-right {
  border-left: 2px solid rgba(0,0,0,0.8);
  box-shadow: -2px 0 8px rgba(0,0,0,0.8), inset 4px 0 12px rgba(0,0,0,0.3);
  transform-origin: left center;
}
.g-fb-blank {
  background: #181818;
}

/* Gutter shadow effect - book spine */
.g-fb-pages::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%; width: 8px;
  background: linear-gradient(90deg, rgba(0,0,0,0.5), rgba(0,0,0,0.2), rgba(0,0,0,0.5));
  transform: translateX(-50%);
  pointer-events: none;
}

.flip-away {
  transform: rotateY(-180deg) !important;
}
.flip-in {
  transform: rotateY(0deg) !important;
}

.g-fb-controls {
  display: flex; align-items: center; gap: 24px;
}
.g-fb-btn {
  background: transparent;
  border: 1px solid rgba(255,94,0,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  padding: 10px 22px; cursor: pointer;
  transition: all 0.2s;
}
.g-fb-btn:hover { border-color: #FF8C38; color: #FF8C38; }
.g-fb-pagenum {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 2px;
  color: rgba(255,94,0,0.6);
}

/* ── GALLERY RESPONSIVE ── */
@media (max-width: 900px) {
  #gallery { padding: 80px 24px 40px; }
  .gallery-universe {
    flex-direction: column;
    height: auto;
    gap: 20px;
    padding: 20px 0;
  }
  .gallery-universe::before { display: none; }
  .g-planet:not(:last-child)::after { display: none; }
  .g-center-label { display: none; }
  .g-planet { height: 180px; width: 100%; }
  .g-planet-core { width: 180px; height: 180px; }
  .g-planet-ring { width: 200px; height: 200px; }
  .g-planet-label {font-family: 'Bebas Neue', sans-serif; font-size: 14px;}
  .g-drawer-title{font-size: 20px;}
  .g-drawer-header { padding: 20px 20px; flex-wrap: wrap; gap: 12px; }
  .g-fb-pages { flex-direction: column; align-items: center; }
  .g-fb-page { max-width: 100%; min-height: 280px; }
  .g-image-grid, .g-pdf-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

