:root {
  --page: #f2f3f4;
  --surface: #ffffff;
  --ink: #111213;
  --muted: #636c76;
  --accent: #0a66c2;
  --radius: 22px;
  --shadow: 0 20px 50px rgba(0,0,0,0.07);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--page);
  color: var(--ink);
  scroll-behavior: smooth;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 100;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .8rem 1rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav__brand {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--ink);
}
.nav__center {
  display: flex;
  gap: 2rem;
}
.nav__center a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  transition: opacity .2s;
}
.nav__center a:hover { opacity: .6; }
.nav__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
.cv-link {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: .4rem .9rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  transition: .3s;
}
.cv-link:hover { background: var(--ink); color: #fff; }
.linkedin-link:hover { color: var(--accent); }

/* Hamburger toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px; height: 40px;
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
}
.nav__toggle span {
  width: 20px; height: 2px; background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: grid;
  gap: .4rem;
  padding: .7rem 1rem 1rem;
  background: var(--surface);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav__mobile a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: .5rem;
  border-radius: 10px;
}
.nav__mobile a:hover { background: #f4f5f6; }

/* ================= HERO ================= */
:root{
  --hero-bg:#f2f3f4;          /* off-white (not pure white) */
  --ink:#111;                 /* text */
  --muted:#616b76;            /* subtitle */
  --ring:#e7e7e7;
  --radius:28px;
  --shadow:0 18px 55px rgba(0,0,0,.08);
}
/* Make name columns act as containers for sizing */
.cq { container-type: inline-size; }

/* Grid: keep tight columns but let them shrink responsibly */
/* Reduce horizontal space between the names and image */
.heroF__inner {
  width: min(1250px, 96vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr minmax(300px, 400px) 1.2fr; /* more space for right side */
  align-items: center;
  gap: clamp(0.8rem, 2.5vw, 1.5rem);
  transform: translateX(-2%); /* shifts whole content slightly left */
}

/* Make the image itself tighter and taller for balance */
.heroF__card {
  aspect-ratio: 3 / 4.3; /* slightly taller */
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.06);
  background: #fff;
  will-change: transform;
  margin: 0 auto; /* centers the image perfectly */
}


/* Name: scale by its own container width (cqw) so it never overflows */
.heroF__name{
  margin:0;
  font-family:"Anton", system-ui, sans-serif;
  text-transform:uppercase;
  letter-spacing:.02em;
  line-height:.9;
  /* clamps to column: min 2.4rem, fluid up to 12cqw (~12% of column), max 7.2rem */
  font-size: clamp(2.4rem, 12cqw, 7.2rem);
  /* safety: balance/wrap and prevent overflow */
  text-wrap: balance;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.heroF__name--left{ text-align:right }

/* Subtitle stays neat and never collides */
.heroF__subtitle{
  margin-top:.8rem;
  color:#616b76;
  font-size: clamp(.95rem, 1.6cqw, 1.05rem);
  max-width:28ch;
}

/* Image column can shrink a bit more on narrow screens */
.heroF__card{
  aspect-ratio:3/4;
  border-radius:28px; 
  overflow:hidden;
  border:1px solid #e7e7e7; 
  box-shadow:0 18px 55px rgba(0,0,0,.08);
  background:#fff; will-change:transform;
}

/* Stack on small screens */
@media (max-width: 900px){
  .heroF__inner{ grid-template-columns:1fr; text-align:center }
  .heroF__name--left{ text-align:center }
  .heroF__right{ align-items:center }
  .heroF__subtitle{ margin-inline:auto }
}

/* section */
.heroF{
  position:relative;
  background:var(--hero-bg);
  color:var(--ink);
  padding:7rem 1rem 4rem;   /* space under sticky navbar */
  overflow:hidden;
  isolation:isolate;
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* very light grain for depth */
.heroF__grain{
  position:absolute; inset:-25%;
  pointer-events:none; opacity:.15; filter:blur(.2px);
  background-image:radial-gradient(rgba(0,0,0,.03) 1px, transparent 1px);
  background-size:3px 3px;
  z-index:0;
}

/* 3 columns: left name | image | right name+subtitle */


/* names: condensed, big, uppercase */
.heroF__name{
  margin:0;
  font-family:"Anton", system-ui, sans-serif; /* narrow like your screenshot */
  text-transform:uppercase;
  letter-spacing:.02em;
  line-height:.9;
  font-size:clamp(3rem, 8vw, 6rem);
}
.heroF__name--left{ text-align:right; }

/* right column stack */
.heroF__right{ display:flex; flex-direction:column; align-items:flex-start; }
.heroF__subtitle{
  margin:.8rem 0 0;
  color:var(--muted);
  font-size:clamp(.95rem, 1.4vw, 1.05rem);
  max-width:28ch;
}

/* image card */
.heroF__card{
  position:relative;
  aspect-ratio:3/4;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--ring);
  box-shadow:var(--shadow);
  background:#fff;
  transform:perspective(900px) rotateX(0) rotateY(0);
  transition:transform .18s ease;
  will-change:transform;
}
.heroF__card img{
  width:100%; height:100%; object-fit:cover; display:block;
  transform:scale(1.02);
  transition:transform .6s ease;
}
.heroF__card:hover img{ transform:scale(1.06); }

/* floating “Hi” bubble (like your ref) */
.heroF__bubble{
  position:absolute; left:-18px; top:10px;
  background:#dbeafe; color:#0c4a6e;
  font-weight:700; border-radius:999px;
  padding:.55rem 1rem; box-shadow:var(--shadow);
  animation:heroFfloat 3s ease-in-out infinite;
}
@keyframes heroFfloat{
  0%,100%{ transform:translate(0,0) }
  50%{ transform:translate(-4px,-12px) }
}

/* scroll cue pill */
.heroF__cue{ margin-top:2rem; display:flex; justify-content:center }
.heroF__mouse{
  width:22px; height:38px; border:1px solid #b7c0cc; border-radius:12px; display:inline-flex; justify-content:center; position:relative;
}
.heroF__mouse i{
  width:6px; height:6px; background:#6b7280; border-radius:999px; position:absolute; top:6px;
  animation:heroFdot 1.6s infinite;
}
@keyframes heroFdot{
  0%{ transform:translateY(0); opacity:1 }
  70%{ transform:translateY(18px); opacity:0 }
  100%{ transform:translateY(0); opacity:1 }
}

/* enter animations (stagger) */
[data-s]{ opacity:0; transform:translateY(24px); }
.heroF--in [data-s]{
  opacity:1; transform:none;
  transition:opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.heroF--in [data-s]:nth-child(1){ transition-delay:.05s }
.heroF--in [data-s]:nth-child(2){ transition-delay:.12s }
.heroF--in [data-s]:nth-child(3){ transition-delay:.19s }

/* responsive: stack */
@media (max-width: 980px){
  .heroF__inner{ grid-template-columns:1fr; text-align:center }
  .heroF__name--left{ text-align:center }
  .heroF__right{ align-items:center }
  .heroF__subtitle{ margin-inline:auto }
  .heroF__bubble{ left:8px; top:8px }
}

/* ---------- SECTIONS ---------- */
.section { padding: 5rem 1rem; }
.section__inner {
  width: min(1100px, 95%);
  margin: 0 auto;
}
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 2rem;
}

/* ABOUT */
/* ===== About (matches the hero vibe) ===== */
:root{
  --about-bg: #f7f7f5;   /* same family as hero off-white */
  --ink: #111;
  --muted: #5f6772;
  --chip: #eef1f4;
  --chip-text: #2b3036;
  --radius: 22px;
}

.aboutFlex{
  background: var(--about-bg);
  color: var(--ink);
  padding: clamp(4rem, 8vw, 6rem) 1rem;
}
.aboutFlex__inner{
  width: min(1100px, 95vw);
  margin: 0 auto;
}

/* Top row: eyebrow left / button right */
.aboutFlex__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.aboutFlex__eyebrow{
  margin: 0;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .95rem;
}

/* Toggle button — minimal, matches your CV pill */
.aboutFlex__toggle{
  appearance: none;
  border: 1px solid rgba(0,0,0,.12);
  background: #e9ebee;
  color: #111;
  border-radius: 10px;
  padding: .55rem .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .06s ease;
}
.aboutFlex__toggle:hover{ background:#f1f3f5; }
.aboutFlex__toggle:active{ transform: translateY(1px); }

/* Big paragraph (like your reference) */
.aboutFlex__lead{
  margin: 0;
  max-width: 40ch;        /* comfortable reading width */
  font-size: clamp(1.15rem, 3.2vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.aboutFlex__lead strong{ font-weight: 900; }

/* Collapsible extra content */
.aboutFlex__more{
  overflow: hidden;
  margin-top: clamp(1rem, 3vw, 1.4rem);
  border-left: 3px solid rgba(0,0,0,.06);
  padding-left: 1rem;
  opacity: 0;
  max-height: 0;
  transition: max-height .45s cubic-bezier(.22,1,.36,1),
              opacity .3s ease;
}
.aboutFlex__more.is-open{
  opacity: 1;
  max-height: 600px;   /* large enough to accommodate content */
}

.aboutFlex__body{
  margin: 0 0 .9rem 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.55;
}

.aboutFlex__tags{
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.aboutFlex__tags li{
  padding: .4rem .7rem;
  background: var(--chip);
  color: var(--chip-text);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
}

/* Responsive: center content on narrow screens */
@media (max-width: 840px){
  .aboutFlex__row{ align-items: flex-start; }
  .aboutFlex__lead{ max-width: 100%; }
}
/* ===== Updated Show More link button ===== */
.aboutFlex__linkBtn {
  display: inline-block;
  text-decoration: none;
  background: #111;              /* black background */
  color: #fff;                   /* white text */
  font-weight: 500;
  padding: 0.55rem 1.2rem;
  border: 1px solid #111;        /* matching border */
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

/* Hover state: invert colors + subtle lift */
.aboutFlex__linkBtn:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);   /* lift effect */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.aboutFlex__linkBtn:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

/* Optional: slight animation pulse when visible */
@keyframes btnFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.aboutFlex__linkBtn {
  position: relative;
  overflow: hidden;
}

.aboutFlex__linkBtn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.25);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
}

.aboutFlex__linkBtn:hover::after {
  left: 100%;
}
/* Scroll reveal base */
[data-reveal]{
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity .8s cubic-bezier(.22,1,.36,1),
              transform .8s cubic-bezier(.22,1,.36,1);
}

/* Directions */
[data-reveal="up"]    { transform: translateY(18px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="left"]  { transform: translateX(-28px); }

/* Revealed state */
.is-revealed{
  opacity: 1 !important;
  transform: none !important;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity: 1; transform: none; transition: none; }
}

/* PROJECTS */
/* ===== Projects section ===== */
:root{
  --proj-bg:#f7f7f5;
  --ink:#111;
  --muted:#5f6772;
  --chip:#eef1f4;
  --radius:22px;
  --shadow:0 18px 55px rgba(0,0,0,.08);
}

.projDeck{ background:var(--proj-bg); color:var(--ink); padding: clamp(4rem,8vw,6rem) 1rem; }
.projDeck__inner{ width:min(1100px,95vw); margin:0 auto; }

.projDeck__row{
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  margin-bottom: clamp(1rem,3vw,1.6rem);
}
.projDeck__eyebrow{ margin:0; letter-spacing:.16em; font-weight:800; font-size:.95rem; }

/* Viewport & track */
.projDeck__viewport{
  position:relative;
  overflow:hidden;
  border-radius: var(--radius);
}
.projDeck__track{
  display:grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 1rem) / 2); /* show 2 cards on desktop */
  gap: 1rem;
  will-change: transform;
  transform: translateX(0);
  transition: transform .5s cubic-bezier(.22,1,.36,1);
  padding: .25rem; /* tighter gutters */
}

/* Slides/cards */
.projDeck__slide{ display:block; }
.projDeck__card{
  display:block; background:#fff; border:1px solid rgba(0,0,0,.08);
  border-radius: var(--radius); overflow:hidden; text-decoration:none; color:inherit;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.projDeck__card:hover{ transform: translateY(-6px); box-shadow: 0 26px 64px rgba(0,0,0,.14); }

.projDeck__media{ aspect-ratio: 16/10; overflow:hidden; }
.projDeck__media img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .35s ease; }
.projDeck__card:hover .projDeck__media img{ transform: scale(1.04); }

.projDeck__meta{ padding: 1rem; }
.projDeck__meta h3{ margin:0 0 .25rem 0; font-size:1.1rem; }
.projDeck__desc{ margin:0 0 .6rem 0; color:var(--muted); font-size:.95rem; line-height:1.45; }
.projDeck__tags{ list-style:none; padding:0; margin:0; display:flex; gap:.4rem; flex-wrap:wrap; }
.projDeck__tags li{ background:var(--chip); border:1px solid rgba(0,0,0,.06); border-radius:999px; padding:.3rem .6rem; font-weight:600; font-size:.8rem; }

/* Arrows */
.projDeck__arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  background:#111; color:#fff; border:2px solid #111;
  width:40px; height:40px; border-radius:999px;
  display:grid; place-items:center; cursor:pointer;
  transition: all .25s ease;
}
.projDeck__arrow:hover{ background:#fff; color:#111; }
.projDeck__arrow--prev{ left:.5rem; }
.projDeck__arrow--next{ right:.5rem; }

/* Dots */
.projDeck__dots{ display:flex; gap:.5rem; justify-content:center; margin-top: .8rem; }
.projDeck__dots button{
  width:8px; height:8px; border-radius:999px; border:0; background:#c7cbd1; cursor:pointer;
  transition: transform .2s ease, background .2s ease;
}
.projDeck__dots button[aria-selected="true"]{ background:#111; transform: scale(1.2); }

/* Responsive: 1 card per view on mobile, 3 on wide */
@media (max-width: 820px){
  .projDeck__track{ grid-auto-columns: 100%; }
}
@media (min-width: 1200px){
  .projDeck__track{ grid-auto-columns: calc((100% - 2rem) / 3); } /* 3 cards */
}

/* Reuse your reveal system */
[data-reveal]{ opacity:0; transform: translateY(18px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1) }
.is-revealed{ opacity:1 !important; transform:none !important }

/* FOOTER */
.footer {
  background: var(--surface);
  border-top: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  padding: 2rem 1rem;
  font-size: .9rem;
  color: var(--muted);
}
.footer__link { color: var(--ink); text-decoration: none; }

/* ---------- ANIMATIONS ---------- */
[data-animate] { opacity: 0; transform: translateY(20px); }
.in-view {
  opacity: 1;
  transform: none;
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; text-align: center; }
  .about__text { order: -1; }
}
@media (max-width: 860px) {
  .nav__center, .nav__right { display: none; }
  .nav__toggle { display: flex; position: absolute; right: 1rem; top: .7rem; }
  .nav__inner { grid-template-columns: 1fr auto 40px; }
}


/* ===== ABOUT SECTION ===== */
.about {
  background: #fafafa; /* soft white background */
  padding: 6rem 1rem;
  display: flex;
  justify-content: center;
}

.about__inner {
  width: min(1100px, 95%);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about__text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: #111;
}

.about__text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 45ch;
}

.about__text .intro {
  font-weight: 600;
  font-size: 1.1rem;
}

.about__info a {
  color: #0a66c2;
  text-decoration: none;
}
.about__info a:hover { text-decoration: underline; }

.about__socials {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.about__socials img {
  width: 22px;
  height: 22px;
  filter: invert(0);
  opacity: 0.8;
  transition: opacity .2s ease;
}
.about__socials img:hover { opacity: 1; }

.about__btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  color: #111;
  border: 2px solid #111;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.about__btn:hover {
  background: #111;
  color: #fff;
}

.about__photo img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  object-fit: cover;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about__text p { margin-left: auto; margin-right: auto; }
  .about__photo { order: -1; }
  .about__socials { justify-content: center; }
}
/* ====== Hero – split names, minimal, animated ====== */
:root{
  --hero-bg:#f7f7f5;  /* off-white, not pure white */
  --ink:#111;         /* near black */
  --muted:#616b76;
  --ring:#e7e7e7;
  --radius:26px;
  --shadow:0 18px 55px rgba(0,0,0,.08);
}

