/* ═══════════════════════════════════════════
   r2X — about.css  (Warm & Bright Redesign)
   ═══════════════════════════════════════════ */

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

/* ── NAV ── */
.about-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  background: linear-gradient(to bottom, rgba(255, 247, 237, 0.98) 0%, rgba(255, 247, 237, 0) 100%);
  transition: background 0.4s, padding 0.35s, box-shadow 0.4s;
}

.about-nav.scrolled {
  background: rgba(255, 247, 237, 0.97);
  border-bottom: 1px solid rgba(210, 130, 50, 0.18);
  padding: 20px 48px;
  box-shadow: 0 4px 32px rgba(200, 120, 24, 0.08);
}

.about-nav .nav-logo {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #2D1B06;
  text-decoration: none;
  cursor: none;
  display: flex;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}

.about-nav .nav-logo .logo-dot {
  width: 6px;
  height: 6px;
  background: #FF6B4A;
  border-radius: 50%;
  margin-top: 3px;
}

.about-nav .nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.about-nav .nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(45, 27, 6, 0.48);
  text-decoration: none;
  cursor: none;
  transition: color 0.2s;
}

.about-nav .nav-links a:hover,
.about-nav .nav-links a.active {
  color: #FF6B4A;
}

/* ── Mobile nav toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
  padding: 6px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2D1B06;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(52px);
  transition: opacity 1s var(--ease-out-expo),
    transform 1s var(--ease-out-expo);
}

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

.reveal-d1 {
  transition-delay: 0.08s;
}

.reveal-d2 {
  transition-delay: 0.16s;
}

.reveal-d3 {
  transition-delay: 0.24s;
}

.reveal-d4 {
  transition-delay: 0.32s;
}

.reveal-d5 {
  transition-delay: 0.40s;
}

/* ── SCROLL MOTION ANIMATIONS ── */
.scroll-slide-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}

.scroll-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-slide-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}

.scroll-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.85s var(--ease-out-expo),
    transform 0.85s var(--ease-out-expo);
}

.scroll-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.scroll-rotate {
  opacity: 0;
  transform: perspective(600px) rotateY(8deg) translateX(40px);
  transition: opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}

.scroll-rotate.visible {
  opacity: 1;
  transform: perspective(600px) rotateY(0deg) translateX(0);
}

.scroll-blur {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo),
    filter 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}

.scroll-blur.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 88px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #FFF7ED 0%, #FFECD2 40%, #FFE0B2 100%);
}

.hero-bg-word {
  position: absolute;
  top: 50%;
  left: -2%;
  transform: translateY(-55%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(180px, 26vw, 360px);
  color: rgba(240, 120, 48, 0.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  will-change: transform;
  transition: transform 0.1s linear;
}

.orb-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.22) 0%, transparent 70%);
  top: -120px;
  right: -80px;
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(240, 168, 48, 0.25) 0%, transparent 70%);
  bottom: 80px;
  left: 15%;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #FF6B4A;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) forwards 0.3s;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #FF6B4A;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(54px, 9vw, 118px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.035em;
  margin-bottom: 40px;
  color: #2D1B06;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line>span {
  display: inline-block;
  transform: translateY(105%);
  animation: slideUp 1s var(--ease-out-expo) forwards;
}

.hero-title .line:nth-child(1)>span {
  animation-delay: 0.18s;
}

.hero-title .line:nth-child(2)>span {
  animation-delay: 0.32s;
}

.hero-title .line:nth-child(3)>span {
  animation-delay: 0.46s;
}

.hero-title em {
  font-style: italic;
  color: #FF6B4A;
}

.hero-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) forwards 0.75s;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(45, 27, 6, 0.55);
  max-width: 420px;
  font-weight: 400;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(45, 27, 6, 0.28);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, #FF6B4A, transparent);
  animation: scrollPulse 2.4s ease-in-out infinite 1.2s;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}

