*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #fdf8f3;
  --blush: #f5e6e0;
  --rose: #e8c4bc;
  --dusty: #d4a5a0;
  --mauve: #b87d7a;
  --warm: #8c5c5a;
  --text: #3d2b2a;
  --text-soft: #7a5a58;
  --text-light: #b09290;
  --white: #fffcfa;
  --border: rgba(184, 125, 122, 0.18);
  --shadow: rgba(140, 92, 90, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(253, 248, 243, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}
nav.scrolled {
  padding: 14px 52px;
  background: rgba(253, 248, 243, 0.96);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--warm);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--dusty);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover {
  color: var(--mauve);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Hero */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 52px 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-circle-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(232, 196, 188, 0.35) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
}
.hero-bg-circle-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(245, 230, 224, 0.5) 0%,
    transparent 70%
  );
  bottom: 50px;
  left: -80px;
}
.hero-bg-circle-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(212, 165, 160, 0.2) 0%,
    transparent 70%
  );
  top: 200px;
  left: 40%;
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blush);
  border: 1px solid var(--rose);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--dusty);
  border-radius: 50%;
}

.hero-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--text);
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.4s;
}
.hero-name em {
  font-style: italic;
  color: var(--mauve);
}

.hero-subtitle {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  margin-top: 18px;
  max-width: 400px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.6s;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.8s;
}
.pill {
  background: var(--white);
  border: 1px solid var(--rose);
  border-radius: 100px;
  padding: 7px 15px;
  font-size: 12px;
  color: var(--warm);
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1s;
}
.btn-primary {
  background: var(--mauve);
  color: var(--white);
  border: none;
  padding: 13px 32px;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(184, 125, 122, 0.28);
}
.btn-primary:hover {
  background: var(--warm);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(140, 92, 90, 0.32);
}
.btn-outline {
  background: transparent;
  color: var(--mauve);
  border: 1.5px solid var(--rose);
  padding: 12px 28px;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--dusty);
  background: var(--blush);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 0.5s;
}
.hero-image-wrap {
  position: relative;
  width: 340px;
  height: 420px;
}
.hero-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--blush) 0%, var(--rose) 100%);
  border-radius: 42% 58% 38% 62% / 48% 42% 58% 52%;
  animation: morphBlob 8s ease-in-out infinite;
}
@keyframes morphBlob {
  0%,
  100% {
    border-radius: 42% 58% 38% 62% / 48% 42% 58% 52%;
  }
  33% {
    border-radius: 58% 42% 62% 38% / 56% 38% 62% 44%;
  }
  66% {
    border-radius: 38% 62% 44% 56% / 42% 56% 44% 58%;
  }
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 42% 58% 38% 62% / 48% 42% 58% 52%;
  animation: morphBlob 8s ease-in-out infinite;
}
.hero-float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px var(--shadow);
  font-size: 12px;
}
.hero-float-card.card-1 {
  bottom: 20px;
  left: -40px;
  animation: floatY 4s ease-in-out infinite;
}
.hero-float-card.card-2 {
  top: 30px;
  right: -30px;
  animation: floatY 4s ease-in-out infinite 2s;
}
.float-card-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--mauve);
  line-height: 1;
}
.float-card-label {
  color: var(--text-soft);
  font-size: 11px;
  margin-top: 2px;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Scroll indicator */
.scroll-line {
  position: absolute;
  bottom: 36px;
  left: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.4s;
}
.scroll-line::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--dusty);
  display: block;
}

/* Section common */
section {
  padding: 100px 52px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--dusty);
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--mauve);
}

/* Font Awesome icon global styling */
.fa-solid {
  color: var(--mauve);
}
.value-icon .fa-solid {
  font-size: 22px;
}
.comm-icon .fa-solid {
  font-size: 28px;
}
.award-icon-wrap .fa-solid {
  font-size: 20px;
  color: var(--white);
}
.project-icon {
  font-size: 26px;
  color: var(--mauve);
}
.music-emoji .fa-solid {
  font-size: 42px;
}
.instr-badge .fa-solid {
  font-size: 12px;
}
.skill-group-title .fa-solid {
  font-size: 16px;
  margin-right: 4px;
}
.pill .fa-solid {
  font-size: 11px;
}

/* About */
#about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text {
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.85;
}
.about-text p + p {
  margin-top: 16px;
}
.about-text strong {
  color: var(--warm);
  font-weight: 500;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.value-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow);
}
.value-icon {
  font-size: 22px;
  margin-bottom: 10px;
}
.value-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.value-desc {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.6;
}

.about-right {
  padding-top: 12px;
}
.stat-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.stat-item {
  flex: 1;
  min-width: 100px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--mauve);
  line-height: 1;
}
.stat-label {
  font-size: 11.5px;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.4;
}

