/* ═══════════════════════════════════════════════════════════════
   Emma Gomes · Architecture Portfolio · style.css
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { background: none; border: none; cursor: pointer; }

/* ── TOKENS ── */
:root {
  --cream:   #f5f3e9;
  --warm:    #e9dfdf;
  --clay:    #c4ced4;
  --sand:    #6b8493;
  --ink:     #1a1714;
  --charcoal:#2e2b28;
  --muted:   #7a736c;
  --white:   #ffffff;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.76, 0, 0.24, 1);

  --nav-h: 68px;
  --max-w: 1280px;
  --gap:   clamp(1.5rem, 4vw, 3rem);
}

/* ── TYPOGRAPHY ── */
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: 0.6rem;
}
.section-title em { font-style: italic; font-weight: 300; }
.section-title--light { color: var(--white); }

.label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  font-family: var(--font-sans);
  font-weight: 500;
}
.label--light { color: var(--clay); }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

/* ── SECTION BASE ── */
.section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

/* ═══════════════════
   CUSTOM CURSOR
═══════════════════ */
.cursor {
  pointer-events: none;
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--sand);
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-out-expo),
              width 0.3s var(--ease-out-expo),
              height 0.3s var(--ease-out-expo),
              opacity 0.3s;
  z-index: 9999;
}
.cursor--hover {
  width: 48px; height: 48px;
  opacity: 0.5;
}
@media (hover: none) { .cursor { display: none; } }

/* ═══════════════════
   NAVIGATION
═══════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav--scrolled {
  background: rgba(245, 241, 236, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.35s;
}
.nav--scrolled .nav__logo { color: var(--ink); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  transition: color 0.25s;
}
.nav--scrolled .nav__links a { color: var(--charcoal); }
.nav__links a:hover { color: var(--sand) !important; }

.nav__resume {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em;
  transition: background 0.25s, border-color 0.25s, color 0.25s !important;
}
.nav__resume:hover { background: var(--white); color: var(--ink) !important; border-color: var(--white); }
.nav--scrolled .nav__resume { border-color: var(--sand); color: var(--ink) !important; }
.nav--scrolled .nav__resume:hover { background: var(--ink); color: var(--white) !important; border-color: var(--ink); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
  transform-origin: center;
}
.nav--scrolled .nav__hamburger span { background: var(--ink); }
.nav__hamburger.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(80vw, 320px);
  background: var(--cream);
  z-index: 850;
  padding: calc(var(--nav-h) + 2rem) 2.5rem 2.5rem;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out-expo);
  flex-direction: column;
  gap: 2rem;
}
.nav__drawer.open { transform: translateX(0); }
.drawer__link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
  transition: color 0.2s;
}
.drawer__link:hover { color: var(--sand); }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__drawer { display: flex; }
}

/* ═══════════════════
   HERO
═══════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 12s ease-out forwards;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,15,10,0.72) 0%,
    rgba(20,15,10,0.38) 60%,
    rgba(20,15,10,0.18) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.hero__name {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
}
.hero__name em { font-style: italic; }

.hero__sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.6rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: transform 0.25s var(--ease-out-expo),
              background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--light {
  background: var(--white);
  color: var(--ink);
}
.btn--light:hover { background: var(--cream); }

.btn--ghost {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.25rem, 5vw, 4rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__scroll-line {
  display: block;
  width: 48px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  animation: linePulse 2s ease-in-out infinite;
}
@keyframes linePulse {
  0%,100% { transform: scaleX(1);   opacity: 0.5; }
  50%      { transform: scaleX(1.5); opacity: 1;   }
}

/* ═══════════════════
   ABOUT
═══════════════════ */
.about {
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--gap) clamp(3rem, 8vw, 8rem);
  align-items: start;
}
@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
}
.about__left { position: sticky; top: 8rem; }

.about__body {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.4rem;
  font-weight: 300;
}

.about__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--warm);
}
.fact__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.fact__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════════
   WORK — IMAGE GRID
═══════════════════ */
.work {
  background: var(--cream);
}
.work__intro {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* 2-column responsive grid */
.work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.4rem);
}
@media (max-width: 640px) {
  .work__grid { grid-template-columns: 1fr; }
}

/* ── IMAGE CARD ── */
.work-card {
  position: relative;
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  /* scroll-reveal start states are set by .slide-left / .slide-right */
}
.work-card--wide {
  grid-column: 1 / -1;   /* spans full width */
  max-width: 680px;
  margin-inline: auto;
  width: 100%;
}

/* Image wrapper */
.work-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.work-card--wide .work-card__img-wrap {
  aspect-ratio: 16 / 7;
}

.work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out-expo);
  display: block;
}
.work-card:hover .work-card__img {
  transform: scale(1.06);
}

/* Hover overlay with diagonal arrow */
.work-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 5, 0);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.2rem;
  transition: background 0.4s;
  pointer-events: none;  /* let clicks pass through to the article */
}
.work-card:hover .work-card__overlay {
  background: rgba(15, 10, 5, 0.45);
}

/* Arrow badge */
.work-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  opacity: 0;
  transform: translate(8px, 8px) rotate(-45deg);
  transition: opacity 0.35s var(--ease-out-expo),
              transform 0.45s var(--ease-out-expo);
  flex-shrink: 0;
}
.work-card__arrow svg {
  display: block;
}
.work-card:hover .work-card__arrow {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
}

