:root {
  --blue-royal: #0a4fd4;
  --blue-bright: #1a7fe8;
  --blue-sky: #38bdf8;
  --blue-pale: #e0f2fe;
  --blue-deep: #0c2a6e;
  --black: #0a0a0a;
  --black-soft: #111827;
  --white: #ffffff;
  --text-dark: #0f2a4a;
  --text-mid: #334e6f;
  --text-light: #e0f2fe;
  --font-display: "League Spartan", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-body: "Inter Tight", sans-serif;
  --transition: all 0.3s ease;
}
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
section {
  color: white;
}

.hero {
  background: #f5faff;
}
body {
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
}
:-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--blue-pale);
}
::-webkit-scrollbar-thumb {
  background: var(--blue-royal);
  border-radius: 3px;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background: transparent !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none !important;
}
.main-header.header-hidden {
  transform: translateY(-100%);
}
.main-header.nav-scrolled {
  background: rgba(10, 25, 47, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.header-hidden {
  transform: translateY(-100%);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%; /* ← pastikan tidak ada max-width yang membatasi */
  padding: 20px 50px;
  box-sizing: border-box;
}
.branding-serif {
  margin-left: 0;
  color: #1a1a1a;
  line-height: 1;
}

.branding-serif .brand-title {
  font-family: "serif";
  font-size: 0.8rem;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 5px;
}

.branding-serif .brand-subtitle {
  font-family: "serif";
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.nav-kanan {
  margin-top: 10px;
}
.nav-kanan {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}
.nav-kanan li a {
  text-decoration: none;
  color: white;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  font-family: "inter-tight", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: 0.3s;
  display: inline-block;
  padding: 5px 12px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  position: relative;
}
.nav-kanan a:hover {
  color: #334e6f;
  text-shadow: 0 0 5px rgba(10, 79, 212, 0.3);
}
.nav-kanan a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00e5ff;
  transition: width 0.3s ease;
}

.nav-kanan a:hover::after {
  width: 100%;
}
.nav-kanan li a:hover {
  color: #00e5ff;
  background: transparent;
  transform: none;
  box-shadow: none;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
  background-color: #0a0a0a;
  transform: skewX(-10deg);
}
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #f5faff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    #4fc3f7 0%,
    #29b6f6 35%,
    #1e88e5 65%,
    #1565c0 85%,
    #0a2a8a 100%
  );
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  filter: brightness(1.05) contrast(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  background: linear-gradient(
    -45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 48%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.08) 52%,
    transparent 70%
  );
  pointer-events: none;
}
.underwater-bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.ub {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  animation: bubbleRise linear infinite;
}

.ub:nth-child(1) {
  width: 18px;
  height: 18px;
  left: 55%;
  bottom: -20px;
  animation-duration: 7s;
  animation-delay: 0s;
}
.ub:nth-child(2) {
  width: 10px;
  height: 10px;
  left: 65%;
  bottom: -20px;
  animation-duration: 9s;
  animation-delay: 1.5s;
}
.ub:nth-child(3) {
  width: 24px;
  height: 24px;
  left: 72%;
  bottom: -30px;
  animation-duration: 11s;
  animation-delay: 0.8s;
}
.ub:nth-child(4) {
  width: 8px;
  height: 8px;
  left: 80%;
  bottom: -10px;
  animation-duration: 6s;
  animation-delay: 2.2s;
}
.ub:nth-child(5) {
  width: 16px;
  height: 16px;
  left: 88%;
  bottom: -20px;
  animation-duration: 8s;
  animation-delay: 3s;
}
.ub:nth-child(6) {
  width: 12px;
  height: 12px;
  left: 60%;
  bottom: -15px;
  animation-duration: 10s;
  animation-delay: 4s;
}
.ub:nth-child(7) {
  width: 6px;
  height: 6px;
  left: 93%;
  bottom: -10px;
  animation-duration: 7.5s;
  animation-delay: 1s;
}

