/* ============================================================
   KREATIVE MOIZ — COMPLETE DESIGN SYSTEM
   ============================================================ */

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE6D6;
  --ink: #0D0D0D;
  --ink-soft: #141414;
  --teal: #2D7A6B;
  --teal-light: #3A9B89;
  --teal-glow: rgba(45,122,107,0.25);
  --amber: #E8A838;
  --coral: #E05A3A;
  --white: #FFFFFF;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.10);
  --shadow-soft: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-hard: 0 8px 32px rgba(0,0,0,0.3);
  --radius-sm: 12px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 999px;
  --font-display: 'DM Serif Display', serif;
  --font-sans: 'Syne', sans-serif;
  --font-body: 'Cabinet Grotesk', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { font-family: inherit; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: exclusion;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--teal-light);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out),
              height 0.4s var(--ease-out),
              border-color 0.3s ease;
}
.cursor-ring.hovered {
  width: 64px; height: 64px;
  border-color: var(--teal-light);
}

/* ============================================================
   LOADER
   ============================================================ */
#loader {
  position: fixed; inset: 0;
  z-index: 10000;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
}
.loader-avatar-wrap {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--teal);
  box-shadow: 0 0 60px var(--teal-glow);
  opacity: 0;
  transform: scale(0.5);
}
.loader-avatar-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.loader-label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  opacity: 0;
}
.loader-bar-track {
  width: 200px; height: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
  overflow: hidden;
  opacity: 0;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 1px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
   
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease-out),
              background 0.4s ease,
              border-color 0.4s ease;
}
#navbar.scrolled {
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 52px;
}
.nav-brand{
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-name{
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  height: 34px;
  width: auto;
  filter: brightness(2) invert(1);
}
.nav-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--teal);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-avatar:hover {
  transform: scale(1.12);
  box-shadow: 0 0 16px var(--teal-glow);
}
.nav-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--teal-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--teal-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(45,122,107,0.45) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 2000;
  background: var(--ink);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 44px;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--teal-light); }
.mobile-menu-close {
  position: fixed;
  top: 26px; right: 32px;
  background: none; border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  font-size: 28px;
  line-height: 1;
  transition: color 0.3s;
}
.mobile-menu-close:hover { color: var(--white); }

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.section-max { max-width: 1240px; margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--teal-light);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(45,122,107,0.4);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 16px 0;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost .arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: all 0.35s var(--ease-out);
}
.btn-ghost:hover .arrow {
  border-color: var(--white);
  transform: translate(3px, -3px);
}

/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(36px);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 130px 52px 90px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
/* Noise overlay */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none; z-index: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-blob-1 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  top: -220px; right: -120px;
}
.hero-blob-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
  bottom: -120px; left: 8%;
}

/* Hero Left */
.hero-left { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: pulse-dot 2.4s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(54px, 5.8vw, 92px);
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
}
.hero-headline .accent { color: var(--teal-light); font-style: italic; }
.hero-headline .stroke {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.35);
  color: transparent;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 440px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(24px);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(20px);
}

