/* ============================================================
   WAMU Studio
   CSS Design System
   ============================================================ */

/* ===========================
   1. VARIABLES
=========================== */
:root {
  /* Brand Colors */
  --yellow:       #F7C948;
  --yellow-light: #FFF8D4;
  --yellow-dark:  #E6B800;
  --pink:         #FF5C8D;
  --pink-light:   #FFE8F1;
  --mint:         #00C9A7;
  --mint-light:   #D0F7EE;
  --purple:       #8B6CF6;
  --purple-light: #EDE8FF;

  /* Neutrals */
  --dark:       #111111;
  --dark-2:     #1a1a1a;
  --dark-3:     #242424;
  --cream:      #FEFCF3;
  --cream-2:    #F7F3EA;
  --cream-3:    #EEE9DC;
  --white:      #FFFFFF;
  --muted:      #888888;
  --border:     rgba(17, 17, 17, 0.09);
  --border-2:   rgba(17, 17, 17, 0.14);

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Layout */
  --max-w:   1200px;
  --pad-x:   clamp(1.25rem, 4vw, 3rem);

  /* Radii */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:    0.2s;
  --t:         0.35s;
  --t-slow:    0.6s;
}

/* ===========================
   2. RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-loading { overflow: hidden; }

img    { display: block; max-width: 100%; }
a      { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ===========================
   3. LOADER
=========================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.loader__logo {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  gap: 0.05em;
}

.loader__logo span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
}

.loader__logo span:nth-child(1) { color: var(--yellow); }
.loader__logo span:nth-child(2) { color: var(--pink); }
.loader__logo span:nth-child(3) { color: var(--mint); }
.loader__logo span:nth-child(4) { color: var(--cream); }

.loader__bar {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--r-full);
  overflow: hidden;
}

.loader__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--yellow), var(--pink));
  border-radius: var(--r-full);
}

/* ===========================
   4. CUSTOM CURSOR
=========================== */
.cursor,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: width var(--t) var(--ease), height var(--t) var(--ease), border-color var(--t) var(--ease);
}

body.cursor--hover .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--yellow);
}

@media (max-width: 768px) {
  .cursor, .cursor-ring { display: none; }
}

/* ===========================
   5. NAVIGATION
=========================== */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  transition: background var(--t) var(--ease),
              padding var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.4rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--t) var(--ease);
}

.nav.is-scrolled .nav__inner {
  padding-block: 0.9rem;
}

.nav.is-scrolled {
  background: rgba(254, 252, 243, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream);
  transition: color var(--t) var(--ease);
}

.nav.is-scrolled .nav__logo { color: var(--dark); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(254, 252, 243, 0.75);
  transition: color var(--t-fast) var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--yellow);
  transition: width var(--t) var(--ease);
}

.nav__link:hover::after { width: 100%; }
.nav__link:hover         { color: var(--cream); }

.nav.is-scrolled .nav__link       { color: var(--muted); }
.nav.is-scrolled .nav__link:hover { color: var(--dark); }
.nav.is-scrolled .nav__link::after { background: var(--pink); }

/* Nav CTA Button */
.btn--nav {
  padding: 0.55rem 1.2rem;
  background: var(--yellow);
  color: var(--dark);
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--t) var(--ease-back);
}

.btn--nav:hover {
  background: var(--dark);
  color: var(--yellow);
  transform: scale(1.04);
}

.nav.is-scrolled .btn--nav { background: var(--dark); color: var(--cream); }
.nav.is-scrolled .btn--nav:hover { background: var(--yellow); color: var(--dark); }

/* Burger */
.nav__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
}

.nav__menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--t) var(--ease);
}

.nav.is-scrolled .nav__menu-btn span { background: var(--dark); }

.nav__menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__menu-btn.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease);
}

.mobile-menu.is-open { max-height: 500px; }

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(254, 252, 243, 0.8);
  padding: 0.9rem var(--pad-x);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color var(--t-fast) var(--ease), padding var(--t) var(--ease);
}

.mobile-menu__link:hover { color: var(--yellow); padding-left: calc(var(--pad-x) + 8px); }
.mobile-menu__link--cta  { color: var(--yellow); border: none; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }
  .mobile-menu   { display: flex; }
}