@keyframes bubbleRise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateY(-50vh) translateX(12px);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-105vh) translateX(-8px);
    opacity: 0;
  }
}
.hero-bg-bubbles {
  z-index: 1;
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  border-color: rgba(0, 229, 255, 0.3);
  animation: floatUp linear infinite;
}
.bubble:nth-child(1) {
  width: 60px;
  height: 60px;
  left: 10%;
  bottom: -60px;
  animation-duration: 9s;
  animation-delay: 0s;
  background: rgba(255, 255, 255, 0.04);
}
.bubble:nth-child(2) {
  width: 90px;
  height: 90px;
  left: 30%;
  bottom: -90px;
  animation-duration: 13s;
  animation-delay: 2s;
  background: rgba(255, 255, 255, 0.03);
}
.bubble:nth-child(3) {
  width: 40px;
  height: 40px;
  left: 55%;
  bottom: -40px;
  animation-duration: 8s;
  animation-delay: 1s;
  background: rgba(255, 255, 255, 0.05);
}
.bubble:nth-child(4) {
  width: 120px;
  height: 120px;
  left: 70%;
  bottom: -120px;
  animation-duration: 16s;
  animation-delay: 3s;
  background: rgba(255, 255, 255, 0.02);
}
.bubble:nth-child(5) {
  width: 50px;
  height: 50px;
  left: 85%;
  bottom: -50px;
  animation-duration: 11s;
  animation-delay: 0.5s;
  background: rgba(255, 255, 255, 0.04);
}
@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-110vh) scale(0.8);
    opacity: 0;
  }
}
.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  margin: 0 auto;
  padding: 100px 0;
  width: 100%;
}
.hero-left {
  padding-left: 10rem;
  padding-top: 2rem;
  align-self: flex-start;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
  padding-left: 2rem;
}
.hero-name {
  font-family: "montserrat", sans-serif;
  font-size: clamp(45px, 9vw, 85px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.4rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.5s;
}
.hero-name-accent {
  color: var(--black);
  background: var(--white);
  display: inline-block;
  padding: 2px 15px;
  transform: skewX(-10deg);
  margin-left: 5px;
}
.hero-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin: 1rem 0 1.2rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.8s;
}
.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  border-left-color: rgba(255, 255, 255, 0.3);
  line-height: 1.9;
  max-width: 500px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.1s;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.4s;
}

.btn-main {
  display: inline-block;
  padding: 14px 36px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}
.btn-main:hover {
  background: var(--black-soft);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  padding: 13px 32px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.hero-right {
  width: 320px;
  flex-shrink: 0;
  opacity: 0;
  animation: fadeScale 0.8s ease forwards 1s;
}
.persona-card {
  position: relative;
  width: 100%;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  clip-path: polygon(
    0 0,
    calc(100% - 18px) 0,
    100% 18px,
    100% 100%,
    18px 100%,
    0 calc(100% - 18px)
  );
}
.pc-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.pc-ring-1 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.pc-ring-2 {
  width: 130px;
  height: 130px;
  top: -20px;
  right: -20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: spinCCW 10s linear infinite;
}
.avatar-wrap {
  position: relative;
  z-index: 1;
}
.avatar-circle {
  width: 110px;
  height: 86px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}
.avatar-wrap {
  position: relative;
  z-index: 1;
}
.avatar-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}
.avatar-spin {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  animation: spinCW 6s linear infinite;
}
.card-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
}
.card-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 1;
}
.card-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-top: -6px;
  position: relative;
  z-index: 1;
}
.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.ctag {
  font-size: 9px;
  padding: 3px 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
}
.card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00e5ff;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.status-txt {
  font-size: 10px;
  color: #00e5ff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 2s;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.5);
  animation: scrollPulse 1.5s ease-in-out infinite;
}
.scroll-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 4px;
  font-weight: 700;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spinCW {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinCCW {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem 3rem;
}
.section-header {
  margin-bottom: 3.5rem;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blue-royal);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--blue-royal);
}
.section-eyebrow.light {
  color: rgba(255, 255, 255, 0.7);
}
.section-eyebrow.light::before {
  background: rgba(255, 255, 255, 0.7);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
  font-style: italic;
}
.section-title.light {
  color: var(--white);
}
.about {
  background: #f8faff;
  overflow: hidden;
  position: relative;
}
.about-wave {
  position: relative;
  z-index: 1;
  margin-bottom: -4px;
  line-height: 0;
  background: #ffffff;
}
.about-wave svg {
  display: block;
  width: 100%;
  height: 100px;
}
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 0.2rem;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  clip-path: polygon(
    0 0,
    calc(100% - 24px) 0,
    100% 24px,
    100% 100%,
    24px 100%,
    0 calc(100% - 24px)
  );
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}
.about-photo:hover .about-img {
  filter: grayscale(0%);
}
.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 79, 212, 0.35) 0%,
    rgba(56, 189, 248, 0.15) 50%,
    rgba(0, 0, 0, 0.45) 100%
  );
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.about-photo:hover .photo-overlay {
  opacity: 0.5;
}
.photo-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.06) 3px,
    rgba(0, 0, 0, 0.06) 4px
  );
  pointer-events: none;
}