/* Hero stat strip */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  opacity: 0;
}
.hero-stat {}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Hero Right — Avatar Scene */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-scene {
  position: relative;
  width: 440px; height: 500px;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px; height: 380px;
  border-radius: var(--radius-xl);
  background: var(--teal);
  filter: blur(70px);
  opacity: 0.18;
  z-index: 1;
}
.hero-avatar-card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 290px; height: 330px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 80px var(--teal-glow);
  z-index: 3;
  opacity: 0;
}
.hero-avatar-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Floating chips */
.hero-chip {
  position: absolute;
  z-index: 4;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 18px;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  opacity: 0;
}
.hero-chip-teal {
  background: rgba(45,122,107,0.18);
  border-color: rgba(45,122,107,0.35);
  color: var(--teal-light);
}
.hero-chip-amber {
  background: rgba(232,168,56,0.12);
  border-color: rgba(232,168,56,0.3);
  color: var(--amber);
}
.chip-1 { top: 36px; left: 4px; }
.chip-2 { bottom: 90px; right: -16px; }
.chip-3 { top: 190px; right: -28px; }
.chip-4 { bottom: 40px; left: 0px; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  z-index: 2;
}
.hero-scroll-line {
  width: 48px; height: 1px;
  background: rgba(255,255,255,0.25);
}
.hero-scroll-text {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* SVG hand-drawn arrow */
.hero-drawn-arrow {
  position: absolute;
  bottom: 110px; left: 48%;
  width: 70px; height: 55px;
  opacity: 0.3;
  z-index: 2;
  pointer-events: none;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  background: rgba(255,255,255,0.015);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 36px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  white-space: nowrap;
}
.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: 150px 52px;
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.about-left { position: relative; }
.about-avatar-wrapper { position: relative; width: 380px; }
.about-bg-shape {
  width: 300px; height: 350px;
  border-radius: 200px 200px 160px 160px;
  background: linear-gradient(160deg, var(--teal) 0%, transparent 65%);
  opacity: 0.1;
  position: absolute;
  top: -24px; left: 24px;
  z-index: 0;
}
.about-frame {
  width: 300px; height: 345px;
  border-radius: 160px 160px 120px 120px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  position: relative; z-index: 2;
}
.about-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
}
.about-badge {
  position: absolute;
  bottom: -16px; right: 10px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(45,122,107,0.5);
  z-index: 4;
}
.about-years {
  position: absolute;
  top: 20px; right: -36px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.about-years .num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--teal-light);
  line-height: 1;
}
.about-years .lbl {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
.about-right {}
.about-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 58px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}
.about-headline em { color: var(--teal-light); }
.about-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.82;
  color: rgba(255,255,255,0.5);
  margin-bottom: 44px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.03);
  transition: all 0.3s ease;
  cursor: default;
}
.tag:hover {
  border-color: var(--teal);
  color: var(--teal-light);
  background: rgba(45,122,107,0.08);
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 150px 52px;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
}
.services-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.8vw, 76px);
  line-height: 1.0;
  color: var(--white);
}
.services-headline .stroke {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.28);
  color: transparent;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.025);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s var(--ease-out),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(45,122,107,0.28);
  box-shadow: var(--shadow-soft);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: rgba(45,122,107,0.12);
  border: 1px solid rgba(45,122,107,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.service-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-display);
  font-size: 72px;
  color: rgba(255,255,255,0.035);
  line-height: 1;
}
.service-title {
  font-family: var(--font-sans);
  font-size: 19px; font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.service-desc {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.75;
  color: rgba(255,255,255,0.42);
  position: relative; z-index: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600;
  color: var(--teal-light);
  margin-top: 28px;
  transition: gap 0.3s ease;
  position: relative; z-index: 1;
}
.service-link:hover { gap: 14px; }

/* ============================================================
   WORK
   ============================================================ */
#work {
  padding: 150px 0;
  overflow: hidden;
}
.work-header {
  padding: 0 52px;
  margin-bottom: 64px;
}
.work-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 1.0;
  color: var(--white);
  margin-top: 8px;
}
.work-list {}
.work-item {
  display: grid;
  grid-template-columns: 72px 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 28px 52px;
  border-bottom: 1px solid rgba(255,255,255,0.055);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: padding 0.4s var(--ease-out);
}
.work-item::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.02);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.work-item:hover::before { transform: scaleX(1); }
.work-item:hover { padding-left: 64px; }
.work-item:first-child { border-top: 1px solid rgba(255,255,255,0.055); }
.work-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255,255,255,0.18);
  font-style: italic;
}
.work-title {
  font-family: var(--font-sans);
  font-size: clamp(18px,1.8vw,26px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.work-item:hover .work-title { color: var(--teal-light); }
.work-tags {
  display: flex;
  gap: 8px;
}
.work-tag {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.045);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
.work-arrow {
  font-size: 22px;
  color: rgba(255,255,255,0.18);
  transition: all 0.3s ease;
}
.work-item:hover .work-arrow {
  color: var(--teal-light);
  transform: translate(4px, -4px);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 150px 52px;
  background: var(--cream);
  color: var(--ink);
}
.testi-header {
  text-align: center;
  margin-bottom: 88px;
}
.testi-label {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
}
.testi-label::before, .testi-label::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--teal);
}
.testi-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 68px);
  line-height: 1.1;
  color: var(--ink);
}
.testi-headline em { color: var(--teal); }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 40px rgba(0,0,0,0.05);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
  position: relative;
}
.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}
.testi-card.featured {
  background: var(--ink);
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--teal);
  line-height: 0.5;
  margin-bottom: 20px;
}
.testi-card.featured .testi-quote { color: rgba(45,122,107,0.6); }
.testi-text {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 36px;
}
.testi-card.featured .testi-text { color: rgba(255,255,255,0.8); font-size: clamp(18px,1.8vw,26px); margin-bottom: 0; }
.testi-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--teal);
  flex-shrink: 0;
}
.testi-avatar-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.testi-name {
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 700;
  color: var(--ink);
}
.testi-card.featured .testi-name { color: var(--white); }
.testi-role {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(0,0,0,0.38);
}
.testi-card.featured .testi-role { color: rgba(255,255,255,0.4); }
.testi-stars {
  margin-left: auto;
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--amber);
}
.testi-side { }

