/* =========================
   TYPOGRAPHY SYSTEM
========================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
	--font-primary: 'DM Sans', sans-serif;
	--bg: #F5F3EE;
    --ink: #111110;
    --muted: #888880;
    --accent: #C8FF00;
    --accent-dark: #9FCC00;
    --white: #FFFFFF;
    --border: rgba(17,17,16,0.12);
    --sans: var(--font-primary);

  /* Font sizes (fluid) */
  --h1: clamp(2.5rem, 5vw, 4rem);
  --h2: clamp(2rem, 2.2vw, 2rem);
  --h3: clamp(1.6rem, 3vw, 2.2rem);
  --h4: clamp(1.3rem, 2.5vw, 1.8rem);
  --h5: 1.1rem;
  --h6: 0.95rem;

  --body: 1rem;
  --small: 0.875rem;

  /* Line heights */
  --lh-heading: 1.2;
  --lh-body: 1.6;

  /* Font weights */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  --container-width: 1200px;
  --container-wide: 1400px;
  --container-narrow: 800px;
  --container-padding: 20px;
}

/* Reset */
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: var(--body);
  line-height: var(--lh-body);
  color: #222;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  line-height: var(--lh-heading);
  margin: 0 0 10px;
  font-weight: var(--fw-semibold);
}

/* Individual sizes */
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }
h5 { font-size: var(--h5); }
h6 { font-size: var(--h6); }

h1, h2, h3 {
  letter-spacing: -0.02em;
}

p {
  max-width: 65ch;
}
/* Paragraph */
p {
  margin: 0 0 10px;
}
/* Small text */
.small {
  font-size: var(--small);
}
/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-bold { font-weight: var(--fw-bold); }
.text-medium { font-weight: var(--fw-medium); }
.text-muted { color: #777; }
.text-black {
  color: #000000;
}
.text-white {
  color: #ffffff;
}

/* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 38px;
    
    backdrop-filter: blur(12px);
    border-bottom: 0px solid transparent;
    transition: border-color 0.3s;
  }
  nav.scrolled { border-color: var(--border); }

  .nav-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--muted);
    text-decoration: none;
	text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--ink); }

  .nav-cta {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--ink);
    background: var(--accent);
    padding: 10px 22px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }
  
  .nav-site {
    display: inline-block;
    width: fit-content;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--ink);
    background: var(--accent);
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    transition: 0.2s ease;
  }
  .nav-site:hover { background: var(--accent-dark); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 48px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-counter {
    position: absolute; top: 50%; left: 48px;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--muted);
    display: flex; align-items: center; gap: 12px;
  }
  .hero-counter::before {
    content: '';
    display: block;
    width: 1px; height: 60px;
    background: var(--muted);
  }

  .hero-tag {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 28px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-tag::before {
    content: '';
    display: inline-block;
    width: 24px; height: 1px;
    background: var(--muted);
  }

  .hero-headline {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(64px, 9vw, 140px);
    font-weight: 400; /* 👈 better for hero impact */
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: var(--ink);
    max-width: 900px;
}
  .hero-headline em {
    font-style: italic;
    color: var(--muted);
  }

  .hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 56px;
    gap: 32px;
  }
  .hero-desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    max-width: 340px;
    line-height: 1.7;
  }

  .hero-actions { display: flex; align-items: center; gap: 20px; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--ink);
    background: var(--accent);
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer; border: none;
  }
  .btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,255,0,0.35); }
  .btn-primary svg { transition: transform 0.2s; }
  .btn-primary:hover svg { transform: translate(2px,-2px); }

  .btn-ghost {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--ink); }

  .hero-scroll {
    position: absolute;
    bottom: 80px; right: 48px;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, var(--muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%,100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
  }
  
  
  /* HERO GRID */
.hero-grid {
  padding: 50px;
  padding-top: 100px;
  display: grid;
  place-items: center;
}

/* HERO CARD */
.hero-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 80vh;   /* 🔥 responsive height */
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 🔥 KEY FIX */
  object-position: center;
}
/* BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.6)
  );
}

/* OVERLAY */
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
  padding: 40px;
}