.photo-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.photo-corner-tl {
  top: 10px;
  left: 10px;
  border-top: 2px solid var(--blue-sky);
  border-left: 2px solid var(--blue-sky);
}
.photo-corner-tr {
  top: 10px;
  right: 10px;
  border-top: 2px solid var(--blue-sky);
  border-right: 2px solid var(--blue-sky);
}
.photo-corner-bl {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid var(--blue-sky);
  border-left: 2px solid var(--blue-sky);
}
.photo-corner-br {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid var(--blue-sky);
  border-right: 2px solid var(--blue-sky);
}

.photo-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.about-story .section-eyebrow {
  margin-bottom: 0.6rem;
}
.about-story .section-title {
  margin-bottom: 1.8rem;
}
.about .section-inner,
.about .about-hobbies {
  position: relative;
  z-index: 1;
}
.about-p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.about-p:last-of-type {
  margin-bottom: 1.8rem;
}
.about-p strong {
  color: var(--text-dark);
  font-weight: 700;
}
.about-p em {
  color: var(--blue-royal);
  font-style: italic;
}
.about-hobbies {
  background: #ffffff;
  padding: 0 0 5rem;
  border-top: 1px solid rgba(10, 79, 212, 0.1);
}

.hobbies-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem 0;
}

.hobbies-label {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Garis dekoratif setelah label */
.hobbies-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(10, 79, 212, 0.12);
}

.hobbies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.hobby-card {
  background: #ffffff;
  padding: 2rem 1.6rem;
  border-left: 3px solid var(--blue-royal);
  border-bottom: 1px solid rgba(10, 79, 212, 0.08);
  border-right: 1px solid rgba(10, 79, 212, 0.08);
  border-top: 1px solid rgba(10, 79, 212, 0.08);
  transition: all 0.3s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.hobby-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--blue-bright);
  box-shadow: 0 8px 24px rgba(10, 79, 212, 0.08);
}

/* Warna border kiri berbeda tiap card */
.hobby-card:nth-child(1) {
  border-left-color: var(--blue-royal);
}
.hobby-card:nth-child(2) {
  border-left-color: #0a0a0a;
}
.hobby-card:nth-child(3) {
  border-left-color: var(--blue-bright);
}
.hobby-card:nth-child(4) {
  border-left-color: var(--blue-sky);
}

.hobby-card:nth-child(1):hover {
  border-left-color: var(--blue-deep);
}
.hobby-card:nth-child(2):hover {
  border-left-color: var(--blue-royal);
}
.hobby-card:nth-child(3):hover {
  border-left-color: var(--blue-royal);
}
.hobby-card:nth-child(4):hover {
  border-left-color: var(--blue-bright);
}

.hobby-icon {
  font-size: 24px;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.hobby-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.hobby-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
}

@media (max-width: 960px) {
  .hobbies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hobbies-inner {
    padding: 3rem 1.5rem 0;
  }
}
@media (max-width: 600px) {
  .hobbies-grid {
    grid-template-columns: 1fr;
  }
  .about-hobbies {
    padding: 0 0 4rem;
  }
}
.social-link {
  padding: 60px 10%;
  background-color: var(--blue-pale);
  border-top: 3px solid #051b3d;
  border-bottom: 3px solid #051b3d;
}