/* ── SECTION BASICS ── */
.section-wrap {
  padding: 112px 48px;
  position: relative;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(210, 130, 50, 0.2) 20%, rgba(210, 130, 50, 0.2) 80%, transparent 100%);
  margin: 0 48px;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #FF6B4A;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: #FF6B4A;
  flex-shrink: 0;
}

/* ── PEOPLE SECTION ── */
#people {
  background: linear-gradient(170deg, #FFF2E0 0%, #FFECD2 50%, #FFE0B2 100%);
  padding: 112px 48px;
  position: relative;
}

.people-intro {
  max-width: 620px;
  margin-bottom: 72px;
}

.people-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  color: #2D1B06;
}

.people-intro h2 em {
  font-style: italic;
  color: #FF6B4A;
}

.people-intro p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(45, 27, 6, 0.55);
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── GLASSMORPHISM PERSON CARD ── */
.person-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 56px 52px 52px;
  transition: background 0.45s ease, transform 0.4s var(--ease-out-expo), box-shadow 0.45s ease;
  cursor: none;
  box-shadow: 0 8px 32px rgba(200, 120, 24, 0.08), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.person-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF6B4A, #F0A830, #FF6B4A);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease-out-expo);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.person-card:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(200, 120, 24, 0.15), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.person-card:hover::before {
  transform: scaleX(1);
}

.person-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 30px;
}

.person-card:nth-child(1) .person-avatar {
  background: linear-gradient(135deg, #FF6B4A 0%, #F0A830 100%);
  color: #fff;
}

.person-card:nth-child(2) .person-avatar {
  background: linear-gradient(135deg, #F0A830 0%, #FF6B4A 100%);
  color: #fff;
}

.person-idx {
  position: absolute;
  top: 48px;
  right: 48px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(45, 27, 6, 0.25);
  letter-spacing: 0.08em;
}

.person-name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
  line-height: 1;
  color: #2D1B06;
}

.person-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FF6B4A;
  margin-bottom: 26px;
}

.person-bio {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(45, 27, 6, 0.52);
  margin-bottom: 36px;
  max-width: 460px;
}

.person-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid rgba(45, 27, 6, 0.12);
  color: rgba(45, 27, 6, 0.38);
  border-radius: 20px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.person-card:hover .tag {
  border-color: rgba(255, 107, 74, 0.4);
  color: #FF6B4A;
  background: rgba(255, 107, 74, 0.06);
}

/* ── SKILLS SECTION ── */
#skills {
  background: linear-gradient(175deg, #FEF0D3 0%, #FFECD2 50%, #FFF7ED 100%);
  padding: 112px 48px;
  position: relative;
  overflow: hidden;
}

.skills-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.1) 0%, transparent 65%);
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  will-change: transform;
}

.skills-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 88px;
  align-items: start;
}

.skills-left h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  color: #2D1B06;
}

.skills-left h2 em {
  font-style: italic;
  color: #FF6B4A;
}

.skills-left p {
  font-size: 14px;
  line-height: 1.88;
  color: rgba(45, 27, 6, 0.52);
  margin-bottom: 48px;
}

.skills-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.skills-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(175deg, #FEF0D3 0%, #FFECD2 50%, #FFF7ED 100%);
  border-radius: 16px;
  padding: 24px;
}

.skills-logo-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* ── CURSOR OVERRIDE FOR ABOUT (LIGHT BG) ── */
body #cursor {
  background: #2D1B06 !important;
  mix-blend-mode: normal !important;
  opacity: 0.75 !important;
}
body #cursor.big {
  background: rgba(45, 27, 6, 0.25) !important;
}

/* ── GLASSMORPHISM SKILL BLOCK ── */
.skill-block {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: background 0.3s, transform 0.35s var(--ease-out-expo), box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(200, 120, 24, 0.06);
}

.skill-block:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200, 120, 24, 0.12);
}