/* Section */
.heroLoad{
  background:var(--hero-bg);
  color:var(--ink);
  padding:7rem 1rem 4rem; /* space for sticky nav */
  overflow:hidden;
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}

/* Grid: left name | image | right name+subtitle  (right column has a bit more room) */
.heroLoad__inner{
  width:min(1220px,96vw);
  margin:0 auto;
  display:grid;
  grid-template-columns: .95fr minmax(300px,400px) 1.15fr;
  align-items:center;
  gap:clamp(.8rem,2.5vw,1.6rem);
  transform:translateX(-1.5%); /* optical nudge left */
}

/* Names (condensed) */
.heroLoad__name{
  margin:0;
  font-family:"Anton",sans-serif;
  text-transform:uppercase;
  letter-spacing:.02em;
  line-height:.9;
  white-space:nowrap;
  font-size:clamp(2.6rem,7.6vw,6.6rem);
  
}
.heroLoad__name--left{ text-align:right; }

/* Subtitle */
.heroLoad__subtitle{
  margin:.8rem 0 0;
  color:var(--muted);
  font-size:clamp(.95rem,1.5vw,1.1rem);
  max-width:32ch;
}

/* Image card */
.heroLoad__card{
  position:relative;
  aspect-ratio:3/4;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--ring);
  background:#fff;
  box-shadow:var(--shadow);
}
.heroLoad__card img{
  width:100%; height:100%; object-fit:cover; display:block;
}

