*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f9f8f5;
  --text: #1a1a1a;
  --muted: #888;
  --border: #e0ddd6;
  --accent: #1a1a1a;
  --card-bg: #fff;
  --tag-bg: #f0ede6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
.headline,
.section-title,
.nav-logo,
.exp-role,
.project-title,
.cta-text h2,
.btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.subheadline,
.hero-eyebrow,
.section-label,
.skills-col-label,
.exp-company,
.exp-date,
.project-desc,
.project-tag,
.chip,
.soft-item,
.footer-links a,
.footer-left p {
  font-family: 'Inter', sans-serif;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(249, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

nav.scrolled {
  border-bottom-color: var(--border);
}

.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--text);
}

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

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-decoration: none;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.25s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Active nav link (scroll-driven) */
.nav-links a.active {
  color: var(--text);
}

.nav-links a.active::after {
  width: 100%;
}

/* ─── KEYBOARD FOCUS RING ─── */
:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ─── SECTIONS ─── */
section {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 120px;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 80px;
}

h1.headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 3vw, 62px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: #000;
}

.subheadline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.btn-primary:hover {
  background: #333;
  border-color: #333;
}

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

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

/* scroll hint */
.scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 60px;
  font-family: 'Inter', sans-serif;
}

.scroll-hint-line {
  width: 40px;
  height: 1px;
  background: var(--border);
}

/* Hero right / photo frame */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-frame {
  width: 340px;
  height: 400px;
  border-radius: 20px;
  background: var(--border);
  overflow: visible;
  /* allow badge to overflow */
  position: relative;
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #e8e4da 0%, #d6d0c4 100%);
  overflow: hidden;
}

.hero-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  border-radius: 20px;
  overflow: hidden;
}

.hero-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.hero-photo-placeholder svg {
  opacity: 0.4;
}

.hero-photo-placeholder span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* Badge is now INSIDE / on top of the photo frame */
.hero-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.3;
  animation: spin-slow 10s linear infinite;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: spin-reverse 10s linear infinite;
}

@keyframes spin-reverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.hero-badge-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.hero-badge-text {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  text-align: center;
  opacity: 0.85;
}

/* ─── SECTION HEADINGS ─── */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--muted);
}

h2.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 48px;
  color: #000;
}

/* ─── SKILLS ─── */
#skills {
  background: #fff;
  max-width: 100%;
  padding: 100px 48px;
}

#skills .inner {
  max-width: 1100px;
  margin: 0 auto;
}

.skills-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

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

.skills-col-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Chips — no dots */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  transition: all 0.2s;
  cursor: default;
  font-family: 'Inter', sans-serif;
}

.chip:hover {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}

/* ─── SOFTWARE — TAPE / MARQUEE ─── */
#software {
  padding: 80px 0;
  background: var(--bg);
  overflow: hidden;
}

.software-header {
  padding: 0 48px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.tape-track {
  width: 100%;
  overflow: hidden;
  background: #323232;
  padding: 0;
  position: relative;
}

.tape-inner {
  display: flex;
  gap: 0;
  animation: tape-scroll 18s linear infinite;
  width: max-content;
}

@keyframes tape-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.tape-track .soft-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 40px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  transition: none;
}

.tape-track .soft-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.tape-track .soft-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── PROJECTS ─── */
#projects {
  background: var(--bg);
}

.subheadproject {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  max-width: 560px;
  margin-top: -24px;   /* pulls it closer under the section-title */
  margin-bottom: 40px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.project-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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


.project-info {
  padding: 20px;
}

.project-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.project-tag {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--tag-bg);
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}

.project-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.3;
  color: #000;
}

.project-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── CTA BANNER — full width ─── */
#cta {
  /* No horizontal padding — full width */
  padding: 0 0 80px;
}

.cta-banner {
  border-radius: 0;
  /* no rounding since it's full width */
  background: #323232;
  color: #fff;
  padding: 48px 72px; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cta-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta-banner::after {
  content: '';
  position: absolute;
  right: 40px;
  bottom: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.cta-text h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 0px;
  line-height: 1.2;
}

.cta-text p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  opacity: 0.6;
}

.btn-light {
  background: #fff;
  color: var(--text);
  border-color: #fff;
  white-space: nowrap;
}

.btn-light:hover {
  background: #f0ede6;
  border-color: #f0ede6;
}

/* ─── EXPERIENCE — clean table layout ─── */
#experience {
  background: #fff;
  max-width: 100%;
  padding: 100px 48px;
}

#experience .inner {
  max-width: 1100px;
  margin: 0 auto;
}