.skill-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #FF6B4A, #F0A830);
  border-radius: 0 0 16px 16px;
  transition: width 0.5s var(--ease-out-expo);
}

.skill-block:hover::after {
  width: 100%;
}

.skill-icon-glyph {
  font-size: 22px;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
  color: #FF6B4A;
}

.skill-block-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 7px;
  color: #2D1B06;
}

.skill-block-desc {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(45, 27, 6, 0.42);
}

/* Skill bars (commented out in HTML but kept for future use) */
.skills-bars-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.skills-bars-col .section-eyebrow {
  margin-bottom: 24px;
}

.skill-bar-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 9px;
}

.skill-bar-label .sbl-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #2D1B06;
}

.skill-bar-label .sbl-pct {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #FF6B4A;
}

.bar-track {
  height: 2px;
  background: rgba(255, 107, 74, 0.15);
  border-radius: 2px;
  overflow: visible;
  position: relative;
}

.bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #FF6B4A, #F0A830);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s var(--ease-out-expo);
  position: relative;
}

.bar-fill::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF6B4A;
  opacity: 0;
  transition: opacity 0.3s 1.2s;
  box-shadow: 0 0 8px #FF6B4A;
}

.bar-fill.go {
  transform: scaleX(1);
}

.bar-fill.go::after {
  opacity: 1;
}

/* ── PROJECTS SECTION ── */
#projects {
  background: linear-gradient(170deg, #FFF7ED 0%, #FFF2E0 100%);
  padding: 112px 48px;
}

.proj-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 20px;
}

.proj-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #2D1B06;
}

.proj-head h2 em {
  font-style: italic;
  color: #FF6B4A;
}

.view-all-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FF6B4A;
  text-decoration: none;
  cursor: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(255, 107, 74, 0.35);
  transition: gap 0.3s var(--ease-out-expo), border-color 0.2s;
}

.view-all-link:hover {
  gap: 16px;
  border-color: #FF6B4A;
}

.proj-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── GLASSMORPHISM PROJECT ROW ── */
.proj-row {
  display: grid;
  grid-template-columns: 52px 1fr auto 100px auto;
  align-items: center;
  gap: 28px;
  padding: 26px 28px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  cursor: none;
  transition: background 0.35s ease, padding-left 0.4s var(--ease-out-expo), transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(200, 120, 24, 0.05);
}

.proj-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #FF6B4A, #F0A830);
  border-radius: 14px 0 0 14px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease-out-expo);
}

.proj-row:hover {
  background: rgba(255, 255, 255, 0.55);
  padding-left: 40px;
  transform: translateX(4px);
  box-shadow: 0 12px 40px rgba(200, 120, 24, 0.1);
}

.proj-row:hover::before {
  transform: scaleY(1);
}

.proj-row-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(45, 27, 6, 0.25);
  letter-spacing: 0.08em;
}

.proj-row-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.015em;
  transition: color 0.25s;
  color: #2D1B06;
}

.proj-row:hover .proj-row-title {
  color: #FF6B4A;
}

.proj-row-cat {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(45, 27, 6, 0.3);
}

.proj-row-year {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(45, 27, 6, 0.25);
  text-align: right;
}

.proj-visit-btn {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #FF6B4A;
  padding: 8px 18px;
  border: 1px solid rgba(255, 107, 74, 0.35);
  border-radius: 24px;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease-out-expo);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.proj-visit-btn:hover {
  background: linear-gradient(135deg, #FF6B4A, #F0A830);
  color: #fff;
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(255, 107, 74, 0.3);
}

/* ── FAQ SECTION ── */
#faq {
  background: linear-gradient(170deg, #FFF7ED 0%, #FFF2E0 100%);
  padding: 112px 48px;
  position: relative;
  overflow: hidden;
}

.faq-bg-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 168, 48, 0.1) 0%, transparent 65%);
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #2D1B06;
}

.faq-h2 em {
  font-style: italic;
  color: #FF6B4A;
}

