/* ============================================================
   MadeByTali — Main Stylesheet
   ============================================================ */

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

:root {
  --pink:        #e8a0b0;
  --pink-dark:   #c06080;
  --pink-light:  #f5d4dc;
  --pink-pale:   #fdf0f3;
  --dark:        #2a1f22;
  --mid:         #5a4248;
  --soft:        #8c6b74;
  --white:       #ffffff;
  --offwhite:    #faf7f8;
  --border:      #ead8dc;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --shadow-sm: 0 2px 12px rgba(90,66,72,.08);
  --shadow-md: 0 8px 32px rgba(90,66,72,.12);
  --shadow-lg: 0 20px 60px rgba(90,66,72,.15);

  --radius-sm: .6rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--offwhite);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a  { color: inherit; }

/* ── TYPOGRAPHY ── */
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: .9rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.section-title--light { color: var(--white); }

.section-body {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--soft);
}

.section-body--light { color: rgba(255,255,255,.6); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--pink);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,160,176,.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

.btn-soft {
  background: var(--pink-pale);
  color: var(--mid);
  border: 1.5px solid var(--pink-light);
}
.btn-soft:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,160,176,.2);
  transition: box-shadow .3s;
}

.nav.scrolled { box-shadow: 0 2px 24px rgba(90,66,72,.1); }

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -.5px;
}
.nav__logo span { color: var(--pink); }

.nav__links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}

.nav__links a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: .04em;
  transition: color .2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s;
}

.nav__links a:hover,
.nav__links a.active { color: var(--pink); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile nav */
@media (max-width: 700px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
  }
  .nav__links.open { display: flex; }
  .nav__links li a {
    display: block;
    padding: .85rem 5%;
  }
}

/* ── PAGE HERO (non-home) ── */
.page-hero {
  padding: 10rem 5% 5rem;
  background: linear-gradient(135deg, var(--dark) 0%, #4a2f38 60%, #1a1015 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 500px 300px at 20% 80%, rgba(232,160,176,.15) 0%, transparent 70%),
    radial-gradient(ellipse 350px 500px at 80% 20%, rgba(192,96,128,.12) 0%, transparent 70%);
}

.page-hero__content { position: relative; z-index: 1; }

.page-hero .section-label { color: var(--pink-light); }
.page-hero .section-title { color: var(--white); }
.page-hero .section-body { max-width: 540px; margin: 0 auto; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 3rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}
.footer__logo span { color: var(--pink); }

.footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer__links a {
  text-decoration: none;
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer__links a:hover { color: var(--pink); }

.footer__copy {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}

/* ── UTILITY ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-pad { padding: 6rem 5%; }

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }


/* ============================================================
   HOME PAGE
   ============================================================ */

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1f22 0%, #4a2f38 50%, #1a1015 100%);
}

.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(232,160,176,.18) 0%, transparent 70%),
    radial-gradient(ellipse 400px 600px at 80% 20%, rgba(192,96,128,.14) 0%, transparent 70%);
}

.hero__particles { position: absolute; inset: 0; pointer-events: none; }

.hero__particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--pink-light);
  opacity: 0;
  animation: floatUp 8s infinite;
}

@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  20%  { opacity: .55; }
  80%  { opacity: .15; }
  100% { opacity: 0; transform: translateY(-80vh) scale(.3); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation: heroIn .9s ease both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.2rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.03;
  margin-bottom: 1.4rem;
}
.hero__title em { font-style: italic; color: var(--pink-light); }

.hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: rgba(255,255,255,.62);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.38);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.35));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(.8); }
  50%      { opacity: 1;  transform: scaleY(1); }
}

/* About strip on home */
.home-about {
  background: var(--white);
}
.home-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.home-about__img-wrap { position: relative; }
.home-about__img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-pale) 100%);
  display: flex; align-items: center; justify-content: center;
}
.home-about__img svg { width: 55%; opacity: .35; }

.home-about__img-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 58%; height: 58%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  z-index: -1;
  opacity: .3;
}

.home-about__stats { display: flex; gap: 2.4rem; flex-wrap: wrap; margin-top: 2.4rem; }
.stat__num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--pink);
  line-height: 1;
}
.stat__label { font-size: .8rem; color: var(--soft); font-weight: 500; margin-top: .2rem; }

.home-about__links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* Projects strip on home */
.home-projects { background: var(--offwhite); }
.home-projects__header { text-align: center; max-width: 560px; margin: 0 auto 4rem; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.project-card__emoji {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--pink-pale), var(--pink-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}

.project-card__body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }

.project-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-pale);
  padding: .3rem .85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.project-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .6rem;
}

.project-card__desc { font-size: .93rem; line-height: 1.65; color: var(--soft); flex: 1; }

.project-card__link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.4rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--pink);
  text-decoration: none;
  transition: gap .2s;
}
.project-card__link:hover { gap: .7rem; }

