/* Ljusrum Foto, isgrå bas, bränd orange som ljusfärg. A3 galleri-lookbook. */

:root {
  --bas: #f2f4f5;
  --yta: #e3e8ea;
  --ink: #1b2226;
  --ink2: #4a565c;
  --acc: #c2410c;        /* ytor, linjer, ikoner */
  --acc-txt: #9a3412;    /* accent i text, 6,6:1 mot basen */
  --acc-ljus: #f97316;   /* accent i text mot mörk botten, 5,8:1 */
  --linje: #ccd4d7;
  --linje2: #a3b0b5;
  --mork: #1b2226;
  --mork2: #131a1d;
  --ljus-txt: #e8edef;
  --ljus-txt2: #9aa8ae;
  --wrap: 1240px;
  --pad: clamp(20px, 5vw, 56px);
  --sek: clamp(64px, 9vw, 132px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bas);
  color: var(--ink);
  font-family: Rubik, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, .4vw + .92rem, 1.075rem);
  line-height: 1.62;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
img { display: block; height: auto; }

h1, h2, h3 { margin: 0; line-height: 1.15; overflow-wrap: break-word; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--ink);
  color: var(--bas);
  padding: 14px 20px;
  text-decoration: none;
}
.skip:focus { left: 8px; top: 8px; }

:focus-visible {
  outline: 3px solid var(--acc);
  outline-offset: 3px;
}

/* ---------- typografi ---------- */

.oi, h1, h2, .pris-tal, .fot-namn, .brand-namn {
  font-family: Oi, Rubik, Georgia, serif;
  font-weight: 400;
  letter-spacing: -.005em;
}

h1 {
  font-size: clamp(2.5rem, 7.6vw, 5.4rem);
  line-height: .94;
  margin: .18em 0 .42em;
}

h2 {
  font-size: clamp(1.7rem, 3.3vw, 2.6rem);
  line-height: 1.04;
}

h3 {
  font-family: Rubik, sans-serif;
  font-weight: 600;
  font-size: 1.14rem;
  letter-spacing: -.005em;
}

.eyebrow, .kicker, .setup-nr, .steg-nr, .datablock-top {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--acc-txt);
}

.kicker-ljus { color: var(--acc-ljus); }

.lede {
  font-size: clamp(1.05rem, .5vw + .95rem, 1.22rem);
  font-weight: 300;
  line-height: 1.55;
  max-width: 46ch;
  color: var(--ink);
}

.sek-topp { max-width: 62ch; margin-bottom: clamp(30px, 4vw, 54px); }
.sek-topp-smal { max-width: 46ch; }
.sek-topp h2 { margin: .3em 0 .5em; }
.sek-lede { color: var(--ink2); font-weight: 300; font-size: 1.06rem; max-width: 56ch; }

/* ---------- knappar ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 26px;
  background: var(--acc);
  color: #fff;
  font-weight: 500;
  font-size: .98rem;
  letter-spacing: .01em;
  text-decoration: none;
  border: 1.5px solid var(--acc);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { background: #a3360a; border-color: #a3360a; }

.btn-line {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-line:hover { background: var(--ink); color: var(--bas); border-color: var(--ink); }

.btn-ljus { background: var(--acc); border-color: var(--acc); color: #fff; }
.btn-kant {
  background: transparent;
  color: var(--ljus-txt);
  border-color: var(--ljus-txt2);
}
.btn-kant:hover { background: var(--ljus-txt); color: var(--mork); border-color: var(--ljus-txt); }

/* ---------- header ---------- */

.head {
  position: sticky;
  top: 0;
  z-index: 120;
  background: var(--bas);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.head.scrolled { border-bottom-color: var(--linje); }

.head-in {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-height: 44px;
}
.brand-mark svg { width: 30px; height: 30px; display: block; fill: none; stroke: var(--acc); stroke-width: 2; }
.brand-mark svg circle { fill: var(--acc); stroke: none; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand-namn { font-size: 1.28rem; letter-spacing: -.01em; }
.brand-sub { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink2); margin-top: 3px; }

.nav ul { display: flex; align-items: center; gap: 4px; }
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  font-size: .95rem;
  text-decoration: none;
  color: var(--ink);
  transition: color .16s ease;
}
.nav a:hover { color: var(--acc-txt); }
.nav-cta a {
  background: var(--ink);
  color: var(--bas);
  margin-left: 8px;
  padding: 0 20px;
}
.nav-cta a:hover { background: var(--acc); color: #fff; }

.burger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--linje);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- hero ---------- */