/* ===========================
   6. BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  padding: 0.85rem 1.75rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  transition: all var(--t) var(--ease-back);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--yellow);
  color: var(--dark);
}
.btn--primary:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 92, 141, 0.35);
}

.btn--ghost {
  border: 1.5px solid rgba(254, 252, 243, 0.25);
  color: rgba(254, 252, 243, 0.75);
}
.btn--ghost:hover {
  border-color: var(--cream);
  color: var(--cream);
  transform: translateY(-3px);
}

.btn--outline-dark {
  border: 1.5px solid var(--border-2);
  color: var(--dark);
}
.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
  transform: translateY(-3px);
}

.btn--outline-light {
  border: 1.5px solid rgba(254, 252, 243, 0.2);
  color: var(--cream);
}
.btn--outline-light:hover {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.btn--ghost-light {
  color: rgba(254, 252, 243, 0.5);
  font-weight: 500;
}
.btn--ghost-light:hover {
  color: var(--cream);
  transform: translateY(-2px);
}

/* ===========================
   7. SECTION LABEL
=========================== */
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.875rem;
}

/* ===========================
   8. HERO
=========================== */
.hero {
  min-height: 100svh;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem var(--pad-x) 5rem;
}

/* Watermark text */
.hero__bg-word {
  position: absolute;
  bottom: -8%;
  right: -3%;
  font-family: var(--font-display);
  font-size: clamp(10rem, 28vw, 26rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

/* Abstract shapes */
.hero__shapes { position: absolute; inset: 0; pointer-events: none; }

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.hero__shape--1 {
  width: 500px;
  height: 500px;
  background: var(--yellow);
  top: -100px;
  right: -100px;
}

.hero__shape--2 {
  width: 350px;
  height: 350px;
  background: var(--pink);
  bottom: 10%;
  left: 20%;
}

.hero__shape--3 {
  width: 250px;
  height: 250px;
  background: var(--mint);
  top: 30%;
  right: 10%;
}

/* Hero layout */
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(247, 201, 72, 0.4); }
  50%       { transform: scale(1.2); box-shadow: 0 0 0 4px rgba(247, 201, 72, 0); }
}

/* Title */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.875rem, 8.5vw, 8rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin-bottom: 1.75rem;
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

.hero__title-line--accent { color: var(--yellow); }
.hero__title-line--dim    { color: rgba(254, 252, 243, 0.35); font-style: italic; }

/* Description */
.hero__desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(254, 252, 243, 0.5);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* Actions */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Floating service pills */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-end;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(254, 252, 243, 0.8);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  will-change: transform;
}

.hero__pill-icon { font-size: 1rem; }

.hero__pill--1 { background: rgba(247, 201, 72, 0.12);  border-color: rgba(247, 201, 72, 0.25); }
.hero__pill--2 { background: rgba(255, 92, 141, 0.12);  border-color: rgba(255, 92, 141, 0.25); }
.hero__pill--3 { background: rgba(0, 201, 167, 0.12);   border-color: rgba(0, 201, 167, 0.25);  }
.hero__pill--4 { background: rgba(139, 108, 246, 0.12); border-color: rgba(139, 108, 246, 0.25);}
.hero__pill--5 { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.12);}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.hero__scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.hero__scroll-wheel {
  width: 3px;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 99px;
  animation: scroll-anim 1.6s ease-in-out infinite;
}

@keyframes scroll-anim {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
}

/* ===========================
   9. MARQUEE
=========================== */
.marquee {
  background: var(--yellow);
  padding: 0.9rem 0;
  overflow: hidden;
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  animation: marquee-flow 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--dark);
}

.marquee__sep {
  color: var(--pink);
  font-size: 0.55rem;
}

@keyframes marquee-flow {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================
   10. SERVICES
=========================== */
.services {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream);
}

.services__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.services__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.services__title em {
  font-style: normal;
  color: var(--pink);
}

/* Grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
}

/* Base card */
.service-card {
  grid-column: span 4;
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  cursor: default;
  overflow: hidden;
  transition: transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Color blob on hover */
.service-card::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--card-color-light, var(--yellow-light));
  bottom: -80px;
  right: -80px;
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease);
  pointer-events: none;
}

.service-card:hover::before { opacity: 1; }

/* Wide card (spans 8 cols) */
.service-card--wide { grid-column: span 8; }

