/* =============================================================
   styles.css — Adewumi Portfolio
   Author: Moroluwayosi Adewumi
   Updated: 2026
   ============================================================= */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&family=Nunito:wght@400;600;700;800&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Brand */
  --primary:        #9cc603;
  --primary-dark:   #7da000;

  /* Text */
  --text:           #323232;
  --text-muted:     #6f6f6f;
  --text-light:     #747474;
  --text-footer:    #696969;

  /* Surfaces */
  --bg:             #ffffff;
  --bg-card-green:  #effdf4;
  --bg-card-pink:   #f8f1f1;
  --bg-card-gray:   #f6f7f3;
  --bg-card-purple: #edeefd;
  --bg-card-violet: #f1effd;
  --bg-card-blue:   #eff7fb;
  --bg-block:       #f6f7f3;

  /* Borders / Dividers */
  --border:         #d9d9d9;
  --divider:        #eeeeee;

  /* Sizes */
  --nav-h:          68px;
  --max-w:          960px;
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      24px;

  /* Motion */
  --transition:     0.25s ease;
  --transition-med: 0.35s ease;

  /* Fonts */
  --font-body:      'Raleway', sans-serif;
  --font-ui:        'Nunito', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol { list-style: none; }

/* ── Focus Styles (accessibility) ─────────────────────────── */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Skip Link ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

/* ── Utility ───────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-divider {
  width: min(1360px, calc(100% - 80px));
  height: 2px;
  background: var(--divider);
  margin: 0 auto;
}

/* =============================================================
   HEADER / NAV
   ============================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: box-shadow var(--transition);
  will-change: box-shadow;
}

.header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}

/* Social icons — left */
.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  border-radius: 4px;
  transition: color var(--transition), transform var(--transition);
}

.nav-social a svg { fill: var(--text-muted); }

.nav-social a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.nav-social a:hover svg { fill: var(--primary); }

/* Centre nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 4px 2px;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition-med);
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active {
  font-weight: 700;
  color: var(--primary);
}

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

/* Download CV button */
.btn-cv {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--text-light);
  border-radius: var(--radius-md);
  padding: 7px 13px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-cv svg {
  width: 11px;
  height: 13px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.btn-cv:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(156, 198, 3, 0.18);
}

.btn-cv:hover svg { transform: translateY(2px); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background var(--transition);
}

.menu-toggle:hover { background: #f4f4f4; }

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition-med), opacity var(--transition);
  transform-origin: center;
}

/* Hamburger → X */
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================================
   HERO — INDEX PAGE
   ============================================================= */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 52px 24px 0;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

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

.hero-avatar {
  width: 97px;
  height: 97px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.hero-avatar img {
  width: 111%;
  height: 119%;
  object-fit: cover;
  object-position: center top;
  margin-left: -5.5%;
  margin-top: -2%;
}

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

.hero-greeting {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.hero-title-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.hero-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.hero-title span { color: var(--primary); }

.hero-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
}

.hero-description {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 500;
  color: #7a7a7a;
  line-height: 1.35;
  max-width: 700px;
}

/* Tool icons */
.hero-tools {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 16px;
}

.hero-tools img {
  height: 24px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition), opacity var(--transition);
}

.hero-tools img:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

/* =============================================================
   CASE STUDY SECTION
   ============================================================= */
.case-study-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 48px 24px 64px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.case-study-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}

.case-study-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

/* Cards */
.case-card {
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  position: relative;
}

.case-card:not(.case-card--disabled):hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.case-card--green   { background: var(--bg-card-green); }
.case-card--pink    { background: var(--bg-card-pink); }
.case-card--gray    { background: var(--bg-card-gray); }
.case-card--purple  { background: var(--bg-card-purple); }
.case-card--violet  { background: var(--bg-card-violet); }
.case-card--blue    { background: var(--bg-card-blue); }

.case-card--disabled {
  cursor: default;
  opacity: 0.88;
}

.case-card--disabled:hover {
  transform: none;
  box-shadow: none;
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}

.card-desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.card-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 180px;
}

.card-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: block;
}

/* Bloom overlapping images */
.card-image--overlap {
  position: relative;
  min-height: 240px;
}

.card-image--overlap .img-back,
.card-image--overlap .img-front {
  position: absolute;
  height: auto;
  object-fit: contain;
}

.card-image--overlap .img-back {
  left: 0;
  top: 10px;
  width: 68%;
  z-index: 1;
}

.card-image--overlap .img-front {
  right: 0;
  top: 0;
  width: 37%;
  z-index: 2;
}

/* CTA row */
.card-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.card-cta--right { justify-content: flex-end; }

.card-cta a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}

.card-cta a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.card-cta a:hover { color: var(--primary); }
.card-cta a:hover svg { transform: translateX(4px); }

/* Coming soon label */
.coming-soon-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  justify-content: flex-end;
  margin-top: auto;
}

.coming-soon-label svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =============================================================
   OTHER PROJECTS
   ============================================================= */