.hero { padding: clamp(38px, 6vw, 84px) 0 clamp(40px, 5vw, 76px); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: clamp(30px, 4.5vw, 72px);
  align-items: end;
}

.hero-txt h1 { max-width: 12ch; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 36px);
}

.datablock {
  border: 1px solid var(--linje);
  background: var(--yta);
  padding: clamp(18px, 2vw, 26px);
}
.datablock-top { margin-bottom: 12px; }
.datablock-fot {
  margin-top: 14px;
  font-size: .82rem;
  color: var(--ink2);
}

.data { display: grid; }
.data-rad {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-top: 1px solid var(--linje);
}
.data-rad:first-child { border-top: 0; }
.data dt {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink2);
  white-space: nowrap;
}
.data dd { font-weight: 500; text-align: right; font-size: .98rem; }
.data dd a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  border-bottom: 1px solid var(--linje2);
}
.data dd a:hover { border-bottom-color: var(--acc); }
.data-pris dd { color: var(--acc-txt); font-weight: 600; }

.data-mork { border: 1px solid #35424a; padding: clamp(16px, 2vw, 24px); }
.data-mork .data-rad { border-top-color: #35424a; }
.data-mork dt { color: var(--ljus-txt2); }
.data-mork dd { color: var(--ljus-txt); }

/* ---------- portfolio ---------- */

.portfolio { padding-bottom: var(--sek); }

.band { margin: 0 0 clamp(46px, 6vw, 82px); position: relative; }
.band .fig-btn { aspect-ratio: 16 / 9; }
.band .fig-btn img { object-position: 50% 62%; }

.band-studio img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }

.chip {
  position: absolute;
  left: var(--pad);
  bottom: 0;
  transform: translateY(50%);
  background: var(--mork);
  color: var(--ljus-txt);
  font-size: .8rem;
  letter-spacing: .04em;
  padding: 9px 16px;
}

.fig-btn {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: var(--yta);
  cursor: zoom-in;
  overflow: hidden;
  line-height: 0;
}
.fig-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
  filter: saturate(.94) contrast(1.02);
  transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .4s ease;
}
.fig-btn:hover img { transform: scale(1.028); filter: saturate(1) contrast(1.02); }

.galleri {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 1.7vw, 24px);
}
.fig { margin: 0; }
.fig figcaption {
  margin-top: 10px;
  font-size: .82rem;
  letter-spacing: .03em;
  color: var(--ink2);
}
.g-a { grid-column: span 7; }
.g-b { grid-column: span 5; }
.g-c { grid-column: span 12; }
.g-d, .g-e, .g-f { grid-column: span 4; }
.g-g { grid-column: span 5; }
.g-h { grid-column: span 7; }
.g-i { grid-column: span 12; }

.g-a .fig-btn { aspect-ratio: 4 / 5; }
.g-b .fig-btn { aspect-ratio: 3 / 4; }
.g-c .fig-btn { aspect-ratio: 16 / 7; }
.g-c img { object-position: 50% 22%; }
.g-d .fig-btn, .g-e .fig-btn, .g-f .fig-btn { aspect-ratio: 3 / 4; }
.g-g .fig-btn { aspect-ratio: 3 / 4; }
.g-h .fig-btn { aspect-ratio: 3 / 2; }
.g-g img, .g-h img { object-position: 50% 50%; }
/* eventbilden ar tagen 16:9 med luft over talaren. Beskaren till samma
   panoramaband som g-c, men biasad nedat sa publikens siluetter blir kvar. */
.g-i .fig-btn { aspect-ratio: 16 / 7; }
.g-i img { object-position: 50% 58%; }

/* ---------- signatur: ljussättningen ---------- */

.ljus { padding: var(--sek) 0; background: var(--bas); }

.tecken {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 15px 0;
  border-top: 1px solid var(--linje);
  border-bottom: 1px solid var(--linje);
}
.tecken li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  letter-spacing: .05em;
  color: var(--ink2);
}
.tecken svg { width: 26px; height: 22px; flex: none; }
.t-fyll { fill: var(--ink); }
.t-acc { fill: none; stroke: var(--acc); stroke-width: 2; }
.t-tjock { stroke-width: 4.5; stroke-linecap: round; }
.t-ink { fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linejoin: round; }
.t-kagla { fill: var(--acc); opacity: .3; }