.social-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  gap: 30px;
}

.social-content-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icons-group {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border: 2px solid #051b3d;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #051b3d;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 4px 4px 0px #051b3d;
  transition: 0.2s ease;
}

.social-icon:hover {
  background-color: #00b8ff;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 6px 6px 0px #000;
}

.email-info-strip {
  display: flex;
  align-items: center;
  background-color: #051b3d;
  border: 3px solid #000;
  transform: skewX(-15deg);
  box-shadow: 6px 6px 0px #00b8ff;
  height: 48px;
}

.strip-label {
  background-color: #fff;
  color: #051b3d;
  height: 100%;
  padding: 0 15px;
  display: flex;
  align-items: center;
  font-weight: 900;
  font-style: italic;
  font-size: 0.8rem;
  border-right: 2px solid #000;
}

.strip-value {
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: skewX(15deg);
}

.email-address {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.copy-btn {
  color: #00b8ff;
  text-decoration: none;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .social-container {
    flex-direction: column;
    text-align: center;
  }
  .social-content-wrapper {
    flex-direction: column;
    width: 100%;
  }
  .email-info-strip {
    transform: skewX(0);
    width: 100%;
    justify-content: center;
  }
  .strip-value,
  .email-address {
    transform: skewX(0);
  }
}

.social-branding .sub-title {
  font-family: var(--font-serif);
  color: var(--black-soft);
  font-size: 0.8rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 5px;
}
.social-branding .main-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--blue-deep);
  font-size: 2.2rem;
  font-weight: 800;
  font-style: italic;
  margin: 0;
}
.project-section {
  background: var(--blue-pale);
  padding: 8rem 0 9rem;
  overflow: hidden;
  border-top: 1px solid rgba(10, 79, 212, 0.12);
  border-bottom: 1px solid rgba(10, 79, 212, 0.12);
}

.proj-header {
  max-width: 1200px;
  margin: 0 auto 0rem;
  padding: 0 4rem;
}
.proj-header .section-eyebrow {
  color: var(--blue-royal);
}
.proj-header .section-eyebrow::before {
  background: var(--blue-royal);
}
.proj-header .section-title {
  color: var(--text-dark);
}
.proj-row {
  display: flex;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 6rem 4rem;
  gap: 0;
}
.proj-row-reverse {
  flex-direction: row-reverse;
}
.proj-img-side {
  flex: 0 0 56%;
  max-width: 56%;
  filter: drop-shadow(0 8px 32px rgba(10, 79, 212, 0.18));
  transition: filter 0.4s ease;
}
.proj-img-side:hover {
  filter: drop-shadow(0 12px 40px rgba(10, 79, 212, 0.28));
}
.proj-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.proj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.proj-img-wrap:hover .proj-img {
  transform: scale(1.04);
}
.proj-img-fallback {
  display: none;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #bfdbfe;
  border: 1px solid rgba(10, 79, 212, 0.15);
}
.proj-img-fallback svg {
  width: 32px;
  height: 32px;
  stroke: #1a4fa8;
  opacity: 0.45;
}
.proj-img-fallback span {
  font-size: 10px;
  letter-spacing: 3px;
  color: #1a4fa8;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.55;
}

.proj-text-side {
  flex: 1;
  padding: 0 4rem;
}

.proj-num {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 600;
  font-style: italic;
  color: rgba(10, 79, 212, 0.12);
  line-height: 1;
  margin-bottom: 0.2rem;
  display: block;
  margin-left: -4px;
}

