:root {
  --bg: #F7F1E8;
  --bg2: #FDFAF5;
  --panel: #FFFFFF;
  --panel2: #FBF5EC;
  --violet: #FF3E93;
  --violet-l: #FF6FAE;
  --violet-d: #D91C74;
  --violet-deep: #241A35;
  --navy: #241A35;
  --navy-deep: #150F22;
  --ink: #1B1A1E;
  --muted: #6B6470;
  --muted2: #948C97;
  --line: rgba(27, 26, 30, 0.1);
  --light: #FFFFFF;
  --light2: #FBF5EC;
  --light-ink: #1B1A1E;
  --serif: "Outfit", system-ui, sans-serif;
  --script: "Dancing Script", cursive;
  --sans: "Outfit", system-ui, sans-serif;
  --mono: "Outfit", system-ui, sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  background: var(--violet);
  padding: 8px 18px;
  border-radius: 30px;
  display: inline-block;
}
.serif {
  font-family: var(--serif);
}
.it {
  font-family: var(--script);
  font-weight: 700;
  font-style: normal;
  color: var(--violet-d);
}
a {
  color: inherit;
  text-decoration: none;
}

/* generic chip badges (mirrors the LinkedIn banner tags) */
.chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
}
.chip-pink {
  background: var(--violet);
  color: #fff;
}
.chip-navy {
  background: var(--navy);
  color: #fff;
}
.chip-outline {
  background: #fff;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

/* atmospheric blobs — soft, subtle */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}
.g1 {
  width: 600px;
  height: 600px;
  background: rgba(255, 62, 147, 0.1);
  top: -200px;
  left: -150px;
}
.g2 {
  width: 500px;
  height: 500px;
  background: rgba(36, 26, 53, 0.05);
  top: 40%;
  right: -200px;
}
.g3 {
  width: 420px;
  height: 420px;
  background: rgba(255, 62, 147, 0.07);
  bottom: 10%;
  left: -100px;
}

/* ============ NAV ============ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: 0.4s;
  padding: 22px 0;
}
header.scrolled {
  background: rgba(247, 241, 232, 0.9);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--script);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
}
.logo .dot {
  color: var(--violet);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 9px 16px;
  border-radius: 30px;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #fff;
  background: var(--violet);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  position: relative;
  background:
    radial-gradient(ellipse 75% 55% at 75% 18%, rgba(255, 170, 140, 0.4), transparent 62%),
    radial-gradient(ellipse 65% 50% at 15% 85%, rgba(255, 110, 170, 0.22), transparent 60%),
    linear-gradient(135deg, #F5E5F0 0%, #FCE6DD 32%, #FDEEDB 58%, #F7F1E8 82%, #F3E9DE 100%);
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  width: 130%;
}
.portrait-frame {
  position: relative;
  aspect-ratio: 5/7;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, var(--panel2), var(--panel) 60%);
  box-shadow: 0 40px 90px -30px rgba(36, 26, 53, 0.18);
}
.portrait-frame .ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--violet-l);
}
.portrait-frame .ph svg {
  width: 90px;
  height: 90px;
  opacity: 0.6;
}
.portrait-frame .ph img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.portrait-frame .ph small {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted2);
}
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 10px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px -14px rgba(36, 26, 53, 0.28);
  z-index: 5;
}
.chip-a {
  top: 8%;
  right: 20px;
  animation: fl 6s ease-in-out infinite;
}
.chip-b {
  bottom: 18%;
  left: 20px;
  animation: fl 7s ease-in-out infinite 0.8s;
}
.chip-c {
  bottom: 10px;
  right: 10%;
  animation: fl 5.5s ease-in-out infinite 0.4s;
}
.chip-d {
  top: 38%;
  right: 10px;
  animation: fl 6.5s ease-in-out infinite 1.2s;
}
.chip-e {
  top: 10px;
  left: 12%;
  animation: fl 7.5s ease-in-out infinite 0.2s;
}
@keyframes fl {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 6.4vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}
.hero h1 b {
  font-weight: 800;
}
.hero h1 .it {
  font-size: 0.62em;
  line-height: 1.3;
}
.hero-sub {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 20px 0 20px;
}
.hero-desc {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 32px;
}
.hc-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition: 0.3s;
}
.hc-item:hover {
  color: var(--violet-d);
}
.hc-ic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hc-ic svg {
  width: 15px;
  height: 15px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  width: fit-content;
}
.btn {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 40px;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn-fill {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 14px 32px -10px rgba(255, 62, 147, 0.45);
}
.btn-fill:hover {
  background: var(--violet-d);
  transform: translateY(-2px);
}
.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--violet);
  background: rgba(255, 62, 147, 0.08);
  color: var(--violet-d);
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #fff;
  transition: 0.3s;
}
.socials a:hover {
  color: #fff;
  border-color: var(--violet);
  background: var(--violet);
  transform: translateY(-2px);
}
.socials svg {
  width: 18px;
  height: 18px;
}

/* ============ SECTION GENERIC ============ */
section {
  padding: 110px 0;
  position: relative;
}
.sec-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 70px;
}
.sec-head .eyebrow {
  display: inline-block;
  margin-bottom: 20px;
}
.sec-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.sec-head h2 b {
  font-weight: 800;
}
.sec-head h2 .it {
  font-size: 0.72em;
}
.sec-head p {
  color: var(--muted);
  margin-top: 18px;
  font-size: 1.02rem;
}