.setup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  column-gap: clamp(26px, 4vw, 64px);
  row-gap: clamp(22px, 3vw, 36px);
  align-items: stretch;
  padding: clamp(34px, 5vw, 66px) 0;
  border-bottom: 1px solid var(--linje);
}
.setup-vanster {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.6vw, 34px);
}

.setup-txt h3 {
  font-family: Oi, Rubik, Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.7vw, 2.15rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  margin-bottom: .55em;
}
.setup-txt > p { color: var(--ink2); font-weight: 300; }

.setup-data { margin-top: clamp(16px, 2vw, 24px); border-top: 1px solid var(--linje); }
.setup-data > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--linje);
}
.setup-data dt {
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink2);
  white-space: nowrap;
}
.setup-data dd { font-size: .92rem; font-weight: 500; text-align: right; }

.setup-plan {
  background: var(--yta);
  border: 1px solid var(--linje);
  padding: clamp(13px, 1.6vw, 20px);
}
.setup-nr { margin-bottom: 6px; }

.setup-bild {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  align-self: stretch;
  min-height: clamp(320px, 34vw, 560px);
}
.setup-bild img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 24%;
  background: var(--yta);
}
.setup-bild figcaption {
  margin-top: 10px;
  font-size: .82rem;
  letter-spacing: .03em;
  color: var(--ink2);
}

.ljus-fot {
  margin-top: clamp(22px, 3vw, 34px);
  font-size: .95rem;
  color: var(--ink2);
  max-width: 58ch;
}

/* ritningarnas symbolspråk */
.plan { display: block; width: 100%; height: auto; }
.plan path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.d-kagla { fill: var(--acc); opacity: .13; }
.d-motiv { fill: var(--ink); }
.d-sol { fill: none; stroke: var(--acc); stroke-width: 2.2; }
.d-flare { fill: none; stroke: var(--acc); stroke-width: 1.5; opacity: .5; }
.d-lampa { fill: var(--bas); stroke: var(--acc); stroke-width: 2.2; }
.d-lampa-del { fill: none; stroke: var(--acc); stroke-width: 1.2; }
.d-vagg { stroke: var(--ink); stroke-width: 2.6; }
.d-horisont { stroke: var(--ink); stroke-width: 1.6; }
.d-glas { stroke: var(--linje2); stroke-width: 1.4; }
.d-hatch { stroke: var(--linje2); stroke-width: 1.2; }
.d-stral { stroke: var(--acc); stroke-width: 1.8; }
.d-reflex, .d-kant { stroke: var(--acc); stroke-width: 5; }
.d-vand { stroke: var(--ink); stroke-width: 2.4; }
.d-kam { stroke: var(--ink); stroke-width: 1.8; }
.d-sikt { stroke: var(--linje2); stroke-width: 1.2; stroke-dasharray: 5 5; }
.d-txt {
  font-family: Rubik, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  fill: var(--ink2);
}

/* ---------- uppdrag ---------- */

.uppdrag { padding: var(--sek) 0; background: var(--yta); }

.kort-rad {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 32px);
}
.kort {
  border-top: 2px solid var(--acc);
  padding: clamp(18px, 2vw, 24px) 0 0;
}
.ikon {
  width: 42px;
  height: 42px;
  display: block;
  fill: none;
  stroke: var(--acc);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 16px;
}
.ikon-tunn { stroke-width: 1.3; }
.kort h3 { margin-bottom: .5em; }
.kort p { color: var(--ink2); font-size: .96rem; font-weight: 300; }

/* ---------- process ---------- */

.process { padding: var(--sek) 0; }