.faq-desc {
  font-size: 15px;
  line-height: 1.82;
  color: rgba(45, 27, 6, 0.52);
  margin-bottom: 48px;
  max-width: 500px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.3s, box-shadow 0.3s, transform 0.35s var(--ease-out-expo);
  box-shadow: 0 4px 20px rgba(200, 120, 24, 0.06);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 40px rgba(200, 120, 24, 0.1);
  transform: translateY(-2px);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 16px 48px rgba(200, 120, 24, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #2D1B06;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #FF6B4A;
}

.faq-item.active .faq-question {
  color: #FF6B4A;
}

.faq-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 107, 74, 0.08);
  color: #FF6B4A;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out-expo), background 0.3s;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background: rgba(255, 107, 74, 0.15);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(45, 27, 6, 0.55);
}

/* ── CONTACT SECTION ── */
#contact {
  background: linear-gradient(175deg, #FDEBD0 0%, #FFECD2 50%, #FFE0B2 100%);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-eyebrow {
  justify-content: center;
}

.contact-inner .section-eyebrow::before {
  display: none;
}

.contact-h2 {
  font-family: var(--font-display);
  font-size: clamp(46px, 8vw, 80px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: #2D1B06;
}

.contact-h2 em {
  font-style: italic;
  color: #FF6B4A;
}

.contact-desc {
  font-size: 15px;
  line-height: 1.82;
  color: rgba(45, 27, 6, 0.52);
  margin-bottom: 52px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* ── CONTACT LAYOUT (Character + Form) ── */
.contact-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  text-align: left;
  align-items: start;
}

/* ── ANIMATED CHARACTER ── */
.contact-character {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.character-svg {
  width: 200px;
  height: auto;
  animation: charFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(255, 107, 74, 0.2));
}

@keyframes charFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Shadow syncs with float */
.char-shadow {
  animation: shadowPulse 3s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% { rx: 50; opacity: 1; }
  50% { rx: 42; opacity: 0.6; }
}

/* ── IDLE ANIMATIONS ── */

/* Idle blink */
.char-lid-left,
.char-lid-right {
  animation: blink 4s ease-in-out infinite;
}

@keyframes blink {
  0%, 42%, 46%, 100% { ry: 0; }
  44% { ry: 14; }
}

/* Idle breathing (belly) */
.char-belly {
  animation: breathe 3.5s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06, 1.08); }
}

/* Heart idle pulse */
.char-heart {
  animation: heartBeat 2s ease-in-out infinite;
  transform-origin: 110px 148px;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  15% { transform: scale(1.15); opacity: 0.8; }
  30% { transform: scale(1); opacity: 0.6; }
  45% { transform: scale(1.1); opacity: 0.75; }
}

/* Visor LED scan */
.char-visor-light {
  animation: visorScan 2.5s ease-in-out infinite;
}

@keyframes visorScan {
  0%, 100% { opacity: 0.7; width: 12px; }
  50% { opacity: 1; width: 20px; }
}

/* Antenna ring idle pulse */
.char-antenna-ring {
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { r: 10; opacity: 0.3; }
  50% { r: 14; opacity: 0.1; }
}

/* Button middle glow */
.char-button-2 {
  animation: buttonGlow 2s ease-in-out infinite alternate;
}

@keyframes buttonGlow {
  from { fill: #F0A830; }
  to { fill: #FFD54F; }
}

/* Shoe idle tap */
.char-shoe-left {
  animation: shoeTap 4s ease-in-out infinite;
  transform-origin: 87px 228px;
}

@keyframes shoeTap {
  0%, 80%, 100% { transform: rotate(0deg); }
  85% { transform: rotate(-5deg); }
  90% { transform: rotate(0deg); }
  95% { transform: rotate(-3deg); }
}

/* ── TYPING STATE ── */

/* Character typing bounce */
.contact-character.typing .character-svg {
  animation: charBounce 0.5s ease-in-out infinite;
}

@keyframes charBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(-2deg); }
  75% { transform: translateY(-8px) rotate(2deg); }
}