/* Dark card (full width) */
.service-card--dark {
  grid-column: span 12;
  background: var(--dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.service-card--dark::before { display: none; }
.service-card--dark:hover { transform: translateY(-5px); }

/* Card elements */
.service-card__num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.service-card__num--light { color: rgba(255, 255, 255, 0.3); }

.service-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--card-color-light, var(--cream-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-card__icon-wrap--light {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 0;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.65rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.service-card--dark .service-card__desc {
  color: rgba(254, 252, 243, 0.5);
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 3rem; /* space for arrow */
}

.service-card__tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-full);
  background: var(--cream-2);
  color: var(--dark-3);
  letter-spacing: 0.02em;
}

.service-card__tag--light {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(254, 252, 243, 0.7);
}

/* Arrow button */
.service-card__arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border-2);
  border-radius: 50%;
  font-size: 0.9rem;
  transition: all var(--t) var(--ease-back);
}

.service-card:hover .service-card__arrow {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
  transform: rotate(45deg) scale(1.1);
}

/* Timer badge (websites card) */
.service-card__timer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: var(--mint-light);
  color: var(--mint);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.timer-digit {
  font-size: 1.3rem;
  font-weight: 800;
}

/* Dark card content layout */
.service-card__dark-content {
  flex: 1;
  min-width: 240px;
}

.service-card__dark-content .service-card__title { margin-top: 1rem; }
.service-card__dark-content .service-card__tags  { margin-bottom: 1.5rem; }

.service-card__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.6rem;
  background: var(--yellow);
  color: var(--dark);
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--t) var(--ease-back);
}

.service-card__cta-btn:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 92, 141, 0.35);
}

/* Colored dots decoration on dark card */
.service-card__dots {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

.sdot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  animation: float-dot 3s ease-in-out infinite;
}

.sdot--yellow  { background: var(--yellow);  animation-delay: 0s; }
.sdot--pink    { background: var(--pink);    animation-delay: 0.5s; }
.sdot--mint    { background: var(--mint);    animation-delay: 1s; }
.sdot--purple  { background: var(--purple);  animation-delay: 1.5s; }

@keyframes float-dot {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Responsive services grid */
@media (max-width: 1024px) {
  .service-card          { grid-column: span 6; }
  .service-card--wide    { grid-column: span 6; }
}

@media (max-width: 640px) {
  .service-card,
  .service-card--wide,
  .service-card--dark { grid-column: span 12; }

  .service-card--dark { flex-direction: column; align-items: flex-start; }
  .service-card__dots { display: none; }
}

/* ===========================
   11. ABOUT
=========================== */
.about {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--dark);
  color: var(--cream);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

@media (max-width: 768px) {
  .about__inner { grid-template-columns: 1fr; }
}

.about__label { color: rgba(255, 255, 255, 0.35); }

.about h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.about h2 em { font-style: normal; color: var(--yellow); }

.about__lead {
  font-size: 1.05rem;
  color: rgba(254, 252, 243, 0.8);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about__body {
  font-size: 0.95rem;
  color: rgba(254, 252, 243, 0.45);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.about__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.25rem;
}

.about__skill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-full);
  color: rgba(254, 252, 243, 0.7);
}

.about__skill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Photo placeholder */
.about__photo-wrap {
  position: relative;
}

.about__photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  position: relative;
}

/* Floating badges */
.about__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1rem;
  border-radius: var(--r-md);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.about__badge--1 {
  top: -0.75rem;
  right: -0.75rem;
  background: var(--yellow);
  color: var(--dark);
  animation: float-badge 3s ease-in-out infinite;
}

.about__badge--2 {
  bottom: 2.5rem;
  left: -1.25rem;
  background: var(--pink);
  color: var(--white);
  animation: float-badge 3.5s ease-in-out infinite 0.6s;
}

.about__badge--3 {
  top: 38%;
  right: -1.5rem;
  background: var(--dark-2);
  color: rgba(254, 252, 243, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: float-badge 2.8s ease-in-out infinite 1.2s;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ===========================
   12. PORTFOLIO
=========================== */
.portfolio {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream);
}

.portfolio__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.portfolio__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.portfolio__header h2 em {
  font-style: normal;
  color: var(--yellow);
}

/* Portfolio grid */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1rem;
}

.portfolio__item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.portfolio__item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.portfolio__item:nth-child(2) { grid-column: span 7; }
.portfolio__item:nth-child(3) { grid-column: span 4; }
.portfolio__item:nth-child(4) { grid-column: span 3; }
.portfolio__item:nth-child(5) { grid-column: span 5; }

/* Portfolio backgrounds */
.portfolio__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}

.portfolio__item:hover .portfolio__bg { transform: scale(1.07); }

