/* ============================================
   Savino.lu — Playful Light Template 
   ============================================ */

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

:root {
  --bg: #faf9f6;
  --bg-warm: #fff5f0;
  --bg-cool: #f0f4ff;
  --bg-mint: #f0fdf4;
  --surface: #ffffff;
  --text: #1a1a2e;
  --text-2: #64607a;
  --text-3: #a8a3b8;

  --coral: #ff6b6b;
  --lavender: #a78bfa;
  --mint: #34d399;
  --sky: #38bdf8;
  --peach: #fb923c;
  --rose: #f472b6;
  --yellow: #fbbf24;

  --grad-coral: linear-gradient(135deg, #ff6b6b, #ee5a24);
  --grad-lavender: linear-gradient(135deg, #a78bfa, #818cf8);
  --grad-mint: linear-gradient(135deg, #34d399, #22d3ee);
  --grad-sky: linear-gradient(135deg, #38bdf8, #818cf8);
  --grad-peach: linear-gradient(135deg, #fb923c, #f472b6);
  --grad-warm: linear-gradient(135deg, #faf9f6, #fff5f0, #fef3c7);

  --ff: 'DM Sans', 'Space Grotesk', sans-serif;
  --ff-display: 'Space Grotesk', sans-serif;

  --max-w: 1280px;
  --nav-h: 72px;
  --radius: 24px;
  --radius-sm: 16px;
  --ease: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.08);
  --shadow-glow-coral: 0 8px 32px rgba(255,107,107,0.2);
  --shadow-glow-lavender: 0 8px 32px rgba(167,139,250,0.2);
  --shadow-glow-mint: 0 8px 32px rgba(52,211,153,0.2);
}

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

body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

::selection {
  background: var(--coral);
  color: #fff;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ── NAV ── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(250, 249, 246, 0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav__logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grad-coral);
  display: inline-block;
  animation: bounce-dot 2s ease-in-out infinite;
}

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

.nav__links {
  display: flex;
  gap: 0.25rem;
  background: var(--surface);
  border-radius: 100px;
  padding: 0.3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  transition: all 0.35s var(--ease);
}

.nav__link:hover {
  color: var(--text);
  background: var(--bg);
}

.nav__link.active {
  color: #fff;
  background: var(--text);
  box-shadow: var(--shadow-sm);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  z-index: 1001;
}

.nav__burger span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}

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

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 249, 246, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.nav__mobile.active { opacity: 1; visibility: visible; }

.nav__mobile a {
  font-size: 2.2rem;
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--text-3);
  transition: color 0.3s;
}

.nav__mobile a:hover { color: var(--coral); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.hero__circle--1 {
  width: 500px;
  height: 500px;
  background: var(--grad-coral);
  top: -15%;
  right: -8%;
  opacity: 0.08;
  filter: blur(2px);
}

.hero__circle--2 {
  width: 350px;
  height: 350px;
  background: var(--grad-lavender);
  bottom: -10%;
  left: -5%;
  opacity: 0.08;
}

.hero__circle--3 {
  width: 200px;
  height: 200px;
  background: var(--grad-mint);
  top: 30%;
  left: 40%;
  opacity: 0.06;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(255, 107, 107, 0.08);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  width: fit-content;
  opacity: 0;
  animation: popIn 0.6s var(--ease) 0.2s forwards;
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

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

.hero__title .line span {
  display: block;
  transform: translateY(110%);
  animation: reveal 0.9s var(--ease-smooth) forwards;
}

.hero__title .line:nth-child(2) span { animation-delay: 0.08s; }

.hero__title .grad {
  background: var(--grad-coral);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 440px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-smooth) 0.5s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-smooth) 0.7s forwards;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-smooth) 0.4s forwards;
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__float-badge {
  position: absolute;
  background: var(--surface);
  border-radius: 16px;
  padding: 0.8rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  animation: float-badge 4s ease-in-out infinite;
  z-index: 3;
}

.hero__float-badge--1 {
  top: 12%;
  right: -8%;
  animation-delay: 0s;
}

.hero__float-badge--2 {
  bottom: 18%;
  left: -6%;
  animation-delay: 2s;
}

.hero__float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
}

.hero__float-icon--coral { background: var(--grad-coral); }
.hero__float-icon--lavender { background: var(--grad-lavender); }

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

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-3);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-smooth) 1.2s forwards;
}

.hero__scroll-line {
  width: 2px;
  height: 36px;
  background: var(--grad-coral);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  font-family: var(--ff);
}

.btn--primary {
  background: var(--text);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.2);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(26, 26, 46, 0.3);
}

.btn--outline {
  background: var(--surface);
  color: var(--text);
  border: 2px solid rgba(0,0,0,0.08);
}

.btn--outline:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-3px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-2);
  padding: 0.5rem 0;
  border-radius: 0;
  font-weight: 700;
}