/* TEXT */
.hero-top-text {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(32px, 6vw, 90px);
  line-height: 1.05;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-subtext {
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.6;
}
/* TABLET */
@media (max-width: 768px) {
  .hero-grid {
    padding: 20px;
    padding-top: 80px;
  }

  .hero-card {
    min-height: 70vh;
  }

  .hero-content {
    padding: 20px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .hero-card {
    min-height: 60vh;
    border-radius: 16px;
  }

  .hero-title {
    font-size: clamp(28px, 10vw, 48px);
  }

  .hero-subtext {
    font-size: 14px;
  }
}
  
  /* ── MARQUEE ── */
  .marquee-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .marquee-track {
    display: inline-flex;
    animation: marquee 22s linear infinite;
  }
  .marquee-item {
    display: inline-flex; align-items: center; gap: 32px;
    padding: 0 32px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .marquee-dot {
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

/* =========================
   PROCESS & WEEKEND SECTION HEADERS
========================= */
.weekend-section {
  margin-top: 100px;
}
.weekend-section-header {
  padding: 0 50px;
  margin-bottom: 48px;
}
.trend-section-header {
  padding: 0 50px;
  margin-bottom: 48px;
}
.trend-section-header .section-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.trend-section-header .section-title {
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: var(--h2);
}

@media (max-width: 1180px) {
  .trend-section-header {
    padding: 0 32px;
  }
}
@media (max-width: 900px) {
  .trend-section-header {
    padding: 0;
    margin-bottom: 32px;
  }
}
  
  /* ── WORK ── */
  .section { padding: 100px 50px; }

  .section-header {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .section-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
  }
  .section-title {
    
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .section-title em { font-style: italic; color: var(--muted); }
  .section-link {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    display: flex; align-items: center; gap: 8px;
    transition: color 0.2s, gap 0.2s;
  }
  .section-link:hover { color: var(--ink); gap: 14px; }

  .work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    grid-auto-rows: 1fr;
  }

  .work-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
	grid-auto-rows: 500px; /* smaller cards */
	border: 1px solid #eaeaea; /* 👈 consistent */
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    color: inherit;
  }
  .work-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
  
  .work-card-img {
    width: 100%; height: 100%;
    min-height: 400px;
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
  }
  .work-card:first-child .work-card-img { min-height: 450px; }
  .work-card:hover .work-card-img { transform: scale(1.01); }

  /* Card color themes */
  .card-1 {
	background: #FBFAF9;
	border-radius: 20px;
	border: 0px solid #eaeaea;
  }

  .card-2 {
   background: #FBFAF9;
   border-radius: 20px;
   border: 1px solid #eaeaea;
  }

  .card-3 {
    background: #331515;
	border-radius: 20px;
    border: 0px solid #ffffff;
  }
  .card-4 {
    background: #19212e;
	border-radius: 20px;
    border: 0px solid #19212e;
  }
  .card-5 {
    background: #cf7041;
	border-radius: 20px;
    border: 0px solid #19212e;
  }

  .card-img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* important for cropping */
  }
  .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* main fix */
    object-position: center; /* keeps focus center */
  }
  .card-visual {
    position: absolute;
	inset: 0;
    display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .card-shape {
    border-radius: 50%;
    opacity: 0.15;
    position: absolute;
  }
	
  .work-card-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px;
    color: inherit; /* IMPORTANT */
    transform: translateY(8px);
    transition: transform 0.3s;
  }
  .work-card:hover .work-card-info { transform: translateY(0); }
  
  .work-card-info.is-white {
  color: #ffffff;
}

.work-card-info.is-dark {
  color: #111110;
}

  .card-tag {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.65;
    margin-bottom: 8px;
  }
  .card-name {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.1;
  }
  .card-arrow {
    position: absolute; top: 24px; right: 24px;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s, transform 0.3s;
    backdrop-filter: blur(4px);
  }
  .work-card:hover .card-arrow { opacity: 1; transform: scale(1); }

  /* ── SERVICES ── */
  .services-bg { background: var(--ink); color: var(--white); margin-bottom: 100px; }
  .services-bg .section-label { color: #fff; }
  .services-bg .section-title { color: var(--white); }
  .services-bg .section-title em { color: #fff; }
  .services-bg .section-link { color: #fff; }
  .services-bg .section-link:hover { color: var(--white); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 64px;
  }
  .service-item {
    padding: 48px 40px;
    background: var(--ink);
    transition: background 0.3s;
    cursor: default;
  }
  .service-item:hover { background: #1E1E1C; }

  .service-num {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 32px;
  }
  .service-icon {
    width: 40px; height: 40px;
    background: rgba(200,255,0,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
  }
  .service-name {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.1;
  }
  .service-desc {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
  }
  .service-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C8FF00;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
}

.service-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #C8FF00;
  transition: 0.3s ease;
}

.service-link:hover::after {
  width: 100%;
}

.service-link:hover {
  opacity: 0.8;
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #C8FF00;
}

.service-icon i {
  transition: transform 0.3s ease;
}

.service-item:hover .service-icon i {
  transform: scale(1.1);
}



  /* ── STATS ── */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }
  .stat-item {
    padding: 40px 32px;
    background: #fff;
    text-align: center;
  }
  .stat-num {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }
  .stat-label {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0.05em;
  }

  /* ── ABOUT ── */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-visual {
    position: relative;
    height: 560px;
    border-radius: 20px;
    overflow: hidden;
    background: #E0DDD5;
  }
  .about-shapes {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }

  .about-content { padding: 24px 0; }
  .about-lead {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
  }
  .about-lead em { font-style: italic; color: var(--muted); }
  .about-body {
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .about-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 36px;
  }
  .about-tag {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--muted);
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: border-color 0.2s, color 0.2s;
  }
  .about-tag:hover { border-color: var(--ink); color: var(--ink); }

  /* ── PROCESS ── */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 72px;
  }
  .process-step {
    position: relative;
    padding-top: 32px;
  }
  .process-step::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 1px;
    background: var(--border);
    transition: background 0.3s;
  }
  .process-step:hover::before { background: var(--accent); }

  .step-num {
    font-size: 11px;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
  }
  .step-title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
  }
  .step-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
  }

  /* ── CLIENTS ── */
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 64px;
  }
  .client-cell {
    background: #fff;
    padding: 40px 24px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .client-cell:hover { background: #000; }
  .client-name {
    font-size: 15px;
    font-weight: 200;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s;
  }
  .client-cell:hover .client-name { color: #fff; }

  /* ── CTA ── */
  .cta-section {
    padding: 120px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-bg-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--serif);
    font-size: clamp(100px, 18vw, 260px);
    font-weight: 400;
    color: rgba(17,17,16,0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
  }
  .cta-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
  }
  .cta-headline {
    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 100px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
    position: relative;
  }
  .cta-headline em { font-style: italic; color: var(--muted); }
  .cta-actions { display: flex; align-items: center; justify-content: center; gap: 20px; }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
  }
  .footer-logo {
    font-family: var(--sans);
    font-weight: 200;
    font-size: 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .footer-logo span { font-weight: 400; }
  .footer-copy {
    font-size: 12px;
    font-weight: 300;
    color: var(--muted);
    text-align: center;
    letter-spacing: 0.05em;
  }
  .footer-links {
    display: flex; gap: 28px; justify-content: flex-end;
    list-style: none;
  }
  .footer-links a {
    font-size: 12px;
    font-weight: 300;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--ink); }

  /* ── CURSOR ── */
  .cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--ink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width 0.25s, height 0.25s, background 0.25s, opacity 0.25s;
    mix-blend-mode: multiply;
  }
  .cursor.expanded {
    width: 48px; height: 48px;
    background: var(--accent);
    opacity: 0.7;
  }

  /* ── ANIMATED ENTRANCE ── */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.45s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav { padding: 20px 32px; }
    .hero { padding: 0 32px 64px; }
    .section { padding: 80px 32px; }
    .work-grid { grid-template-columns: 1fr; }
    .work-card:first-child { grid-row: auto; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2,1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { height: 380px; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .clients-grid { grid-template-columns: repeat(3,1fr); }
    footer { grid-template-columns: 1fr; text-align: center; }
    .footer-links { justify-content: center; }
    .hero-counter { display: none; }
    .hero-scroll { display: none; }
  }
  @media (max-width: 640px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero { padding: 0 24px 48px; }
    .section { padding: 64px 24px; }
    .hero-bottom { flex-direction: column; align-items: flex-start; }
    .process-steps { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: repeat(2,1fr); }
    .stats-row { grid-template-columns: 1fr 1fr; }
    footer { padding: 32px 24px; }
    .cta-section { padding: 80px 24px; }
  }
  /* DESKTOP (default) */
.work-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* TABLET */
@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}