/* Typing — pupils look around */
.contact-character.typing .char-pupil-left,
.contact-character.typing .char-pupil-right {
  animation: eyeLook 1.2s ease-in-out infinite alternate;
}

.contact-character.typing .char-highlight-left,
.contact-character.typing .char-highlight-right {
  animation: eyeLook 1.2s ease-in-out infinite alternate;
}

@keyframes eyeLook {
  0% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  100% { transform: translateX(-3px) translateY(1px); }
}

/* Typing — eyebrows raise */
.contact-character.typing .char-brow-left {
  animation: browRaiseLeft 0.8s ease-in-out infinite alternate;
}

.contact-character.typing .char-brow-right {
  animation: browRaiseRight 0.8s ease-in-out infinite alternate;
}

@keyframes browRaiseLeft {
  from { transform: translateY(0); opacity: 0.4; }
  to { transform: translateY(-3px); opacity: 0.7; }
}

@keyframes browRaiseRight {
  from { transform: translateY(0); opacity: 0.4; }
  to { transform: translateY(-3px); opacity: 0.7; }
}

/* Typing — blush intensifies */
.contact-character.typing .char-blush-left,
.contact-character.typing .char-blush-right {
  animation: blushPulse 1s ease-in-out infinite alternate;
}

@keyframes blushPulse {
  from { opacity: 0.35; rx: 8; }
  to { opacity: 0.6; rx: 10; }
}

/* Typing — antenna glow */
.contact-character.typing .char-antenna-ball {
  animation: antennaGlow 0.6s ease-in-out infinite alternate;
}

@keyframes antennaGlow {
  from { fill: #F0A830; r: 6; }
  to { fill: #FF6B4A; r: 8; }
}

.contact-character.typing .char-antenna-ring {
  animation: ringTyping 0.6s ease-in-out infinite alternate;
}

@keyframes ringTyping {
  from { r: 10; opacity: 0.3; stroke: #F0A830; }
  to { r: 16; opacity: 0.6; stroke: #FF6B4A; }
}

/* Typing — mouth talks */
.contact-character.typing .char-mouth {
  animation: mouthTalk 0.5s ease-in-out infinite;
}

@keyframes mouthTalk {
  0%, 100% { d: path("M95 80 Q110 92 125 80"); }
  50% { d: path("M95 82 Q110 86 125 82"); }
}

/* Typing — tongue peeks */
.contact-character.typing .char-tongue {
  animation: tonguePeek 1.5s ease-in-out infinite;
}

@keyframes tonguePeek {
  0%, 60%, 100% { opacity: 0; transform: translateY(0); }
  70%, 90% { opacity: 0.7; transform: translateY(2px); }
}

/* Typing — heart speeds up */
.contact-character.typing .char-heart {
  animation: heartFast 0.6s ease-in-out infinite;
}

@keyframes heartFast {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 0.9; }
}

/* Typing — no blink (wider eyes) */
.contact-character.typing .char-lid-left,
.contact-character.typing .char-lid-right {
  animation: none;
  ry: 0;
}

/* Typing — fingers wiggle */
.contact-character.typing .char-fingers-right {
  animation: fingerWiggle 0.4s ease-in-out infinite alternate;
  transform-origin: 182px 162px;
}

@keyframes fingerWiggle {
  from { transform: rotate(0deg); }
  to { transform: rotate(8deg); }
}

/* ── CELEBRATE STATE ── */

.contact-character.celebrate .character-svg {
  animation: charCelebrate 0.6s var(--ease-out-expo) 3;
}

@keyframes charCelebrate {
  0% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-24px) scale(1.12); }
  50% { transform: translateY(-24px) scale(1.12) rotate(5deg); }
  70% { transform: translateY(-24px) scale(1.12) rotate(-5deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}

/* Celebrate — arm wave */
.contact-character.celebrate .char-arm-right {
  animation: armWave 0.5s ease-in-out 4;
  transform-origin: 160px 118px;
}

@keyframes armWave {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-30deg); }
}

.contact-character.celebrate .char-fingers-right {
  animation: fingerWave 0.3s ease-in-out 6;
  transform-origin: 182px 162px;
}

@keyframes fingerWave {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(15deg); }
}