/* ============ ROLES / WHAT I BUILD ============ */
.roles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.role-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px -30px rgba(27, 26, 30, 0.15);
}
.role-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255, 62, 147, 0.06),
    transparent 60%
  );
  opacity: 0;
  transition: 0.4s;
}
.role-card:hover {
  transform: translateY(-8px);
  border-color: var(--violet);
}
.role-card:hover::before {
  opacity: 1;
}
.role-ic {
  width: 150px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.role-ic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.role-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  color: var(--ink);
}
.role-card p {
  font-size: 0.88rem;
  color: var(--muted);
  position: relative;
  z-index: 2;
}
.role-card .tagline {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet-d);
  margin-top: 14px;
  display: block;
  position: relative;
  z-index: 2;
}

/* ============ SKILLS PILLS ============ */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto 70px;
}
.logo-ic {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.logo-ic .brand-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 24px 13px 18px;
  border-radius: 50px;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: 0.35s;
  cursor: default;
  background: #fff;
}
.pill:hover {
  border-color: var(--violet);
  background: var(--violet);
  color: #fff;
  transform: scale(1.06);
}
.pill:hover .logo-ic {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5));
}
.pill:nth-child(even) {
  transform: translateY(8px);
}
.pill:nth-child(even):hover {
  transform: translateY(8px) scale(1.06);
}
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.stack-cat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 30px;
  transition: 0.4s;
  box-shadow: 0 20px 40px -30px rgba(27, 26, 30, 0.15);
}
.stack-cat:hover {
  transform: translateY(-6px);
  border-color: var(--violet);
}
.stack-cat .num {
  font-family: var(--mono);
  color: var(--violet-d);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stack-cat h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 8px 0 18px;
  color: var(--ink);
}
.stack-cat ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.stack-cat li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--muted);
}
.stack-cat li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--violet);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============ SERVICES ============ */
.serv {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 40px;
}
.serv-row {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 50px;
  align-items: center;
}
.serv-row:nth-child(even) {
  grid-template-columns: 1fr 0.5fr;
}
.serv-row:nth-child(even) .serv-visual {
  order: 2;
}
.serv-visual {
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--panel2), #fff);
  border: 1px solid var(--line);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(255, 62, 147, 0.2);
}
.serv-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 35% 30%,
    rgba(255, 62, 147, 0.1),
    transparent 60%
  );
}
.serv-visual .code-win {
  width: 78%;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  font-family: "Consolas", "Menlo", monospace;
  font-size: 0.7rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px -15px rgba(36, 26, 53, 0.4);
}
.code-win .bar {
  display: flex;
  gap: 6px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.code-win .bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
}
.code-win .bar i:nth-child(1) {
  background: #ff5f57;
}
.code-win .bar i:nth-child(2) {
  background: #febc2e;
}
.code-win .bar i:nth-child(3) {
  background: #28c840;
}
.code-win .body {
  padding: 14px 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
}
.code-win .kw {
  color: #ff9fcb;
}
.code-win .st {
  color: #a78bfa;
}
.code-win .fn {
  color: #7dd3fc;
}
.serv-row .num {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--violet-d);
  letter-spacing: 0.14em;
}
.serv-row h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 10px 0 18px;
  line-height: 1.1;
  color: var(--ink);
}
.serv-row .lead {
  color: var(--muted);
  margin-bottom: 20px;
}
.serv-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.serv-feats li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.96rem;
}
.serv-feats li svg {
  width: 18px;
  height: 18px;
  color: var(--violet);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============ PROJECTS ============ */
.proj-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 90px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -35px rgba(27, 26, 30, 0.18);
}
.proj-feature .badge {
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--violet);
  padding: 7px 16px;
  border-radius: 30px;
}
.proj-screen {
  aspect-ratio: 5/3;
  border-radius: 18px;
  background: linear-gradient(150deg, var(--panel2), #fff);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(36, 26, 53, 0.18);
}
.proj-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proj-screen .ui-row {
  position: absolute;
  left: 8%;
  right: 8%;
  display: flex;
  gap: 10px;
}
.ui-block {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 62, 147, 0.06);
}
.proj-feature h3 {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.proj-feature .role-line {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-d);
  margin-bottom: 18px;
}
.proj-feature p {
  color: var(--muted);
  margin-bottom: 24px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
}
.tags span {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 30px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proj-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: 0.4s;
  position: relative;
  box-shadow: 0 20px 40px -32px rgba(27, 26, 30, 0.2);
}
.proj-card:hover {
  transform: translateY(-8px);
  border-color: var(--violet);
}
.proj-card .thumb {
  aspect-ratio: 22/10;
  background: linear-gradient(150deg, var(--panel2), #fff);
  position: relative;
  overflow: hidden;
}
.proj-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 62, 147, 0.1),
    transparent 55%
  );
}
.proj-card .thumb .mono-ic {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--mono);
  font-size: 1.4rem;
  color: var(--violet-d);
  z-index: 2;
}
.proj-card .info {
  padding: 24px;
}
.proj-card .pnum {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--violet-d);
  text-transform: uppercase;
}
.proj-card h4 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 8px 0 10px;
  color: var(--ink);
}
.proj-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.proj-card .mtags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.proj-card .mtags span {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ============ COMMUNITY ============ */
.community {
  background: linear-gradient(160deg, var(--panel2), var(--bg));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.comm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.comm-visual {
  border-radius: 28px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  background: #fff;
  aspect-ratio: 1/1;
  box-shadow: 0 40px 80px -35px rgba(36, 26, 53, 0.2);
}
.comm-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(255, 62, 147, 0.06),
    transparent 60%
  );
  pointer-events: none;
  z-index: 2;
}
.comm-img-item {
  border-radius: 18px;
  overflow: hidden;
  min-height: 0;
  position: relative;
}
.comm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transition: transform 0.4s ease;
}
.comm-img-item:hover .comm-img {
  transform: scale(1.06);
}
.comm-content .role-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  padding: 9px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.comm-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--ink);
}
.comm-content h2 b {
  font-weight: 800;
}
.comm-content p {
  color: var(--muted);
  margin-bottom: 18px;
}
.comm-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.comm-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.comm-feat .cf-ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 62, 147, 0.08);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--violet-d);
  flex-shrink: 0;
}
.comm-feat .cf-ic svg {
  width: 18px;
  height: 18px;
}
.comm-feat h4 {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.comm-feat p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

/* ============ EVENTS GALLERY ============ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}
.gal-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  background: linear-gradient(150deg, var(--panel2), #fff);
  transition: 0.4s;
}
.gal-item .gal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 15, 34, 0.88), transparent 55%);
}
.gal-item:hover {
  transform: scale(1.02);
  border-color: var(--violet);
}
.gal-item .meta {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  color: #fff;
}
.gal-item .meta .t {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
}
.gal-item .meta .d {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--violet-l);
  text-transform: uppercase;
  margin-top: 4px;
}
.gal-item .ph-ic {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  color: #fff;
  opacity: 0.6;
}
.gal-item .ph-ic svg {
  width: 24px;
  height: 24px;
}
.gal-big {
  grid-column: span 2;
  grid-row: span 2;
}
.gal-tall {
  grid-row: span 2;
}

/* ============ STATS (light) ============ */
.stats {
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: #fff;
  border-radius: 40px;
  margin: 0 28px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 62, 147, 0.15);
  filter: blur(40px);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.stats-left .eyebrow {
  background: var(--violet);
  color: #fff;
}
.stats-left h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 18px 0 20px;
  color: #fff;
}
.stats-left h2 b {
  font-weight: 800;
}
.stats-left p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}
.stats-left .btn-fill {
  background: var(--violet);
}
.stats-left .btn-fill:hover {
  background: var(--violet-l);
}
.stats-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.stat-circle {
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-circle .n {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--violet-l);
  line-height: 1;
}
.stat-circle .l {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-top: 8px;
  padding: 0 18px;
}