/* SECTION LAYOUT */
.process-section {
  width: 100%;
}

.process-grid {
  display: flex;
  gap: 40px; /* 👈 space between left & right */
}

/* =========================
   LEFT SIDE (IMAGE)
========================= */
.process-left {
  width: 50%;
  padding-left: 50px; /* ✅ YOUR REQUIREMENT */
}

.process-sticky {
  position: sticky;
  top: 40px; /* space from top */
  height: calc(100vh - 80px); /* top + bottom spacing */
  display: flex;
  align-items: center;
}

/* Image wrapper */
.card-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #eee; /* fallback */
}

/* Image fit */
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating Badge */
.process-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 12px;
  line-height: 1.5;
}

.badge-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 4px;
}

.badge-title {
  font-weight: 500;
}

.badge-sub {
  font-size: 11px;
  opacity: 0.5;
}


/* =========================
   RIGHT SIDE (CONTENT)
========================= */
/* RIGHT SIDE */
.process-right {
  width: 50%;
  padding-right: 50px; /* ✅ YOUR REQUIREMENT */
  background: transparent; /* keep outer clean */
  position: relative;
}

/* INNER BOX (this gets the radius + bg) */
.process-right-inner {
  background: #f7f7f8;
  border-radius: 20px; /* ✅ YOUR REQUIREMENT */
  height: 100%;
  padding: 0 60px;
  position: relative;
  overflow: hidden;
}