.steg-rad {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.steg {
  position: relative;
  padding: clamp(22px, 2.4vw, 30px);
}
.steg::before, .steg::after,
.steg-horn::before, .steg-horn::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--acc);
}
.steg::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.steg::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.steg-horn::before { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.steg-horn::after { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.steg h3 { margin: .35em 0 .5em; }
.steg > p:last-child { color: var(--ink2); font-size: .96rem; font-weight: 300; }

/* ---------- priser ---------- */

.priser { padding: var(--sek) 0; background: var(--yta); }

.pris-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.pris-rad {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(18px, 2vw, 24px) 0;
  border-top: 1px solid var(--linje2);
}
.pris-rad:first-child { border-top: 2px solid var(--ink); }
.pris-lista .pris-rad:last-of-type { border-bottom: 1px solid var(--linje2); }
.pris-namn h3 { font-size: 1.2rem; margin-bottom: .3em; }
.pris-namn p { color: var(--ink2); font-size: .94rem; font-weight: 300; max-width: 42ch; }
.pris-tal {
  font-family: Oi, Rubik, Georgia, serif;
  font-size: clamp(1.3rem, 2.4vw, 1.95rem);
  line-height: 1;
  white-space: nowrap;
  color: var(--acc-txt);
}
.pris-fran {
  font-family: Rubik, sans-serif;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink2);
  display: block;
  margin-bottom: 5px;
}
.pris-moms { margin-top: 18px; font-size: .86rem; color: var(--ink2); }

.ingar {
  background: var(--bas);
  border: 1px solid var(--linje);
  padding: clamp(22px, 2.4vw, 30px);
}
.ingar h3 { margin-bottom: 16px; }
.ingar ul { display: grid; gap: 11px; }
.ingar li {
  position: relative;
  padding-left: 28px;
  font-size: .95rem;
  color: var(--ink2);
  font-weight: 300;
}
.ingar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--acc);
  border-bottom: 2px solid var(--acc);
  transform: rotate(-45deg);
}
.ingar-fot { margin-top: 18px; font-size: .86rem; color: var(--ink2); }

/* ---------- omdömen ---------- */

.omdomen { padding: var(--sek) 0; }

.citat-rad {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 48px);
}
.citat { margin: 0; border-top: 2px solid var(--acc); padding-top: clamp(18px, 2vw, 26px); }
.citat blockquote { margin: 0; }
.citat p {
  font-size: clamp(1.06rem, 1.1vw + .85rem, 1.32rem);
  font-weight: 300;
  line-height: 1.5;
}
.citat figcaption {
  margin-top: 18px;
  font-weight: 500;
  font-size: .95rem;
}
.citat figcaption span {
  display: block;
  font-weight: 400;
  font-size: .86rem;
  color: var(--ink2);
  margin-top: 2px;
}

/* ---------- boka ---------- */

.boka {
  background: var(--mork);
  color: var(--ljus-txt);
  padding: var(--sek) 0;
}
.boka-grid {
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(0, 1.25fr) minmax(0, .85fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}
.boka-portratt { margin: 0; }
.boka-portratt img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 18%;
}
.boka-portratt figcaption {
  margin-top: 10px;
  font-size: .82rem;
  letter-spacing: .03em;
  color: var(--ljus-txt2);
}
.boka h2 { margin: .3em 0 .5em; max-width: 14ch; }
.boka-txt > p { color: var(--ljus-txt2); max-width: 48ch; font-weight: 300; }
.boka-knappar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(22px, 3vw, 32px);
}

/* ---------- footer ---------- */

.fot {
  background: var(--mork2);
  color: var(--ljus-txt);
  padding: clamp(44px, 6vw, 76px) 0 32px;
}
.fot-topp { border-bottom: 1px solid #2b353a; padding-bottom: clamp(20px, 2.5vw, 30px); }
.fot-namn { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1; }
.fot-rad { margin-top: 10px; color: var(--ljus-txt2); font-size: .95rem; }

.fot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 48px);
  padding: clamp(26px, 3vw, 40px) 0;
}
.fot-grid h3 {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--acc-ljus);
  font-weight: 500;
  margin-bottom: 12px;
}
.fot-grid p { color: var(--ljus-txt2); font-size: .95rem; margin-bottom: 4px; }
.fot-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
  color: var(--ljus-txt);
  text-decoration: none;
  border-bottom: 1px solid #3a464c;
}
.fot-grid a:hover { border-bottom-color: var(--acc-ljus); }
.fot-demo {
  border-top: 1px solid #2b353a;
  padding-top: 22px;
  font-size: .8rem;
  color: var(--ljus-txt2);
}

/* ---------- ljusbord (bildvisning) ---------- */

