:root{
  --page:#e7e8ea;
  --canvas:#f4f4f5;
  --surface:#fcfcfd;
  --surface-2:#e7e9ed;
  --ink:#171c24;
  --muted:#68707c;
  --line:rgba(23,28,36,.13);
  --accent:#b55026;
  --accent-2:#913918;
  --sage:#dce2e9;
  --sand:#e7e1d8;
  --scene-canvas:var(--canvas);
  --scene-surface:#fdfaf6;
  --shadow:0 24px 70px rgba(36,48,65,.11);
  --ease:cubic-bezier(.22,1,.36,1);
  --nav-height:66px;
  --frame-gap:12px;
  --radius-lg:22px;
  --radius-md:17px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(circle at 20% -10%,rgba(181,80,38,.12),transparent 35%),
    linear-gradient(145deg,#e7e3df 0%,#f3f1ef 52%,#e2e0df 100%);
  font-family:"Manrope",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
}
body.no-scroll{overflow:hidden}
a,button{color:inherit}
button,input,textarea{font:inherit}
button{touch-action:manipulation}
img{display:block;max-width:100%}
h1,h2,h3,p{margin-top:0}
h1,h2,h3{text-wrap:balance}
p{text-wrap:pretty}
:focus-visible{outline:3px solid color-mix(in srgb,var(--accent) 48%,transparent);outline-offset:3px}

.skip,.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}
.skip:focus{position:fixed;left:16px;top:12px;z-index:1000;width:auto;height:auto;margin:0;padding:10px 14px;clip:auto;border-radius:10px;background:var(--surface)}

