/* Clean, modern single page (deaddingo-inspired restraint) */
:root{
  --bg:#f8f8f7;
  --ink:#0f0f12;
  --muted:#60606b;
  --line:#e2e2e6;
  --card:#ffffff;
  --tint:#f3f3f2;
  --accent:#ff5c00;
  --shadow:0 10px 30px rgba(15,15,18,0.06);
  --radius:18px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height:1.55;
}

.container{ width:min(var(--max), calc(100% - 48px)); margin:0 auto; }

/* Top */
.top{
  position:sticky; top:0; z-index:10;
  background:rgba(248,248,247,0.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.top__inner{ display:flex; justify-content:space-between; align-items:center; padding:18px 0; gap:18px; }
.brand{ text-decoration:none; color:inherit; font-weight:700; letter-spacing:.2px; }
.nav{ display:flex; gap:22px; flex-wrap:wrap; justify-content:flex-end; }
.nav a{ color:var(--muted); text-decoration:none; font-size:13px; }
.nav a:hover{ color:var(--ink); }

/* Hero */
.hero{ padding:56px 0 18px; }
.hero__grid{ display:grid; grid-template-columns:1.25fr .75fr; gap:42px; align-items:start; }
.heroLogo img{ width:96px; height:auto; display:block; opacity:.92; margin-bottom:18px; }
.hero h1{
  margin:0 0 14px;
  font-size:clamp(40px, 5vw, 72px);
  line-height:1.02;
  letter-spacing:-1px;
}
.accent{ width:260px; height:10px; background:var(--accent); border-radius:999px; margin:10px 0 20px; }
.accent--sm{ width:140px; height:6px; margin:10px 0 0; }
.lead{ margin:0 0 18px; color:var(--muted); font-size:17px; max-width:62ch; }

.chips{ display:flex; flex-wrap:wrap; gap:10px; list-style:none; padding:0; margin:18px 0 0; }
.chips li{
  font-size:12px; color:var(--muted);
  border:1px solid var(--line);
  padding:8px 10px; border-radius:999px;
  background:transparent;
}

/* Right hero */
.hero__aside{ display:flex; flex-direction:column; gap:14px; }
.photo{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:#efefef;
  box-shadow:var(--shadow);
}
.photo img{ display:block; width:100%; height:auto; }
.asideCard{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--card);
  padding:16px 16px 18px;
  box-shadow:var(--shadow);
}
.asideCard__title{ margin:0 0 8px; font-size:14px; }
.asideCard__text{ margin:0; color:var(--muted); font-size:13px; }

/* Sections */
.section{ padding:40px 0; }
.section--tint{ background:var(--tint); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section__head h2{ margin:0; font-size:24px; }

.twoCol{ display:grid; grid-template-columns:1.2fr .8fr; gap:26px; align-items:start; }
.prose p{ margin:0 0 14px; color:var(--muted); }
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--card);
  padding:18px;
  box-shadow:var(--shadow);
}
.card h3{ margin:0 0 12px; font-size:14px; }
.bullets{ margin:0; padding-left:18px; color:var(--muted); }
.bullets li{ margin:8px 0; }

/* Life image */
.life{ padding:0 0 10px; }
.lifeShot{
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--card);
  box-shadow:var(--shadow);
}
.lifeShot img{ width:100%; height:auto; display:block; }
.lifeShot figcaption{
  padding:12px 14px;
  font-size:13px;
  color:var(--muted);
}

/* Impact cards */
.cards{ display:grid; grid-template-columns:repeat(4, 1fr); gap:14px; }
.miniCard{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--card);
  padding:14px;
  box-shadow:var(--shadow);
}
.miniCard p{ margin:0; color:var(--muted); font-size:13.5px; }

/* Evidence */
.evidenceGrid{ display:grid; grid-template-columns:repeat(2, 1fr); gap:18px; margin-top:18px; }
.evidence{
  margin:0;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--card);
  padding:14px;
  box-shadow:var(--shadow);
}
.evidence img{ width:100%; border-radius:14px; display:block; }
.evidence figcaption{ margin-top:8px; font-size:13px; color:var(--muted); }

/* Logos */
.muted{ color:var(--muted); }
.note{ margin:14px 0 0; color:var(--muted); font-size:13px; }

.marquee{
  margin-top:14px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--card);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.marquee__track{
  display:flex;
  gap:14px;
  padding:14px;
  width:max-content;
  animation: scroll 42s linear infinite;
}
.marquee:hover .marquee__track{ animation-play-state:paused; }
@keyframes scroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}
.logo{
  width:170px; height:64px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  padding:10px;
  filter:grayscale(1);
  opacity:.88;
  transition:filter 160ms ease, opacity 160ms ease, transform 160ms ease;
  flex:0 0 auto;
}
.logo img{ max-width:100%; max-height:100%; object-fit:contain; }
.logo:hover{ filter:grayscale(0); opacity:1; transform:translateY(-1px); }

.details{ margin-top:12px; }
.details summary{ cursor:pointer; color:var(--muted); font-size:13px; }
.logoGrid{ display:grid; grid-template-columns:repeat(6, 1fr); gap:12px; margin-top:12px; }
.logoGrid .logo{ width:100%; height:64px; }

/* Timeline */
.timeline{ display:flex; flex-direction:column; gap:14px; }
.timeline__item{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:18px;
  padding:16px 0;
  border-top:1px solid var(--line);
}
.timeline__item:first-child{ border-top:none; padding-top:0; }
.timeline__when{ color:var(--muted); font-size:13px; padding-top:6px; }
.timeline__what h3{ margin:0 0 4px; font-size:16px; }

/* Media card */
.card--media{ padding:12px; }
.media{ width:100%; height:auto; border-radius:14px; display:block; border:1px solid var(--line); }
.mediaCap{ display:flex; flex-direction:column; gap:2px; margin-top:10px; }

/* Footer */
.footer{ border-top:1px solid var(--line); padding:24px 0; }
.footer__inner{ display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns:1fr; gap:22px; }
  .twoCol{ grid-template-columns:1fr; }
  .cards{ grid-template-columns:1fr 1fr; }
  .logoGrid{ grid-template-columns:repeat(3, 1fr); }
}
@media (max-width: 640px){
  .nav{ display:none; }
  .cards{ grid-template-columns:1fr; }
  .evidenceGrid{ grid-template-columns:1fr; }
  .timeline__item{ grid-template-columns:1fr; }
  .logoGrid{ grid-template-columns:repeat(2, 1fr); }
}

/* Smaller personal media */
.media--sm{
  max-height: 220px;
  object-fit: cover;
}

/* Align Beyond Work photos cleanly */
.mediaGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (max-width: 720px) {
  .mediaGrid {
    grid-template-columns: 1fr;
  }
}

