/* Wink — winklamp.com
   One stylesheet, shared by the Swedish and English pages. */

:root{
  --bg:#14100C;
  --bg-2:#1D1813;
  --bg-3:#251E18;
  --line:#302720;
  --text:#F4EEE4;
  --text-2:#C9BFB1;
  --muted:#94897A;
  --amber:#E9A94B;
  --amber-deep:#C4761A;
  --red:#E2564A;
  --maxw:1080px;
  color-scheme:dark;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Familjen Grotesk",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 22px}
.narrow{max-width:620px}

h1,h2,h3{font-family:"Instrument Serif",Georgia,serif;font-weight:400;letter-spacing:-.01em;margin:0}
h1{font-size:clamp(2.5rem,9vw,4.6rem);line-height:1.02;text-wrap:balance}
h2{font-size:clamp(1.8rem,5.5vw,2.8rem);line-height:1.08;margin-bottom:.6rem;text-wrap:balance}
h3{font-size:1.25rem;line-height:1.25;margin-bottom:.3rem}
p{margin:0 0 1rem}
a{color:var(--amber);text-underline-offset:3px}
:focus-visible{outline:2px solid var(--amber);outline-offset:3px;border-radius:4px}

.eyebrow{
  font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--amber-deep);font-weight:600;margin:0 0 1rem;
}
.lead{font-size:1.2rem;color:var(--text-2);max-width:34ch}
.small{font-size:.92rem;color:var(--muted)}