/* subtle divider */
.process-right::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 0;
  right: 50px; /* respects your padding-right */
  background: #f7f7f8;
  border-radius: 20px;
  z-index: 0;
}
/* make content stay above background */
.process-right > * {
  position: relative;
  z-index: 1;
}

/* Steps */
.step {
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;

  background: #ffffff; /* ✅ white card */
  border-radius: 16px; /* ✅ curve */
  padding: 40px 32px; /* inner spacing */
  margin: 24px 0; /* spacing between steps */

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01); /* soft depth */
  border: 1px solid rgba(0, 0, 0, 0.05); /* subtle outline */
}

/* Step number */
.step-number {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.4;
  margin-bottom: 12px;
}

/* Heading */
.step h2 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* Text */
.step p {
  font-size: 16px;
  opacity: 0.7;
  line-height: 1.6;
}


/* =========================
   RESPONSIVE DESIGN
========================= */

/* Process section responsive repair */
.process-section {
  padding: 120px 0;
  overflow: visible;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.process-left,
.process-right {
  width: auto;
  min-width: 0;
}

.process-left {
  align-self: stretch;
}

.process-sticky {
  position: sticky;
  top: 40px;
  height: calc(100vh - 80px);
  min-height: 560px;
  max-height: 860px;
}

.process-sticky .card-img {
  position: relative;
  inset: auto;
}

.price-marker {
  background: #cf7041;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
}
.price-marker.active {
  background: #C8FF00;
  transform: scale(1.1);
}
.dot {
  width: 12px;
  height: 12px;
  background: #ff3b3b;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 59, 59, 0.6);
}
.leaflet-tooltip.price-tooltip {
  background: #fff;
  color: #000;
  border: none;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .process-section {
    padding: 90px 0;
  }

  .process-grid {
    gap: 28px;
  }

  .process-left {
    padding-left: 32px;
  }

  .process-right {
    padding-right: 32px;
  }

  .process-right::before {
    right: 32px;
  }

  .process-right-inner {
    padding: 0 32px;
  }

  .step h2 {
    font-size: clamp(26px, 3vw, 32px);
  }
}

@media (max-width: 900px) {
  .process-section {
    padding: 80px 32px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-left,
  .process-right {
    padding: 0;
  }

  .process-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .process-sticky .card-img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .process-right::before {
    display: none;
  }

  .process-right-inner {
    padding: 8px;
  }

  .step {
    min-height: auto;
    padding: 32px 28px;
    margin: 16px 0;
  }
}

@media (max-width: 640px) {
  .process-section {
    padding: 64px 24px;
  }

  .process-sticky .card-img {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .process-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 16px;
  }

  .process-right-inner {
    border-radius: 16px;
  }

  .step {
    border-radius: 14px;
    padding: 28px 22px;
  }

  .step h2 {
    font-size: 24px;
  }

  .step p {
    font-size: 15px;
  }
}

/* Random Media Load Start */

/* ── Preloader ── */
    #preloader {
      position: absolute;
      inset: 0;
      background: #19212e;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 100;
      transition: opacity 0.8s ease;
    }
    #preloader.hidden {
      opacity: 0;
      pointer-events: none;
    }
    .spinner {
      width: 44px;
      height: 44px;
      border: 2px solid rgba(255,255,255,0.1);
      border-top-color: rgba(255,255,255,0.7);
      border-radius: 50%;
      animation: spin 0.9s linear infinite;
    }
    .preloader-text {
      margin-top: 14px;
      color: rgba(255,255,255,0.3);
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-family: sans-serif;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ── Stage: two slots for crossfade ── */
    #stage {
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .slot {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease;
    }
    .slot.active {
      opacity: 1;
    }

    .slot img,
    .slot video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      position: absolute;
      top: 0; left: 0;
    }

    /* ── No media ── */
    #nomedia {
      display: none;
      position: fixed;
      inset: 0;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      color: rgba(255,255,255,0.25);
      text-align: center;
      gap: 10px;
      font-family: sans-serif;
    }
    #nomedia.show { display: flex; }
    #nomedia h2 { font-size: 16px; font-weight: 400; letter-spacing: 0.1em; }
    #nomedia p  { font-size: 12px; opacity: 0.5; }
	
	
