/* ============================================================
   Brittney — Portfolio
   Shared stylesheet (home + about)
   ============================================================ */

:root{
  --cream:#FDFBF2;
  --ink:#211E1C;
  --coral:#EE6C6C;
  --coral-soft:#EF7C7C;
  --cobalt:#3B62B2;
  --amber:#F4B24C;
  --peri:#7C90D6;
  --aqua:#6DBFB8;
  --sage:#8AA88A;
  --card-cream:#F8EEE6;
  --radius:14px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Poppins',system-ui,sans-serif;
  background:var(--cream);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
.wrap{max-width:1040px;margin:0 auto;padding:0 28px}
.grid-page{padding-bottom:56px}

/* ---------- nav ---------- */
nav.nav-3col{
  max-width:1200px;margin:0 auto;padding:28px 32px 0;
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:24px;
}
.nav-toggle{display:none;background:none;border:none;padding:8px;cursor:pointer}
.nav-toggle span{display:block;width:24px;height:2px;background:var(--ink);margin:5px 0;border-radius:2px;transition:.2s ease}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.nav-links{display:flex;align-items:center;gap:28px;justify-self:start}
.nav-links a{
  position:relative;font-weight:600;font-size:15px;color:var(--ink);
  text-decoration:none;padding:4px 0;transition:color .18s;
}
.nav-links a:hover{color:var(--coral)}
.nav-links a.active::after{
  content:"";position:absolute;left:0;right:0;bottom:-2px;
  height:2px;background:var(--ink);border-radius:2px;
}
.nav-links a:focus-visible{outline:3px solid var(--coral);outline-offset:3px;border-radius:2px}

.mark{
  justify-self:center;font-weight:800;font-size:clamp(1.4rem,2.6vw,1.9rem);
  letter-spacing:-.03em;color:var(--ink);text-decoration:none;line-height:1;
}
.mark span{color:var(--coral)}
.mark:hover{opacity:.85}
.nav-logo{height:100px;width:auto;display:block}

.nav-social{display:flex;align-items:center;gap:18px;justify-self:end}
.icon-link{
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--ink);text-decoration:none;transition:color .18s ease,transform .18s ease;
}
.icon-link:hover{color:var(--coral);transform:translateY(-1px)}
.icon-link:focus-visible{outline:3px solid var(--coral);outline-offset:3px;border-radius:6px}