/* ============================================================
   PROCESS
   ============================================================ */
#process {
  padding: 150px 52px;
  position: relative;
  overflow: hidden;
}
.process-header { margin-bottom: 88px; }
.process-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.1;
  color: var(--white);
  margin-top: 8px;
}
.process-headline em { color: var(--teal-light); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(45,122,107,0.3) 20%,
    rgba(45,122,107,0.3) 80%,
    transparent 100%);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  padding: 32px 28px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.4s ease, background 0.4s ease;
}
.process-step:hover {
  border-color: rgba(45,122,107,0.25);
  background: rgba(45,122,107,0.05);
}
.process-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid rgba(45,122,107,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--teal-light);
  margin-bottom: 24px;
  font-style: italic;
}
.process-step-title {
  font-family: var(--font-sans);
  font-size: 17px; font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.process-step-desc {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.75;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   BLOG
   ============================================================ */
#blog {
  padding: 150px 52px;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
}
.blog-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 3.8vw, 60px);
  line-height: 1.1;
  color: var(--white);
  margin-top: 8px;
}
.blog-headline span { color: var(--teal-light); font-style: italic; }
.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
}
.blog-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.45s var(--ease-out), border-color 0.35s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(45,122,107,0.28);
}
.blog-card-thumb {
  height: 220px;
  background: linear-gradient(135deg,
    rgba(45,122,107,0.25) 0%,
    rgba(13,13,13,0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 72px;
  color: rgba(255,255,255,0.06);
  font-style: italic;
  position: relative;
  overflow: hidden;
}
.blog-card-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(13,13,13,0.4));
}
.blog-card-body { padding: 28px 32px 32px; }
.blog-category {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 12px;
}
.blog-title {
  font-family: var(--font-sans);
  font-size: 20px; font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 12px;
}
.blog-excerpt {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.72;
  color: rgba(255,255,255,0.38);
  margin-bottom: 24px;
}
.blog-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.055);
}
.blog-author-avi {
  width: 32px; height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--teal);
  flex-shrink: 0;
}
.blog-author-avi img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.blog-author-name {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.65);
}
.blog-date {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  margin-left: auto;
}

/* Blog right column */
.blog-secondary {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-card-sm {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: all 0.35s ease;
}
.blog-card-sm:hover {
  border-color: rgba(45,122,107,0.25);
  transform: translateX(5px);
}
.blog-sm-thumb {
  height: 90px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(45,122,107,0.2), rgba(13,13,13,0.8));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.blog-sm-body .blog-title {
  font-size: 15px;
  margin-bottom: 6px;
}
.blog-sm-body .blog-category { margin-bottom: 6px; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: 150px 52px;
  background: var(--cream);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.contact-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.1;
  pointer-events: none;
}
.contact-blob-1 {
  width: 500px; height: 500px;
  background: var(--teal);
  top: -200px; left: -100px;
}
.contact-blob-2 {
  width: 400px; height: 400px;
  background: var(--amber);
  bottom: -100px; right: -80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 88px;
  align-items: start;
  position: relative; z-index: 1;
}
.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.2vw, 68px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
  margin-top: 8px;
}
.contact-headline em { color: var(--teal); }
.contact-body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.8;
  color: rgba(0,0,0,0.48);
  margin-bottom: 44px;
}
/* Contact avatar card */
.contact-avatar-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  max-width: 400px;
}
.contact-avi {
  width: 68px; height: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--teal);
  flex-shrink: 0;
}
.contact-avi img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.contact-avi-text h3 {
  font-family: var(--font-sans);
  font-size: 17px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}