.ljusbord {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.ljusbord[hidden] { display: none; }
.lb-bak { position: absolute; inset: 0; background: rgba(12, 16, 18, .99); border: 0; }
.lb-in {
  position: relative;
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lb-bild {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  width: auto;
  margin-inline: auto;
  object-fit: contain;
  background: #20282c;
}
.lb-txt {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  justify-content: space-between;
  color: var(--ljus-txt);
  font-size: .88rem;
  letter-spacing: .04em;
}
.lb-rakn { color: var(--ljus-txt2); }

.lb-knapp {
  position: absolute;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(232, 237, 239, .35);
  background: rgba(19, 26, 29, .8);
  color: var(--ljus-txt);
  cursor: pointer;
}
.lb-knapp svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; }
.lb-knapp:hover { background: var(--acc); border-color: var(--acc); color: #fff; }
.lb-stang { top: clamp(12px, 2vw, 22px); right: clamp(12px, 2vw, 22px); }
.lb-forra { left: clamp(8px, 2vw, 22px); top: 50%; transform: translateY(-50%); }
.lb-nasta { right: clamp(8px, 2vw, 22px); top: 50%; transform: translateY(-50%); }

body.ljusbord-oppen { overflow: hidden; }

/* ---------- rörelse ---------- */

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.js .reveal.in { opacity: 1; transform: none; }
.js .draw path { transition: stroke-dashoffset 1.9s cubic-bezier(.4, .05, .2, 1); }
.js .reveal .d-fade { opacity: 0; transition: opacity .8s ease .5s; }
.js .reveal.in .d-fade { opacity: 1; }

/* ---------- responsivt ---------- */

@media (max-width: 1080px) {
  .kort-rad { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steg-rad { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav a { padding: 0 10px; font-size: .92rem; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 82px; }

  .burger { display: flex; }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 74px;
    z-index: 110;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    background: var(--bas);
    border-bottom: 1px solid var(--linje);
    padding: 6px var(--pad) 26px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  }
  body.meny-oppen .nav {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: opacity .22s ease, transform .22s ease, visibility 0s;
  }
  body.meny-oppen { overflow: hidden; }

  .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a {
    display: flex;
    width: 100%;
    min-height: 56px;
    padding: 0 2px;
    font-size: 1.06rem;
    border-bottom: 1px solid var(--linje);
  }
  .nav-cta a {
    margin: 16px 0 0;
    justify-content: center;
    border-bottom: 0;
    min-height: 52px;
  }

  body.meny-oppen .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.meny-oppen .burger span:nth-child(2) { opacity: 0; }
  body.meny-oppen .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-txt h1 { max-width: none; }
  .lede { max-width: 58ch; }

  .setup { grid-template-columns: minmax(0, 1fr); }
  .setup-bild { min-height: 0; display: block; }
  .setup-bild img { aspect-ratio: 4 / 5; height: auto; }

  .pris-grid { grid-template-columns: minmax(0, 1fr); }
  .boka-grid { grid-template-columns: minmax(0, 1fr); }
  .boka-portratt { max-width: 300px; }
  .fot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .g-a, .g-b, .g-d, .g-e, .g-f, .g-g { grid-column: span 6; }
  .g-h { grid-column: span 12; }
  .g-c .fig-btn, .g-i .fig-btn { aspect-ratio: 16 / 9; }
}

@media (max-width: 640px) {
  .g-a, .g-b, .g-c, .g-d, .g-e, .g-f, .g-g, .g-h, .g-i { grid-column: span 12; }
  .g-a .fig-btn, .g-b .fig-btn { aspect-ratio: 4 / 5; }
  .g-c .fig-btn, .g-i .fig-btn { aspect-ratio: 4 / 3; }
  .band .fig-btn { aspect-ratio: 4 / 5; }
  .band .fig-btn img { object-position: 50% 28%; }

  .kort-rad, .steg-rad, .citat-rad { grid-template-columns: minmax(0, 1fr); }
  .fot-grid { grid-template-columns: minmax(0, 1fr); }
  .tecken { gap: 8px 20px; }
  .pris-rad { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pris-fran { display: inline; margin: 0 6px 0 0; }
  .lb-bild { max-height: calc(100vh - 210px); }
  .lb-forra { left: 10px; top: auto; bottom: 10px; transform: none; }
  .lb-nasta { right: 10px; top: auto; bottom: 10px; transform: none; }
}

@media (max-width: 460px) {
  .setup-data > div { flex-direction: column; gap: 2px; align-items: flex-start; }
  .setup-data dd { text-align: left; }
  .hero-cta .btn, .boka-knappar .btn { flex: 1 1 100%; }
  .brand-namn { font-size: 1.14rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .js .reveal .d-fade { opacity: 1; transition: none; }
  .js .draw path { transition: none; stroke-dasharray: none !important; stroke-dashoffset: 0 !important; }
  .fig-btn img { transition: none; }
  .fig-btn:hover img { transform: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