.shell{width:min(1360px,calc(100% - 20px));margin:10px auto;position:relative}
.nav{
  position:sticky;top:10px;z-index:220;
  height:var(--nav-height);padding:0 26px;
  display:flex;align-items:center;justify-content:space-between;
  border:1px solid var(--line);border-radius:20px;
  background:color-mix(in srgb,var(--canvas) 90%,transparent);
  backdrop-filter:blur(18px);box-shadow:0 8px 26px rgba(38,53,49,.06);
}
.brand{font-size:22px;font-weight:700;letter-spacing:-.05em;text-decoration:none}
.nav-actions{display:flex;align-items:center;gap:9px}
.top-link{height:40px;padding:0 14px;display:inline-flex;align-items:center;gap:8px;border:1px solid var(--line);border-radius:999px;background:rgba(255,255,255,.45);text-decoration:none;font-size:14px;font-weight:600;transition:.24s var(--ease)}
.top-link:hover{transform:translateY(-1px);border-color:color-mix(in srgb,var(--accent) 38%,var(--line))}
.brand-logo{width:18px;height:18px;fill:currentColor}
.social-link-linkedin .brand-logo,.contact-social-linkedin .brand-logo,.footer-social-linkedin .brand-logo{fill:#0a66c2}
.social-link-github .brand-logo,.contact-social-github .brand-logo,.footer-social-github .brand-logo{fill:#181717}
.button{border:0;border-radius:12px;padding:13px 20px;display:inline-flex;align-items:center;justify-content:center;gap:10px;font-size:14px;font-weight:650;cursor:pointer;text-decoration:none;transition:transform .24s var(--ease),box-shadow .4s var(--ease),background .4s var(--ease)}
.button:hover{transform:translateY(-2px)}
.button:active{transform:translateY(0) scale(.98)}
.button-primary{background:var(--accent);color:#fff;box-shadow:0 10px 22px color-mix(in srgb,var(--accent) 25%,transparent)}
.button-primary:hover{background:var(--accent-2);box-shadow:0 13px 28px color-mix(in srgb,var(--accent) 32%,transparent)}
.nav-contact{padding:11px 18px;border-radius:12px;box-shadow:none}
.icon-button{width:40px;height:40px;border:1px solid var(--line);border-radius:50%;display:grid;place-items:center;background:transparent;cursor:pointer;transition:.22s}
.icon-button:hover{background:var(--surface-2)}
.menu-button{display:none}
.mobile-menu{display:none}

.chapter-rail{position:fixed;top:50%;right:max(18px,calc((100vw - 1360px)/2 - 230px));z-index:210;display:grid;gap:13px;transform:translateY(-50%)}
.chapter-rail a{display:flex;align-items:center;justify-content:flex-end;gap:10px;color:color-mix(in srgb,var(--ink) 28%,transparent);font-size:14px;text-decoration:none;transition:.25s var(--ease)}
.chapter-rail a::after{content:"";width:24px;height:1px;background:currentColor;transition:width .25s var(--ease),height .25s var(--ease),background .45s var(--ease)}
.chapter-rail a.past{color:color-mix(in srgb,var(--ink) 52%,transparent)}
.chapter-rail a.active{color:var(--ink);font-size:17px;font-weight:700;letter-spacing:-.03em}
.chapter-rail a.active::after{width:40px;height:2px;background:var(--accent)}

.content-frame{margin-top:var(--frame-gap);height:calc(100dvh - var(--nav-height) - 32px);min-height:610px;border:1px solid var(--line);border-radius:22px;background:var(--scene-canvas);box-shadow:var(--shadow);overflow:hidden}
.content-scroll{height:100%;overflow-y:auto;overflow-x:hidden;scrollbar-width:thin;scrollbar-color:rgba(73,61,50,.35) transparent}
.content-scroll::-webkit-scrollbar{width:7px}.content-scroll::-webkit-scrollbar-track{background:transparent}.content-scroll::-webkit-scrollbar-thumb{border-radius:99px;background:rgba(73,61,50,.28)}
main{position:relative}

/* Desktop chapter crossfade. Sections overlap; JavaScript drives opacity and depth. */
.chapter{height:calc(100dvh + 150px);margin-top:calc(-100dvh + 12px);position:relative}
.hero-chapter{height:calc(100dvh + 170px);margin-top:0;z-index:1}
#profile{z-index:2}#skills{z-index:3}#projects{z-index:4}#journal{z-index:5}#contact{z-index:6}
.chapter-sticky{position:sticky;top:0;height:calc(100dvh - var(--nav-height) - 32px);min-height:608px;padding:28px 34px 30px;display:flex;align-items:center;pointer-events:none}
.chapter-inner{width:100%;margin:auto;will-change:transform,opacity;transform-origin:center;backface-visibility:hidden;pointer-events:none}

.hero-layout{max-width:1240px;height:100%;display:grid;grid-template-columns:minmax(470px,.93fr) minmax(520px,1.07fr);gap:28px;align-items:center}
.hero-copy{order:1;padding:52px 48px;display:flex;flex-direction:column;justify-content:center;min-height:600px;border-radius:var(--radius-lg);background:var(--surface)}
.portrait-panel{order:2;position:relative;height:100%;min-height:620px;overflow:hidden;border-radius:var(--radius-lg)}
.portrait-stage,.portrait-media,.portrait-art{position:absolute;inset:0}
.portrait-main{position:absolute;right:-1%;bottom:-1%;width:96%;height:96%;object-fit:contain;object-position:right bottom;filter:saturate(.96) contrast(.99);will-change:transform}
.portrait-media::after{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(ellipse 75% 88% at 58% 53%,transparent 52%,color-mix(in srgb,var(--scene-canvas) 68%,transparent) 82%,var(--scene-canvas) 100%),linear-gradient(180deg,var(--scene-canvas) 0,transparent 13%,transparent 79%,var(--scene-canvas) 100%)}
.scribble{position:absolute;inset:0;z-index:3;color:var(--accent);font-family:"Caveat",cursive;font-size:29px;pointer-events:none}
.scribble span{position:absolute;top:9%;left:7%;margin:0;transform:rotate(-2deg)}.scribble svg{position:absolute;inset:0;width:100%;height:100%;overflow:visible}.scribble path{fill:none;stroke:currentColor;stroke-width:1.4px;vector-effect:non-scaling-stroke;stroke-linecap:round;stroke-linejoin:round}
.callout-arrowhead{position:absolute;font-size:17px;line-height:1;transform-origin:center}
.hero-copy h1{max-width:9ch;margin-bottom:24px;font-size:clamp(62px,6.4vw,94px);line-height:.92;letter-spacing:-.075em}
.hero-intro{max-width:32ch}.hero-intro p{margin-bottom:0;color:var(--muted);font-size:18px;line-height:1.6}
.hero-actions{display:flex;align-items:center;gap:16px;flex-wrap:wrap;margin-top:30px}
.text-link{padding:0;border:0;background:none;display:inline-flex;align-items:center;gap:8px;color:var(--muted);font-size:14px;font-weight:600;text-decoration:none;cursor:pointer;transition:.2s}
.text-link:hover{color:var(--accent);gap:11px}
.personal-stage,.skills-stage{width:min(1160px,100%);display:grid;gap:13px}.personal-stage{position:relative;grid-template-rows:auto auto auto auto auto;align-content:center}.skills-stage{gap:14px}
.about-berlin{min-height:138px;display:grid;grid-template-columns:minmax(360px,.92fr) minmax(420px,1.08fr);gap:52px;align-items:center;border-bottom:1px solid var(--line)}
.about-berlin-copy{align-self:center}.about-career{max-width:54ch;margin:0;color:var(--muted);font-size:15px;line-height:1.55}.about-berlin h2,.skills-intro h2{max-width:18ch;margin:0 0 13px;font-size:clamp(41px,4.1vw,59px);line-height:.96;letter-spacing:-.065em}.skills-intro p{max-width:48ch;margin:0;color:var(--muted);font-size:16px;line-height:1.55}
.berlin-moment{display:grid;grid-template-columns:minmax(250px,1.2fr) minmax(180px,.8fr);gap:22px;align-items:end}.berlin-scene{position:relative;height:96px;overflow:hidden;color:color-mix(in srgb,var(--ink) 68%,var(--accent))}.berlin-scene svg{position:absolute;inset:auto 0 0;width:100%;height:94px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round;opacity:.72}.berlin-statement{display:grid;gap:7px;padding-bottom:8px}.berlin-statement span{display:flex;align-items:center;gap:6px;color:var(--accent);font-size:14px;font-weight:750}.berlin-statement strong{max-width:18ch;font-size:17px;line-height:1.35;letter-spacing:-.025em}
.hobby-heading{display:grid;grid-template-columns:auto 1fr;align-items:baseline;gap:18px;padding:0 3px}.hobby-heading h3{margin:0;font-size:24px;letter-spacing:-.045em}.hobby-heading p{margin:0;color:var(--muted);font-size:14px}.friends-note{display:inline-flex;justify-self:end;align-items:center;gap:7px;margin:0 4px 2px;color:var(--muted);font-family:"Caveat",cursive;font-size:20px;white-space:nowrap}.friends-note i{color:var(--accent);font-family:"Phosphor"!important;font-size:18px}
.personal-editorial{display:grid;grid-template-columns:1fr 1fr;gap:14px;align-items:stretch}
.collection-feature,.curiosity-feature{min-height:202px;padding:20px 24px;display:grid;grid-template-columns:40% 1fr;gap:22px;align-items:center;overflow:hidden;border:1px solid var(--line);border-radius:18px;background:color-mix(in srgb,var(--surface) 82%,transparent)}
.collection-objects{position:relative;height:190px;color:var(--accent)}.collection-objects .ph-sneaker-move{position:absolute;left:-7px;bottom:4px;font-size:154px;transform:rotate(-8deg)}.collection-objects .ph-cards-three{position:absolute;right:4px;top:-4px;font-size:82px;transform:rotate(8deg);color:color-mix(in srgb,var(--ink) 52%,var(--accent))}
.curiosity-objects{position:relative;height:170px;color:color-mix(in srgb,var(--ink) 62%,var(--accent))}.curiosity-objects .ph-cpu{position:absolute;left:2px;bottom:3px;font-size:132px;transform:rotate(3deg)}.curiosity-objects .ph-lightbulb-filament{position:absolute;right:0;top:0;color:var(--accent);font-size:70px;transform:rotate(8deg)}
.collection-feature h3,.curiosity-feature h3{margin:0 0 11px;font-size:clamp(27px,2.25vw,34px);line-height:1;letter-spacing:-.055em}.collection-feature p,.curiosity-feature p{margin:0;color:var(--muted);font-size:15px;line-height:1.52}
.personal-asides{display:grid;grid-template-columns:1fr 1fr;gap:20px;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}.personal-asides p{margin:0;padding:14px 8px;font-size:16px;line-height:1.4}.personal-asides p+ p{border-left:1px solid var(--line);padding-left:28px}.personal-asides span{margin-right:7px;color:var(--accent);font-size:17px;font-weight:750;letter-spacing:-.025em}
.chapter-tease{position:absolute;left:0;right:0;bottom:0;z-index:3;min-height:72px;display:flex;flex-direction:column;justify-content:flex-end;gap:5px;align-items:center;color:var(--muted);text-decoration:none}.chapter-tease>span:first-child{font-family:"Caveat",cursive;font-size:23px}.chapter-tease-line{position:relative;width:28px;height:39px;color:currentColor;transition:transform .22s var(--ease)}.chapter-tease-line::before{content:"";position:absolute;left:13px;top:0;bottom:8px;width:1.15px;border-radius:999px;background:currentColor;transform:rotate(.8deg);transform-origin:bottom}.chapter-tease-line i{position:absolute;left:2px;bottom:-5px;font-size:25px;line-height:1}.chapter-tease:hover{color:var(--ink)}.chapter-tease:hover .chapter-tease-line{transform:translateY(4px)}
.skills-intro{display:grid;grid-template-columns:minmax(320px,.9fr) minmax(0,1.1fr);gap:42px;align-items:end}.skills-intro h2{margin:0;max-width:12ch}.skills-intro p{margin-bottom:4px}
.tech-workbench{position:relative;display:grid;grid-template-columns:minmax(310px,.78fr) minmax(0,1.22fr);overflow:hidden;border:1px solid var(--line);border-radius:18px;background:color-mix(in srgb,var(--surface) 78%,transparent);box-shadow:0 18px 45px rgba(38,53,49,.06)}
.tech-workbench::before{content:"</>";position:absolute;left:19px;bottom:-34px;color:color-mix(in srgb,var(--accent) 6%,transparent);font-size:150px;font-weight:700;letter-spacing:-.12em;pointer-events:none}.tech-stack{position:relative;padding:27px 29px;display:flex;flex-direction:column;justify-content:center;border-right:1px solid var(--line)}.tech-stack-label{margin:0 0 18px;color:var(--accent);font-size:14px;font-weight:750}.tech-stack-list{display:flex;gap:7px 17px;flex-wrap:wrap}.tech-stack-list span{font-size:clamp(20px,2vw,28px);font-weight:650;letter-spacing:-.045em}.tech-stack-list span:nth-child(3n+2){color:var(--accent)}.tech-manifesto{max-width:32ch;margin:24px 0 0;color:var(--muted);font-size:14px;line-height:1.5}
.tech-outcomes{display:grid;grid-template-columns:repeat(3,1fr)}.tech-outcomes article{min-height:285px;padding:29px 24px;display:flex;flex-direction:column;background:rgba(255,255,255,.18)}.tech-outcomes article+article{border-left:1px solid color-mix(in srgb,var(--ink) 14%,transparent)}.tech-outcomes i{margin-bottom:auto;color:var(--accent);font-size:28px}.tech-outcomes h3{margin:30px 0 10px;font-size:23px;letter-spacing:-.04em}.tech-outcomes p{margin:0;color:var(--muted);font-size:14.5px;line-height:1.55}

.projects-stage{padding:28px;border:1px solid var(--line);border-radius:23px;background:var(--surface)}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:20px;margin:0 4px 22px}.section-head h2{margin:0;font-size:clamp(36px,3.5vw,48px);letter-spacing:-.055em}.section-head a{color:var(--accent);font-size:13px;font-weight:600;text-decoration:none}
.project-grid{display:grid;grid-template-columns:minmax(0,1.34fr) minmax(330px,.86fr);grid-template-rows:repeat(3,minmax(0,1fr));gap:13px}
.project-card{position:relative;overflow:hidden;border:1px solid var(--line);border-radius:16px;background:var(--canvas);color:inherit;cursor:pointer;text-decoration:none;transition:transform .3s var(--ease),border-color .3s,box-shadow .3s}
.project-card:hover{transform:translateY(-3px);border-color:color-mix(in srgb,var(--accent) 32%,var(--line));box-shadow:0 14px 34px rgba(38,53,49,.1)}
.project-card:focus-visible{outline:2px solid var(--accent);outline-offset:3px}
.featured-project{grid-row:span 3;display:grid;grid-template-rows:minmax(0,1fr) auto}
.project-card:not(.featured-project){display:grid;grid-template-columns:42% 1fr;min-height:176px}
.project-visual{position:relative;overflow:hidden;background:#ddd5cc}.featured-project .project-visual{min-height:430px}.project-card:not(.featured-project) .project-visual{min-height:176px}
.project-screenshot{width:100%;height:100%;object-fit:cover;transition:transform .55s var(--ease),filter .4s}.project-card:hover .project-screenshot{transform:scale(1.035);filter:saturate(1.04)}
.project-body{position:relative;padding:19px;display:grid;align-content:center}.featured-project .project-body{padding:23px 24px 24px}.project-body h3{margin:0 24px 8px 0;font-size:19px;letter-spacing:-.035em}.featured-project .project-body h3{font-size:26px}.project-body>i{position:absolute;right:18px;top:19px}.project-body p{margin:0 0 11px;color:var(--muted);font-size:13px;line-height:1.55}.featured-project .project-body p{max-width:45ch;font-size:15px}.project-meta{color:var(--muted);font-size:12px}.project-actions{display:flex;gap:12px;margin-top:12px}.project-actions span{color:var(--accent);font-size:13px;font-weight:600}

.journal-card{min-height:500px;display:grid;grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);overflow:hidden;border:1px solid var(--line);border-radius:24px;background:var(--surface)}
.journal-copy{padding:62px 64px;display:flex;flex-direction:column;justify-content:center;align-items:flex-start}
.journal-label{margin-bottom:23px;color:var(--muted);font-size:14px}.journal-copy h2{max-width:14ch;margin-bottom:22px;font-size:clamp(43px,4.6vw,64px);line-height:1.01;letter-spacing:-.065em}.journal-copy>p:not(.journal-label){max-width:48ch;margin-bottom:28px;color:var(--muted);font-size:15px;line-height:1.65}.journal-read{display:inline-flex;align-items:center;gap:9px;color:var(--accent);font-weight:600;text-decoration:none;transition:.2s}.journal-read:hover{gap:13px}
.journal-aside{padding:45px 40px;display:flex;flex-direction:column;justify-content:space-between;gap:50px;background:var(--sage);color:var(--ink)}.journal-aside span{display:block;margin-bottom:17px;color:var(--muted);font-size:12px}.journal-aside strong{display:block;max-width:14ch;font-size:clamp(25px,2.5vw,35px);line-height:1.12;letter-spacing:-.04em}.journal-aside a{display:inline-flex;align-items:center;gap:8px;color:var(--accent);text-decoration:none;font-size:13px;font-weight:600}

.contact-card{min-height:430px;padding:56px 60px;display:grid;grid-template-columns:1.25fr .75fr;align-items:center;gap:46px;border:1px solid var(--line);border-radius:23px;background:var(--scene-surface);transition:background .45s var(--ease)}
.contact-card h2{max-width:12ch;margin-bottom:20px;font-size:clamp(42px,4.6vw,60px);line-height:1;letter-spacing:-.06em}.contact-card p{max-width:42ch;margin-bottom:27px;color:var(--muted);font-size:16px}.contact-aside{display:flex;align-items:center;justify-content:center}.contact-links{width:min(360px,100%);display:grid;grid-template-columns:1fr 1fr;gap:11px}.contact-links a{min-width:0;height:58px;padding:0 16px;display:grid;grid-template-columns:22px 1fr 18px;align-items:center;gap:10px;border:1px solid var(--line);border-radius:14px;background:rgba(255,255,255,.5);text-decoration:none;font-size:14px;font-weight:650;transition:transform .22s var(--ease),border-color .22s,background .22s}.contact-links a .brand-logo{width:21px;height:21px}.contact-links a>i{color:var(--muted);font-size:16px}.contact-links a:hover{transform:translateY(-2px);border-color:color-mix(in srgb,var(--accent) 34%,var(--line));background:rgba(255,255,255,.72)}

.footer{padding:18px 24px 24px;display:flex;justify-content:space-between;gap:20px;color:var(--muted);font-size:12px}.footer-links{display:flex;align-items:center;gap:16px;flex-wrap:wrap}.footer a,.footer button{border:0;background:none;padding:0;color:inherit;text-decoration:none;cursor:pointer}.footer a:hover,.footer button:hover{color:var(--accent)}.footer-social{display:inline-flex;align-items:center;gap:6px}.footer-social .brand-logo{width:15px;height:15px}

.overlay{position:fixed;inset:0;z-index:400;padding:20px;display:grid;place-items:center;opacity:0;visibility:hidden;background:rgba(23,20,17,.55);backdrop-filter:blur(10px);transition:.3s}.overlay.open{opacity:1;visibility:visible}.modal{position:relative;width:min(650px,100%);max-height:84dvh;padding:29px;overflow:auto;border-radius:24px;background:var(--surface);box-shadow:0 30px 75px rgba(0,0,0,.26)}.modal.modal-legal{width:min(760px,100%)}.modal h2{margin-bottom:8px;font-size:30px}.modal h3{margin:23px 0 7px;font-size:19px}.modal p,.modal li{color:var(--muted);line-height:1.62}.modal ul{padding-left:20px}.modal a{color:var(--accent)}.legal-updated{font-size:13px}.close{position:absolute;right:17px;top:15px;width:38px;height:38px;border:0;border-radius:50%;background:var(--surface-2);font-size:24px;cursor:pointer}.form-grid{display:grid;gap:15px}.field{display:grid;gap:7px}.field label{font-weight:600}.field input,.field textarea{width:100%;padding:12px 13px;border:1px solid #d4ccc4;border-radius:13px;background:#fff;color:#171717}.field textarea{min-height:130px;resize:vertical}.helper{color:var(--muted);font-size:12px}.status{min-height:22px;font-size:14px}
#terminal{position:fixed;inset:0;z-index:500;padding:20px;display:none;place-items:center;background:rgba(0,0,0,.68)}#terminal.open{display:grid}.terminal-box{width:min(720px,100%);overflow:hidden;border-radius:18px;background:#0e1010;color:#cfd8d5;font-family:ui-monospace,SFMono-Regular,monospace;box-shadow:0 25px 65px rgba(0,0,0,.45)}.terminal-bar{padding:12px 15px;display:flex;justify-content:space-between;background:#191d1c}.terminal-output{height:330px;padding:18px;overflow:auto}.terminal-input{display:flex;padding:0 18px 18px}.terminal-input input{flex:1;border:0;outline:0;background:none;color:#fff}
#to-top{position:fixed;right:20px;bottom:20px;z-index:250;width:44px;height:44px;border:0;border-radius:50%;display:grid;place-items:center;opacity:0;pointer-events:none;transform:translateY(8px) scale(.94);background:var(--accent);color:#fff;box-shadow:0 10px 24px color-mix(in srgb,var(--accent) 28%,transparent);transition:opacity .28s,transform .28s var(--ease),background .45s var(--ease),box-shadow .45s var(--ease)}#to-top.show{opacity:1;pointer-events:auto;transform:none}


@media(max-width:1580px){.chapter-rail{display:none}}
@media(max-width:1150px){.hero-layout{grid-template-columns:1fr 1fr}}
@media(min-width:851px){.personal-stage{height:100%;padding-bottom:24px;align-content:center}}


/* Compact desktop layout for laptops and browser zoom levels that leave little vertical space. */
@media(min-width:851px) and (max-height:1000px){
  .chapter-sticky{padding:20px 28px 22px}
  .projects-stage{padding:18px 20px;border-radius:18px}
  .section-head{margin-bottom:14px}
  .section-head h2{font-size:clamp(32px,3vw,42px)}
  .project-grid{grid-template-columns:repeat(2,minmax(0,1fr));grid-template-rows:repeat(2,minmax(0,1fr));gap:10px}
  .featured-project,.project-card:not(.featured-project){grid-column:auto;grid-row:auto;display:grid;grid-template-columns:38% minmax(0,1fr);grid-template-rows:none;min-width:0;min-height:0}
  .featured-project .project-visual,.project-card:not(.featured-project) .project-visual{height:170px;min-height:170px}
  .featured-project .project-body,.project-card:not(.featured-project) .project-body{padding:15px}
  .featured-project .project-body h3,.project-card:not(.featured-project) .project-body h3{margin-bottom:6px;font-size:18px}
  .featured-project .project-body p,.project-card:not(.featured-project) .project-body p{display:-webkit-box;overflow:hidden;margin-bottom:8px;-webkit-box-orient:vertical;-webkit-line-clamp:3;font-size:12.5px;line-height:1.45}
  .project-meta{font-size:11px}
  .project-actions{margin-top:7px}
  .project-actions span{font-size:12px}
}

@media(min-width:851px) and (max-height:820px){
  .content-frame{min-height:0}
  .chapter-sticky{min-height:0;padding:14px 22px 16px}
  .hero-copy{min-height:0;padding:34px 38px}
  .portrait-panel{min-height:0}
  .hero-copy h1{margin-bottom:18px;font-size:clamp(52px,5.8vw,76px)}
  .hero-intro p{font-size:16px;line-height:1.5}
  .hero-actions{margin-top:22px}

  .personal-stage{gap:7px}
  .personal-stage>:not(.chapter-tease){top:0}
  .about-berlin{min-height:0;grid-template-columns:minmax(310px,.94fr) minmax(390px,1.06fr);gap:30px;padding-bottom:9px}
  .about-berlin h2{margin-bottom:8px;font-size:clamp(34px,3.3vw,45px)}
  .about-career{font-size:13px;line-height:1.4}
  .berlin-moment{gap:16px}
  .berlin-scene{height:72px}
  .berlin-scene svg{height:70px}
  .berlin-statement strong{font-size:15px}
  .hobby-heading{gap:12px}
  .hobby-heading h3{font-size:20px}
  .hobby-heading p{font-size:12.5px}
  .personal-editorial{gap:10px}
  .collection-feature,.curiosity-feature{min-height:145px;padding:13px 17px;grid-template-columns:33% minmax(0,1fr);gap:13px}
  .collection-objects,.curiosity-objects{height:120px}
  .collection-objects .ph-sneaker-move{font-size:92px}
  .collection-objects .ph-cards-three{font-size:52px}
  .curiosity-objects .ph-cpu{font-size:88px}
  .curiosity-objects .ph-lightbulb-filament{font-size:48px}
  .collection-feature h3,.curiosity-feature h3{margin-bottom:6px;font-size:23px}
  .collection-feature p,.curiosity-feature p{font-size:12.5px;line-height:1.38}
  .friends-note{font-size:17px}
  .personal-asides p{padding:9px 8px;font-size:13px}
  .personal-asides p+ p{padding-left:20px}
  .personal-asides span{font-size:14px}

  .skills-stage{gap:10px}
  .skills-intro{gap:28px}
  .skills-intro h2{font-size:clamp(34px,3.3vw,45px)}
  .skills-intro p{font-size:13.5px;line-height:1.45}
  .tech-stack{padding:20px 23px}
  .tech-stack-label{margin-bottom:12px}
  .tech-stack-list{gap:5px 14px}
  .tech-stack-list span{font-size:clamp(18px,1.75vw,24px)}
  .tech-manifesto{margin-top:14px;font-size:12.5px}
  .tech-outcomes article{min-height:220px;padding:21px 18px}
  .tech-outcomes h3{margin:22px 0 7px;font-size:20px}
  .tech-outcomes p{font-size:12.5px;line-height:1.45}

  .projects-stage{padding:14px 16px}
  .section-head{margin-bottom:10px}
  .featured-project .project-visual,.project-card:not(.featured-project) .project-visual{height:145px;min-height:145px}
  .featured-project .project-body,.project-card:not(.featured-project) .project-body{padding:12px 13px}
  .featured-project .project-body p,.project-card:not(.featured-project) .project-body p{-webkit-line-clamp:2}

  .journal-card{min-height:400px}
  .journal-copy{padding:36px 42px}
  .journal-copy h2{margin-bottom:14px;font-size:clamp(38px,4vw,52px)}
  .journal-copy>p:not(.journal-label){margin-bottom:20px;font-size:14px}
  .journal-aside{padding:30px 32px;gap:28px}
  .journal-aside strong{font-size:clamp(23px,2.2vw,30px)}

  .contact-card{min-height:350px;padding:36px 44px}
  .contact-card h2{margin-bottom:15px;font-size:clamp(38px,4vw,50px)}
  .contact-card p{margin-bottom:21px;font-size:14.5px}
}

@media(max-width:850px){
  :root{--nav-height:58px}
  html{scroll-behavior:auto}
  body{overflow-x:hidden}
  .shell{width:calc(100% - 12px);margin:6px auto}
  .nav{position:fixed;top:6px;left:6px;right:6px;height:var(--nav-height);padding:0 15px;border-radius:18px;z-index:350}
  .brand{font-size:20px}.nav-actions{display:none}.menu-button{display:grid;width:36px;height:36px;border:0}
  .mobile-menu{position:fixed;left:6px;right:6px;top:64px;z-index:340;padding:14px;display:grid;gap:3px;opacity:0;visibility:hidden;transform:translateY(-14px);border:1px solid var(--line);border-radius:0 0 18px 18px;background:var(--surface);box-shadow:0 22px 50px rgba(38,53,49,.18);transition:.28s var(--ease)}
  .mobile-menu.open{opacity:1;visibility:visible;transform:none}.mobile-menu a,.mobile-menu button{padding:11px;border:0;border-radius:10px;background:none;text-align:left;text-decoration:none}.mobile-menu a.active{background:var(--surface-2);font-weight:650}.mobile-social-link{display:flex;align-items:center;gap:8px}.mobile-social-link .brand-logo{width:17px;height:17px}
  .content-frame{height:auto;min-height:0;margin-top:0;border:0;border-radius:0;background:transparent;box-shadow:none;overflow:visible}.content-scroll{height:auto;overflow:visible}
  main{padding-top:64px}
  .chapter,.hero-chapter{height:118svh;min-height:calc(100svh + 120px);margin:0;position:relative}
  .hero-chapter{height:210svh;min-height:calc(100svh + 650px)}
  .chapter-sticky{position:sticky;top:64px;height:calc(100svh - 64px);min-height:0;padding:10px 8px 14px;display:flex;align-items:stretch;overflow:hidden}
  .chapter-inner{height:100%;display:flex;align-items:center;will-change:opacity,transform}
  .hero-layout{position:relative;display:block;max-width:none}
  .hero-copy,.portrait-panel{position:absolute;inset:0;min-height:0;height:100%;border-radius:20px}
  .hero-copy{padding:28px 20px;align-items:center;text-align:center;justify-content:center;opacity:var(--m-intro-opacity,1);transform:translate3d(0,var(--m-intro-y,0),0) scale(var(--m-intro-scale,1));will-change:opacity,transform}
  .hero-copy h1{max-width:8ch;margin-bottom:22px;font-size:clamp(54px,15vw,72px);line-height:.91;letter-spacing:-.075em}.hero-intro{max-width:29ch}.hero-intro p{font-size:17px;line-height:1.55}.hero-actions{justify-content:center;margin-top:25px}.button{padding:13px 18px;font-size:14px}.text-link{font-size:15px}
  .portrait-panel{opacity:var(--m-portrait-opacity,0);transform:translate3d(0,var(--m-portrait-scene-y,24px),0) scale(var(--m-portrait-scene-scale,.985));will-change:opacity,transform}
  .portrait-main{right:-7%;bottom:-2%;width:114%;height:94%;transform:translate3d(var(--m-image-x,0),var(--m-image-y,0),0) scale(var(--m-image-scale,1));object-position:center bottom}
  .portrait-media::after{background:radial-gradient(ellipse 78% 88% at 58% 53%,transparent 48%,color-mix(in srgb,var(--scene-canvas) 68%,transparent) 80%,var(--scene-canvas) 100%),linear-gradient(180deg,var(--scene-canvas) 0,transparent 14%,transparent 77%,var(--scene-canvas) 100%)}
  .scribble{font-size:22px}.scribble span{top:6%;left:9%}.scribble path{stroke-width:1.25px}
  .personal-stage,.skills-stage{width:100%;display:grid;gap:9px;padding:0 4px}.skills-stage{height:auto;align-self:center}.about-berlin{min-height:126px}.about-berlin-copy{padding:3px 8px 17px}.about-berlin h2,.skills-intro h2{max-width:12ch;margin-bottom:10px;font-size:35px;line-height:.98}.about-berlin p,.skills-intro p{max-width:35ch;font-size:14px;line-height:1.48}.personal-editorial{grid-template-columns:1fr;gap:8px}.collection-feature{min-height:218px;padding:18px 17px;grid-template-columns:39% 1fr;gap:14px;border-radius:18px}.collection-objects{height:165px}.collection-objects .ph-sneaker-move{left:-10px;font-size:103px}.collection-objects .ph-cards-three{right:-2px;top:2px;font-size:58px}.collection-feature h3{margin-bottom:7px;font-size:27px}.collection-feature p{font-size:13.5px;line-height:1.45}.personal-asides{grid-template-columns:1fr 1fr;gap:0}.personal-asides p{padding:9px 8px;font-size:13px;line-height:1.3}.personal-asides p+ p{padding-left:12px}.personal-asides span{display:block;margin:0 0 2px;font-size:19px}.skills-intro{display:block;padding:0 8px}.skills-intro h2{max-width:13ch}.tech-workbench{grid-template-columns:1fr;border-radius:18px}.tech-stack{padding:18px 20px;gap:4px 13px;border-right:0;border-bottom:1px solid var(--line)}.tech-stack span{font-size:19px}.tech-outcomes{grid-template-columns:1fr}.tech-outcomes article{min-height:0;padding:12px 16px;display:grid;grid-template-columns:28px 1fr;gap:3px 10px;align-items:center}.tech-outcomes article+article{border-left:0;border-top:1px solid var(--line)}.tech-outcomes i{grid-row:1/3;margin:0;font-size:21px}.tech-outcomes h3{margin:0;font-size:18px}.tech-outcomes p{font-size:13.5px;line-height:1.4}
  .personal-editorial{grid-template-columns:1fr;gap:7px}.collection-feature,.curiosity-feature{min-height:148px;padding:13px 15px;grid-template-columns:35% 1fr;gap:12px;border-radius:14px}.collection-objects,.curiosity-objects{height:132px}.collection-objects .ph-sneaker-move{font-size:82px}.collection-objects .ph-cards-three{font-size:45px}.curiosity-objects .ph-cpu{font-size:82px}.curiosity-objects .ph-lightbulb-filament{font-size:45px}.collection-feature h3,.curiosity-feature h3{margin-bottom:5px;font-size:23px}.collection-feature p,.curiosity-feature p{font-size:12.5px;line-height:1.36}.personal-asides p{font-size:13px}.personal-asides span{font-size:15px}.tech-workbench::before{font-size:100px}.tech-stack{padding:17px 20px;gap:0}.tech-stack-label{margin:0 0 9px;font-size:13px}.tech-stack-list{gap:3px 12px}.tech-stack-list span{font-size:18px}.tech-stack-list span:nth-child(4n){font-size:18px}.tech-manifesto{margin:10px 0 0;font-size:13px;line-height:1.4}.hobby-heading{grid-template-columns:auto 1fr;gap:4px 10px;padding:0 2px}.hobby-heading h3{font-size:20px}.hobby-heading p{font-size:13px}.friends-note{justify-self:start;margin:0 4px;font-size:17px}.friends-note i{font-size:15px}
  .personal-chapter{height:auto;min-height:0}
  .personal-chapter .chapter-sticky{position:relative;top:auto;height:auto;min-height:0;padding:34px 8px 44px;overflow:visible}
  .personal-stage{height:auto;min-height:0;align-self:stretch;grid-template-rows:none;align-content:start;gap:12px;padding-bottom:0}
  .about-berlin{display:grid;grid-template-columns:1fr;gap:9px;align-items:start}.about-berlin-copy{grid-column:auto;padding:0 2px}.about-berlin h2{max-width:11ch;margin:0 0 8px;font-size:30px}.berlin-moment{display:grid;grid-template-columns:1.15fr .85fr;gap:12px;align-items:end}.berlin-scene{height:70px}.berlin-scene svg{left:0;bottom:0;width:100%;height:70px}.berlin-statement{gap:4px;padding:0 0 5px}.berlin-statement span{font-size:13px}.berlin-statement strong{font-size:13.5px;line-height:1.28}.chapter-tease{grid-row:auto;position:relative;left:auto;right:auto;bottom:auto;min-height:64px;padding:0;gap:2px}.chapter-tease>span:first-child{font-size:19px}.chapter-tease-line{height:32px}.chapter-tease-line i{font-size:21px}
  .projects-stage,.journal-stage,.contact-stage{height:auto;width:100%;opacity:var(--m-scene-opacity,0);transform:translate3d(0,var(--m-scene-y,40px),0) scale(var(--m-scene-scale,.985));will-change:opacity,transform}
  .projects-stage{padding:17px 13px;border-radius:16px;display:flex;flex-direction:column;justify-content:center;align-items:stretch}.section-head{width:100%;margin:0 2px 13px}.section-head h2{font-size:32px}.section-head a{font-size:12px}.project-grid{width:100%;grid-template-columns:1fr 1fr;grid-template-rows:repeat(2,minmax(0,1fr));gap:8px}.featured-project,.project-card:not(.featured-project){grid-column:auto;grid-row:auto;display:flex;flex-direction:column;min-width:0;min-height:0}.featured-project .project-visual,.project-card:not(.featured-project) .project-visual{height:90px;min-height:90px}.featured-project .project-body,.project-card:not(.featured-project) .project-body{padding:10px}.featured-project .project-body h3,.project-card:not(.featured-project) .project-body h3{font-size:13.5px}.featured-project .project-body p,.project-card:not(.featured-project) .project-body p{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;font-size:11px}.project-meta,.project-body>i{display:none}.project-actions{margin-top:6px}.project-actions span{font-size:11px}
  .journal-card{min-height:570px;grid-template-columns:1fr;border-radius:16px}.journal-copy{padding:30px 23px}.journal-label{margin-bottom:15px;font-size:13px}.journal-copy h2{font-size:38px;margin-bottom:16px}.journal-copy>p:not(.journal-label){font-size:13.5px;margin-bottom:20px}.journal-aside{padding:25px 23px;gap:22px}.journal-aside strong{font-size:24px;max-width:17ch}
  .contact-card{min-height:470px;padding:34px 23px;grid-template-columns:1fr;gap:20px;border-radius:16px}.contact-card h2{font-size:44px}.contact-card p{font-size:15px}.contact-aside{justify-content:stretch}.contact-links{width:100%;grid-template-columns:1fr}.contact-links a{height:56px}
  .footer{padding:18px 14px 24px;flex-direction:column}.footer-links{gap:12px}
  #to-top{right:12px;bottom:12px}
}

@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.chapter-inner,.hero-copy,.portrait-panel,.project-card,.project-screenshot{transition:none!important;transform:none!important}.chapter-inner,.hero-copy{opacity:1!important}}

/* Persönliche Karten und Kapitelübergänge */
.stage-with-tease{
  width:min(1160px,100%);
  height:100%;
  min-height:0;
  display:grid;
  grid-template-rows:minmax(0,1fr) auto;
  gap:0;
  position:relative;
}
.personal-stage.stage-with-tease{padding-bottom:0}
.chapter-content{
  width:100%;
  min-height:0;
  align-self:center;
}
.personal-content{
  display:grid;
  gap:9px;
}
.skills-content{
  display:grid;
  gap:14px;
}
.projects-shell,.journal-shell{width:min(1160px,100%)}
.stage-with-tease>.chapter-tease{
  position:relative;
  left:auto;
  right:auto;
  bottom:auto;
  align-self:end;
  min-height:64px;
  padding-top:8px;
}

.personal-heading{
  max-width:15ch;
  margin:0;
  padding:0 3px;
  font-size:clamp(36px,3.45vw,50px);
  line-height:.97;
  letter-spacing:-.06em;
}
.personal-card-grid{
  min-height:0;
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  grid-template-rows:clamp(92px,12.5vh,108px) clamp(130px,17.5vh,150px);
  gap:9px;
}
.personal-card{
  position:relative;
  min-width:0;
  min-height:0;
  padding:14px 16px;
  display:grid;
  align-items:center;
  gap:14px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:16px;
  background:color-mix(in srgb,var(--surface) 86%,transparent);
}
.personal-card-work{
  grid-column:6 / 13;
  grid-row:1;
  grid-template-columns:minmax(108px,25%) minmax(0,1fr);
  background:
    linear-gradient(135deg,color-mix(in srgb,var(--sage) 34%,transparent),transparent 68%),
    color-mix(in srgb,var(--surface) 88%,transparent);
}
.location-card{
  grid-column:1 / 6;
  grid-row:1;
  grid-template-columns:minmax(100px,35%) minmax(0,1fr);
  background:
    radial-gradient(circle at 0 100%,color-mix(in srgb,var(--accent) 10%,transparent),transparent 52%),
    color-mix(in srgb,var(--surface) 88%,transparent);
}
.personal-card-collection{
  grid-column:1 / 6;
  grid-row:2;
  grid-template-columns:minmax(112px,37%) minmax(0,1fr);
  background:
    linear-gradient(145deg,color-mix(in srgb,var(--sand) 56%,transparent),transparent 66%),
    color-mix(in srgb,var(--surface) 88%,transparent);
}
.personal-card-impossible{
  grid-column:6 / 10;
  grid-row:2;
  grid-template-columns:minmax(88px,30%) minmax(0,1fr);
  background:
    radial-gradient(circle at 100% 0,color-mix(in srgb,var(--accent) 10%,transparent),transparent 52%),
    color-mix(in srgb,var(--surface) 88%,transparent);
}
.personal-card-offline{
  grid-column:10 / 13;
  grid-row:2;
  grid-template-columns:minmax(78px,34%) minmax(0,1fr);
  background:color-mix(in srgb,var(--sage) 38%,var(--surface));
}
.personal-card-copy{
  position:relative;
  z-index:2;
  min-width:0;
}
.personal-card-copy h3{
  margin:0 0 6px;
  font-size:clamp(18px,1.55vw,23px);
  line-height:1.04;
  letter-spacing:-.04em;
}
.personal-card-copy p{
  max-width:62ch;
  margin:0;
  color:var(--muted);
  font-size:12.5px;
  line-height:1.42;
}
.personal-card-art{
  position:relative;
  align-self:stretch;
  min-height:0;
  color:var(--accent);
}
.personal-card-art .ph{
  position:absolute;
  line-height:1;
}

/* Gleiche lockere Icon-Komposition wie bei Sneaker und Sammelkarten. */
.work-card-art{min-height:68px;color:color-mix(in srgb,var(--ink) 50%,var(--accent))}
.work-card-art .ph-briefcase{left:-7px;bottom:-3px;font-size:82px;transform:rotate(-5deg)}
.work-card-art .ph-plugs-connected{right:2px;top:0;color:var(--accent);font-size:45px;transform:rotate(7deg)}

.location-card-art{min-height:64px;color:color-mix(in srgb,var(--ink) 50%,var(--accent))}
.location-card-art .ph-buildings{left:-9px;bottom:-5px;font-size:82px;transform:rotate(-2deg)}
.location-card-art .ph-map-pin{right:2px;top:0;color:var(--accent);font-size:39px;transform:rotate(6deg)}

.collection-card-art{min-height:118px;color:var(--accent)}
.collection-card-art .ph-sneaker-move{left:-12px;bottom:0;font-size:100px;transform:rotate(-8deg)}
.collection-card-art .ph-cards-three{right:1px;top:2px;color:color-mix(in srgb,var(--ink) 48%,var(--accent));font-size:58px;transform:rotate(8deg)}

.impossible-card-art{min-height:104px;color:color-mix(in srgb,var(--ink) 50%,var(--accent))}
.impossible-card-art .ph-wall{left:-5px;bottom:0;font-size:84px;transform:rotate(-3deg)}
.impossible-card-art .ph-arrow-bend-up-right{right:0;top:3px;color:var(--accent);font-size:50px;transform:rotate(-7deg)}

.offline-card-art{min-height:102px;color:color-mix(in srgb,var(--ink) 50%,var(--accent))}
.offline-card-art .ph-users-three{left:-8px;bottom:1px;font-size:78px;transform:rotate(-5deg)}
.offline-card-art .ph-coffee{right:0;top:4px;color:var(--accent);font-size:42px;transform:rotate(8deg)}

.personal-asides-redesign{
  min-height:0;
  grid-template-columns:minmax(0,.78fr) minmax(0,1.22fr);
  margin:0;
}
.personal-asides-redesign p{
  padding:8px 7px;
  font-size:12.5px;
}

/* Das Porträt sitzt in seinem Panel mittig statt am äußersten rechten Rand. */
.portrait-main{
  left:50%;
  right:auto;
  object-position:center bottom;
  transform:translateX(-50%);
}

@media (min-width:851px) and (max-height:820px){
  .stage-with-tease>.chapter-tease{
    min-height:42px;
    padding-top:2px;
    gap:0;
  }
  .stage-with-tease>.chapter-tease>span:first-child{font-size:17px}
  .stage-with-tease>.chapter-tease .chapter-tease-line{height:22px}
  .personal-content{gap:6px}
  .personal-heading{font-size:30px}
  .personal-card-grid{grid-template-rows:86px 120px;gap:7px}
  .personal-card{padding:10px 12px;gap:8px;border-radius:14px}
  .personal-card-work{grid-template-columns:92px minmax(0,1fr)}
  .location-card{grid-template-columns:86px minmax(0,1fr)}
  .personal-card-collection{grid-template-columns:92px minmax(0,1fr)}
  .personal-card-impossible{grid-template-columns:72px minmax(0,1fr)}
  .personal-card-offline{grid-template-columns:68px minmax(0,1fr)}
  .personal-card-copy h3{margin-bottom:3px;font-size:16px}
  .personal-card-copy p{font-size:10.7px;line-height:1.31}
  .work-card-art,.location-card-art{min-height:54px}
  .work-card-art .ph-briefcase,.location-card-art .ph-buildings{font-size:62px}
  .work-card-art .ph-plugs-connected{font-size:34px}
  .location-card-art .ph-map-pin{font-size:31px}
  .collection-card-art{min-height:94px}
  .collection-card-art .ph-sneaker-move{font-size:74px}
  .collection-card-art .ph-cards-three{font-size:42px}
  .impossible-card-art,.offline-card-art{min-height:82px}
  .impossible-card-art .ph-wall{font-size:62px}
  .impossible-card-art .ph-arrow-bend-up-right{font-size:38px}
  .offline-card-art .ph-users-three{font-size:58px}
  .offline-card-art .ph-coffee{font-size:32px}
  .personal-asides-redesign p{padding:5px 6px;font-size:10.7px}
  .skills-content{gap:10px}
  .projects-stage{padding-bottom:14px}
}

@media (max-width:850px){
  .stage-with-tease{
    width:100%;
    height:100%;
  }
  .personal-chapter .stage-with-tease{
    height:auto;
    display:flex;
    flex-direction:column;
    gap:0;
  }
  .personal-content{display:grid;gap:8px}
  .personal-heading{max-width:11ch;padding:0 3px 2px;font-size:30px}
  .personal-card-grid{display:grid;grid-template-columns:1fr;grid-template-rows:none;gap:8px}
  .personal-card,
  .personal-card-work,
  .location-card,
  .personal-card-collection,
  .personal-card-impossible,
  .personal-card-offline{
    grid-column:auto;
    grid-row:auto;
    min-height:0;
    padding:13px 14px;
    gap:11px;
    border-radius:14px;
  }
  .personal-card-work{grid-template-columns:86px minmax(0,1fr)}
  .location-card{grid-template-columns:86px minmax(0,1fr)}
  .personal-card-collection{grid-template-columns:31% minmax(0,1fr)}
  .personal-card-impossible{grid-template-columns:76px minmax(0,1fr)}
  .personal-card-offline{grid-template-columns:76px minmax(0,1fr)}
  .personal-card-copy h3{margin-bottom:4px;font-size:19px}
  .personal-card-copy p{font-size:12.5px;line-height:1.38}
  .work-card-art,.location-card-art{min-height:62px}
  .work-card-art .ph-briefcase{font-size:68px}
  .location-card-art .ph-buildings{font-size:54px}
  .work-card-art .ph-plugs-connected{font-size:36px}
  .location-card-art .ph-map-pin{font-size:28px}
  .collection-card-art{min-height:108px}
  .collection-card-art .ph-sneaker-move{font-size:82px}
  .collection-card-art .ph-cards-three{font-size:46px}
  .impossible-card-art,.offline-card-art{min-height:88px}
  .impossible-card-art .ph-wall{font-size:66px}
  .impossible-card-art .ph-arrow-bend-up-right{font-size:40px}
  .offline-card-art .ph-users-three{font-size:62px}
  .offline-card-art .ph-coffee{font-size:34px}
  .personal-asides-redesign{grid-template-columns:1fr;gap:0}
  .personal-asides-redesign p{padding:9px 5px;font-size:12.5px}
  .personal-asides-redesign p+p{border-left:0;border-top:1px solid var(--line);padding-left:5px}
  .stage-with-tease>.chapter-tease{min-height:58px;padding-top:2px}
  .projects-shell,.journal-shell{width:100%}
}


/* Persönliche Karten: ausreichend Platz, natürliche Lesbarkeit und zurückhaltende Eigenfarben. */
.personal-card-grid{
  grid-template-columns:repeat(12,minmax(0,1fr));
  grid-template-rows:minmax(116px,auto) minmax(156px,auto);
  gap:10px;
}
.personal-card{
  padding:16px 18px;
  gap:15px;
}
.personal-card-work{grid-column:6 / 13;grid-template-columns:minmax(112px,24%) minmax(0,1fr)}
.location-card{grid-column:1 / 6;grid-template-columns:minmax(104px,30%) minmax(0,1fr)}
.personal-card-collection{grid-column:1 / 5;grid-template-columns:minmax(106px,34%) minmax(0,1fr)}
.personal-card-impossible{grid-column:5 / 9;grid-template-columns:minmax(92px,29%) minmax(0,1fr)}
.personal-card-offline{grid-column:9 / 13;grid-template-columns:minmax(88px,27%) minmax(0,1fr)}
.personal-card-copy h3{margin-bottom:7px;font-size:clamp(18px,1.45vw,22px)}
.personal-card-copy p{font-size:13px;line-height:1.46}

/* Eigene Farbstimmung pro Karte, aber nur als leise Nuance. */
.personal-card-work{
  background:linear-gradient(135deg,color-mix(in srgb,var(--sage) 23%,transparent),transparent 72%),color-mix(in srgb,var(--surface) 90%,transparent);
}
.location-card{
  background:linear-gradient(145deg,color-mix(in srgb,var(--sand) 34%,transparent),transparent 74%),color-mix(in srgb,var(--surface) 90%,transparent);
}
.personal-card-collection{
  background:linear-gradient(145deg,color-mix(in srgb,var(--sand) 48%,transparent),transparent 70%),color-mix(in srgb,var(--surface) 90%,transparent);
}
.personal-card-impossible{
  background:radial-gradient(circle at 100% 0,color-mix(in srgb,var(--accent) 8%,transparent),transparent 58%),color-mix(in srgb,var(--surface) 90%,transparent);
}
.personal-card-offline{
  background:linear-gradient(145deg,color-mix(in srgb,var(--sage) 28%,transparent),transparent 72%),color-mix(in srgb,var(--surface) 90%,transparent);
}

/* Alle Illustrationen folgen derselben Zweifarbigkeit wie Sneaker und Karten. */
.personal-card-art{color:var(--accent)}
.work-card-art .ph-briefcase,
.location-card-art .ph-buildings,
.impossible-card-art .ph-wall,
.offline-card-art .ph-users-three{color:var(--accent)}
.work-card-art .ph-plugs-connected,
.location-card-art .ph-map-pin,
.impossible-card-art .ph-arrow-bend-up-right,
.offline-card-art .ph-coffee{color:color-mix(in srgb,var(--ink) 48%,var(--accent))}

/* Technik als ruhige, zusammenhängende Liste statt drei unterschiedlich gefärbter Karten. */
.tech-outcomes{grid-template-columns:1fr}
.tech-outcomes article{
  min-height:0;
  padding:21px 25px;
  display:grid;
  grid-template-columns:34px minmax(0,1fr);
  grid-template-rows:auto auto;
  align-content:center;
  gap:4px 14px;
  background:transparent;
}
.tech-outcomes article:nth-child(2){background:transparent}
.tech-outcomes article+article{border-left:0;border-top:1px solid color-mix(in srgb,var(--ink) 14%,transparent)}
.tech-outcomes i{grid-row:1 / 3;margin:0;align-self:center;font-size:27px}
.tech-outcomes h3{margin:0;font-size:21px}
.tech-outcomes p{margin:0;font-size:14px;line-height:1.5}

@media (min-width:851px) and (max-height:820px){
  .personal-card-grid{grid-template-rows:minmax(112px,auto) minmax(148px,auto);gap:8px}
  .personal-card{padding:12px 14px;gap:10px}
  .personal-card-work{grid-template-columns:96px minmax(0,1fr)}
  .location-card{grid-template-columns:90px minmax(0,1fr)}
  .personal-card-collection{grid-template-columns:96px minmax(0,1fr)}
  .personal-card-impossible{grid-template-columns:82px minmax(0,1fr)}
  .personal-card-offline{grid-template-columns:80px minmax(0,1fr)}
  .personal-card-copy h3{margin-bottom:4px;font-size:16.5px}
  .personal-card-copy p{font-size:12.2px;line-height:1.38}
  .personal-asides-redesign p{font-size:11.5px}
  .tech-outcomes article{padding:14px 18px;grid-template-columns:30px minmax(0,1fr);gap:2px 11px}
  .tech-outcomes i{font-size:23px}
  .tech-outcomes h3{font-size:18px}
  .tech-outcomes p{font-size:12.5px;line-height:1.4}
}

@media (max-width:850px){
  .personal-card-grid{grid-template-rows:none}
  .personal-card,
  .personal-card-work,
  .location-card,
  .personal-card-collection,
  .personal-card-impossible,
  .personal-card-offline{padding:14px 15px}
  .personal-card-copy p{font-size:13px;line-height:1.43}
  .tech-outcomes{grid-template-columns:1fr}
  .tech-outcomes article{padding:14px 16px;grid-template-columns:28px minmax(0,1fr)}
}


/* Werkzeugkasten: echte Logos, aber bewusst ruhig und ohne bunte Badge-Wand. */
.tool-logo-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
}
.tool-logo-card{
  min-width:0;
  min-height:58px;
  padding:10px 11px;
  display:flex;
  align-items:center;
  gap:9px;
  border:1px solid color-mix(in srgb,var(--ink) 11%,transparent);
  border-radius:10px;
  background:color-mix(in srgb,var(--surface) 68%,transparent);
  color:color-mix(in srgb,var(--ink) 85%,var(--accent));
  font-size:13px;
  font-weight:700;
  letter-spacing:-.02em;
  transition:border-color .2s ease,background .2s ease,color .2s ease,transform .2s ease;
}
.tool-logo-card:hover{
  border-color:color-mix(in srgb,var(--accent) 30%,var(--line));
  background:color-mix(in srgb,var(--surface) 86%,var(--accent) 4%);
  color:var(--accent);
  transform:translateY(-1px);
}
.tool-logo-mark{
  width:24px;
  height:24px;
  flex:0 0 24px;
  display:grid;
  place-items:center;
}
.tool-logo-mark-double{
  width:31px;
  flex-basis:31px;
  grid-template-columns:1fr 1fr;
  gap:3px;
}
.tool-logo-svg{
  display:block;
  width:100%;
  height:100%;
  max-width:24px;
  max-height:24px;
  fill:currentColor;
}
.tool-logo-mark-double .tool-logo-svg{max-width:14px;max-height:22px}
.tool-domain-list{
  margin-top:14px;
  padding-top:13px;
  display:flex;
  flex-wrap:wrap;
  gap:7px 15px;
  border-top:1px solid color-mix(in srgb,var(--ink) 11%,transparent);
}
.tool-domain-item{
  position:relative;
  padding-left:12px;
  color:var(--muted);
  font-size:13px;
  font-weight:650;
  line-height:1.35;
}
.tool-domain-item::before{
  content:"";
  position:absolute;
  left:0;
  top:.58em;
  width:4px;
  height:4px;
  border-radius:50%;
  background:color-mix(in srgb,var(--accent) 72%,var(--ink));
}

/* Persönliche Abschlusszeilen bleiben lesbar und wirken nicht wie Kleingedrucktes. */
.personal-asides-redesign p{
  font-size:14.5px;
  line-height:1.42;
}
.personal-asides-redesign p:first-child{
  font-size:15.5px;
}
.personal-asides-redesign span{
  font-size:16px;
}

@media (min-width:851px) and (max-height:820px){
  .tool-logo-grid{gap:6px}
  .tool-logo-card{min-height:48px;padding:7px 8px;gap:7px;font-size:11.8px}
  .tool-logo-mark{width:20px;height:20px;flex-basis:20px}
  .tool-logo-mark-double{width:27px;flex-basis:27px}
  .tool-logo-svg{max-width:20px;max-height:20px}
  .tool-logo-mark-double .tool-logo-svg{max-width:12px;max-height:18px}
  .tool-domain-list{margin-top:9px;padding-top:9px;gap:4px 11px}
  .tool-domain-item{font-size:11.5px}
  .personal-asides-redesign p,
  .personal-asides-redesign p:first-child{font-size:14px;line-height:1.35}
  .personal-asides-redesign span{font-size:15px}
}

@media (max-width:850px){
  .tool-logo-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px}
  .tool-logo-card{min-height:52px;padding:8px 10px;font-size:12.5px}
  .tool-domain-list{gap:6px 12px}
  .tool-domain-item{font-size:12.5px}
  .personal-asides-redesign p,
  .personal-asides-redesign p:first-child{font-size:14px;line-height:1.42}
  .personal-asides-redesign span{font-size:15px}
}
/* Die Logos tragen die Sektion bereits; das dekorative Codezeichen würde hier nur stören. */
.tech-workbench::before{display:none}

