/* ============================================
   Itsuki Portfolio — Dannel Freelancer Style
   Font: Space Grotesk | Aesthetic: Sharp B&W
   Zero border-radius. Period motif. Editorial.
   ============================================ */

/* --- Font Face --- */
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk/SpaceGrotesk-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk/SpaceGrotesk-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk/SpaceGrotesk-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk/SpaceGrotesk-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Variables --- */
:root {
  --color-bg: #f8f8f8;
  --color-bg-white: #ffffff;
  --color-bg-dark: #121212;
  --color-text: #121212;
  --color-text-secondary: #666666;
  --color-text-light: #999999;
  --color-border: #e0e0e0;
  --color-card-dark: #121212;
  --color-card-light: #f8f8f8;
  /* Typography Scale (Major Third ~1.25, base 18px)
     Step -2: 0.8125rem (14.6px) — overline, meta
     Step -1: 0.875rem  (15.8px) — caption, small
     Step  0: 1rem      (18px)   — body
     Step  1: 1.125rem  (20.3px) — lead, description
     Step  2: 1.375rem  (24.8px) — h4, card title
     Step  3: 1.75rem   (31.5px) — h3
     Step  4: clamp(2.25rem, 4vw, 3rem)   — h2
     Step  5: clamp(2.75rem, 6vw, 4.5rem) — h1
  */
  --font-family: 'Space Grotesk', 'Noto Sans TC', 'PingFang TC', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-base: 18px;
  --line-height-display: 1.2;
  --line-height-heading: 1.3;
  --line-height-subhead: 1.4;
  --line-height-body: 1.8;
  --line-height-small: 1.6;
  --paragraph-spacing: 1.25rem;
  --container-max: 960px;
  --container-wide: 1120px;
  --header-height: 80px;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

[data-theme="dark"] {
  --color-bg: #1a1a1a;
  --color-bg-white: #121212;
  --color-text: #f0f0f0;
  --color-text-secondary: #999999;
  --color-text-light: #666666;
  --color-border: #333333;
  --color-card-dark: #0a0a0a;
  --color-card-light: #1a1a1a;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: background-color var(--transition), color var(--transition);
  overflow-x: hidden;
  font-feature-settings: 'kern' 1;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

::selection {
  background: var(--color-text);
  color: var(--color-bg);
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding: 120px 0;
}

.section--large {
  padding: 160px 0;
}

/* --- Typography ---
   CJK-aware type scale.
   Chinese glyphs are denser than Latin — every size, line-height,
   and spacing value is tuned for mixed CJK + Latin readability.
   Key rules:
   1. No negative letter-spacing (breaks CJK square grid)
   2. Body line-height 1.8+ (CJK has no word-spacing, needs air)
   3. Heading line-height 1.2+ (1.1 causes CJK lines to collide)
   4. Min readable size 13px (CJK strokes blur below that)
*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: var(--line-height-display);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: var(--line-height-heading);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.75rem;
  line-height: var(--line-height-heading);
  letter-spacing: 0;
}

h4 {
  font-size: 1.375rem;
  line-height: var(--line-height-subhead);
  letter-spacing: 0;
}

p {
  margin-bottom: var(--paragraph-spacing);
  color: var(--color-text-secondary);
  line-height: var(--line-height-body);
}

p:last-child {
  margin-bottom: 0;
}

.text-secondary { color: var(--color-text-secondary); }
.text-light { color: var(--color-text-light); }
.text-small { font-size: 0.875rem; line-height: var(--line-height-small); }

/* Overline label style */
.overline {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  line-height: var(--line-height-small);
  margin-bottom: 20px;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color var(--transition), transform 0.4s ease;
}

.header.scrolled {
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.header--hidden {
  transform: translateY(-100%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 48px;
  max-width: 100%;
}

.header__logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  min-width: 120px;
}

.header__logo a:hover {
  opacity: 1;
}

/* Sticky logo: show short version */
.header__logo .logo-short {
  display: none;
}

.header.scrolled .logo-full {
  display: none;
}

.header.scrolled .logo-short {
  display: inline;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav a {
  font-size: 1rem;
  font-weight: 500;
}

.header__nav a:hover {
  opacity: 0.5;
}

.header__cta {
  min-width: 120px;
  text-align: right;
}

.header__cta a {
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header__cta a:hover {
  opacity: 1;
}

.header__cta .arrow {
  transition: transform var(--transition);
}

.header__cta a:hover .arrow {
  transform: translateX(4px);
}

/* --- Hamburger (mobile) --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Navigation Modal (full-screen) --- */
.nav-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav-modal.open {
  opacity: 1;
  pointer-events: all;
}

.nav-modal a {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: opacity var(--transition);
}

.nav-modal a:hover {
  opacity: 0.4;
}

/* --- Dark Mode Toggle (bottom-right fixed) --- */
.theme-toggle {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1003;
  width: 48px;
  height: 48px;
  border: none;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition), border-color var(--transition);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text);
  transition: fill var(--transition);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* --- Rotated Side Labels --- */
.side-label {
  position: fixed;
  z-index: 100;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.side-label--left {
  left: 20px;
  bottom: 40px;
}

.side-label--right {
  right: 20px;
  bottom: 40px;
}

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

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero__content {
  padding: 80px 0;
}

.hero__title {
  margin-bottom: 40px;
  line-height: var(--line-height-display);
}

.hero__photo {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.hero__photo img,
.hero__photo .placeholder-photo {
  position: absolute;
  top: 0;
  right: -40px;
  width: calc(100% + 40px);
  height: 100%;
  object-fit: cover;
}

.placeholder-photo {
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* --- Buttons (ZERO border-radius) --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 0;
}

.btn--primary {
  background-color: var(--color-text);
  color: var(--color-bg);
}

.btn--primary:hover {
  opacity: 0.85;
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
}

.btn--outline:hover {
  border-color: var(--color-text);
  opacity: 1;
}

.btn--outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #ffffff;
}

.btn--outline-white:hover {
  border-color: #ffffff;
  opacity: 1;
}

.btn--large {
  padding: 22px 40px;
  font-size: 1.125rem;
}

.btn .arrow {
  transition: transform var(--transition);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* Link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
}

.link-arrow:hover {
  opacity: 1;
}

.link-arrow:hover .arrow {
  transform: translateX(4px);
}

.link-arrow .arrow {
  transition: transform var(--transition);
}

/* --- Services Cards (3 cols, first dark) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-card {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  border: 1px solid var(--color-border);
  border-radius: 0;
  transition: border-color var(--transition);
}

.service-card--dark {
  background-color: var(--color-card-dark);
  color: #ffffff;
  border-color: var(--color-card-dark);
}

.service-card--dark .service-card__title,
.service-card--dark .service-card__desc {
  color: #ffffff;
}

.service-card--dark .service-card__desc {
  opacity: 0.7;
}

.service-card--light {
  background-color: var(--color-card-light);
}

.service-card__top {
  margin-bottom: 40px;
}

.service-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: var(--line-height-subhead);
  margin-bottom: 16px;
}

.service-card__desc {
  font-size: 1rem;
  line-height: var(--line-height-body);
  color: var(--color-text-secondary);
}

.service-card__arrow {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  align-self: flex-end;
  border-radius: 0;
}

.service-card--light .service-card__arrow {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.service-card__arrow svg {
  width: 20px;
  height: 20px;
}

.service-card__arrow:hover {
  background: rgba(255,255,255,0.3);
}

.service-card--light .service-card__arrow:hover {
  background: var(--color-border);
}

/* --- Featured Works (full-width row layout) --- */
.works-section {
  padding: 120px 0 80px;
}

.works-section__heading {
  margin-bottom: 80px;
}

.work-item {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
}

.work-item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.work-item__content {
  padding-right: 0;
}

.work-item__category {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: var(--line-height-small);
}

.work-item__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  line-height: var(--line-height-heading);
  letter-spacing: -0.01em;
}

.work-item__desc {
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: var(--line-height-body);
}

.work-item__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--color-card-light);
  border-radius: 0;
  position: relative;
}

.work-item__image .placeholder-photo {
  position: absolute;
  inset: 0;
}

.work-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.work-item:hover .work-item__image img {
  transform: scale(1.03);
}

.works-more {
  text-align: center;
  padding: 60px 0;
}

/* --- Portfolio Grid (for portfolio.html listing) --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0;
}

.portfolio-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--color-card-light);
  border-radius: 0;
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.05);
}

.portfolio-card__info {
  padding: 16px 0;
}

.portfolio-card__category {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 6px;
  line-height: var(--line-height-small);
}

.portfolio-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: var(--line-height-subhead);
}

.portfolio-card a {
  text-decoration: none;
  color: inherit;
}

.portfolio-card a:hover {
  opacity: 1;
}

/* --- Filter --- */
.filter {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter__btn {
  padding: 10px 24px;
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  border: 1.5px solid var(--color-border);
  cursor: pointer;
  color: var(--color-text-secondary);
  transition: all var(--transition);
  border-radius: 0;
}

.filter__btn:hover,
.filter__btn.active {
  background-color: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

/* --- CTA Footer (dark) --- */
.cta-footer {
  background-color: #121212;
  color: #ffffff;
  padding: 120px 0 0;
  overflow: hidden;
}

[data-theme="dark"] .cta-footer {
  background-color: #0a0a0a;
}

.cta-footer h2 {
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 700px;
  margin-bottom: 48px;
  line-height: var(--line-height-display);
  letter-spacing: -0.01em;
}

.cta-footer__social {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 80px;
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 500px;
}

.cta-footer__social a {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}

.cta-footer__social a:hover {
  opacity: 0.5;
}

.cta-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-footer__copy {
  font-size: 0.8125rem;
  line-height: var(--line-height-small);
  color: rgba(255,255,255,0.5);
}

.cta-footer__legal {
  display: flex;
  gap: 32px;
}

.cta-footer__legal a {
  font-size: 0.8125rem;
  line-height: var(--line-height-small);
  color: rgba(255,255,255,0.5);
}

.cta-footer__legal a:hover {
  color: #ffffff;
  opacity: 1;
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: 180px 0 80px;
}

.page-header h1 {
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.1875rem;
  line-height: var(--line-height-body);
  max-width: none;
}

/* --- Project Detail --- */
.project-hero {
  width: 100%;
  overflow: hidden;
  margin-bottom: 48px;
  border-radius: 0;
}

.project-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 64px;
}

.project-meta__item dt {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  margin-bottom: 8px;
  line-height: var(--line-height-small);
}

.project-meta__item dd {
  font-weight: 600;
  font-size: 1rem;
  line-height: var(--line-height-subhead);
}

.project-content {
  max-width: none;
}

.project-content p,
.project-content h3,
.project-content h4 {
  max-width: none;
}

.project-content p {
  font-size: 1.125rem;
  line-height: var(--line-height-body);
}

.project-content .project-hero {
  margin: 48px 0;
}

.project-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
  margin-top: 80px;
}

.project-nav a {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* --- About Page --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: var(--color-card-light);
  border-radius: 0;
}

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

.about-bio h2 {
  margin-bottom: 32px;
}

.about-bio p {
  font-size: 1.125rem;
  line-height: var(--line-height-body);
  max-width: none;
}

.skills-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.skills-list li {
  font-weight: 600;
  font-size: 1rem;
  line-height: var(--line-height-subhead);
  padding-left: 16px;
  border-left: 2px solid var(--color-text);
}

/* --- Experience --- */
.experience-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.experience-item:first-child {
  border-top: 1px solid var(--color-border);
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.contact-links a {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.125rem;
  line-height: var(--line-height-subhead);
}

.contact-links a:first-child {
  border-top: 1px solid var(--color-border);
}

.contact-links a:hover {
  opacity: 1;
}

.contact-links a .arrow {
  transition: transform var(--transition);
}

.contact-links a:hover .arrow {
  transform: translateX(4px);
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .header__nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__photo {
    min-height: 400px;
  }

  .hero__photo .placeholder-photo {
    right: -24px;
    width: calc(100% + 24px);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .work-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .work-item__content {
    padding-right: 0;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .project-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 80px 0;
  }

  .page-header {
    padding: 140px 0 48px;
  }

  .container {
    padding: 0 24px;
  }

  .header__inner {
    padding: 0 24px;
  }

  .side-label {
    display: none;
  }

  .cta-footer__social {
    grid-template-columns: 1fr;
  }
}

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

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 0;
  }

  .hero__photo {
    min-height: 350px;
  }

  .cta-footer {
    padding: 80px 0 0;
  }

  .cta-footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .project-nav {
    flex-direction: column;
    gap: 20px;
  }

  .skills-list {
    grid-template-columns: 1fr;
  }

  .experience-item {
    flex-direction: column;
    gap: 4px;
  }
}
