@import"https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap";:root{--bg: #FEF9F3;--card: #FFFFFF;--text: #1A1612;--text-soft: #6B5C4C;--accent: #E85D04;--accent-hover: #D14D00;--accent-light: #FFBA88;--accent-bg: #FFF4EC;--warm: #F0E6DA;--font: "Space Grotesk", system-ui, sans-serif;--radius: 12px}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html{font-size:18px}body{font-family:var(--font);background:var(--bg);color:var(--text);line-height:1.5;min-height:100vh;-webkit-font-smoothing:antialiased}.app{min-height:100vh;display:flex;flex-direction:column}.skip-link{position:absolute;top:-100px;left:50%;transform:translate(-50%);background:var(--accent);color:#fff;padding:.75rem 1.5rem;border-radius:var(--radius);font-weight:600;z-index:1000;transition:top .2s}.skip-link:focus{top:1rem}.header{display:flex;justify-content:space-between;align-items:center;padding:1rem 2rem;background:var(--card);border-bottom:1px solid var(--warm)}.logo{display:flex;align-items:center;gap:.5rem;font-weight:700;font-size:1.1rem}.logo-icon{font-size:1.5rem;animation:bounce 2s ease-in-out infinite}@keyframes bounce{0%,to{transform:translateY(0) rotate(-3deg)}50%{transform:translateY(-4px) rotate(3deg)}}.header-actions{display:flex;gap:.5rem}.help-btn{padding:.5rem 1rem;border-radius:20px;border:2px solid var(--warm);background:var(--card);font-size:.85rem;font-weight:600;color:var(--text-soft);cursor:pointer;transition:all .15s;white-space:nowrap}.help-btn:hover{background:var(--warm);border-color:var(--text-soft);color:var(--text)}.support-btn{padding:.5rem 1rem;border-radius:20px;border:2px solid var(--accent);background:var(--accent-bg);font-size:.85rem;font-weight:600;color:var(--accent);cursor:pointer;transition:all .15s;display:flex;align-items:center;text-decoration:none;white-space:nowrap}.support-btn:hover{background:var(--accent);color:#fff}.help-panel{background:var(--text);color:#fff;padding:1rem 1.5rem;font-size:.9rem;line-height:1.6;display:flex;align-items:center;gap:1rem;animation:slideDown .2s ease}@keyframes slideDown{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.help-panel strong{color:var(--accent-light)}.help-panel button{margin-left:auto;background:none;border:none;color:#fff;font-size:1.5rem;cursor:pointer;opacity:.7;line-height:1}.help-panel button:hover{opacity:1}main{flex:1;max-width:700px;width:100%;margin:0 auto;padding:2rem}.flour-section{text-align:center;margin-bottom:2rem}.flour-input{display:inline-flex;align-items:baseline;gap:.5rem}.flour-input input{font-family:var(--font);font-size:4.5rem;font-weight:700;width:200px;text-align:center;border:none;border-bottom:4px solid var(--warm);background:transparent;color:var(--text);transition:border-color .2s}.flour-input input:focus{outline:none;border-color:var(--accent)}.flour-unit{font-size:1.5rem;font-weight:600;color:var(--text-soft)}.ratios{display:flex;flex-direction:column;gap:.75rem;margin-bottom:1.5rem}.ratio-row{display:grid;grid-template-columns:auto 70px 1fr auto auto;align-items:center;gap:1rem;background:var(--card);padding:1rem 1.25rem;border-radius:var(--radius)}.ratio-icon{font-size:1.25rem}.ratio-name{font-weight:600;font-size:.95rem;color:var(--text)}.ratio-row input[type=range]{width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;height:8px;background:var(--warm);border-radius:4px;cursor:pointer}.ratio-row input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:24px;height:24px;background:var(--accent);border-radius:50%;cursor:grab;box-shadow:0 2px 8px #e85d044d;transition:transform .1s}.ratio-row input[type=range]::-webkit-slider-thumb:hover{transform:scale(1.15)}.ratio-row input[type=range]::-webkit-slider-thumb:active{cursor:grabbing}.ratio-row input[type=range]::-moz-range-thumb{width:24px;height:24px;background:var(--accent);border-radius:50%;border:none;cursor:grab}.ratio-row input[type=range]:focus-visible{outline:2px solid var(--accent);outline-offset:4px}.ratio-value{display:flex;align-items:center;background:var(--warm);border-radius:8px;padding:.4rem .6rem;min-width:70px}.ratio-value input{font-family:var(--font);font-size:1rem;font-weight:700;width:36px;border:none;background:none;text-align:right;color:var(--text)}.ratio-value input:focus{outline:none}.ratio-value span{font-weight:600;color:var(--text-soft);font-size:.9rem}.ratio-result{font-size:1.25rem;font-weight:700;color:var(--accent);min-width:65px;text-align:right}.total{background:var(--accent);color:#fff;border-radius:var(--radius);padding:1.5rem 2rem;display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem}.total-label{font-size:1.1rem;font-weight:600;opacity:.9}.total-value{font-size:3rem;font-weight:700;letter-spacing:-.02em}.recipes{display:flex;flex-direction:column;gap:.5rem}.recipe{background:var(--card);border-radius:var(--radius);border:2px solid transparent;transition:border-color .2s}.recipe.active{border-color:var(--accent)}.recipe-btn{width:100%;display:flex;align-items:center;gap:.75rem;padding:1rem 1.25rem;background:none;border:none;font-family:var(--font);font-size:1rem;cursor:pointer;text-align:left;transition:background .15s}.recipe-btn:hover{background:var(--accent-bg)}.recipe-icon{font-size:1.5rem}.recipe-name{font-weight:600;flex:1}.recipe-hydration{color:var(--accent);font-weight:700}.recipe-chevron{font-size:1.5rem;color:var(--text-soft);transition:transform .2s}.recipe.active .recipe-chevron{transform:rotate(90deg);color:var(--accent)}.recipe-method{padding:0 1.25rem 1.25rem;animation:foldDown .3s ease-out;transform-origin:top}.pizza-counter,.loaf-counter{display:flex;align-items:center;justify-content:center;gap:1rem;margin-bottom:1rem;padding:.75rem;background:var(--warm);border-radius:8px}.pizza-counter button,.loaf-counter button{width:36px;height:36px;border:none;background:var(--card);border-radius:50%;font-size:1.25rem;font-weight:700;cursor:pointer;transition:all .15s;color:var(--text);display:flex;align-items:center;justify-content:center}.pizza-counter button:hover:not(:disabled),.loaf-counter button:hover:not(:disabled){background:var(--accent);color:#fff}.pizza-counter button:disabled,.loaf-counter button:disabled{opacity:.3;cursor:not-allowed}.pizza-count,.loaf-count{font-size:1.1rem;min-width:100px;text-align:center}.pizza-count strong,.loaf-count strong{font-size:1.5rem;color:var(--accent)}.dough-balls{color:var(--accent);font-weight:600}@keyframes foldDown{0%{opacity:0;transform:scaleY(.8)}to{opacity:1;transform:scaleY(1)}}.recipe-ingredients{display:flex;flex-wrap:wrap;gap:.5rem 1rem;padding:.75rem 1rem;background:var(--accent-bg);border-radius:8px;margin-bottom:1rem;font-size:.9rem}.recipe-ingredients strong{color:var(--accent)}.recipe-steps{list-style:none;counter-reset:step;margin:0;padding:0}.recipe-steps li{display:flex;align-items:flex-start;gap:.75rem;padding:.5rem 0;font-size:.9rem;color:var(--text-soft);border-bottom:1px solid var(--warm)}.recipe-steps li:last-child{border-bottom:none}.recipe-steps li:before{counter-increment:step;content:counter(step);flex-shrink:0;width:22px;height:22px;background:var(--accent);color:#fff;font-size:.75rem;font-weight:700;border-radius:50%;display:flex;align-items:center;justify-content:center}@media (min-width: 900px){main{max-width:800px;padding:3rem 2rem}.flour-input input{font-size:6rem;width:280px}.flour-unit{font-size:2rem}.ratio-row{padding:1.25rem 1.5rem;gap:1.25rem}.ratio-name{font-size:1rem}.ratio-result{font-size:1.5rem;min-width:80px}.total{padding:2rem 2.5rem}.total-value{font-size:4rem}.recipes{flex-direction:row;gap:1rem}.recipe{flex:1}.recipe-btn{flex-direction:column;text-align:center;padding:1.25rem;gap:.25rem}.recipe-icon{font-size:2rem}.recipe-name{flex:none}.recipe-chevron{display:none}.recipe-method{text-align:left}.recipe-ingredients{justify-content:center}}@media (max-width: 600px){html{font-size:16px}.header{padding:.75rem 1rem;flex-wrap:wrap;gap:.5rem}.header-actions{gap:.5rem}.support-btn{padding:.5rem .75rem;font-size:.8rem}.help-btn{padding:.4rem .6rem;font-size:.75rem}main{padding:1.5rem 1rem}.flour-input input{font-size:3rem;width:140px}.flour-unit{font-size:1.25rem}.ratio-row{grid-template-columns:auto 1fr auto;gap:.75rem;padding:1rem}.ratio-name{display:none}.ratio-row input[type=range]{grid-column:1 / -1;grid-row:2}.ratio-result{font-size:1.1rem;min-width:55px}.total{padding:1.25rem 1.5rem}.total-value{font-size:2.5rem}.recipe-btn{padding:.875rem 1rem}.recipe-icon{font-size:1.25rem}}@media (prefers-reduced-motion: reduce){*,*:before,*:after{animation-duration:.01ms!important;transition-duration:.01ms!important}}@media (prefers-contrast: high){:root{--accent: #C44000;--warm: #D0C4B4}}:focus-visible{outline:3px solid var(--accent);outline-offset:2px}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none}input[type=number]{-moz-appearance:textfield}.ratio-value input:focus-visible,.flour-input input:focus-visible{outline:none;box-shadow:0 0 0 3px var(--accent);border-radius:4px}