/* ============ ABOUT / CTA ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 3/4;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.about-visual .about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 40% 25%,
    rgba(255, 62, 147, 0.2),
    transparent 55%
  );
}
.about-visual .ph {
  z-index: 2;
  text-align: center;
  color: var(--violet-l);
}
.about-visual .ph svg {
  width: 80px;
  height: 80px;
  opacity: 0.6;
}
.about-visual .ph small {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-top: 12px;
}
.about-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.06;
  margin-bottom: 22px;
  color: var(--ink);
}
.about-content h2 b {
  font-weight: 800;
}
.about-content h2 .it {
  font-size: 0.72em;
}
.about-content p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1.04rem;
}
.about-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ============ FOOTER ============ */
footer {
  padding: 90px 0 40px;
  border-top: 1px solid var(--line);
  text-align: center;
  position: relative;
}
.foot-cta {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--ink);
}
.foot-cta b {
  font-weight: 800;
  color: var(--violet-d);
}
.foot-sub {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 36px;
}
.foot-btn {
  margin-bottom: 60px;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 20px;
}
.foot-bottom .logo {
  font-size: 1.5rem;
}
.foot-socials {
  display: flex;
  gap: 18px;
  align-items: center;
}
.foot-socials .lbl {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
.foot-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: 0.3s;
}
.foot-socials a:hover {
  color: #fff;
  background: var(--violet);
  border-color: var(--violet);
}
.foot-socials svg {
  width: 16px;
  height: 16px;
}
.copyright {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted2);
  margin-top: 30px;
  letter-spacing: 0.01em;
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
[data-d="1"] {
  transition-delay: 0.08s;
}
[data-d="2"] {
  transition-delay: 0.16s;
}
[data-d="3"] {
  transition-delay: 0.24s;
}
[data-d="4"] {
  transition-delay: 0.32s;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 28px;
    background: #fff;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: 0 20px 40px -20px rgba(27, 26, 30, 0.25);
    z-index: 200;
  }
  .nav-links.nav-open {
    display: flex;
  }
  .burger {
    display: flex;
  }
  .hero-grid,
  .comm-grid,
  .about-grid,
  .stats-grid,
  .proj-feature {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
  }
  .roles {
    grid-template-columns: 1fr 1fr;
  }
  .stack-grid,
  .proj-grid {
    grid-template-columns: 1fr;
  }
  .serv-row,
  .serv-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .serv-row:nth-child(even) .serv-visual {
    order: 0;
  }
  .serv-visual {
    max-width: 340px;
    margin: 0 auto;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .gal-big {
    grid-column: span 2;
  }
  .portrait-frame {
    max-width: 380px;
    margin: 0 auto;
  }
  .stats {
    margin: 0 16px;
    padding: 50px 28px;
  }
}
@media (max-width: 560px) {
  .wrap {
    padding: 0 18px;
  }
  .roles,
  .comm-feats,
  .stats-nums {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gal-big,
  .gal-tall {
    grid-column: auto;
    grid-row: auto;
  }
  .proj-feature {
    padding: 30px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-contact {
    flex-direction: column;
    gap: 12px;
  }
  .socials {
    margin-left: 0;
    justify-content: center;
  }
}