.other-projects {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.other-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.project-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 76px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.project-card img {
  height: 28px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.project-card-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: #ed1848;
  white-space: nowrap;
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  border-top: 3px solid var(--divider);
  padding: 28px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-contact .footer-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-contact address {
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-footer);
  line-height: 1.6;
}

.footer-contact a {
  color: var(--text-footer);
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--primary); }

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  transition: opacity var(--transition), transform var(--transition);
}

.footer-icons a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.footer-icons img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-copy {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: #606060;
}

/* =============================================================
   ABOUT PAGE — HERO
   ============================================================= */
.about-hero {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 52px 24px 0;
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-avatar {
  flex-shrink: 0;
  width: 239px;
  height: 315px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.about-avatar img {
  width: 140%;
  height: 114%;
  object-fit: none;
  object-position: center top;
  margin-left: -0%;
  margin-top: -%;
}

.about-hero-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-hero-heading {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.about-hero-desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.about-stats {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  max-width: 66px;
}

/* =============================================================
   BACKGROUND & EXPERIENCE BLOCK
   ============================================================= */
.bg-exp-block {
  background: var(--bg-block);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: var(--max-w);
  margin: 48px auto 0;
  width: calc(100% - 48px);
}

.bg-exp-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bg-exp-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.bg-exp-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
}

.bg-exp-text p + p { margin-top: 10px; }

/* =============================================================
   EXPERIENCE TIMELINE
   ============================================================= */
.experience-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 24px;
  align-items: start;
}

.timeline-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-type {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
}

.timeline-date-loc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-date {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  flex-wrap: wrap;
}

.timeline-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.timeline-location {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-company {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.timeline-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================================
   REVIEWS / TESTIMONIALS
   ============================================================= */
.reviews-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.reviews-left {
  flex: 0 0 280px;
  display: flex;
  align-items: flex-start;
  padding-top: 100px;
}

.reviews-left-text {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Scroll container */
.reviews-right {
  flex: 1;
  min-width: 0;
  height: 380px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--bg-block);
}

/* Fade masks */
.reviews-right::before,
.reviews-right::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 2;
  pointer-events: none;
}

.reviews-right::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg-block), transparent);
}

.reviews-right::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-block), transparent);
}

/* Scroll track — CSS-only infinite loop */
.reviews-scroll-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px 20px;
  animation: reviewScroll 22s linear infinite;
  will-change: transform;
}

.reviews-scroll-track:hover {
  animation-play-state: paused;
}

@keyframes reviewScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Individual review cards */
.review-card {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--border);
  object-fit: cover;
  flex-shrink: 0;
}

.review-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.review-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
}

.review-divider {
  height: 1.5px;
  background: var(--border);
  margin: 0;
  opacity: 0.5;
}

/* =============================================================
   SCROLL-REVEAL ANIMATION
   ============================================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* Stagger delays for siblings */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.18s; }
.reveal:nth-child(4) { transition-delay: 0.26s; }

/* =============================================================
   RESPONSIVE — Tablet  ≤ 900px
   ============================================================= */
@media (max-width: 900px) {
  .case-study-row {
    grid-template-columns: 1fr;
  }

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

  .about-hero {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-top: 40px;
  }

  .about-avatar {
    width: 200px;
    height: 264px;
  }

  .about-hero-content {
    width: 100%;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .reviews-section {
    flex-direction: column;
    gap: 28px;
  }

  .reviews-left {
    flex: none;
    padding-top: 0;
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .reviews-right {
    width: 100%;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-footer {
    padding: 24px 32px;
  }

  .bg-exp-block {
    width: calc(100% - 48px);
    padding: 32px 28px;
  }
}

/* =============================================================
   RESPONSIVE — Mobile  ≤ 640px
   ============================================================= */
@media (max-width: 640px) {
  :root {
    --nav-h: 60px;
  }

  .header {
    padding: 0 18px;
  }

  .nav-social { gap: 8px; }

  /* Hidden by default; shown when open */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--divider);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
    z-index: 199;
    padding: 8px 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid var(--divider);
    width: 100%;
  }

  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }

  .menu-toggle { display: flex; }

  /* Hero */
  .hero {
    padding: 36px 18px 0;
    gap: 28px;
  }

  .hero-title   { font-size: 20px; }
  .hero-subtitle { font-size: 14px; }
  .hero-description { font-size: 17px; }

  /* Case cards */
  .case-study-section {
    padding: 36px 18px 48px;
    gap: 28px;
  }

  .case-study-row { gap: 20px; }

  .card-title { font-size: 18px; }

  .card-image--overlap { min-height: 200px; }

  /* Projects */
  .other-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .project-card { padding: 16px 12px; }

  /* Footer */
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 18px;
  }

  .footer-right {
    align-items: flex-start;
  }

  /* About */
  .about-hero {
    padding: 28px 18px 0;
  }

  .about-avatar {
    width: 160px;
    height: 210px;
  }

  .about-hero-heading { font-size: 24px; }

  .bg-exp-block {
    width: calc(100% - 36px);
    padding: 24px 20px;
    border-radius: var(--radius-md);
  }

  .experience-section {
    padding: 36px 18px 48px;
  }

  .reviews-section {
    padding: 36px 18px 48px;
  }

  .reviews-left-text { font-size: 18px; }
}

/* =============================================================
   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;
  }
}