/* =========================
   AI BASE
========================= */

.ai-section{
  background:#ffffff;
}


/* =========================
   LIST WRAPPER
========================= */

.ai-list{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:30px;
}


/* =========================
   CARD (LIGHT STYLE)
========================= */

.ai-card{
  display:grid;
  grid-template-columns:
    60px
    90px
    minmax(0,1fr)
    120px
    140px;

  align-items:center;

  gap:18px;

  padding:18px 20px;

  border:1px solid #e7e7e7;
  border-radius:16px;

  background:#ffffff;

  transition:all .25s ease;
}


/* HOVER */

.ai-card:hover{
  transform:translateY(-3px);

  border-color:#d6d6d6;

  box-shadow:0 10px 25px rgba(0,0,0,.06);
}


/* =========================
   NUMBER (LIGHT GRAY)
========================= */

.ai-number{
  font-size:15px;
  font-weight:400;
  color:#c7c7c7;
}


/* =========================
   IMAGE (GRAY BORDER)
========================= */

.ai-image{
  width:90px;
  height:90px;

  border-radius:14px;

  overflow:hidden;

  border:1px solid #e3e3e3;

  background:#fafafa;
}

.ai-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}


/* =========================
   TITLE (GRAY)
========================= */

.ai-title{
  margin:0 0 10px;

  font-size:18px;
  font-weight:600;

  color:#5a5a5a;

  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}