/* Celebrate — wide smile */
.contact-character.celebrate .char-mouth {
  d: path("M90 78 Q110 98 130 78");
}

/* Celebrate — happy eyes (squint) */
.contact-character.celebrate .char-lid-left {
  animation: happySquint 0.6s var(--ease-out-expo) forwards;
}

.contact-character.celebrate .char-lid-right {
  animation: happySquint 0.6s var(--ease-out-expo) forwards;
}

@keyframes happySquint {
  to { ry: 5; }
}

/* Celebrate — blush goes strong */
.contact-character.celebrate .char-blush-left,
.contact-character.celebrate .char-blush-right {
  opacity: 0.65;
  rx: 10;
  transition: opacity 0.3s, rx 0.3s;
}

/* Celebrate — heart goes wild */
.contact-character.celebrate .char-heart {
  animation: heartCelebrate 0.4s ease-in-out infinite;
}

@keyframes heartCelebrate {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* Celebrate — visor flashes */
.contact-character.celebrate .char-visor-light {
  animation: visorFlash 0.3s ease-in-out infinite alternate;
}

@keyframes visorFlash {
  from { fill: #4CAF50; opacity: 0.7; }
  to { fill: #FFD54F; opacity: 1; }
}

/* Celebrate — shoes happy tap */
.contact-character.celebrate .char-shoe-left,
.contact-character.celebrate .char-shoe-right {
  animation: shoeHop 0.4s ease-in-out infinite alternate;
}

.contact-character.celebrate .char-shoe-left {
  transform-origin: 87px 228px;
}

.contact-character.celebrate .char-shoe-right {
  transform-origin: 133px 228px;
  animation-delay: 0.2s;
}

@keyframes shoeHop {
  from { transform: translateY(0); }
  to { transform: translateY(-4px); }
}

/* Speech bubble */
.character-speech {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #2D1B06;
  position: relative;
  text-align: center;
  max-width: 180px;
  box-shadow: 0 4px 16px rgba(200, 120, 24, 0.08);
  transition: opacity 0.3s, transform 0.3s var(--ease-out-expo);
}

.character-speech::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(255, 255, 255, 0.7);
}

/* ── CONTACT FORM ── */
.contact-form {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(200, 120, 24, 0.08), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  margin-bottom: 28px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(45, 27, 6, 0.5);
  font-weight: 500;
}

.form-group label .required {
  color: #FF6B4A;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #2D1B06;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(210, 130, 50, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(45, 27, 6, 0.25);
  font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #FF6B4A;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.1);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23FF6B4A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 16px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.25);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #2e7d32;
}

.form-success.show {
  display: flex;
  animation: fadeUp 0.5s var(--ease-out-expo);
}

.success-icon {
  width: 24px;
  height: 24px;
  background: #4CAF50;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(130deg, #FF6B4A 0%, #F0A830 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 44px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out-expo),
    box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 107, 74, 0.25);
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(255, 107, 74, 0.35);
}

.cta-btn .btn-arrow {
  font-size: 18px;
}

/* ── FOOTER ── */
footer {
  background: #2D1B06;
  padding: 72px 48px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 72px;
  padding-bottom: 56px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 107, 74, 0.15);
}

.footer-logo-big {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 58px;
  letter-spacing: -0.05em;
  color: #FDF6E4;
  line-height: 1;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 3px;
}