/* Scroll cue (optional) */
.heroLoad__cue{ margin-top:1rem; display:flex; justify-content:center }
.heroLoad__cue span{
  width:18px; height:34px; border:1px solid #b8c0cc; border-radius:12px; position:relative;
}
.heroLoad__cue span::after{
  content:""; position:absolute; left:50%; top:6px; width:6px; height:6px; background:#6b7280; border-radius:50%;
  transform:translateX(-50%); animation:drop 1.6s infinite;
}
@keyframes drop{
  0%{ transform:translate(-50%,0); opacity:1 }
  70%{ transform:translate(-50%,16px); opacity:0 }
  100%{ transform:translate(-50%,0); opacity:1 }
}

/* ====== Load-in animations (initial states) ====== */
[data-anim]{ opacity:0; will-change:transform,opacity; }
[data-anim="from-left"]{ transform:translateX(-60px); }
[data-anim="from-right"]{ transform:translateX(60px); }
[data-anim="from-right-delayed"]{ transform:translateX(60px); }
[data-anim="pop"]{ transform:translateY(16px) scale(.94); }

/* When activated */
.heroLoad--in [data-anim]{ opacity:1; transform:none; }
.heroLoad--in [data-anim="from-left"]{
  transition: transform 1.4s cubic-bezier(.22,1,.36,1), opacity 1.4s cubic-bezier(.22,1,.36,1);
}
.heroLoad--in [data-anim="from-right"]{
  transition: transform 1.4s cubic-bezier(.22,1,.36,1) .08s, opacity 1.4s cubic-bezier(.22,1,.36,1) .08s;
}
.heroLoad--in [data-anim="from-right-delayed"]{
  transition: transform 1.4s cubic-bezier(.22,1,.36,1) .18s, opacity 1.4s cubic-bezier(.22,1,.36,1) .18s;
}
.heroLoad--in [data-anim="pop"]{
  transition: transform 1.4s cubic-bezier(.22,1,.36,1) .10s, opacity 1.4s cubic-bezier(.22,1,.36,1) .10s;
}

