:root {
  --paper: #FFFFFF;
  --ink: #0A0A0A;
  --grey: #5E5E5E;
  --line: #E4E4E4;
  --soft: #F3F3F3;
  --r: 4px;
  --display: "Archivo Black", "Arial Black", system-ui, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
  interpolate-size: allow-keywords;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 68px; }  /* sub meniul lipit sus */
body { margin: 0; background: var(--paper); color: var(--ink); font: 17px/1.55 "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* nav */
nav { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
nav .wrap { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--display); font-size: 19px; letter-spacing: -0.02em; }
.brand img { width: 44px; height: 44px; object-fit: contain; transition: transform .6s var(--ease); }
.brand:hover img { transform: rotate(-18deg) scale(1.08); }
.links { margin-left: auto; display: flex; gap: 24px; }
.links a { text-decoration: none; font-weight: 600; font-size: 15px; background: linear-gradient(var(--ink), var(--ink)) 0 100% / 0 2px no-repeat; padding-bottom: 2px; transition: background-size .3s var(--ease); }
.links a:hover, .links a[aria-current] { background-size: 100% 2px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap; text-decoration: none; font-weight: 600; border-radius: var(--r); padding: 14px 24px; border: 2px solid var(--ink); transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .15s, color .15s; }
.btn:hover { transform: translate(-3px, -3px); box-shadow: 3px 3px 0 var(--ink); }
.btn:active { transform: translate(0, 0); box-shadow: none; }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { box-shadow: 3px 3px 0 #9A9A9A; }
.btn-line { background: var(--paper); color: var(--ink); }
.btn svg { width: 18px; height: 18px; fill: currentColor; }
nav .btn { padding: 9px 16px; font-size: 15px; }

h1, h2, .price, .num { font-family: var(--display); font-weight: 400; }
h1 { font-size: clamp(46px, 7vw, 92px); line-height: .95; letter-spacing: -0.04em; margin: 0 0 24px; }
h2 { font-size: clamp(34px, 4.6vw, 58px); letter-spacing: -0.035em; line-height: 1; margin: 0 0 48px; }
.lead { font-size: 20px; color: var(--grey); max-width: 38ch; margin: 0 0 36px; }
section { padding: 96px 0; border-top: 1px solid var(--line); }

/* before/after shots */
.shot { border: 2px solid var(--ink); border-radius: var(--r); overflow: hidden; background: #1e1f22; }
.shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .8s var(--ease); }
.label { position: absolute; top: -13px; left: 14px; z-index: 1; background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r); padding: 2px 10px; font: 600 13px "Archivo", sans-serif; text-transform: uppercase; letter-spacing: .04em; }
.label.dark { background: var(--ink); color: var(--paper); }

/* footer */
footer { border-top: 2px solid var(--ink); padding: 64px 0 28px; font-size: 15px; }
.foot { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.foot p { color: var(--grey); max-width: 34ch; margin: 14px 0 20px; }
.foot h4 { margin: 0 0 16px; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot ul a { text-decoration: none; color: var(--grey); transition: color .15s; }
.foot ul a:hover { color: var(--ink); }
.socials { display: flex; gap: 10px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: var(--r); transition: transform .2s var(--ease), background .15s, color .15s; }
.socials a:hover { background: var(--ink); color: var(--paper); transform: translateY(-4px) rotate(-6deg); }
.socials svg { width: 19px; height: 19px; fill: currentColor; }
.foot-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--grey); font-size: 14px; }

:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

/* animations */
@keyframes rise { from { opacity: 0; transform: translateY(28px); } }
@keyframes float { 50% { transform: translateY(-10px); } }
@keyframes pop { from { opacity: 0; transform: scale(.6) rotate(-8deg); } }
@keyframes orbit { 50% { transform: rotate(-7deg) translateY(-8px); } }

.intro > * { animation: rise .9s var(--ease) backwards; }
.intro > :nth-child(2) { animation-delay: .12s; }
.intro > :nth-child(3) { animation-delay: .24s; }
.intro > :nth-child(4) { animation-delay: .36s; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .links { display: none; }
  nav .btn { margin-left: auto; }
  .foot { grid-template-columns: 1fr 1fr; }
  .foot > :first-child { grid-column: 1 / -1; }
  section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .brand span { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