.contact-avi-text p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(0,0,0,0.42);
  line-height: 1.5;
}
/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
}
.form-input, .form-textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  resize: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45,122,107,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(0,0,0,0.25); }
.form-textarea { height: 130px; }
.btn-submit {
  background: var(--ink);
  color: var(--white);
  border: none;
  cursor: pointer;
  justify-content: center;
  font-size: 15px;
}
.btn-submit:hover { background: var(--teal); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink-soft);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 72px 52px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  margin-bottom: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.055);
}
.footer-logo {
  height: 25%;
  filter: brightness(1) invert(0);
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.32);
  max-width: 240px;
  margin-bottom: 28px;
}
.footer-social-links {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.38);
  font-size: 15px;
  transition: all 0.3s ease;
  font-weight: bold;
}
.footer-social:hover {
  border-color: var(--teal);
  color: var(--teal-light);
  transform: translateY(-2px);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 24px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col ul a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.28);
}
.footer-copy-avi {
  width: 28px; height: 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.footer-copy-avi img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.footer-legal {
  display: flex; gap: 28px;
}
.footer-legal a {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   STICKY CTA
   ============================================================ */
#sticky-cta {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 990;
  width: 248px;
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 20px 22px 22px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.55);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s var(--ease-out);
}
#sticky-cta.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.sticky-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none; border: none;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: color 0.3s;
}
.sticky-close:hover { color: var(--white); }
.sticky-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.sticky-avi {
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--teal);
  flex-shrink: 0;
}
.sticky-avi img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.sticky-name {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 700;
  color: var(--white);
}
.sticky-status {
  font-family: var(--font-body);
  font-size: 12px;
  color: #4ade80;
}
.sticky-title {
  font-family: var(--font-sans);
  font-size: 16px; font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.sticky-desc {
  font-family: var(--font-body);
  font-size: 13px; line-height: 1.55;
  color: rgba(255,255,255,0.42);
  margin-bottom: 16px;
}
.sticky-btn {
  display: block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 700;
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
  transition: background 0.3s ease;
}
.sticky-btn:hover { background: var(--teal-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 40px;}
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-avatar-wrapper { width: 100%; max-width: 320px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testi-card.featured { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
}
@media (max-width: 768px) {
  #navbar { padding: 16px 24px; }
  #navbar.scrolled { padding: 12px 24px; }
  .nav-links, .nav-avatar { display: none; }
  .nav-hamburger { display: flex; }
  #hero { padding: 110px 24px 70px; }
  .hero-scroll { left: 24px; bottom: 28px; }
  #about, #services, #work, #blog, #contact, #process { padding: 80px 24px; }
  #testimonials { padding: 80px 24px; }
  .work-item { grid-template-columns: 48px 1fr 60px; gap: 16px; padding: 20px 24px; }
  .work-tags { display: none; }
  .work-item:hover { padding-left: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card.featured { grid-column: auto; }
  footer { padding: 48px 24px 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .services-header, .blog-header { flex-direction: column; align-items: flex-start; }
  .process-grid { grid-template-columns: 1fr; }
  #sticky-cta { bottom: 20px; right: 20px; width: 230px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 44px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testi-card { padding: 28px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {

    .hero-scene {
        width: 320px;
        height: 320px;
    }

    .hero-avatar-card {
        width: 220px;
        height: 250px;
    }

    .hero-chip {
        font-size: 11px;
        padding: 8px 14px;
    }

    .chip-1 {
        top: 15px;
        left: 10px;
    }

    .chip-2 {
        bottom: 50px;
        right: 10px;
    }

    .chip-3 {
        top: 130px;
        right: 0;
    }

    .chip-4 {
        bottom: 20px;
        left: 10px;
    }
}
@media (max-width: 768px) {

    #navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-avatar {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

}
@media (max-width:768px){

    .nav-name{
        font-size: 16px;
    }

}