.footer-logo-big .f-dot {
  width: 9px;
  height: 9px;
  background: #FF6B4A;
  border-radius: 50%;
  margin-top: 7px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.78;
  color: rgba(253, 246, 228, 0.4);
  max-width: 255px;
  margin-bottom: 32px;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.soc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: none;
  transition: color 0.2s;
  color: rgba(253, 246, 228, 0.35);
  font-size: 13px;
  font-weight: 600;
}

.soc-link:hover {
  color: #FF6B4A;
}

.soc-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 107, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.soc-link:hover .soc-icon {
  border-color: #FF6B4A;
  background: rgba(255, 107, 74, 0.1);
}

.footer-col-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #FF6B4A;
  margin-bottom: 22px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-list a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(253, 246, 228, 0.35);
  text-decoration: none;
  cursor: none;
  transition: color 0.2s;
}

.footer-list a:hover {
  color: #FDF6E4;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy,
.footer-craft {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(253, 246, 228, 0.2);
  letter-spacing: 0.06em;
}

.footer-craft em {
  color: #FF6B4A;
  font-style: normal;
}

/* ── KEYFRAMES ── */
@keyframes slideUp {
  from {
    transform: translateY(105%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE DESIGN
   ══════════════════════════════════════════════ */

/* ── TABLET (max 1024px) ── */
@media (max-width: 1024px) {
  .about-nav {
    padding: 22px 32px;
  }

  .about-nav.scrolled {
    padding: 16px 32px;
  }

  .about-nav .nav-links {
    gap: 24px;
  }

  #hero {
    padding: 0 32px 72px;
  }

  .hero-title {
    font-size: clamp(44px, 7vw, 88px);
  }

  .section-wrap {
    padding: 88px 32px;
  }

  .section-divider {
    margin: 0 32px;
  }

  .people-grid {
    gap: 20px;
  }

  .person-card {
    padding: 44px 40px 40px;
  }

  .person-name {
    font-size: 28px;
  }

  .skills-layout {
    gap: 48px;
  }

  #projects {
    padding: 88px 32px;
  }

  .proj-row {
    gap: 20px;
  }

  #faq {
    padding: 88px 32px;
  }

  #contact {
    padding: 88px 32px;
  }

  .contact-layout {
    gap: 36px;
  }

  .contact-form {
    padding: 32px;
  }

  footer {
    padding: 56px 32px 32px;
  }

  .footer-top {
    gap: 48px;
  }
}