/* ---------- header ---------- */
header.site{
  position:sticky;top:0;z-index:50;
  background:rgba(20,16,12,.86);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.bar{display:flex;align-items:center;justify-content:space-between;gap:1rem;height:68px}
.brand{display:flex;align-items:center;text-decoration:none;color:var(--amber)}
.brand .logo{height:36px;width:auto;display:block}
@media(min-width:600px){.brand .logo{height:42px}}
.brand:hover .logo{color:#F2BC72}
.navright{display:flex;align-items:center;gap:1rem}
.langlink{font-size:.82rem;color:var(--muted);text-decoration:none;letter-spacing:.04em}
.langlink:hover{color:var(--text)}

.btn{
  display:inline-block;background:var(--amber);color:#181208;
  font-weight:600;font-size:.95rem;padding:.65rem 1.15rem;border-radius:999px;
  text-decoration:none;border:0;cursor:pointer;transition:transform .15s ease,background .15s ease;
}
.btn:hover{background:#F2BC72;transform:translateY(-1px)}
.btn.ghost{background:transparent;color:var(--text);border:1px solid var(--line)}
.btn.ghost:hover{background:var(--bg-2);border-color:var(--muted)}
.btn.sm{padding:.5rem .95rem;font-size:.88rem}
.btn.big{padding:.9rem 1.6rem;font-size:1.05rem}
.btn[disabled]{opacity:.55;cursor:default;transform:none}

/* ---------- hero ---------- */
.hero{position:relative;overflow:hidden;padding:clamp(3rem,9vw,6rem) 0 clamp(2.5rem,6vw,4rem)}
.hero::before{
  content:"";position:absolute;left:50%;top:-18%;width:120vw;height:80vh;transform:translateX(-50%);
  background:radial-gradient(45% 45% at 50% 50%, rgba(233,169,75,.16), rgba(233,169,75,0) 70%);
  pointer-events:none;
}
/* Mobile order: headline, then the lamp, then the buttons — the demo is the
   most persuasive thing on the page and must not fall below the fold. */
.hero-grid{
  position:relative;display:grid;row-gap:2rem;
  grid-template-areas:"copy" "stage" "cta";
}
@media(min-width:900px){
  .hero-grid{
    grid-template-columns:1.05fr .95fr;
    grid-template-areas:"copy stage" "cta stage";
    column-gap:4rem;row-gap:1.6rem;align-items:center;
  }
}
.hero-copy{grid-area:copy}
.hero-cta{grid-area:cta}
.stage{grid-area:stage}
.hero .cta-row{display:flex;flex-wrap:wrap;gap:.7rem}
.hero .note{margin:1.1rem 0 0;font-size:.88rem;color:var(--muted)}

/* ---------- the lamp ---------- */
.stage{
  position:relative;display:flex;flex-direction:column;align-items:center;
  padding:1.6rem 1.2rem 1.2rem;border-radius:20px;
  background:linear-gradient(180deg,var(--bg-2),#171310);
  border:1px solid var(--line);
}
@media(min-width:900px){.stage{padding:2.4rem 1.5rem 1.8rem}}
.lampbtn{background:none;border:0;padding:0;cursor:pointer;display:block;border-radius:16px}
.lamp{width:104px;height:auto;display:block}
@media(min-width:900px){.lamp{width:132px}}
.lamp .shade{transition:fill .6s ease}
.lamp .halo{transition:opacity .6s ease}
.stage .caption{
  margin:1.1rem 0 0;text-align:center;font-size:.95rem;color:var(--text-2);
  min-height:4.4em;max-width:30ch;line-height:1.45;
}
@media(min-width:900px){.stage .caption{margin-top:1.4rem;min-height:5em}}
.stage .caption b{color:var(--text);font-weight:600}
.stage .hint{margin:.5rem 0 0;font-size:.76rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted)}
.lampbtn[data-called="true"] .lamp .shade{fill:var(--red)}
.lampbtn[data-called="true"] .lamp .halo{opacity:.55}
.lampbtn[data-called="true"] .lamp{animation:breathe 2.6s ease-in-out infinite}
@keyframes breathe{0%,100%{opacity:1}50%{opacity:.62}}
@media (prefers-reduced-motion:reduce){
  .lampbtn[data-called="true"] .lamp{animation:none}
  .lamp .shade,.lamp .halo{transition:none}
}

/* ---------- sections ---------- */
section{padding:clamp(3rem,7vw,5rem) 0}
section.tint{background:var(--bg-2);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}

.steps{display:grid;gap:1.6rem;margin-top:2.2rem;counter-reset:st}
@media(min-width:760px){.steps{grid-template-columns:repeat(3,1fr);gap:2rem}}
.step{counter-increment:st}
.step .n{
  display:inline-flex;align-items:center;justify-content:center;
  width:30px;height:30px;border-radius:50%;border:1px solid var(--amber-deep);
  color:var(--amber);font-size:.85rem;font-weight:600;margin-bottom:.9rem;
}
.step .n::before{content:counter(st)}
.step h3{font-family:"Familjen Grotesk",sans-serif;font-size:1.02rem;font-weight:600;margin-bottom:.35rem}
.step p{color:var(--text-2);font-size:.96rem;margin:0}

.kit{list-style:none;padding:0;margin:2rem 0 0;display:grid;gap:.1rem}
@media(min-width:700px){.kit{grid-template-columns:1fr 1fr;gap:.1rem 2.5rem}}
.kit li{display:flex;gap:.9rem;padding:.85rem 0;border-bottom:1px solid var(--line)}
.kit .qty{
  flex:0 0 auto;font-variant-numeric:tabular-nums;font-weight:600;color:var(--amber);
  font-size:.95rem;min-width:2.6em;
}
.kit .what{font-size:.96rem}
.kit .what b{display:block;font-weight:600;color:var(--text)}
.kit .what span{color:var(--muted);font-size:.88rem}

/* ---------- price ---------- */
.pricebox{
  margin-top:2rem;padding:2rem 1.8rem;border-radius:18px;
  background:var(--bg-3);border:1px solid var(--line);
}
@media(min-width:700px){.pricebox{display:flex;align-items:center;gap:3rem}}
.pricebox .fig{flex:0 0 auto}
.pricebox .amount{font-family:"Instrument Serif",Georgia,serif;font-size:3.4rem;line-height:1;display:block}
.pricebox .per{font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted)}
.pricebox .copy{margin-top:1.4rem}
@media(min-width:700px){.pricebox .copy{margin-top:0}}
.pricebox .copy p:last-child{margin-bottom:0}
.pill{
  display:inline-block;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;font-weight:600;
  color:var(--amber);border:1px solid var(--amber-deep);border-radius:999px;padding:.2rem .6rem;margin-bottom:1rem;
}

/* ---------- form ---------- */
form.pilot{margin-top:2rem;display:grid;gap:1rem}
@media(min-width:700px){form.pilot{grid-template-columns:1fr 1fr}}
.field{display:flex;flex-direction:column;gap:.35rem}
.field.wide{grid-column:1/-1}
label{font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);font-weight:600}
input,textarea,select{
  font-family:inherit;font-size:1rem;color:var(--text);
  background:var(--bg-2);border:1px solid var(--line);border-radius:10px;
  padding:.75rem .85rem;width:100%;
}
input:focus,textarea:focus,select:focus{border-color:var(--amber-deep);outline:none;box-shadow:0 0 0 3px rgba(233,169,75,.14)}
textarea{min-height:96px;resize:vertical}
.hp{position:absolute;left:-9999px}
.formfoot{grid-column:1/-1;display:flex;flex-wrap:wrap;align-items:center;gap:1rem;margin-top:.4rem}
.formmsg{grid-column:1/-1;font-size:.95rem;padding:.85rem 1rem;border-radius:10px;display:none}
.formmsg.ok{display:block;background:rgba(233,169,75,.1);border:1px solid var(--amber-deep);color:var(--text)}
.formmsg.err{display:block;background:rgba(226,86,74,.1);border:1px solid var(--red);color:var(--text)}

/* ---------- footer ---------- */
footer.site{border-top:1px solid var(--line);padding:2.5rem 0 3.5rem;color:var(--muted);font-size:.9rem}
.footgrid{display:flex;flex-wrap:wrap;gap:1.5rem 3rem;justify-content:space-between;align-items:flex-start}
footer.site a{color:var(--text-2);text-decoration:none}
footer.site a:hover{color:var(--amber)}
footer.site .fcol p{margin:0 0 .3rem}

/* ---------- thanks page ---------- */
.thanks{min-height:70vh;display:flex;flex-direction:column;justify-content:center;text-align:center}
.thanks .lamp{margin:0 auto 2rem}
.thanks .brand{justify-content:center}