/* =========================
   TAGS (WHITE BG + BORDER)
========================= */

.ai-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.ai-tags span{
  padding:6px 12px;

  font-size:12.5px;
  font-weight:500;

  color:#6b6b6b;

  background:#ffffff;

  border:1px solid #e0e0e0;

  border-radius:999px;
}


/* =========================
   DATE (GRAY)
========================= */

.ai-date{
  font-size:13px;

  color:#8a8a8a;

  white-space:nowrap;
}


/* =========================
   VIEW BUTTON (BLACK/WHITE STYLE)
========================= */

.ai-action{
  display:flex;
  justify-content:flex-end;
}

.visit-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:44px;
  padding:0 20px;

  border-radius:12px;

  background:#111111;
  color:#ffffff;

  font-size:13.5px;
  font-weight:600;

  text-decoration:none;

  border:1px solid #111111;

  transition:all .2s ease;
}

.visit-btn:hover{
  background:#ffffff;
  color:#111111;
  border:1px solid #d0d0d0;

  transform:translateY(-2px);
}


/* =========================
   LOAD MORE (CREATIVE BUTTON)
========================= */

.load-more-wrap{
  display:flex;
  justify-content:center;

  margin-top:40px;
}


/* gradient border button style */

.load-more-btn{
  position:relative;

  padding:14px 36px;

  font-size:14px;
  font-weight:600;

  color:#111;

  background:#ffffff;

  border:none;

  border-radius:14px;

  cursor:pointer;

  z-index:1;

  transition:all .3s ease;
}


/* gradient border effect */
.load-more-btn::before{
  content:"";

  position:absolute;
  inset:0;

  padding:1px;

  border-radius:14px;

  background:linear-gradient(135deg,#dcdcdc,#f0f0f0,#dcdcdc);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite:xor;
  mask-composite:exclude;

  z-index:-1;
}


/* hover animation */
.load-more-btn:hover{
  transform:translateY(-3px);

  box-shadow:0 10px 20px rgba(0,0,0,.08);
}


/* =========================
   TABLET
========================= */

@media (max-width:991px){

  .ai-card{
    grid-template-columns:
      60px
      80px
      minmax(0,1fr);

    gap:14px;
  }

  .ai-date{
    display:none;
  }

  .ai-action{
    grid-column:2 / -1;
    justify-content:flex-start;
    margin-top:10px;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width:640px){

  .ai-card{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    padding:16px;
    border-radius:14px;
  }

  /* number + title row */
  .ai-number{
    font-size:22px;
  }

  /* image becomes full width hero block */
  .ai-image{
    width:100%;
    height:180px;

    border-radius:14px;
  }

  /* title spacing fix */
  .ai-title{
    font-size:16px;
    white-space:normal;
    margin-top: 15px;
	margin-bottom: 15px;
  }

  /* tags wrap properly */
  .ai-tags{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    overflow:visible;
    padding-bottom:4px;
  }

  .ai-tags span{
    flex:0 0 auto;
    white-space:nowrap;
  }

  /* date hidden already in tablet, safe */
  .ai-date{
    display:none;
  }

  /* button full width + better spacing */
  .ai-action{
    width:100%;
  }

  .visit-btn{
    width:100%;
    height:42px;
  }
}