/* Gallery strip on home */
.home-gallery { background: var(--dark); }
.home-gallery__header { text-align: center; margin-bottom: 3.5rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
  cursor: pointer;
  transition: transform .3s;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }

.gallery-item__inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #3d2830, #5a3a44);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  transition: background .3s;
}
.gallery-item:hover .gallery-item__inner { background: linear-gradient(135deg, #4d3040, #7a4a5c); }

.gallery-caption { text-align: center; margin-top: 2rem; color: rgba(255,255,255,.45); font-size: .9rem; font-style: italic; }

/* Contact strip on home */
.home-contact { background: var(--white); }
.home-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

input, textarea, select {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--dark);
  background: var(--offwhite);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(232,160,176,.15);
}
input::placeholder, textarea::placeholder { color: #c8a8b0; }
textarea { resize: vertical; min-height: 140px; }

.form-success {
  display: none;
  color: var(--pink-dark);
  font-size: .9rem;
  margin-top: .4rem;
}

.contact-detail {
  display: flex; align-items: center; gap: .75rem;
  font-size: .95rem;
  color: var(--mid);
  margin-bottom: .6rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-intro { background: var(--white); }
.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-intro__img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--pink-light), var(--pink-pale));
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  position: relative;
}

.about-intro__img::after {
  content: '';
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  width: 55%; height: 55%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  z-index: -1;
  opacity: .3;
}

.skills-section { background: var(--offwhite); }
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1100px;
  margin: 0 auto;
}

.skill-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1.5px solid var(--border);
  transition: border-color .3s, box-shadow .3s;
}
.skill-card:hover { border-color: var(--pink); box-shadow: var(--shadow-md); }

.skill-card__icon { font-size: 2.2rem; margin-bottom: 1rem; }
.skill-card__title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: .5rem; }
.skill-card__desc { font-size: .9rem; color: var(--soft); line-height: 1.65; }

.skill-pill-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.skill-pill {
  font-size: .78rem;
  font-weight: 600;
  background: var(--pink-pale);
  color: var(--mid);
  padding: .3rem .75rem;
  border-radius: 100px;
  border: 1px solid var(--pink-light);
}

.timeline-section { background: var(--white); }
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--pink), var(--pink-light), transparent);
}

.timeline-item { position: relative; padding-bottom: 3rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem; top: .35rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--pink);
}
.timeline-item__date { font-size: .8rem; font-weight: 600; color: var(--pink); letter-spacing: .08em; margin-bottom: .4rem; text-transform: uppercase; }
.timeline-item__title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: .3rem; }
.timeline-item__sub { font-size: .9rem; color: var(--soft); margin-bottom: .5rem; }
.timeline-item__desc { font-size: .93rem; color: var(--mid); line-height: 1.65; }

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */

.portfolio-filters {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: .55rem 1.4rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--mid);
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--pink);
  color: var(--dark);
  border-color: var(--pink);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
  color: inherit;
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.portfolio-card__cover {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--pink-pale), var(--pink-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.portfolio-card__cover-badge {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
}

.portfolio-card__body { padding: 2rem 2rem 2.2rem; }

.portfolio-card__meta {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1rem;
  font-size: .82rem;
  color: var(--soft);
}
.portfolio-card__meta span::before { content: '·'; margin-right: .75rem; }
.portfolio-card__meta span:first-child::before { content: none; }

.portfolio-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .75rem;
}

.portfolio-card__desc { font-size: .95rem; color: var(--soft); line-height: 1.7; margin-bottom: 1.5rem; }

.portfolio-card__tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.portfolio-card__tag {
  font-size: .75rem;
  font-weight: 600;
  background: var(--offwhite);
  color: var(--mid);
  padding: .3rem .75rem;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-card__label { font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--pink); margin-bottom: .5rem; }
.contact-card__value { font-size: 1rem; color: rgba(255,255,255,.8); }
.contact-card__value a { color: var(--pink-light); text-decoration: none; }
.contact-card__value a:hover { text-decoration: underline; }

..contact-socials { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  text-decoration: none;
  background: #ffffff;
  color: var(--dark);
  border: 1px solid rgba(0, 0, 0, .12);
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
  transition: all .2s ease-in-out;
}
.social-btn:hover {
  background: #f5f5f5;
  color: var(--dark);
  border-color: var(--pink);
  transform: translateY(-2px) scale(1.05);
}
.contact-socials a + a { margin-left: 0.75rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

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

@media (max-width: 760px) {
  .section-pad { padding: 4.5rem 5%; }
  .home-about__inner   { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro__inner  { grid-template-columns: 1fr; gap: 3rem; }
  .home-contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-page__inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form__row   { grid-template-columns: 1fr; }
  .projects-grid       { grid-template-columns: 1fr; }
  .skills-grid         { grid-template-columns: 1fr; }
  .gallery-grid        { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall  { grid-row: span 1; aspect-ratio: 4/3; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero__title  { font-size: 2.8rem; }
}