.timeline-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.timeline-item:last-child {
  border-bottom: none;
}
.timeline-dot {
  width: 10px;
  height: 10px;
  background: var(--rose);
  border: 2px solid var(--dusty);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.timeline-content {
}
.timeline-date {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.timeline-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin: 2px 0 4px;
}
.timeline-sub {
  font-size: 12.5px;
  color: var(--text-soft);
}

/* Experience */
#experience {
  background: var(--cream);
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.exp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}
.exp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--dusty));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(140, 92, 90, 0.1);
}
.exp-card:hover::before {
  transform: scaleX(1);
}
.exp-period {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}
.exp-role {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 4px;
}
.exp-org {
  font-size: 13px;
  color: var(--mauve);
  font-weight: 400;
  margin-bottom: 14px;
}
.exp-bullets {
  list-style: none;
}
.exp-bullets li {
  font-size: 12.5px;
  color: var(--text-soft);
  padding: 5px 0 5px 16px;
  position: relative;
  border-bottom: 1px solid rgba(232, 196, 188, 0.3);
  line-height: 1.5;
}
.exp-bullets li:last-child {
  border-bottom: none;
}
.exp-bullets li::before {
  content: "◦";
  position: absolute;
  left: 0;
  color: var(--dusty);
}
.exp-tag {
  display: inline-block;
  margin-top: 14px;
  background: var(--blush);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 10.5px;
  color: var(--warm);
  letter-spacing: 0.05em;
}

/* Awards & Projects */
#achievements {
  background: var(--white);
  position: relative;
}
.ach-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-top: 48px;
}
.awards-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.award-item {
  display: flex;
  gap: 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.award-item:hover {
  transform: translateX(6px);
  box-shadow: 4px 8px 24px var(--shadow);
}
.award-icon-wrap {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--rose), var(--dusty));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.award-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.award-by {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 3px;
}
.award-badge {
  display: inline-block;
  background: var(--blush);
  border: 1px solid var(--rose);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 10px;
  color: var(--mauve);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.projects-col {
}
.project-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  margin-bottom: 16px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow);
}
.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.project-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
}
.project-year {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.project-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.65;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.ptag {
  background: var(--blush);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 10.5px;
  color: var(--warm);
}

/* Community */
#community {
  background: linear-gradient(170deg, var(--cream) 0%, var(--blush) 100%);
  position: relative;
  overflow: hidden;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.comm-card {
  background: rgba(255, 252, 250, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.comm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(140, 92, 90, 0.12);
}
.comm-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.comm-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.comm-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.comm-since {
  font-size: 11px;
  color: var(--mauve);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.comm-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.65;
}
.comm-highlights {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.comm-hi {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-soft);
}
.comm-hi::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--dusty);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Skills */
#skills {
  background: var(--white);
}
.skills-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.skill-group {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
}
.skill-group-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.skill-chip {
  background: var(--white);
  border: 1px solid var(--rose);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--warm);
  transition: all 0.25s;
}
.skill-chip:hover {
  background: var(--blush);
  border-color: var(--dusty);
  transform: translateY(-2px);
}

/* Music note sidebar */
.music-sidebar {
  background: linear-gradient(145deg, var(--blush), var(--rose));
  border-radius: 22px;
  padding: 28px;
  text-align: center;
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.music-emoji {
  font-size: 42px;
}
.music-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--warm);
}
.music-desc {
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.65;
}
.music-instruments {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.instr-badge {
  background: rgba(255, 252, 250, 0.8);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--warm);
  border: 1px solid rgba(232, 196, 188, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Contact */
#contact {
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contact-bg-text {
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-size: 180px;
  font-weight: 300;
  color: rgba(232, 196, 188, 0.12);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.contact-desc {
  font-size: 16px;
  color: var(--text-soft);
  margin: 20px 0 40px;
  line-height: 1.8;
}
.contact-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--rose);
  border-radius: 100px;
  padding: 12px 24px;
  text-decoration: none;
  color: var(--warm);
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: all 0.3s;
}
.contact-link:hover {
  background: var(--blush);
  border-color: var(--dusty);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow);
}

/* Footer */
footer {
  background: var(--warm);
  padding: 28px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--blush);
  font-weight: 400;
}
.footer-copy {
  font-size: 12px;
  color: rgba(245, 230, 224, 0.6);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Divider */
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), transparent);
  margin-bottom: 48px;
}

/* Responsive */
@media (max-width: 900px) {
  nav {
    padding: 18px 24px;
  }
  nav.scrolled {
    padding: 12px 24px;
  }
  .nav-links {
    gap: 20px;
  }
  #hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 40px;
  }
  .hero-right {
    display: none;
  }
  section {
    padding: 70px 24px;
  }
  .about-grid,
  .ach-layout,
  .exp-grid,
  .skills-layout,
  .community-grid {
    grid-template-columns: 1fr;
  }
  .exp-grid {
    grid-template-columns: 1fr 1fr;
  }
  .comm-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .skills-layout {
    grid-template-columns: 1fr 1fr;
  }
  .scroll-line {
    display: none;
  }
}