/* Responsive: stack nicely */
@media (max-width: 900px){
  .heroLoad__inner{
    grid-template-columns:1fr;
    transform:none;
    text-align:center;
  }
  .heroLoad__name--left{ text-align:center; }
  .heroLoad__subtitle{ margin-inline:auto; }
  .heroLoad__name{ white-space:normal; }
}
/* ====== Hover tilt motion ====== */
.heroLoad__card {
  transform-style: preserve-3d;
  transition: transform 0.30s ease, box-shadow 0.30s ease;
  cursor: pointer;
}

.heroLoad__card:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* subtle smooth easing when returning */
.heroLoad__card img {
  transition: transform 0.4s ease;
}
.heroLoad__card:hover img {
  transform: scale(1.2);
}
/* ===== Card Hover Motion ===== */
.heroLoad__card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  background: #fff;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  transform: perspective(900px) translateY(0) rotateX(0) rotateY(0);
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), 
              box-shadow 0.35s cubic-bezier(.22,1,.36,1);
  cursor: pointer;
  will-change: transform;
}

.heroLoad__card:hover {
  transform: perspective(900px) translateY(-10px) rotateX(0) rotateY(0); /* gentle lift */
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.15); /* stronger depth */
}

/* Optional: make the image scale slightly too */
.heroLoad__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.heroLoad__card:hover img {
  transform: scale(1.05);
}