/* Projekte: Worse ist das Hauptprojekt; Status und Entstehungsgrund bleiben Teil derselben Karte. */
.project-heading-row{
  width:100%;
  margin-bottom:8px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.project-heading-row>i{
  flex:0 0 auto;
  color:var(--muted);
  font-size:18px;
  transition:transform .24s var(--ease),color .24s var(--ease);
}
.project-card:hover .project-heading-row>i{
  color:var(--accent);
  transform:translate(2px,-2px);
}
.project-status{
  display:inline-flex;
  align-items:center;
  min-height:25px;
  padding:4px 9px;
  border:1px solid color-mix(in srgb,var(--accent) 22%,var(--line));
  border-radius:999px;
  background:color-mix(in srgb,var(--accent) 5%,var(--surface));
  color:color-mix(in srgb,var(--accent) 84%,var(--ink));
  font-size:11.5px;
  font-weight:700;
  line-height:1;
  letter-spacing:-.01em;
  white-space:nowrap;
}
.project-body{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
}
.project-body>i{display:none}
.project-body h3{margin:0 0 8px}
.project-origin{
  margin:0;
  padding-top:10px;
  border-top:1px solid color-mix(in srgb,var(--ink) 10%,transparent);
  color:color-mix(in srgb,var(--ink) 84%,var(--muted));
  font-size:12.5px;
  line-height:1.48;
}
.featured-project .project-origin{max-width:49ch;font-size:13.5px}
.project-meta{margin-top:12px}
.project-actions{margin-top:9px}
.featured-project .project-visual{background:color-mix(in srgb,var(--accent) 8%,#ddd5cc)}

/* Auch bei Laptop-Höhen bleibt Worse visuell größer als die drei Nebenprojekte. */
@media (min-width:851px) and (max-height:1000px){
  .project-grid{
    grid-template-columns:minmax(0,1.27fr) minmax(340px,.93fr);
    grid-template-rows:repeat(3,minmax(0,1fr));
    gap:9px;
  }
  .featured-project{
    grid-column:1;
    grid-row:1 / span 3;
    display:grid;
    grid-template-columns:1fr;
    grid-template-rows:minmax(0,1fr) auto;
    min-width:0;
    min-height:0;
  }
  .project-card:not(.featured-project){
    grid-column:2;
    display:grid;
    grid-template-columns:34% minmax(0,1fr);
    min-width:0;
    min-height:0;
  }
  .featured-project .project-visual{height:auto;min-height:245px}
  .project-card:not(.featured-project) .project-visual{height:auto;min-height:0}
  .featured-project .project-body{padding:17px 18px 18px}
  .project-card:not(.featured-project) .project-body{padding:10px 12px}
  .featured-project .project-body h3{font-size:22px}
  .project-card:not(.featured-project) .project-body h3{margin-bottom:4px;font-size:15.5px}
  .featured-project .project-body>p:not(.project-origin){font-size:13px;line-height:1.42}
  .project-card:not(.featured-project) .project-body>p:not(.project-origin){
    display:-webkit-box;
    overflow:hidden;
    margin-bottom:5px;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1;
    font-size:10.8px;
    line-height:1.3;
  }
  .project-card:not(.featured-project) .project-origin{
    display:-webkit-box;
    overflow:hidden;
    padding-top:5px;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    font-size:10.4px;
    line-height:1.25;
  }
  .project-card:not(.featured-project) .project-heading-row{margin-bottom:4px}
  .project-card:not(.featured-project) .project-status{min-height:20px;padding:3px 6px;font-size:9.8px}
  .project-card:not(.featured-project) .project-heading-row>i{font-size:14px}
  .project-card:not(.featured-project) .project-meta{display:none}
  .project-card:not(.featured-project) .project-actions{margin-top:5px}
  .project-card:not(.featured-project) .project-actions span{font-size:10.5px}
}

@media (min-width:851px) and (max-height:820px){
  .project-grid{gap:7px}
  .featured-project .project-visual{min-height:205px}
  .featured-project .project-body{padding:13px 15px 14px}
  .featured-project .project-heading-row{margin-bottom:5px}
  .featured-project .project-body h3{margin-bottom:5px;font-size:20px}
  .featured-project .project-body>p:not(.project-origin){margin-bottom:6px;font-size:11.6px;line-height:1.34}
  .featured-project .project-origin{padding-top:6px;font-size:11.2px;line-height:1.32}
  .featured-project .project-meta{margin-top:7px;font-size:10.5px}
  .featured-project .project-actions{margin-top:5px}
  .featured-project .project-status{min-height:22px;padding:3px 7px;font-size:10.5px}
}

@media (max-width:850px){
  .project-grid{grid-template-columns:1fr 1fr;grid-template-rows:repeat(2,minmax(0,1fr))}
  .featured-project,.project-card:not(.featured-project){grid-column:auto;grid-row:auto}
  .project-heading-row{margin-bottom:5px}
  .project-status{min-height:20px;padding:3px 6px;font-size:9.5px}
  .project-heading-row>i{display:none}
  .featured-project .project-body h3,.project-card:not(.featured-project) .project-body h3{margin-bottom:4px}
  .project-origin{
    display:-webkit-box;
    overflow:hidden;
    margin-top:2px;
    padding-top:5px;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    font-size:10.3px;
    line-height:1.3;
  }
  .featured-project .project-origin{font-size:10.3px}
  .project-meta{display:none}
}

/* Reserve the final row for the chapter transition on short screens. */
@media (min-width:851px) and (max-height:820px){
  .featured-project .project-visual{min-height:178px}
  .projects-stage{padding-top:12px;padding-bottom:10px}
  .projects-stage .section-head{margin-bottom:8px}
}
@media (max-width:850px){
  .projects-stage{padding-bottom:14px}
  #projects .stage-with-tease>.chapter-tease{margin-top:4px}
}
@media (min-width:851px) and (max-height:820px){
  .project-card:not(.featured-project) .project-body{padding:8px 10px}
  .project-card:not(.featured-project) .project-status{min-height:18px;padding:2px 6px}
  .project-card:not(.featured-project) .project-body h3{font-size:15px;line-height:1.05}
  .project-card:not(.featured-project) .project-origin{font-size:10px;line-height:1.2}
}


/* Werkzeugkasten und Projekte: kompaktere, zusammengehörige Darstellung. */
.tech-workbench{
  grid-template-columns:1fr;
  width:100%;
}
.tech-stack{
  padding:21px 23px 20px;
  border-right:0;
  border-bottom:1px solid var(--line);
}
.tool-logo-grid{
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:7px;
}
.tool-logo-card{
  min-height:48px;
  padding:8px 10px;
  gap:8px;
  border-radius:9px;
  font-size:12px;
}
.tool-text-card{
  color:color-mix(in srgb,var(--ink) 82%,var(--accent));
}
.tool-text-mark{
  width:30px;
  height:22px;
  flex:0 0 30px;
  display:grid;
  place-items:center;
  border:1px solid color-mix(in srgb,var(--ink) 14%,transparent);
  border-radius:6px;
  color:var(--accent);
  font-size:9px;
  font-weight:800;
  letter-spacing:-.02em;
}
.tech-outcomes{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.tech-outcomes article{
  min-height:104px;
  padding:15px 18px;
  grid-template-columns:28px minmax(0,1fr);
  gap:3px 10px;
}
.tech-outcomes article+article{
  border-top:0;
  border-left:1px solid color-mix(in srgb,var(--ink) 14%,transparent);
}
.tech-outcomes i{font-size:23px}
.tech-outcomes h3{font-size:18px}
.tech-outcomes p{font-size:12.5px;line-height:1.42}

.projects-stage{
  width:min(1040px,100%);
  margin-inline:auto;
  padding:21px 22px;
}
.project-grid{
  grid-template-columns:minmax(0,1.16fr) minmax(300px,.84fr);
  grid-template-rows:repeat(3,148px);
  gap:10px;
}
.featured-project .project-visual{
  min-height:300px;
}
.project-card:not(.featured-project){
  min-height:148px;
  grid-template-columns:35% minmax(0,1fr);
}
.featured-project .project-body{padding:19px 21px 20px}
.featured-project .project-body h3{font-size:24px}
.featured-project .project-body>p:not(.project-origin){font-size:14px;line-height:1.45}
.featured-project .project-origin{font-size:12.5px;line-height:1.42}
.project-card:not(.featured-project) .project-body{padding:10px 12px}
.project-card:not(.featured-project) .project-body>p:not(.project-origin){
  display:-webkit-box;
  overflow:hidden;
  margin-bottom:5px;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:1;
  font-size:10.8px;
  line-height:1.28;
}
.project-card:not(.featured-project) .project-origin{
  display:-webkit-box;
  overflow:hidden;
  padding-top:5px;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  font-size:10.3px;
  line-height:1.23;
}
.project-card:not(.featured-project) .project-meta{display:none}

@media (min-width:851px) and (max-height:1000px){
  .tech-stack{padding:16px 18px 15px}
  .tool-logo-grid{grid-template-columns:repeat(5,minmax(0,1fr));gap:6px}
  .tool-logo-card{min-height:43px;padding:6px 8px;font-size:10.8px}
  .tool-logo-mark{width:19px;height:19px;flex-basis:19px}
  .tool-logo-mark-double{width:25px;flex-basis:25px}
  .tool-logo-svg{max-width:19px;max-height:19px}
  .tool-text-mark{width:27px;height:19px;flex-basis:27px;font-size:8px}
  .tech-outcomes article{min-height:82px;padding:11px 14px}
  .tech-outcomes h3{font-size:16px}
  .tech-outcomes p{font-size:11.2px}

  .projects-stage{width:min(1000px,100%);padding:15px 17px}
  .project-grid{
    grid-template-columns:minmax(0,1.12fr) minmax(310px,.88fr);
    grid-template-rows:repeat(3,126px);
    gap:8px;
  }
  .featured-project .project-visual{min-height:220px}
  .project-card:not(.featured-project){min-height:126px}
  .featured-project .project-body{padding:13px 16px 14px}
}

@media (max-width:850px){
  .tech-stack{padding:17px 18px}
  .tool-logo-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px}
  .tool-logo-card{min-height:48px;padding:7px 9px;font-size:11.5px}
  .tech-outcomes{grid-template-columns:1fr}
  .tech-outcomes article{min-height:0;padding:12px 15px}
  .tech-outcomes article+article{border-left:0;border-top:1px solid color-mix(in srgb,var(--ink) 14%,transparent)}

  .projects-stage{width:100%;padding:14px 13px}
  .project-grid{grid-template-columns:1fr 1fr;grid-template-rows:repeat(2,minmax(0,1fr));gap:8px}
  .featured-project,.project-card:not(.featured-project){min-height:0}
  .featured-project .project-visual,.project-card:not(.featured-project) .project-visual{min-height:90px;height:90px}
}

/* Einheitliche Icons, robuste Worse-Karte und gleichmäßiger Kapitelrhythmus. */
.tool-line-icon{
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.project-visual-link{
  position:absolute;
  top:14px;
  right:14px;
  z-index:3;
  color:rgba(255,255,255,.76);
  font-size:18px;
  filter:drop-shadow(0 1px 4px rgba(0,0,0,.3));
  transition:transform .24s var(--ease),color .24s var(--ease);
}
.featured-project:hover .project-visual-link{
  color:#fff;
  transform:translate(2px,-2px);
}
.project-status-overlay{
  position:absolute;
  left:14px;
  bottom:14px;
  z-index:3;
  border-color:rgba(255,255,255,.52);
  background:rgba(250,250,252,.94);
  box-shadow:0 5px 18px rgba(0,0,0,.12);
}
.featured-project .project-body{
  position:relative;
  z-index:2;
  min-height:0;
  overflow:hidden;
  background:var(--canvas);
  box-shadow:0 -1px 0 var(--line);
}
.featured-project .project-visual{
  min-height:0!important;
  height:auto!important;
}
.featured-project .project-screenshot{object-position:center top}

@media (min-width:851px){
  .chapter{
    height:calc(100dvh + 180px);
    margin-top:calc(-100dvh + 12px);
  }
  .hero-chapter{
    height:calc(100dvh + 180px);
    margin-top:0;
  }
  .chapter-inner{will-change:transform,opacity,filter}
  .featured-project{
    grid-template-rows:minmax(250px,1fr) 190px;
  }
}

@media (min-width:851px) and (max-height:1000px){
  .project-grid{
    grid-template-rows:repeat(3,130px);
  }
  .featured-project{
    grid-template-rows:minmax(220px,1fr) 178px;
  }
  .featured-project .project-body{padding:12px 16px 13px}
  .featured-project .project-body h3{margin-bottom:5px;font-size:20px}
  .featured-project .project-body>p:not(.project-origin){
    display:-webkit-box;
    overflow:hidden;
    margin-bottom:6px;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
    font-size:11.8px;
    line-height:1.35;
  }
  .featured-project .project-origin{
    display:-webkit-box;
    overflow:hidden;
    padding-top:6px;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    font-size:10.8px;
    line-height:1.28;
  }
  .featured-project .project-meta{margin-top:7px;font-size:10.3px}
  .featured-project .project-actions{margin-top:5px}
  .featured-project .project-actions span{font-size:11px}
}

@media (max-width:850px){
  .project-status-overlay{left:8px;bottom:8px;min-height:18px;padding:2px 6px;font-size:9px}
  .project-visual-link{top:8px;right:8px;font-size:14px}
  .featured-project .project-body{overflow:visible}
}

/* Give the featured copy enough room without enlarging the overall project grid. */
@media (min-width:851px){
  .featured-project{grid-template-rows:minmax(240px,1fr) 205px}
}
@media (min-width:851px) and (max-height:1000px){
  .featured-project{grid-template-rows:minmax(198px,1fr) 198px}
}


/* Faster, depth-led chapter transitions and a robust featured project body. */
@media (min-width:851px){
  .chapter-inner{
    backface-visibility:hidden;
    transform-style:preserve-3d;
  }
  .featured-project{
    grid-template-rows:minmax(230px,1fr) 214px;
  }
  .featured-project .project-body{
    align-content:start;
    grid-auto-rows:max-content;
    overflow:hidden;
  }
  .featured-project .project-body h3{
    flex:none;
  }
}

@media (min-width:851px) and (max-height:1000px){
  .featured-project{
    grid-template-rows:198px 208px;
  }
  .featured-project .project-body{
    padding:12px 16px 11px;
  }
  .featured-project .project-body h3{
    margin-bottom:4px;
    font-size:19px;
    line-height:1.08;
  }
  .featured-project .project-body>p:not(.project-origin){
    display:-webkit-box;
    overflow:hidden;
    margin-bottom:5px;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
    font-size:11.5px;
    line-height:1.3;
  }
  .featured-project .project-origin{
    display:-webkit-box;
    overflow:hidden;
    margin:0;
    padding-top:5px;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    font-size:10.6px;
    line-height:1.26;
  }
  .featured-project .project-meta{
    margin-top:7px;
    font-size:10.3px;
    line-height:1.2;
  }
  .featured-project .project-actions{
    margin-top:5px;
  }
}

@media (min-width:851px) and (max-height:560px){
  .projects-stage{
    padding-top:10px;
    padding-bottom:9px;
  }
  .projects-stage .section-head{
    margin-bottom:6px;
  }
  .featured-project{
    grid-template-rows:190px 216px;
  }
}


/* Finaler Desktop-Fix: vollständige Worse-Karte und ruhiger Kapitelwechsel. */
.featured-project .project-body{
  justify-content:flex-start;
  overflow:visible;
}
.featured-project .project-footer{
  width:100%;
  margin-top:auto;
  padding-top:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.featured-project .project-footer .project-meta,
.featured-project .project-footer .project-actions{
  margin:0;
}
.featured-project .project-footer .project-meta{
  min-width:0;
}
.featured-project .project-footer .project-actions{
  flex:0 0 auto;
}

@media (min-width:851px){
  .chapter-inner{
    will-change:transform,opacity;
    transform-style:flat;
  }
  .featured-project{
    grid-template-rows:minmax(220px,1fr) auto;
  }
  .featured-project .project-body{
    min-height:218px;
    padding:17px 20px 18px;
  }
  .featured-project .project-body h3{
    margin-bottom:7px;
    font-size:23px;
  }
  .featured-project .project-body>p:not(.project-origin){
    margin-bottom:9px;
    font-size:13.5px;
    line-height:1.42;
  }
  .featured-project .project-origin{
    margin:0;
    padding-top:8px;
    font-size:12.2px;
    line-height:1.38;
  }
  .featured-project .project-meta{
    font-size:11.2px;
    line-height:1.25;
  }
  .featured-project .project-actions span{
    font-size:12px;
  }
}

@media (min-width:851px) and (max-height:1000px){
  .featured-project{
    grid-template-rows:minmax(176px,1fr) auto;
  }
  .featured-project .project-body{
    min-height:186px;
    padding:11px 15px 12px;
  }
  .featured-project .project-body h3{
    margin-bottom:4px;
    font-size:19px;
  }
  .featured-project .project-body>p:not(.project-origin){
    display:-webkit-box;
    overflow:hidden;
    margin-bottom:5px;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    font-size:11.3px;
    line-height:1.28;
  }
  .featured-project .project-origin{
    display:-webkit-box;
    overflow:hidden;
    padding-top:5px;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    font-size:10.4px;
    line-height:1.24;
  }
  .featured-project .project-footer{
    padding-top:6px;
  }
  .featured-project .project-meta{
    margin:0;
    font-size:9.9px;
  }
  .featured-project .project-actions{
    margin:0;
  }
  .featured-project .project-actions span{
    font-size:10.5px;
  }
}

@media (max-width:850px){
  .featured-project .project-footer{
    display:block;
    margin-top:6px;
    padding-top:0;
  }
  .featured-project .project-footer .project-meta{display:none}
  .featured-project .project-footer .project-actions{margin-top:5px}
}

/* Bühne statt Textkürzung: vollständige Projektkarten und ein klarer Kapitel-Reveal. */
@media (min-width:851px){
  .chapter-inner{
    overflow:visible;
    will-change:transform,opacity,clip-path,filter;
  }
  .chapter-content{
    will-change:transform,opacity;
  }
  .projects-stage{
    width:min(1100px,100%);
    padding:19px 21px 18px;
  }
  .projects-stage .section-head{margin-bottom:13px}
  .project-grid{
    grid-template-columns:minmax(0,1.2fr) minmax(360px,.8fr);
    grid-template-rows:repeat(3,176px);
    gap:11px;
  }
  .featured-project{
    grid-template-rows:minmax(286px,1fr) auto;
  }
  .featured-project .project-body{
    min-height:238px;
    padding:16px 20px 17px;
  }
  .featured-project .project-body>p:not(.project-origin),
  .project-card:not(.featured-project) .project-body>p:not(.project-origin),
  .featured-project .project-origin,
  .project-card:not(.featured-project) .project-origin{
    display:block!important;
    overflow:visible!important;
    -webkit-box-orient:initial!important;
    -webkit-line-clamp:unset!important;
  }
  .project-card:not(.featured-project){
    min-height:176px;
    grid-template-columns:31% minmax(0,1fr);
  }
  .project-card:not(.featured-project) .project-body{
    justify-content:flex-start;
    padding:10px 13px 11px;
  }
  .project-card:not(.featured-project) .project-heading-row{margin-bottom:3px}
  .project-card:not(.featured-project) .project-body h3{
    margin-bottom:4px;
    font-size:16px;
    line-height:1.08;
  }
  .project-card:not(.featured-project) .project-body>p:not(.project-origin){
    margin-bottom:5px;
    font-size:10.7px;
    line-height:1.3;
  }
  .project-card:not(.featured-project) .project-origin{
    margin:0;
    padding-top:5px;
    font-size:10.1px;
    line-height:1.25;
  }
  .project-card:not(.featured-project) .project-meta{
    display:block!important;
    margin-top:6px;
    font-size:9.4px;
    line-height:1.2;
  }
  .project-card:not(.featured-project) .project-actions{
    margin-top:4px;
  }
  .project-card:not(.featured-project) .project-actions span{font-size:10.4px}
}

@media (min-width:851px) and (max-height:1000px){
  .projects-stage{width:min(1060px,100%);padding:15px 18px 14px}
  .projects-stage .section-head{margin-bottom:9px}
  .project-grid{
    grid-template-columns:minmax(0,1.18fr) minmax(345px,.82fr);
    grid-template-rows:repeat(3,158px);
    gap:9px;
  }
  .featured-project{grid-template-rows:minmax(242px,1fr) auto}
  .featured-project .project-body{min-height:218px;padding:13px 17px 14px}
  .project-card:not(.featured-project){min-height:158px;grid-template-columns:29% minmax(0,1fr)}
  .project-card:not(.featured-project) .project-body{padding:8px 11px 9px}
  .project-card:not(.featured-project) .project-body h3{font-size:15px}
  .project-card:not(.featured-project) .project-body>p:not(.project-origin){font-size:9.9px;line-height:1.25}
  .project-card:not(.featured-project) .project-origin{font-size:9.4px;line-height:1.2}
  .project-card:not(.featured-project) .project-meta{font-size:8.9px}
}

@media (min-width:851px) and (max-height:820px){
  .projects-stage{padding:10px 14px 9px}
  .projects-stage .section-head{margin-bottom:6px}
  .project-grid{grid-template-rows:repeat(3,142px);gap:7px}
  .featured-project{grid-template-rows:210px auto}
  .featured-project .project-body{min-height:197px;padding:10px 14px 11px}
  .project-card:not(.featured-project){min-height:142px;grid-template-columns:27% minmax(0,1fr)}
  .project-card:not(.featured-project) .project-body{padding:6px 9px 7px}
  .project-card:not(.featured-project) .project-heading-row{margin-bottom:2px}
  .project-card:not(.featured-project) .project-status{min-height:17px;padding:2px 5px;font-size:8.5px}
  .project-card:not(.featured-project) .project-body h3{margin-bottom:2px;font-size:13.5px}
  .project-card:not(.featured-project) .project-body>p:not(.project-origin){margin-bottom:3px;font-size:8.8px;line-height:1.18}
  .project-card:not(.featured-project) .project-origin{padding-top:3px;font-size:8.4px;line-height:1.16}
  .project-card:not(.featured-project) .project-meta{margin-top:3px;font-size:8px}
  .project-card:not(.featured-project) .project-actions{margin-top:2px}
  .project-card:not(.featured-project) .project-actions span{font-size:8.8px}
}

@media (max-width:850px){
  .project-grid{
    grid-template-columns:1fr;
    grid-template-rows:none;
    grid-auto-rows:auto;
  }
  .featured-project,.project-card:not(.featured-project){
    display:grid;
    grid-template-columns:1fr;
    grid-template-rows:auto auto;
  }
  .featured-project .project-visual{height:170px;min-height:170px}
  .project-card:not(.featured-project) .project-visual{height:125px;min-height:125px}
  .featured-project .project-body,
  .project-card:not(.featured-project) .project-body{padding:12px 13px 13px}
  .featured-project .project-body>p:not(.project-origin),
  .project-card:not(.featured-project) .project-body>p:not(.project-origin),
  .featured-project .project-origin,
  .project-card:not(.featured-project) .project-origin{
    display:block!important;
    overflow:visible!important;
    -webkit-box-orient:initial!important;
    -webkit-line-clamp:unset!important;
  }
  .project-meta{display:block!important;margin-top:7px;font-size:10px}
  .project-actions{margin-top:6px}
}

@media (max-width:850px){
  .featured-project .project-visual{height:170px!important;min-height:170px!important}
  .project-card:not(.featured-project) .project-visual{height:125px!important;min-height:125px!important}
}

/* Luftiger Projektbereich: eine breite Feature-Karte, drei echte Projektkarten. */
@media (min-width:851px){
  .projects-stage{
    width:min(1160px,100%);
    padding:20px 22px 18px;
  }
  .projects-stage .section-head{margin-bottom:14px}
  .project-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    grid-template-rows:auto auto;
    gap:12px;
  }
  .featured-project{
    grid-column:1 / -1;
    grid-row:1;
    display:grid;
    grid-template-columns:minmax(0,1.12fr) minmax(390px,.88fr);
    grid-template-rows:1fr;
    min-height:310px;
  }
  .featured-project .project-visual{
    height:100%!important;
    min-height:310px!important;
  }
  .featured-project .project-body{
    min-height:310px;
    padding:25px 27px 23px;
    display:flex;
    flex-direction:column;
    align-content:initial;
    justify-content:flex-start;
    overflow:visible;
  }
  .featured-project .project-body h3{
    margin-bottom:10px;
    font-size:27px;
  }
  .featured-project .project-body>p:not(.project-origin){
    margin-bottom:12px;
    font-size:15px;
    line-height:1.5;
  }
  .featured-project .project-origin{
    margin:0;
    padding-top:10px;
    font-size:13px;
    line-height:1.45;
  }
  .featured-project .project-footer{
    margin-top:auto;
    padding-top:15px;
  }
  .featured-project .project-meta{font-size:11.5px}
  .featured-project .project-actions span{font-size:12.5px}

  .project-card:not(.featured-project){
    grid-column:auto;
    grid-row:2;
    display:grid;
    grid-template-columns:1fr;
    grid-template-rows:118px auto;
    min-height:270px;
  }
  .project-card:not(.featured-project) .project-visual{
    width:100%;
    height:118px!important;
    min-height:118px!important;
  }
  .project-card:not(.featured-project) .project-body{
    padding:14px 15px 15px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    overflow:visible;
  }
  .project-card:not(.featured-project) .project-heading-row{margin-bottom:7px}
  .project-card:not(.featured-project) .project-body h3{
    margin-bottom:7px;
    font-size:18px;
    line-height:1.12;
  }
  .project-card:not(.featured-project) .project-body>p:not(.project-origin){
    display:block!important;
    overflow:visible!important;
    margin-bottom:8px;
    -webkit-line-clamp:unset!important;
    font-size:12.4px;
    line-height:1.42;
  }
  .project-card:not(.featured-project) .project-origin{
    display:block!important;
    overflow:visible!important;
    margin:0;
    padding-top:8px;
    -webkit-line-clamp:unset!important;
    font-size:11.4px;
    line-height:1.38;
  }
  .project-card:not(.featured-project) .project-meta{
    display:block!important;
    margin-top:auto;
    padding-top:10px;
    font-size:10.5px;
    line-height:1.3;
  }
  .project-card:not(.featured-project) .project-actions{margin-top:7px}
  .project-card:not(.featured-project) .project-actions span{font-size:11.5px}
}

/* Normale Laptop-Höhen: weiterhin lesbar statt künstlich zusammengestaucht. */
@media (min-width:851px) and (max-height:1000px){
  .projects-stage{
    width:min(1120px,100%);
    padding:15px 18px 13px;
  }
  .projects-stage .section-head{margin-bottom:9px}
  .project-grid{gap:9px}
  .featured-project{
    grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);
    min-height:260px;
  }
  .featured-project .project-visual{
    height:260px!important;
    min-height:260px!important;
  }
  .featured-project .project-body{
    min-height:260px;
    padding:17px 20px 16px;
  }
  .featured-project .project-body h3{margin-bottom:7px;font-size:23px}
  .featured-project .project-body>p:not(.project-origin){margin-bottom:8px;font-size:13px;line-height:1.42}
  .featured-project .project-origin{padding-top:7px;font-size:11.8px;line-height:1.38}
  .featured-project .project-footer{padding-top:10px}
  .featured-project .project-meta{font-size:10.5px}
  .featured-project .project-actions span{font-size:11.5px}

  .project-card:not(.featured-project){
    grid-template-rows:88px auto;
    min-height:225px;
  }
  .project-card:not(.featured-project) .project-visual{
    height:88px!important;
    min-height:88px!important;
  }
  .project-card:not(.featured-project) .project-body{padding:10px 12px 11px}
  .project-card:not(.featured-project) .project-heading-row{margin-bottom:4px}
  .project-card:not(.featured-project) .project-body h3{margin-bottom:5px;font-size:16px}
  .project-card:not(.featured-project) .project-body>p:not(.project-origin){margin-bottom:6px;font-size:11.6px;line-height:1.34}
  .project-card:not(.featured-project) .project-origin{padding-top:6px;font-size:10.8px;line-height:1.3}
  .project-card:not(.featured-project) .project-meta{padding-top:7px;font-size:9.8px}
  .project-card:not(.featured-project) .project-actions{margin-top:4px}
  .project-card:not(.featured-project) .project-actions span{font-size:10.5px}
}

/* Sehr niedrige Desktopfenster: Layout bleibt zweizeilig und lesbar. */
@media (min-width:851px) and (max-height:820px){
  .projects-stage{padding:10px 14px 9px}
  .projects-stage .section-head{margin-bottom:6px}
  .project-grid{gap:7px}
  .featured-project{
    grid-template-columns:minmax(0,1fr) minmax(360px,1fr);
    min-height:220px;
  }
  .featured-project .project-visual{height:220px!important;min-height:220px!important}
  .featured-project .project-body{min-height:220px;padding:12px 15px 11px}
  .featured-project .project-body h3{font-size:20px}
  .featured-project .project-body>p:not(.project-origin){font-size:11.5px;line-height:1.32}
  .featured-project .project-origin{font-size:10.6px;line-height:1.28}
  .project-card:not(.featured-project){grid-template-rows:62px auto;min-height:188px}
  .project-card:not(.featured-project) .project-visual{height:62px!important;min-height:62px!important}
  .project-card:not(.featured-project) .project-body{padding:7px 9px 8px}
  .project-card:not(.featured-project) .project-body h3{font-size:14.5px}
  .project-card:not(.featured-project) .project-body>p:not(.project-origin){font-size:10.2px;line-height:1.25}
  .project-card:not(.featured-project) .project-origin{font-size:9.7px;line-height:1.22}
  .project-card:not(.featured-project) .project-meta{font-size:9px}
}


/* Klar erkennbare Projektlinks im bestehenden Außenlink-Stil. */
.project-actions span{
  display:inline-flex;
  align-items:center;
  gap:4px;
  font-weight:600;
  line-height:1.2;
}
.project-actions i{
  display:inline-block;
  font-size:.95em;
  line-height:1;
  transition:transform .22s var(--ease);
}
.project-card:hover .project-actions i,
.project-card:focus-visible .project-actions i{
  transform:translate(2px,-2px);
}

/* Eine gemeinsame Bewegung für alle diagonalen Außenlink-Pfeile. */
.external-link-arrow{
  display:inline-block;
  transform:translate3d(0,0,0);
  transform-origin:center;
  transition:transform .22s var(--ease),color .22s var(--ease);
  will-change:transform;
}
a:hover .external-link-arrow,
a:focus-visible .external-link-arrow{
  transform:translate3d(2px,-2px,0);
}


/* Mobile Master Layout: zweistufiger Hero, danach natürlicher Scrollfluss mit Reveal. */
@media (max-width:850px){
  html{scroll-padding-top:72px}
  body{overflow-x:hidden}
  .content-frame,.content-scroll{height:auto;min-height:0;overflow:visible}

  /* Intro und Porträt bleiben als eine kompakte, zweistufige Parallax-Szene erhalten. */
  .hero-chapter{
    height:165svh;
    min-height:calc(100svh + 360px);
    margin:0;
    position:relative;
  }
  .hero-chapter .chapter-sticky{
    position:sticky;
    top:64px;
    height:calc(100svh - 64px);
    min-height:0;
    padding:10px 8px 14px;
    display:flex;
    align-items:stretch;
    overflow:hidden;
  }
  .hero-chapter .chapter-inner{
    width:100%;
    height:100%;
    min-height:0;
    display:block;
    opacity:1;
    transform:none;
    visibility:visible;
    pointer-events:auto;
  }

  /* Ab dem Profil darf jede Sektion so hoch werden, wie ihr Inhalt es benötigt. */
  .chapter:not(.hero-chapter){
    height:auto;
    min-height:0;
    margin:0;
    position:relative;
  }
  .chapter:not(.hero-chapter) .chapter-sticky{
    position:relative;
    top:auto;
    height:auto;
    min-height:0;
    padding:clamp(54px,12vw,76px) 8px clamp(66px,15vw,94px);
    display:block;
    overflow:visible;
  }
  .chapter:not(.hero-chapter) .chapter-inner{
    width:100%;
    height:auto;
    min-height:0;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    opacity:var(--mobile-scene-opacity,1);
    transform:translate3d(0,var(--mobile-scene-y,0),0) scale(var(--mobile-scene-scale,1));
    transform-origin:50% 18%;
    visibility:visible;
    filter:none;
    clip-path:none;
    border-radius:0;
    pointer-events:auto;
    will-change:transform,opacity;
  }
  .chapter:not(.hero-chapter) .chapter-content{
    opacity:var(--mobile-content-opacity,1);
    transform:translate3d(0,var(--mobile-content-y,0),0);
    will-change:transform,opacity;
  }
  .chapter:not(.hero-chapter) [data-stagger]{
    opacity:var(--mobile-item-opacity,1);
    transition:none;
  }

  .stage-with-tease,
  .personal-chapter .stage-with-tease,
  .skills-stage,
  .projects-shell,
  .journal-shell,
  .contact-stage{
    width:100%;
    height:auto;
    min-height:0;
    display:flex;
    flex-direction:column;
    gap:0;
  }
  .personal-chapter .chapter-sticky{
    position:relative;
    top:auto;
    height:auto;
    min-height:0;
    padding:clamp(54px,12vw,76px) 8px clamp(66px,15vw,94px);
    overflow:visible;
  }
  .personal-stage,.personal-content,.skills-content{
    height:auto;
    min-height:0;
    align-self:stretch;
  }

  /* Verhindert, dass ältere Mobile-Variablen die neuen Kapitel-Layer doppelt animieren. */
  .projects-stage,.journal-stage{
    width:100%;
    height:auto;
    min-height:0;
    opacity:1!important;
    transform:none!important;
    will-change:auto;
  }

  /* Mehr Luft und normale Lesbarkeit in den inhaltlich längeren Sektionen. */
  .personal-content{gap:12px}
  .personal-heading{padding:0 6px 4px;font-size:clamp(32px,9vw,40px)}
  .personal-card-grid{
    display:grid;
    grid-template-columns:1fr!important;
    grid-template-rows:none!important;
    gap:12px;
  }
  .personal-card,
  .personal-card-work,
  .location-card,
  .personal-card-collection,
  .personal-card-impossible,
  .personal-card-offline{
    grid-column:1!important;
    grid-row:auto!important;
    width:100%;
    min-width:0;
    min-height:0;
    padding:17px 16px;
    gap:14px;
    border-radius:18px;
  }
  .personal-card-work,
  .location-card,
  .personal-card-impossible,
  .personal-card-offline{grid-template-columns:84px minmax(0,1fr)}
  .personal-card-collection{grid-template-columns:104px minmax(0,1fr)}
  .personal-card-art,.personal-card-copy{min-width:0}
  .personal-card-copy h3{margin-bottom:6px;font-size:21px;line-height:1.12}
  .personal-card-copy p{font-size:14px;line-height:1.5}
  .personal-asides-redesign{margin-top:2px}
  .personal-asides-redesign p,
  .personal-asides-redesign p:first-child{padding:13px 7px;font-size:14.5px;line-height:1.48}
  .personal-asides-redesign span{font-size:16px}

  .skills-content{gap:16px}
  .skills-intro{padding:0 7px}
  .skills-intro h2{font-size:clamp(34px,9.5vw,42px)}
  .skills-intro p{font-size:14.5px;line-height:1.52}
  .tech-workbench{border-radius:20px}
  .tech-stack{padding:20px 17px}
  .tool-logo-grid{gap:9px}
  .tool-logo-card{min-height:58px;padding:10px 11px;font-size:12.5px}
  .tech-outcomes article{padding:16px 17px}
  .tech-outcomes h3{font-size:19px}
  .tech-outcomes p{font-size:14px;line-height:1.48}

  .projects-stage{padding:20px 12px 18px;border-radius:20px}
  .section-head{margin:0 3px 17px;gap:9px}
  .section-head h2{font-size:clamp(34px,9vw,42px)}
  .section-head a{font-size:13px}
  .project-grid{gap:14px}
  .featured-project,.project-card:not(.featured-project){border-radius:18px}
  .featured-project .project-visual{height:200px!important;min-height:200px!important}
  .project-card:not(.featured-project) .project-visual{height:148px!important;min-height:148px!important}
  .featured-project .project-body,
  .project-card:not(.featured-project) .project-body{padding:16px 16px 17px}
  .featured-project .project-body h3{font-size:23px}
  .project-card:not(.featured-project) .project-body h3{font-size:20px}
  .featured-project .project-body>p:not(.project-origin),
  .project-card:not(.featured-project) .project-body>p:not(.project-origin){font-size:14px;line-height:1.5}
  .featured-project .project-origin,
  .project-card:not(.featured-project) .project-origin{font-size:13px;line-height:1.46}
  .project-meta{font-size:11.5px}
  .project-actions span{font-size:12.5px}

  .journal-card{min-height:0;grid-template-columns:1fr;border-radius:20px}
  .journal-copy{padding:34px 24px 30px}
  .journal-copy h2{font-size:clamp(40px,11vw,52px)}
  .journal-copy>p:not(.journal-label){font-size:15px;line-height:1.58}
  .journal-aside{padding:28px 24px 34px}
  .journal-aside strong{font-size:26px;line-height:1.18}

  .contact-card{min-height:0;padding:42px 24px;gap:28px;border-radius:20px}
  .contact-card h2{font-size:clamp(48px,13vw,62px)}
  .contact-card p{font-size:16px;line-height:1.55}

  .stage-with-tease>.chapter-tease{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    width:100%;
    min-height:70px;
    margin-top:24px;
    padding:0;
    flex:0 0 auto;
  }
  .stage-with-tease>.chapter-tease>span:first-child{font-size:20px}

  /* Mobile Navigation springt in natürliche Sektionen, nicht in versteckte Sticky-Flächen. */
  #profile,#skills,#projects,#journal,#contact{scroll-margin-top:70px}
}