/* ---------- hero ---------- */
header{text-align:center;padding:74px 28px 60px;max-width:1040px;margin:0 auto}
.hero-home{padding-bottom:90px}
h1{
  font-weight:800;font-size:clamp(3rem,9vw,5.6rem);line-height:1;
  letter-spacing:-.03em;color:var(--coral);
}
.hero-home h1{font-size:clamp(2.8rem,7.5vw,6rem);line-height:.98}
.tag{
  margin:24px auto 0;max-width:640px;font-weight:600;
  font-size:clamp(1rem,2.4vw,1.18rem);color:var(--ink);
}
.u{position:relative;white-space:nowrap}
.grid-hint{font-size:.78rem;color:#a89e94;margin-top:12px;letter-spacing:.04em}
.scroll-arrow{margin-top:20px;display:flex;justify-content:center;animation:bounce 1.6s ease-in-out infinite}
@keyframes bounce{0%,100%{transform:translateY(0)}50%{transform:translateY(8px)}}
.u svg{position:absolute;left:-2%;bottom:-9px;width:104%;height:12px;overflow:visible}
.u path{
  fill:none;stroke:var(--coral);stroke-width:4;stroke-linecap:round;
  stroke-dasharray:200;stroke-dashoffset:200;animation:draw 1s .5s ease forwards;
}
@keyframes draw{to{stroke-dashoffset:0}}

/* ---------- work grid (home) ---------- */
.grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.tile-wide{grid-column:1/-1;max-width:calc(50% - 12px);margin:0 auto;width:100%}
.tile{
  position:relative;aspect-ratio:16/11;border-radius:var(--radius);overflow:hidden;
  text-decoration:none;display:flex;flex-direction:column;justify-content:center;
  align-items:center;text-align:center;padding:32px 32px 64px;
  transition:transform .28s cubic-bezier(.2,.7,.2,1),box-shadow .28s ease;
  will-change:transform;
}
.tile:hover{transform:translateY(-6px);box-shadow:0 22px 40px -18px rgba(33,30,28,.35)}
.tile:focus-visible{outline:3px solid var(--ink);outline-offset:4px}
.t-blue{background:var(--cobalt);--tile-overlay:var(--cobalt)}
.t-amber{background:var(--amber);--tile-overlay:var(--amber)}
.t-ink{background:var(--ink)}
.t-peri{background:var(--peri)}
.t-coral{background:var(--coral-soft)}
.t-cream{background:var(--card-cream)}
.t-aqua{background:var(--aqua);--tile-overlay:var(--aqua)}
.t-sage{background:var(--sage)}
.tile h3{
  font-weight:700;font-size:clamp(1.3rem,3vw,1.85rem);line-height:1.12;
  letter-spacing:-.01em;color:var(--card-cream);position:relative;z-index:2;
}
.tile .cat{
  margin-top:10px;font-weight:600;font-size:.72rem;letter-spacing:.18em;
  color:rgba(248,238,230,.82);position:relative;z-index:2;
}
.cue{
  position:absolute;left:0;right:0;bottom:20px;text-align:center;
  font-weight:600;font-size:.78rem;letter-spacing:.04em;color:var(--card-cream);
  opacity:0;transform:translateY(8px);
  transition:opacity .25s ease,transform .25s ease;z-index:3;
  pointer-events:none;
}
.tile:hover .cue{opacity:.92;transform:translateY(0)}
.bricks{position:absolute;inset:0;z-index:1;opacity:.5}
.tile-img{background-size:cover;background-position:center}
.tile-img::before{
  content:"";position:absolute;inset:0;z-index:1;
  background:var(--tile-overlay,var(--cobalt));opacity:.35;border-radius:var(--radius);
  transition:opacity .2s ease;
}
.tile-img:hover::before{opacity:.65}
.tile-img h3,.tile-img .cat,.tile-img .cue{position:relative;z-index:2;text-shadow:0 2px 8px rgba(0,0,0,.25)}
.t-type h3{
  font-weight:800;font-size:clamp(2.4rem,7vw,4rem);line-height:.92;
  letter-spacing:-.02em;color:var(--card-cream);
}

/* ---------- about page ---------- */
.about-page{padding-top:24px;padding-bottom:60px}

.about-hero{
  display:grid;grid-template-columns:1fr 1fr;gap:72px;
  align-items:center;padding:40px 0 80px;
}
.about-copy{max-width:520px}
.about-h1{
  font-weight:800;font-size:clamp(2.6rem,6vw,3.8rem);line-height:1;
  letter-spacing:-.03em;color:var(--cobalt);margin-bottom:22px;
}
.about-h2{
  font-weight:800;font-size:clamp(1.7rem,3.4vw,2.15rem);line-height:1.05;
  letter-spacing:-.02em;margin:34px 0 14px;
}
.about-h2.coral{color:var(--coral)}
.about-h2.cobalt{color:var(--cobalt)}
.about-h2.ink{color:var(--ink)}
.about-copy p,.about-columns p{
  font-size:.98rem;color:#3a3634;line-height:1.65;margin-bottom:16px;max-width:52ch;
}
.about-copy p:last-child{margin-bottom:0}
.about-copy .lede{font-weight:600;color:var(--ink)}
.inline-link{
  color:var(--ink);font-weight:600;text-decoration:underline;
  text-decoration-color:var(--coral);text-decoration-thickness:2px;
  text-underline-offset:3px;transition:color .18s;
}
.inline-link:hover{color:var(--coral)}

.about-photo{position:sticky;top:32px}
.photo-frame{
  aspect-ratio:4/5;border-radius:var(--radius);background:var(--cobalt);
  display:flex;align-items:center;justify-content:center;overflow:hidden;
  box-shadow:0 30px 60px -30px rgba(33,30,28,.35);
}
.photo-frame span{
  font-weight:800;font-size:8rem;color:var(--card-cream);letter-spacing:-.04em;
}
.photo-frame img{
  width:100%;height:100%;object-fit:cover;object-position:top;display:block;
}

.about-columns{
  display:grid;grid-template-columns:1fr 1fr;gap:72px;
  padding:0 0 80px;margin-top:-48px;align-items:start;
}
.about-columns .col{max-width:480px}
.about-columns .joke{
  text-align:center;font-size:.85rem;color:#8a807a;font-style:italic;
  margin-top:22px;
}

/* ---------- section heading ---------- */
.sec-head{
  font-weight:800;font-size:clamp(1.5rem,4vw,2.1rem);letter-spacing:-.02em;
  text-align:center;margin-bottom:32px;color:var(--ink);
}

/* ---------- what I make ---------- */
.skills{padding:8px 0 80px}
.skill-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.skill{
  border-radius:var(--radius);padding:26px 24px;min-height:118px;
  display:flex;flex-direction:column;justify-content:flex-end;
  transition:transform .26s cubic-bezier(.2,.7,.2,1),box-shadow .26s;
}
.skill:hover{transform:translateY(-5px);box-shadow:0 18px 34px -18px rgba(33,30,28,.35)}
.skill .n{font-weight:600;font-size:.72rem;letter-spacing:.16em;opacity:.7}
.skill .l{font-weight:700;font-size:1.25rem;letter-spacing:-.01em;margin-top:6px}
.s-coral{background:var(--coral-soft);color:var(--card-cream)}
.s-blue{background:var(--cobalt);color:var(--card-cream)}
.s-amber{background:var(--amber);color:var(--ink)}
.s-ink{background:var(--ink);color:var(--card-cream)}
.s-peri{background:var(--peri);color:var(--card-cream)}
.s-cream{background:var(--card-cream);color:var(--ink)}

/* ---------- a few true things ---------- */
.currently{padding:0 0 80px}
.cur-list{max-width:620px;margin:0 auto;display:flex;flex-direction:column;gap:2px}
.cur-list li{
  list-style:none;display:flex;gap:16px;align-items:baseline;
  padding:16px 0;border-bottom:2px dotted #e4d9cd;
}
.cur-list li:last-child{border-bottom:none}
.cur-list .k{font-weight:700;color:var(--coral);min-width:96px;font-size:.82rem;letter-spacing:.06em;text-transform:uppercase}
.cur-list .v{font-weight:500;color:#3a3634}

/* ---------- wild wolf banner ---------- */
.banner{background:var(--ink);border-radius:20px;padding:48px 40px;text-align:center;margin-bottom:80px}
.banner .eyebrow{font-weight:600;font-size:.72rem;letter-spacing:.2em;color:var(--peri);margin-bottom:12px}
.banner h3{font-weight:800;font-size:clamp(1.6rem,4vw,2.4rem);color:var(--card-cream);letter-spacing:-.02em;line-height:1.1}
.banner p{color:rgba(248,238,230,.72);max-width:460px;margin:14px auto 24px;font-weight:500}
.banner a{
  display:inline-block;font-weight:700;font-size:.9rem;color:var(--ink);
  background:var(--card-cream);padding:12px 26px;border-radius:40px;text-decoration:none;
  transition:transform .2s,background .2s;
}
.banner a:hover{transform:translateY(-2px);background:#fff}
.banner a:focus-visible{outline:3px solid var(--peri);outline-offset:3px}

/* ---------- cta ---------- */
.cta{text-align:center;padding:0 0 40px}
.cta h2{font-weight:800;font-size:clamp(2rem,6vw,3.4rem);color:var(--coral);letter-spacing:-.03em;line-height:1.02}
.cta a{
  display:inline-block;margin-top:24px;font-weight:700;font-size:1rem;color:var(--cream);
  background:var(--ink);padding:15px 34px;border-radius:40px;text-decoration:none;transition:transform .2s;
}
.cta a:hover{transform:translateY(-3px)}
.cta a:focus-visible{outline:3px solid var(--coral);outline-offset:3px}

/* ---------- footer ---------- */
footer{
  text-align:center;padding:40px 28px 40px;
  font-weight:500;font-size:.85rem;color:rgba(33,30,28,.55);
  display:flex;flex-direction:column;align-items:center;gap:14px;
}
.foot-icons{display:flex;align-items:center;gap:18px}
.foot-icons .icon-link{color:rgba(33,30,28,.55)}
.foot-icons .icon-link:hover{color:var(--coral)}

/* ---------- contact ---------- */
.contact-page{padding-bottom:80px}
.contact-grid{
  display:grid;grid-template-columns:1fr 1.15fr;gap:56px;
  align-items:start;padding:24px 0 40px;
}
.contact-info h2{
  font-weight:800;font-size:1.7rem;letter-spacing:-.02em;
  margin-bottom:14px;color:var(--ink);
}
.contact-info p{color:#3a3634;max-width:38ch;margin-bottom:28px}
.contact-list{list-style:none;display:flex;flex-direction:column;gap:2px}
.contact-list li{
  display:flex;flex-direction:column;gap:4px;
  padding:16px 0;border-bottom:2px dotted #e4d9cd;
}
.contact-list li:last-child{border-bottom:none}
.contact-list .k{
  font-weight:700;color:var(--coral);font-size:.72rem;
  letter-spacing:.16em;text-transform:uppercase;
}
.contact-list .v,.contact-list a{
  font-weight:500;color:#3a3634;text-decoration:none;
  transition:color .18s;
}
.contact-list a:hover{color:var(--coral)}
.contact-list a:focus-visible{outline:3px solid var(--coral);outline-offset:3px;border-radius:2px}

.contact-form{
  background:var(--card-cream);border-radius:20px;
  padding:36px 32px;display:flex;flex-direction:column;gap:18px;
}
.field{display:flex;flex-direction:column;gap:8px}
.field label{
  font-weight:700;font-size:.72rem;letter-spacing:.16em;
  text-transform:uppercase;color:var(--ink);
}
.field input,.field select,.field textarea{
  font-family:inherit;font-size:1rem;font-weight:500;color:var(--ink);
  background:var(--cream);border:2px solid transparent;border-radius:10px;
  padding:12px 14px;transition:border-color .18s ease,box-shadow .18s ease;
  width:100%;
}
.field textarea{resize:vertical;min-height:130px;line-height:1.5}
.field input::placeholder,.field textarea::placeholder{color:#a89e94}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--coral);
  box-shadow:0 0 0 4px rgba(238,108,108,.15);
}
.contact-form button{
  align-self:flex-start;margin-top:6px;font-family:inherit;cursor:pointer;
  font-weight:700;font-size:1rem;color:var(--cream);
  background:var(--ink);border:none;padding:15px 34px;border-radius:40px;
  transition:transform .2s ease,background .2s ease;
}
.contact-form button:hover{transform:translateY(-3px);background:var(--coral)}
.contact-form button:focus-visible{outline:3px solid var(--coral);outline-offset:3px}
.form-note{font-size:.85rem;color:#7a7069;margin-top:2px}
.form-note a{color:var(--coral);font-weight:600;text-decoration:none}
.form-note a:hover{text-decoration:underline}

/* ---------- responsive ---------- */
@media(max-width:860px){
  .about-hero{grid-template-columns:1fr;gap:40px}
  .about-photo{position:static;order:-1;max-width:420px;margin:0 auto}
  .about-copy{max-width:none}
  .about-columns{grid-template-columns:1fr;gap:20px;margin-top:-16px}
  .proj-brief-imgs{grid-template-columns:1fr}
}
@media(max-width:760px){
  .skill-grid{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr;gap:36px}
}
@media(max-width:640px){
  .grid{grid-template-columns:1fr}
  .tile-wide{max-width:none}
  header{padding:56px 20px 64px}
  .tile{aspect-ratio:16/10}
  .tile-img::before{opacity:.2}
  nav.nav-3col{
    grid-template-columns:1fr auto auto;grid-template-areas:"mark social toggle" "links links links";
    row-gap:14px;padding:22px 20px 0;
  }
  .mark{grid-area:mark;justify-self:start}
  .nav-logo{height:64px}
  .nav-social{grid-area:social;justify-self:end}
  .nav-toggle{display:block;grid-area:toggle;justify-self:end;margin-left:8px}
  .nav-links{display:none;grid-area:links;grid-column:1/-1;flex-direction:column;gap:16px;padding:14px 0;text-align:center;justify-self:stretch}
  .nav-links.open{display:flex}
  .about-columns{margin-top:0;padding-bottom:40px}
  .cta h2{font-size:clamp(1.8rem,8vw,2.6rem)}
  .resume-page{padding-top:32px;padding-bottom:48px}
  .resume-section{padding-bottom:40px}
}
@media(max-width:480px){
  .skill-grid{grid-template-columns:1fr}
  .cur-list li{flex-direction:column;gap:2px}
  .nav-links{gap:14px;font-size:.85rem}
}
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important}
  .tile:hover,.skill:hover,.banner a:hover,.cta a:hover{transform:none}
}

/* ============================================================
   Project pages
   ============================================================ */

/* ---------- hero ---------- */
.proj-hero{
  display:grid;grid-template-columns:1fr 1fr;gap:64px;
  align-items:end;padding-top:48px;padding-bottom:64px;
}
.proj-eyebrow{
  font-weight:700;font-size:.72rem;letter-spacing:.18em;
  text-transform:uppercase;color:var(--coral);margin-bottom:14px;
}
.proj-hero-title h1{
  font-weight:800;font-size:clamp(2.8rem,6vw,4.4rem);line-height:1;
  letter-spacing:-.03em;color:var(--ink);
}
.proj-hero-meta{display:flex;flex-direction:column;gap:16px;padding-bottom:6px}
.proj-tagline{
  font-weight:700;font-size:clamp(1rem,2vw,1.15rem);color:var(--ink);
  line-height:1.4;
}
.proj-hero-meta p{font-size:.97rem;color:#3a3634;line-height:1.65;max-width:52ch}

/* ---------- image grid ---------- */
.proj-grid{padding-bottom:80px}
.proj-img-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:16px;
}
.proj-img-wide{grid-column:span 2}

/* ---------- lightbox ---------- */
.lightbox{
  display:none;position:fixed;inset:0;z-index:1000;
  background:rgba(33,30,28,.88);
  align-items:center;justify-content:center;
  padding:24px;
}
.lightbox.active{display:flex}
.lightbox-img{
  max-width:100%;max-height:90vh;border-radius:var(--radius);
  box-shadow:0 40px 80px -20px rgba(0,0,0,.6);
  object-fit:contain;
}
.lightbox-close{
  position:absolute;top:20px;right:24px;
  background:none;border:none;cursor:pointer;
  color:var(--cream);font-size:2rem;line-height:1;
  opacity:.8;transition:opacity .18s;padding:4px 10px;
}
.lightbox-close:hover{opacity:1}
.lightbox-prev,.lightbox-next{
  position:absolute;top:50%;transform:translateY(-50%);
  background:none;border:none;cursor:pointer;
  color:var(--cream);font-size:2rem;line-height:1;
  opacity:.8;transition:opacity .18s;padding:8px 20px;
}
.lightbox-prev{left:16px}
.lightbox-next{right:16px}
.lightbox-prev:hover,.lightbox-next:hover{opacity:1}
.proj-img-zoomable img{cursor:zoom-in}

/* ---------- real images ---------- */
.proj-img-real{
  border-radius:var(--radius);margin:0;overflow:hidden;
}
.proj-img-real img{
  display:block;width:100%;height:100%;object-fit:cover;
}

/* ---------- placeholder images ---------- */
.proj-img-placeholder{
  border-radius:var(--radius);margin:0;overflow:hidden;
  display:flex;align-items:flex-end;padding:16px 20px;
  min-height:220px;position:relative;
}
.proj-img-placeholder figcaption{
  font-size:.72rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  color:rgba(253,251,242,.7);
}

/* ---------- brief two-image layout ---------- */
.proj-brief-imgs{
  display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:40px;
}
.proj-brief-text{max-width:72ch}
.proj-role{font-size:.9rem;color:#3a3634;line-height:1.5}
.proj-role-label{font-weight:700;font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--ink);margin-right:8px}
.proj-pullquote{border-left:3px solid var(--coral);margin:24px 0 0;padding:12px 20px;font-style:italic;color:#3a3634;font-size:1rem;line-height:1.65}

/* ---------- content sections ---------- */
.proj-section{padding-bottom:96px}
.proj-section-inner{
  display:grid;grid-template-columns:2fr 3fr;gap:64px;align-items:center;
}
.proj-section-inner--flip .proj-section-text{order:2}
.proj-section-inner--flip .proj-section-img{order:1}

.proj-section-text h2{
  font-weight:800;font-size:clamp(1.8rem,4vw,2.6rem);line-height:1;
  letter-spacing:-.03em;color:var(--ink);margin-bottom:22px;
}
.dot{color:var(--coral)}
.proj-section-text p{
  font-size:.97rem;color:#3a3634;line-height:1.7;
  max-width:50ch;margin-bottom:16px;
}
.proj-section-text p:last-child{margin-bottom:0}

.proj-section-img{
  aspect-ratio:4/5;border-radius:var(--radius);min-height:0;
}

/* ---------- full-width image ---------- */
.proj-full-img{padding-bottom:96px}
.proj-full-img .proj-img-real{width:100%}
.proj-full-img img{width:100%;height:auto;object-fit:contain;border-radius:var(--radius)}

/* ---------- project nav ---------- */
.proj-nav{
  display:flex;justify-content:space-between;align-items:center;
  padding-top:0;padding-bottom:64px;border-top:2px dotted #e4d9cd;
  margin-top:16px;
}
.proj-nav-item{
  display:flex;flex-direction:column;gap:4px;text-decoration:none;
  color:var(--ink);transition:color .18s;padding:24px 0;
}
.proj-nav-item:hover{color:var(--coral)}
.proj-nav-item:focus-visible{outline:3px solid var(--coral);outline-offset:3px;border-radius:4px}
.proj-nav-label{
  font-size:.72rem;font-weight:700;letter-spacing:.16em;
  text-transform:uppercase;opacity:.5;
}
.proj-nav-arrow{font-size:1.6rem;font-weight:300;line-height:1}
.proj-nav-next{align-items:flex-end}

/* ---------- resume page ---------- */
.resume-page{padding-top:48px;padding-bottom:80px}

.resume-header{
  display:flex;justify-content:space-between;align-items:flex-end;
  padding-bottom:48px;border-bottom:2px dotted #e4d9cd;margin-bottom:64px;
}
.resume-header-text h1{
  font-weight:800;font-size:clamp(2.4rem,6vw,3.6rem);line-height:1;
  letter-spacing:-.03em;color:var(--coral);
}
.resume-title{
  font-weight:700;font-size:1.05rem;color:var(--ink);margin-top:10px;
}
.resume-location{
  font-weight:500;font-size:.9rem;color:#7a7069;margin-top:4px;
}
.resume-download{
  display:inline-flex;align-items:center;gap:8px;
  font-weight:700;font-size:.9rem;color:var(--cream);
  background:var(--ink);padding:13px 26px;border-radius:40px;
  text-decoration:none;white-space:nowrap;flex-shrink:0;
  transition:transform .2s ease,background .2s ease;
}
.resume-download:hover{transform:translateY(-3px);background:var(--coral)}
.resume-download:focus-visible{outline:3px solid var(--coral);outline-offset:3px}

.resume-body{display:flex;flex-direction:column;gap:0}

.resume-section{padding-bottom:64px}
.resume-section-title{
  font-weight:800;font-size:clamp(1.5rem,3vw,2rem);line-height:1;
  letter-spacing:-.03em;color:var(--ink);margin-bottom:36px;
}

.resume-entry{
  display:grid;grid-template-columns:160px 1fr;gap:32px;
  padding:28px 0;border-bottom:2px dotted #e4d9cd;align-items:start;
}
.resume-entry:last-child{border-bottom:none}
.resume-date{
  font-weight:700;font-size:.78rem;letter-spacing:.08em;
  text-transform:uppercase;color:var(--coral);padding-top:4px;
}
.resume-role{
  font-weight:700;font-size:1.05rem;color:var(--ink);margin-bottom:4px;
}
.resume-org{
  font-weight:600;font-size:.9rem;color:#7a7069;margin-bottom:10px;
}
.resume-desc{
  font-size:.93rem;color:#3a3634;line-height:1.65;max-width:56ch;
}
.resume-summary{
  font-size:.97rem;color:#3a3634;line-height:1.7;max-width:72ch;
}
.resume-entry-location{
  display:block;font-size:.78rem;font-weight:500;color:#a89e94;margin-top:4px;
}
.resume-bullets{
  list-style:none;display:flex;flex-direction:column;gap:8px;margin-top:10px;
}
.resume-bullets li{
  font-size:.93rem;color:#3a3634;line-height:1.6;
  padding-left:16px;position:relative;max-width:60ch;
}
.resume-bullets li::before{
  content:"";position:absolute;left:0;top:.6em;
  width:5px;height:5px;border-radius:50%;background:var(--coral);
}

.resume-skills{
  display:grid;grid-template-columns:repeat(3,1fr);gap:32px;
}
.resume-skill-label{
  font-weight:700;font-size:.72rem;letter-spacing:.16em;
  text-transform:uppercase;color:var(--coral);margin-bottom:16px;
}
.resume-skill-list{
  list-style:none;display:flex;flex-direction:column;gap:10px;
}
.resume-skill-list li{
  font-weight:500;font-size:.93rem;color:#3a3634;
  padding-left:14px;position:relative;
}
.resume-skill-list li::before{
  content:"";position:absolute;left:0;top:.55em;
  width:5px;height:5px;border-radius:50%;background:var(--cobalt);
}

@media(max-width:860px){
  .resume-header{flex-direction:column;align-items:flex-start;gap:28px}
  .resume-skills{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .resume-entry{grid-template-columns:1fr;gap:8px}
  .resume-skills{grid-template-columns:1fr}
}

/* ---------- project page responsive ---------- */
@media(max-width:860px){
  .proj-hero{grid-template-columns:1fr;gap:32px;padding-top:36px;padding-bottom:48px}
  .proj-section-inner{grid-template-columns:1fr;gap:32px}
  .proj-section-inner--flip .proj-section-text{order:1}
  .proj-section-inner--flip .proj-section-img{order:2}
  .proj-section-img{aspect-ratio:auto}
  .proj-section-img img{object-fit:contain;height:auto}
  .proj-section{padding-bottom:48px}
  .proj-full-img{padding-bottom:48px}
  .proj-grid{padding-bottom:40px}
}
@media(max-width:640px){
  .proj-img-grid{grid-template-columns:1fr}
  .proj-img-wide{grid-column:span 1}
  .proj-carousel-scroll{
    display:flex;overflow-x:auto;scroll-snap-type:x mandatory;
    gap:12px;padding-bottom:12px;-webkit-overflow-scrolling:touch;
    grid-template-columns:unset;
  }
  .proj-carousel-scroll figure{
    flex:0 0 72vw;scroll-snap-align:start;
  }
}

/* ---------- print styles (resume one-pager) ---------- */
@media print {
  @page{margin:.45in .5in}
  nav,footer,.resume-download{display:none!important}
  body{background:#fff;color:#000;font-size:8.5pt}
  .wrap{max-width:100%;padding:0}
  .resume-page{padding:0}
  .resume-header{padding-bottom:10pt;margin-bottom:14pt;border-bottom:1.5pt dotted #ccc}
  .resume-header-text h1{font-size:22pt;color:#000}
  .resume-title{font-size:9pt}
  .resume-location{font-size:8pt}
  .resume-body{gap:0}
  .resume-section{padding-bottom:10pt}
  .resume-section-title{font-size:11pt;margin-bottom:8pt;color:#000}
  .resume-summary{font-size:8pt;line-height:1.45;max-width:100%}
  .resume-entry{grid-template-columns:100pt 1fr;gap:12pt;padding:7pt 0;border-bottom:1pt dotted #ccc}
  .resume-date{font-size:7pt}
  .resume-entry-location{font-size:7pt}
  .resume-role{font-size:9pt}
  .resume-org{font-size:8pt}
  .resume-bullets{margin-top:4pt}
  .resume-bullets li{font-size:7.5pt;line-height:1.4;margin-bottom:2pt}
  .resume-skills{grid-template-columns:repeat(3,1fr);gap:16pt}
  .resume-skill-label{font-size:8pt;margin-bottom:5pt}
  .resume-skill-list li{font-size:7.5pt;line-height:1.5}
  .dot{color:#000}
  a{color:#000;text-decoration:none}
}