.proj-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 600;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.proj-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--blue-royal);
  margin-top: 0.8rem;
  opacity: 0.5;
}
.proj-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  max-width: 400px;
}
.proj-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.ptag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid rgba(10, 79, 212, 0.25);
  color: var(--blue-royal);
  border-radius: 2px;
  background: rgba(10, 79, 212, 0.05);
  transition: all 0.2s ease;
}
.ptag:hover {
  background: rgba(10, 79, 212, 0.12);
  border-color: rgba(10, 79, 212, 0.4);
}
.proj-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: var(--blue-royal);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.proj-btn:hover {
  background: transparent;
  color: var(--blue-royal);
  border-color: var(--blue-royal);
  transform: translateY(-2px);
  letter-spacing: 3px;
}
.proj-row + .proj-row {
  border-top: 1px solid rgba(10, 79, 212, 0.1);
}
@media (max-width: 960px) {
  .navbar {
    padding: 12px 20px;
    align-items: center;
  }
  .branding-serif .brand-subtitle {
    font-size: 1.2rem;
  }
  .nav-kanan {
    gap: 16px;
  }
  .nav-kanan li a {
    font-size: 0.85rem;
    padding: 4px 8px;
  }

  .hero::before,
  .hero::after {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .underwater-bubbles {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 120px 2rem 5rem;
  }
  .hero-left {
    padding-left: 0;
    padding-top: 0;
    align-self: auto;
    text-align: center;
    width: 100%;
  }
  .hero-eyebrow {
    padding-left: 0;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-right {
    width: 260px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-photo-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
  .section-inner {
    padding: 4rem 2rem 2.5rem;
  }
  .hobbies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hobbies-inner {
    padding: 3rem 2rem 0;
  }
  .project-section {
    padding: 5rem 0 6rem;
  }
  .proj-row,
  .proj-row-reverse {
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 2rem;
  }
  .proj-img-side {
    flex: none;
    max-width: 100%;
    width: 100%;
    filter: none;
  }
  .proj-text-side {
    padding: 0;
  }
  .proj-num {
    font-size: 52px;
  }
  .proj-header {
    padding: 0 2rem;
    margin-bottom: 1rem;
  }

  .social-link {
    padding: 50px 5%;
  }
  .social-container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .social-content-wrapper {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .nav-kanan {
    display: none;
  }
  .nav-kanan.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75vw;
    max-width: 280px;
    background: rgba(3, 10, 40, 0.97);
    backdrop-filter: blur(20px);
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    z-index: 999;
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.4);
  }
  .nav-kanan.open li a {
    font-size: 1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    width: 100%;
  }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }
  .nav-overlay.open {
    display: block;
  }

  .hero-content {
    padding: 100px 1.5rem 4rem;
    gap: 2.5rem;
  }
  .hero-name {
    font-size: clamp(36px, 10vw, 56px);
  }
  .hero-desc {
    font-size: 15px;
    max-width: 100%;
  }
  .hero-right {
    width: 220px;
  }
  .hero-scroll {
    display: none;
  }

  .section-inner {
    padding: 3.5rem 1.5rem 2rem;
  }
  .about-photo-wrap {
    max-width: 260px;
  }
  .section-title {
    font-size: clamp(28px, 8vw, 42px);
  }

  .hobbies-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hobbies-inner {
    padding: 2.5rem 1.5rem 0;
  }
  .hobbies-label {
    font-size: 17px;
  }
  .about-hobbies {
    padding: 0 0 3.5rem;
  }

  .project-section {
    padding: 4rem 0 5rem;
  }
  .proj-row,
  .proj-row-reverse {
    padding: 3rem 1.5rem;
  }
  .proj-header {
    padding: 0 1.5rem;
    margin-bottom: 0;
  }
  .proj-title {
    font-size: 28px;
  }
  .proj-num {
    font-size: 44px;
  }
  .proj-btn {
    font-size: 11px;
    padding: 12px 24px;
  }

  /* Social */
  .social-link {
    padding: 40px 1.5rem;
  }
  .email-info-strip {
    transform: skewX(0);
    width: 100%;
    justify-content: center;
  }
  .strip-value {
    transform: skewX(0);
  }
  .email-address {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: clamp(32px, 11vw, 48px);
  }
  .hero-name-accent {
    padding: 2px 10px;
  }
  .hobbies-grid {
    grid-template-columns: 1fr;
  }
  .btn-main,
  .btn-ghost {
    padding: 12px 24px;
    font-size: 0.75rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  .social-branding .main-title {
    font-size: 1.6rem;
  }
  .proj-row,
  .proj-row-reverse {
    padding: 2.5rem 1rem;
  }
}