.exp-table {
  display: flex;
  flex-direction: column;
}

.exp-row {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  gap: 24px;
  transition: background 0.2s;
}

.exp-row:first-child {
  border-top: 1px solid var(--border);
}

.exp-row-role {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000;
}

.exp-row-company {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted);
}

.exp-row-date {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted);
  text-align: right;
}

/* Keep .exp-item styles for contact section usage */
.exp-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}

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

.exp-content {
  min-width: 0;
}

.exp-role {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
  color: #000;
  transition: color 0.2s;
}

.exp-company {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 4px;
}

.exp-date {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ─── CONTACT ─── */
/* (uses exp-item styles from above) */

/* ─── FOOTER ─── */
footer {
  padding: 60px 48px;
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-left p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

/* ─── WHAT I DO ─── */
#what-i-do {
  background: #ffffff;
  padding: 100px 48px;
}

#what-i-do .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.what-i-do-center {
  text-align: center;
}

.what-i-do-center h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 42px);
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 500;
}

.what-i-do-center p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #444;
}

.what-i-do-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-4px); } /* Subtle float */
  100% { transform: translateY(0px); }
}

.what-i-do-card {
  background: #ffffff;
  flex: 1;
  max-width: 280px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 28px 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
  animation: float 6s ease-in-out infinite;
}

.what-i-do-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 600;
}

.what-i-do-card p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #444;
  line-height: 1.5;
}

.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: -2s; }
.card-3 { animation-delay: -4s; }

/* ─── PERSONAL EDGE ─── */
#personal-edge {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

#personal-edge h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: -0.02em;
}

#personal-edge h2 span {
  color: var(--muted);
  font-weight: 400;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(249, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin: 0;
    z-index: 99;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    margin: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }

  .nav-links a {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    letter-spacing: -0.02em;
  }

  .nav-links a::after {
    bottom: -4px;
    height: 2px;
  }

  section,
  #skills,
  #experience {
    padding: 60px 24px;
  }

  #hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 100px 24px 60px;
  }

  .hero-right {
    order: -1;
    justify-content: center;
  }

  .hero-photo-frame {
    width: min(100%, 280px);
    height: auto;
    aspect-ratio: 340 / 400;
    max-width: 100%;
  }

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

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

  .exp-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .exp-row-date {
    text-align: left;
    grid-column: 1 / -1;
    font-size: 12px;
    padding-bottom: 4px;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  #what-i-do {
    padding: 60px 24px;
  }

  #what-i-do .inner {
    gap: 32px;
  }

  .what-i-do-center {
    margin-bottom: 0;
  }

  .what-i-do-cards {
    flex-direction: column;
    gap: 24px;
  }

  .what-i-do-card {
    width: 100%;
    max-width: none;
  }

  #personal-edge {
    padding: 60px 24px;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .software-header {
    padding: 0 24px;
  }

  #contact .inner {
    padding: 60px 24px !important;
  }

  #contact [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* --- FIX: Reduce gap in Skills Section --- */
.skills-grid-header {
  margin-bottom: 24px;
  /* Reduced from 48px */
}

h2.section-title {
  margin-bottom: 32px;
  /* Reduced from 48px for tighter feel */
}

/* --- ABOUT ME STYLES --- */
#about {
  padding: 0 0 80px;
}

.about-banner {
  background: #f9f8f5;
  /* Light grey base similar to your image */
  color: var(--text);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  width: 100%;
  min-height: 450px;
}

.about-image-container {
  width: 100%;
  height: 100%;
  background: #d9d9d9;
   border-radius: 0 7px 7px 0;
  /* The specific grey from your uploaded Rectangle 1.png */
}

.about-image-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  padding: 64px 72px;
}

.about-text h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 500px;
}

/* Responsive fix for About section */
@media (max-width: 768px) {
  .about-banner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
  }

  .about-image-container {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 0;
    order: -1;
    margin-bottom: 0;
  }

  .about-image-container img {
    object-position: center top;
  }

  .about-text {
    padding: 48px 24px;
    text-align: center;
  }

  .about-text h2 {
    margin-bottom: 16px;
  }

  .about-text p {
    margin: 0 auto;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .about-image-container {
    aspect-ratio: 1 / 1;
  }

  .about-text {
    padding: 32px 20px;
  }

  .about-text h2 {
    font-size: 22px;
  }

  .about-text p {
    font-size: 14px;
    max-width: 350px;
  }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .tape-inner {
    animation: none;
  }

  .hero-badge {
    animation: none;
  }

  .hero-badge-inner {
    animation: none;
  }

  .what-i-do-card {
    animation: none;
  }
}