.portfolio__bg--1 { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 40%, #F7C948 100%); }
.portfolio__bg--2 { background: linear-gradient(140deg, #FF5C8D 0%, #FF8FAB 50%, #FFB3C6 100%); }
.portfolio__bg--3 { background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #0f3460 100%); }
.portfolio__bg--4 { background: linear-gradient(135deg, #00C9A7 0%, #00B4D8 50%, #0096C7 100%); }
.portfolio__bg--5 { background: linear-gradient(135deg, #8B6CF6 0%, #A855F7 50%, #C084FC 100%); }

/* Portfolio label */
.portfolio__label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

/* Portfolio overlay */
.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: background var(--t) var(--ease);
  z-index: 2;
}

.portfolio__overlay-tag {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--t) var(--ease);
}

.portfolio__overlay-arrow {
  font-size: 1.4rem;
  color: var(--yellow);
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--t) var(--ease) 0.05s;
}

.portfolio__item:hover .portfolio__overlay              { background: rgba(17, 17, 17, 0.55); }
.portfolio__item:hover .portfolio__overlay-tag         { opacity: 1; transform: translateY(0); }
.portfolio__item:hover .portfolio__overlay-arrow       { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .portfolio__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .portfolio__item         { grid-column: span 1 !important; grid-row: span 1 !important; aspect-ratio: 4/3; }
  .portfolio__item:nth-child(1) { grid-column: span 2 !important; aspect-ratio: 16/7; }
}

@media (max-width: 540px) {
  .portfolio__grid { grid-template-columns: 1fr; }
  .portfolio__item,
  .portfolio__item:nth-child(1) { grid-column: span 1 !important; aspect-ratio: 4/3 !important; }
}

/* ===========================
   13. PROCESS
=========================== */
.process {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream-2);
}

.process__header { margin-bottom: clamp(3rem, 6vw, 5rem); }

.process__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.process__header h2 em { font-style: normal; color: var(--mint); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

/* Connecting line */
.process__connector {
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg,
    var(--yellow), var(--pink), var(--mint), var(--purple));
  z-index: 0;
  border-radius: 2px;
}

.process__step { position: relative; z-index: 1; }

.process__step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-2);
  border: 2px solid var(--step-color, var(--yellow));
  border-radius: 50%;
  color: var(--step-color, var(--yellow));
  margin-bottom: 1.5rem;
  transition: all var(--t) var(--ease-back);
}

.process__step:hover .process__step-num {
  background: var(--step-color, var(--yellow));
  color: var(--dark);
  transform: scale(1.12) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.process__step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.process__step-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__connector { display: none; }
}

@media (max-width: 480px) {
  .process__steps { grid-template-columns: 1fr; }
}

/* ===========================
   14. CONTACT
=========================== */
.contact {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact__bg-text {
  position: absolute;
  bottom: -15%;
  right: -5%;
  font-family: var(--font-display);
  font-size: clamp(10rem, 26vw, 24rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

.contact .container { position: relative; z-index: 1; }

.contact__label { color: rgba(255, 255, 255, 0.3); }

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}

.contact__title em { font-style: normal; color: var(--yellow); }

.contact__desc {
  font-size: 1.05rem;
  color: rgba(254, 252, 243, 0.45);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact__options {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 520px;
}

.contact__option {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  transition: all var(--t) var(--ease);
  color: var(--cream);
}

.contact__option:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
  transform: translateX(8px);
}

.contact__option-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact__option-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact__option-info strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.contact__option-info span {
  font-size: 0.82rem;
  color: rgba(254, 252, 243, 0.4);
}

.contact__option-arrow {
  font-size: 1.1rem;
  color: rgba(254, 252, 243, 0.3);
  transition: all var(--t) var(--ease);
}

.contact__option:hover .contact__option-arrow {
  color: var(--yellow);
  transform: translateX(4px);
}

/* ===========================
   15. FOOTER
=========================== */
.footer {
  padding: 2rem 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.02em;
}

.footer__tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--t-fast) var(--ease);
}

.footer__links a:hover { color: var(--yellow); }

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__links { flex-wrap: wrap; gap: 1rem; }
}

/* ===========================
   16. SCROLL REVEAL STATES
   (initial states for GSAP)
=========================== */
.js-fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.js-fade-in {
  opacity: 0;
}

.js-slide-left {
  opacity: 0;
  transform: translateX(-40px);
}

.js-slide-right {
  opacity: 0;
  transform: translateX(40px);
}