/* ===== Scroll Reveal Base ===== */
/* === PROJECT GRID FULL-IMAGE CARDS === */
:root {
  --proj-bg: #f7f7f5;
  --ink: #111;
  --radius: 22px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.projGrid {
  background: var(--proj-bg);
  color: var(--ink);
  padding: clamp(4rem, 8vw, 6rem) 1rem;
}
.projGrid__inner {
  width: min(1100px, 95vw);
  margin: 0 auto;
}
.projGrid__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1rem, 3vw, 1.6rem);
}
.projGrid__eyebrow {
  margin: 0;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.95rem;
}

/* Responsive grid for 2–3 cards */
.projGrid__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
}

/* Card */
.projCard {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  height: 380px;
  background: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.projCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Image fills the entire card */
.projCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.projCard:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Overlay */
.projCard__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.projCard:hover .projCard__overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Overlay text */
.projCard__overlay h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #fff;
}
.projCard__overlay p {
  margin: 0.4rem 0 1rem;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Button */
.projCard__btn {
  align-self: flex-start;
  background: #fff;
  color: #111;
  border-color: #fff;
  font-weight: 700;
  padding: 0.55rem 1rem;
  border: 2px solid #fff;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.projCard__btn:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive tweak */
@media (max-width: 700px) {
  .projCard {
    height: 280px;
  }
}
/* ===== Contact / Let's Connect ===== */
:root{
  --contact-bg:#f7f7f5;   /* same family as other sections */
  --surface:#ffffff;
  --ink:#111;
  --muted:#5f6772;
  --ring:#e6e6e6;
  --radius:22px;
  --shadow:0 20px 60px rgba(0,0,0,.10);
}

.contactBlock{ background:var(--contact-bg); color:var(--ink); padding: clamp(4rem,8vw,6rem) 1rem; }
.contactBlock__inner{ width:min(1100px,95vw); margin:0 auto; }

.contactBlock__row{
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  margin-bottom: clamp(1rem,3vw,1.6rem);
}
.contactBlock__eyebrow{
  margin:0; letter-spacing:.16em; font-weight:800; font-size:.95rem;
}

/* grid */
.contactBlock__grid{
  display:grid; gap: clamp(1rem,3vw,2rem);
  grid-template-columns: 1.1fr 1fr;  /* more space to the pitch */
  align-items: start;
}

/* left text */
.contactBlock__pitch h2{
  margin:0 0 .6rem 0;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.05;
}
.contactBlock__pitch p{
  margin:0; color:var(--muted); font-size: clamp(1rem,1.6vw,1.1rem); line-height:1.6;
}

/* right card */
.contactCard{
  background: var(--surface);
  border:1px solid var(--ring);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.5vw, 1.5rem);
}
.contactCard__line{
  display:grid; grid-template-columns: 110px 1fr auto; gap:.6rem; align-items:center;
  padding: .55rem 0; border-bottom:1px dashed rgba(0,0,0,.08);
}
.contactCard__line:last-child{ border-bottom:0; }
.contactCard__line span{ color:var(--muted); font-weight:600; font-size:.9rem; }
.contactCard__email{ color:var(--ink); text-decoration:none; font-weight:700; }
.contactCard__email:hover{ text-decoration:underline; }

/* copy button */
.contactCard__copy{
  appearance:none; border:1px solid rgba(0,0,0,.12); background:#e9ebee; color:#111;
  border-radius:8px; padding:.35rem .6rem; font-weight:600; cursor:pointer; transition:.2s;
}
.contactCard__copy:hover{ background:#fff; }

/* socials */
.contactCard__socials{ display:flex; gap:.7rem; padding-top: .8rem; }
.contactIcon{
  width:42px; height:42px; border-radius:10px; display:grid; place-items:center;
  color:#111; background:#eef1f4; border:1px solid rgba(0,0,0,.08); transition:.25s ease;
}
.contactIcon:hover{ background:#fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.08); }

/* responsive */
@media (max-width: 860px){
  .contactBlock__grid{ grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
:root {
  --footer-bg: #f7f7f5;
  --ink: #111;
  --muted: #5f6772;
}

.siteFooter {
  background: var(--footer-bg);
  color: var(--ink);
  padding: 2rem 1rem 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.siteFooter__inner {
  width: min(1100px, 95vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.siteFooter__name {
  font-size: 0.95rem;
  margin: 0;
  font-weight: 600;
}

.siteFooter__nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.siteFooter__nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.siteFooter__nav a:hover {
  color: var(--muted);
}

.siteFooter__tag {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .siteFooter {
    padding: 2rem 1rem;
  }
  .siteFooter__nav {
    gap: 1rem;
  }
}