/* Card text info */
.work-card__info {
  padding: 1.1rem 1.4rem 1.3rem;
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
}
.work-card__num {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  color: var(--clay);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.work-card__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.25;
  flex: 1;
}
.work-card__course {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

/* ── SCROLL REVEAL (pairs: left / right) ── */
.slide-left,
.slide-right {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}
.slide-left  { transform: translateX(-60px); }
.slide-right { transform: translateX(60px); }

.slide-left.in,
.slide-right.in {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger: right card waits slightly */
.work__grid > .slide-right.in { transition-delay: 0.12s; }

/* ═══════════════════
   PROJECT MODAL
═══════════════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  visibility: hidden;
}
.modal.open {
  pointer-events: all;
  visibility: visible;
}

/* Backdrop */
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 10, 0);
  transition: background 0.45s var(--ease-in-out);
  cursor: pointer;
}
.modal.open .modal__backdrop {
  background: rgba(20, 15, 10, 0.78);
}

/* Panel */
.modal__panel {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 1.25rem;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  transform: translateY(40px) scale(0.95);
  opacity: 0;
  transition: transform 0.5s var(--ease-out-expo),
              opacity 0.5s var(--ease-out-expo);
  box-shadow: 0 40px 80px rgba(0,0,0,0.28);
}
.modal.open .modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
@media (max-width: 700px) {
  .modal__panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    max-height: 92vh;
  }
}

/* Close button */
.modal__close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 10;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.modal__close:hover {
  background: var(--ink);
  color: var(--white);
  transform: scale(1.08);
}

/* Modal image */
.modal__img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--warm);
}
.modal__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Modal carousel buttons */
.modal__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 5;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.modal__carousel-btn:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-50%) scale(1.08);
}
.modal__carousel-prev {
  left: 1rem;
}
.modal__carousel-next {
  right: 1rem;
}

@media (max-width: 700px) {
  .modal__img-wrap { max-height: 45vw; }
}

/* Modal text body */
.modal__body {
  display: flex;
  flex-direction: column;
  padding: 2.4rem;
  overflow-y: auto;
}

.modal__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}
.modal__tag {
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--sand);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  border: 1px solid var(--warm);
}
.modal__course {
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.modal__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--ink);
}

.modal__desc {
  font-size: clamp(0.88rem, 1.5vw, 0.98rem);
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  flex: 1;
}

/* Modal thumbnails */
.modal__thumbnails {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.modal__thumb {
  width: 84px;
  height: 84px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s, border-color 0.3s;
  border: 2px solid transparent;
}
.modal__thumb:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.modal__thumb.active {
  opacity: 1;
  border-color: var(--sand);
}

/* Modal prev/next navigation */
.modal__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--warm);
}
.modal__nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.5rem 1rem;
  border: 1px solid var(--warm);
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.modal__nav-btn:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.modal__nav-btn--next { margin-left: auto; }

.modal__counter {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ═══════════════════
   EDUCATION
═══════════════════ */
.edu {
  background: var(--white);
}
.edu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  margin-top: 3.5rem;
}
.edu__card {
  background: var(--cream);
  border: 1px solid var(--warm);
  border-radius: 1.5rem;
  padding: 2.4rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
  cursor: default;
}
.edu__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.07);
}
.edu__year {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 0.8rem;
}
.edu__degree {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.edu__school {
  font-size: 0.85rem;
  color: var(--muted);
}
.edu__badge {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  letter-spacing: 0.04em;
}

/* ═══════════════════
   SKILLS
═══════════════════ */
.skills {
  background: var(--cream);
}
.skills__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
  margin-top: 3.5rem;
}
.skills__col-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--warm);
}
.skills__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  border: 1px solid var(--warm);
  border-radius: 100px;
  font-size: 0.8rem;
  background: var(--white);
  color: var(--charcoal);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  cursor: default;
}
.pill:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

/* ═══════════════════
   EXHIBITIONS
═══════════════════ */
.exhibitions {
  background: var(--white);
}
.exhibitions__list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
}
.exhibitions__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--warm);
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  font-weight: 300;
  color: var(--charcoal);
  transition: color 0.2s;
}
.exhibitions__item:hover { color: var(--sand); }

.exhibitions__dot {
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clay);
  transition: transform 0.2s;
}
.exhibitions__item:hover .exhibitions__dot { transform: scale(1.6); }

/* ═══════════════════
   CONTACT
═══════════════════ */
.contact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 12vw, 11rem);
}
.contact__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(160,135,106,0.18) 0%, transparent 60%),
    var(--ink);
  z-index: 0;
}
.contact__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.contact__sub {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  font-weight: 300;
  margin-top: 1.8rem;
  max-width: 460px;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  color: rgba(255,255,255,0.75);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  transition: color 0.25s, gap 0.25s;
}
.contact__link:hover { color: var(--white); gap: 1.5rem; }

.contact__link-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}
.contact__link:hover .contact__link-icon {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
}

/* ═══════════════════
   FOOTER
═══════════════════ */
.footer {
  background: var(--charcoal);
  padding-block: 1.8rem;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer__nav {
  display: flex;
  gap: 2rem;
}
.footer__nav a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--white); }

/* ═══════════════════
   REVEAL ANIMATIONS
═══════════════════ */
.reveal-up,
.reveal-left {
  opacity: 0;
  will-change: transform, opacity;
}
.reveal-up   { transform: translateY(32px); }
.reveal-left { transform: translateX(-24px); }

.reveal-up.in,
.reveal-left.in {
  animation: revealIn 0.85s var(--ease-out-expo) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes revealIn {
  to { opacity: 1; transform: none; }
}

/* ═══════════════════
   RESPONSIVE TWEAKS
═══════════════════ */
@media (max-width: 640px) {
  .about__facts { grid-template-columns: 1fr 1fr; }
  .hero__name { font-size: clamp(3.2rem, 14vw, 5rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