.btn--ghost:hover { color: var(--coral); }
.btn--ghost i { transition: transform 0.3s var(--ease); }
.btn--ghost:hover i { transform: translateX(4px); }

/* ── SECTION UTILS ── */
.section {
  padding: clamp(5rem, 10vh, 8rem) 0;
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.sec-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.sec-label--coral { color: var(--coral); }
.sec-label--coral::before { background: var(--coral); }
.sec-label--lavender { color: var(--lavender); }
.sec-label--lavender::before { background: var(--lavender); }
.sec-label--mint { color: var(--mint); }
.sec-label--mint::before { background: var(--mint); }
.sec-label--sky { color: var(--sky); }
.sec-label--sky::before { background: var(--sky); }

.section__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section__title .grad {
  background: var(--grad-coral);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__title .grad-2 {
  background: var(--grad-lavender);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── MARQUEE ── */
.marquee {
  padding: clamp(2.5rem, 5vh, 4rem) 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 2.5rem;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee__item {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
  color: var(--text);
  opacity: 0.08;
  transition: opacity 0.3s;
}

.marquee__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 1rem;
  vertical-align: middle;
  opacity: 0.4;
}

.dot--coral { background: var(--coral); }
.dot--lavender { background: var(--lavender); }
.dot--mint { background: var(--mint); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── BENTO GRID ── */
.bento {
  padding: clamp(4rem, 8vh, 7rem) 0;
}

.bento__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 14px;
}

.bento__item {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.5s var(--ease);
  border: 1.5px solid rgba(0,0,0,0.04);
}

.bento__item:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.bento__item--wide { grid-column: span 8; }
.bento__item--narrow { grid-column: span 4; }
.bento__item--half { grid-column: span 6; }
.bento__item--tall { grid-row: span 2; }
.bento__item--full { grid-column: 1 / -1; }

.bento__item img,
.bento__item .work-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.bento__item:hover img,
.bento__item:hover .work-image {
  transform: scale(1.06);
}

.work-image {
  background-size: cover;
  background-position: center;
}

.bento__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.15) 45%, transparent 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.bento__item:hover .bento__overlay { opacity: 1; }

.bento__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.bento__title {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.bento__meta {
  font-size: 0.72rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.video-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.4s var(--ease);
  margin-bottom: 1rem;
}

.bento__item:hover .video-play {
  opacity: 1;
  transform: scale(1);
}

/* ── SERVICES ── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all 0.5s var(--ease);
  border: 1.5px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

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

.service-card:nth-child(1):hover { box-shadow: var(--shadow-glow-coral); }
.service-card:nth-child(2):hover { box-shadow: var(--shadow-glow-lavender); }
.service-card:nth-child(3):hover { box-shadow: var(--shadow-glow-mint); }

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.service-card:nth-child(1) .service-card__icon { background: var(--grad-coral); }
.service-card:nth-child(2) .service-card__icon { background: var(--grad-lavender); }
.service-card:nth-child(3) .service-card__icon { background: var(--grad-mint); }

.service-card__title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── APP CARDS ── */
.apps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.app-card {
  border-radius: var(--radius);
  padding: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.app-card:nth-child(1) { background: var(--grad-coral); }
.app-card:nth-child(2) { background: var(--grad-mint); }

.app-card:hover {
  transform: translateY(-8px) rotate(0.5deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.app-card__badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.app-card__title {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.app-card__desc {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 380px;
  line-height: 1.6;
}

/* ── ABOUT PREVIEW ── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.about-preview__image {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.about-preview__image:hover img {
  transform: scale(1.04);
}

.about-preview__image::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 40px;
  border: 2px solid rgba(255, 107, 107, 0.12);
  pointer-events: none;
  transition: all 0.4s;
}

.about-preview__image:hover::after {
  inset: -12px;
  border-color: rgba(255, 107, 107, 0.3);
}

.about-preview__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-preview__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.about-preview__title .grad {
  background: var(--grad-coral);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-preview__text {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 460px;
}

.about-preview__stats {
  display: flex;
  gap: 2.5rem;
}

.about-stat {
  display: flex;
  flex-direction: column;
}

.about-stat__num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad-lavender);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat__label {
  font-size: 0.72rem;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── PORTFOLIO HERO ── */
.portfolio-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}

.portfolio-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin-bottom: 1rem;
}

.portfolio-hero__title .grad {
  background: var(--grad-coral);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-hero__sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 460px;
  line-height: 1.7;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(20px);
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--surface);
  border: 1.5px solid rgba(0,0,0,0.06);
  color: var(--text-3);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  font-family: var(--ff);
}

.filter-btn:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.filter-btn.active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.2);
}

/* ── ABOUT HERO ── */
.about-hero {
  min-height: 75vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  padding-top: var(--nav-h);
}

.about-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.about-hero__title .grad {
  background: var(--grad-coral);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero__desc {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 460px;
}

.about-hero__image {
  aspect-ratio: 3/4;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── STORY CARDS ── */
.story-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 3rem;
}

.story-card {
  background: var(--surface);
  border: 1.5px solid rgba(0,0,0,0.04);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all 0.5s var(--ease);
}

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

.story-card__num {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.story-card h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.story-card p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── SKILLS ── */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 3rem;
}

.skill-chip {
  background: var(--surface);
  border: 1.5px solid rgba(0,0,0,0.04);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.5s var(--ease);
}

.skill-chip:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.skill-chip__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  margin: 0 auto 1rem;
}

.skill-chip:nth-child(1) .skill-chip__icon { background: var(--grad-coral); }
.skill-chip:nth-child(2) .skill-chip__icon { background: var(--grad-lavender); }
.skill-chip:nth-child(3) .skill-chip__icon { background: var(--grad-mint); }
.skill-chip:nth-child(4) .skill-chip__icon { background: var(--grad-sky); }

.skill-chip__title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.skill-chip__list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.skill-chip__list li {
  font-size: 0.82rem;
  color: var(--text-3);
}

/* ── AWARDS ── */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 3rem;
}

.award-card {
  background: var(--surface);
  border: 1.5px solid rgba(0,0,0,0.04);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.award-card:nth-child(1)::before { background: var(--grad-coral); }
.award-card:nth-child(2)::before { background: var(--grad-lavender); }
.award-card:nth-child(3)::before { background: var(--grad-peach); }

.award-card:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.award-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  margin: 0 auto 1.25rem;
}

.award-card:nth-child(1) .award-card__icon { background: var(--grad-coral); }
.award-card:nth-child(2) .award-card__icon { background: var(--grad-lavender); }
.award-card:nth-child(3) .award-card__icon { background: var(--grad-peach); }

.award-card__title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.award-card__event {
  font-size: 0.85rem;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.award-card__film {
  font-size: 0.82rem;
  color: var(--text-3);
  font-style: italic;
  margin-bottom: 1rem;
}

.award-card__year {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── LEGAL ── */
.legal-hero {
  min-height: 35vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}

.legal-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.legal-hero p {
  color: var(--text-2);
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

.legal-blocks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-block {
  background: var(--surface);
  border: 1.5px solid rgba(0,0,0,0.04);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.legal-block h2 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.legal-block p {
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.legal-block a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-block a:hover { text-decoration: none; }

.legal-contact {
  background: var(--grad-lavender);
  color: #fff;
  padding: 2rem;
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
}

.legal-contact h3 { color: #fff; margin-bottom: 1rem; font-family: var(--ff-display); }
.legal-contact p { color: rgba(255, 255, 255, 0.9); margin-bottom: 0.3rem; }
.legal-contact a { color: #fff; }

/* ── FOOTER ── */
.footer {
  border-top: 1.5px solid rgba(0,0,0,0.04);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__brand h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-3);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer__col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-3);
  margin-bottom: 1rem;
}

.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-2);
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.footer__col a:hover { color: var(--coral); }

.footer__socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  transition: all 0.35s var(--ease);
}

.footer__social:nth-child(1) { background: var(--grad-coral); }
.footer__social:nth-child(2) { background: var(--grad-lavender); }
.footer__social:nth-child(3) { background: var(--grad-mint); }
.footer__social:nth-child(4) { background: var(--grad-sky); }

.footer__social:hover {
  transform: translateY(-4px) rotate(-5deg);
}

.footer__bottom {
  border-top: 1.5px solid rgba(0,0,0,0.04);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-3);
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease-smooth);
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
}

.lightbox__close:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: rotate(90deg);
}

.lightbox__video {
  width: 80vw;
  height: 45vw;
  max-width: 1100px;
  max-height: 620px;
  border-radius: var(--radius);
  border: none;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes reveal {
  to { transform: translateY(0); }
}

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

@keyframes popIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .about-preview { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .bento__item--wide { grid-column: span 12; }
  .bento__item--narrow { grid-column: span 12; }
  .bento__item--half { grid-column: span 6; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }
  .bento__grid { grid-template-columns: 1fr; }
  .bento__item--half { grid-column: span 1; }
  .services__grid { grid-template-columns: 1fr; }
  .apps__grid { grid-template-columns: 1fr; }
  .story-cards { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .portfolio-filters { gap: 0.3rem; padding: 1.25rem 1rem; }
  .filter-btn { padding: 0.45rem 0.9rem; font-size: 0.68rem; }
  .footer__links { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 3rem; }
  .skills-grid { grid-template-columns: 1fr; }
  .about-preview__stats { flex-direction: column; gap: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--lavender); }