/* ── TABLET SMALL (max 768px) ── */
@media (max-width: 768px) {

  /* Nav becomes hamburger */
  .about-nav {
    padding: 18px 24px;
  }

  .about-nav.scrolled {
    padding: 14px 24px;
  }

  .nav-toggle {
    display: flex;
  }

  .about-nav .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 247, 237, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease-out-expo);
    z-index: 100;
  }

  .about-nav .nav-links.open {
    transform: translateY(0);
  }

  .about-nav .nav-links a {
    font-size: 18px;
    color: rgba(45, 27, 6, 0.6);
  }

  /* Hero */
  #hero {
    padding: 0 24px 56px;
    min-height: 85vh;
  }

  .hero-title {
    font-size: clamp(36px, 8vw, 68px);
    margin-bottom: 28px;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-bg-word {
    font-size: clamp(100px, 22vw, 200px);
  }

  /* Sections */
  .section-wrap {
    padding: 72px 24px;
  }

  .section-divider {
    margin: 0 24px;
  }

  /* People */
  .people-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .person-card {
    padding: 36px 28px 32px;
  }

  .person-name {
    font-size: 26px;
  }

  .person-bio {
    font-size: 13px;
  }

  .person-idx {
    top: 32px;
    right: 28px;
  }

  .people-intro {
    margin-bottom: 48px;
  }

  /* Skills */
  .skills-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .skills-blocks {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Projects */
  #projects {
    padding: 72px 24px;
  }

  .proj-row {
    grid-template-columns: 40px 1fr auto auto;
    gap: 16px;
  }

  .proj-row-year {
    display: none;
  }

  .proj-head {
    margin-bottom: 40px;
  }

  /* FAQ */
  #faq {
    padding: 72px 24px;
  }

  .faq-h2 {
    font-size: clamp(30px, 6vw, 50px);
  }

  .faq-question {
    padding: 20px 24px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 24px;
  }

  .faq-item.active .faq-answer {
    padding: 0 24px 20px;
  }

  /* Contact */
  #contact {
    padding: 72px 24px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-character {
    position: relative;
    top: auto;
    flex-direction: row;
    gap: 20px;
  }

  .character-svg {
    width: 120px;
  }

  .character-speech::before {
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    border-left: none;
    border-right: 8px solid rgba(255, 255, 255, 0.7);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }

  .contact-h2 {
    font-size: clamp(36px, 9vw, 72px);
  }

  .contact-desc {
    margin-bottom: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-form {
    padding: 28px;
  }

  /* Footer */
  footer {
    padding: 48px 24px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo-big {
    font-size: 42px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ── MOBILE (max 480px) ── */
@media (max-width: 480px) {
  .about-nav {
    padding: 14px 16px;
  }

  .about-nav .nav-logo {
    font-size: 20px;
  }

  #hero {
    padding: 0 16px 40px;
    min-height: 80vh;
  }

  .hero-title {
    font-size: clamp(30px, 10vw, 50px);
    margin-bottom: 22px;
  }

  .hero-desc {
    font-size: 13px;
    max-width: 100%;
  }

  .hero-tag {
    font-size: 9px;
  }

  .hero-bg-word {
    font-size: clamp(80px, 24vw, 160px);
  }

  .section-wrap {
    padding: 56px 16px;
  }

  .section-divider {
    margin: 0 16px;
  }

  .people-intro h2 {
    font-size: clamp(30px, 7vw, 44px);
  }

  .person-card {
    padding: 28px 20px 24px;
    border-radius: 14px;
  }

  .person-name {
    font-size: 22px;
  }

  .person-avatar {
    width: 64px;
    height: 64px;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .person-bio {
    font-size: 12.5px;
    margin-bottom: 24px;
  }

  .person-idx {
    top: 24px;
    right: 20px;
  }

  .tag {
    font-size: 8px;
    padding: 5px 10px;
  }

  .skills-left h2 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .skills-blocks {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .skill-block {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .proj-head h2 {
    font-size: clamp(28px, 7vw, 42px);
  }

  .proj-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 20px;
    border-radius: 12px;
  }

  .proj-row-num {
    display: none;
  }

  .proj-row-title {
    font-size: 17px;
  }

  .proj-row-cat {
    display: none;
  }

  .proj-visit-btn {
    font-size: 9px;
    padding: 6px 14px;
  }

  #faq {
    padding: 56px 16px;
  }

  .faq-h2 {
    font-size: clamp(28px, 7vw, 42px);
  }

  .faq-question {
    padding: 18px 16px;
    font-size: 14px;
    gap: 12px;
  }

  .faq-chevron {
    width: 28px;
    height: 28px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 18px;
  }

  .faq-item {
    border-radius: 12px;
  }

  #contact {
    padding: 56px 16px;
  }

  .contact-h2 {
    font-size: clamp(32px, 10vw, 56px);
  }

  .contact-character {
    flex-direction: column;
  }

  .character-svg {
    width: 100px;
  }

  .character-speech {
    font-size: 11px;
    padding: 8px 12px;
  }

  .character-speech::before {
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.7);
    border-top: none;
  }

  .contact-form {
    padding: 20px;
    border-radius: 14px;
  }

  .cta-btn {
    padding: 15px 32px;
    font-size: 12px;
  }

  footer {
    padding: 36px 16px 24px;
  }

  .footer-logo-big {
    font-size: 36px;
  }

  .footer-tagline {
    font-size: 12px;
  }
}