/* Kulör Måleri, No Frame demo
   Arketyp A8 soft-organic. Ljus, mjuk, kulören är hjälten.
   Signatur: kulörkartan. Färgprovs-swatcharna återkommer som systemelement
   genom hela sidan, och sektionerna möts i torra penseldragskanter. */

*,
*::before,
*::after { box-sizing: border-box; }

:root {
  /* Bas */
  --kalk: #faf7f2;
  --kalk-2: #f5efe6;
  --kalk-3: #f0e8dc;
  --kalk-4: #e8dccb;
  --ink: #33302b;
  --ink-deep: #2a2722;
  --ink-plate: #372f28;
  --muted: #6b6259;
  --sand: #cdc3b6;
  --dash: #d7cbba;

  /* Kulörsystemet, de fem proven */
  --terra: #c96f4a;
  --ockra: #d9a23f;
  --salvia: #8a9b7d;
  --dimma: #7d94a8;
  --rosa: #c4948e;

  /* Textsäkra varianter av samma kulörer */
  --terra-ink: #9d4a27;
  --ockra-ink: #7d5a10;
  --salvia-ink: #55654a;
  --dimma-ink: #4a5e70;
  --rosa-ink: #8a5750;

  /* Plattor */
  --terra-plate: #f7e4d9;
  --ockra-plate: #faeed6;
  --salvia-plate: #e8ecdf;
  --dimma-plate: #e6edf2;
  --rosa-plate: #f8ece9;
  --salvia-band: #9fae94;
  --salvia-card: #eef1e8;

  --terra-btn: #a8512c;
  --terra-btn-h: #8f4423;

  --r-xl: 30px;
  --r-lg: 24px;
  --r-md: 20px;
  --r-chip: 12px;

  --head-h: 62px;
  --pad-sec: clamp(58px, 7vw, 104px);
  --brush-h: clamp(26px, 3.4vw, 52px);

  --fw: clamp(86px, 13vw, 124px);
  --fh: calc(var(--fw) * 1.75);

  --ease: cubic-bezier(.2, .65, .25, 1);
}

@media (min-width: 900px) {
  :root { --head-h: 74px; }
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--kalk);
  color: var(--ink);
  font-family: 'Work Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

h1, h2, h3 {
  margin: 0;
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  color: var(--ink);
  overflow-wrap: break-word;
  text-wrap: balance;
  letter-spacing: -.012em;
}

p { margin: 0; overflow-wrap: break-word; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

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

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

section[id] { scroll-margin-top: calc(var(--head-h) + 26px); }


/* ---------------------------------------------------------------- knappar */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 999px;
  background: none;
  color: inherit;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}

.btn-lg { min-height: 56px; padding: 15px 30px; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }

.btn-terra { background: var(--terra-btn); color: #fffaf4; }
.btn-terra:hover { background: var(--terra-btn-h); }

.btn-soft { background: var(--kalk); color: var(--ink); }
.btn-soft:hover { background: var(--kalk-4); }

.btn-light { background: var(--kalk); color: var(--ink); }
.btn-light:hover { background: #fff; }

.btn-plate { background: rgba(250, 247, 242, .13); color: var(--kalk); }
.btn-plate:hover { background: rgba(250, 247, 242, .22); }


/* ------------------------------------------------------------- kulörremsa */

.kulorremsa { display: flex; height: 5px; }
.kulorremsa i { flex: 1; display: block; }
.kulorremsa-foot { height: 7px; }


/* ------------------------------------------------------------------ header */

.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--kalk-2);
  transition: background-color .35s var(--ease);
}

.site-head.scrolled { background: var(--kalk-3); }

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--head-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  flex: none;
}

.brand-mark { display: inline-flex; align-items: flex-end; gap: 3px; }
.brand-mark i { display: block; width: 8px; border-radius: 3px; }
.brand-mark i:nth-child(1) { height: 17px; background: var(--salvia); }
.brand-mark i:nth-child(2) { height: 24px; background: var(--ockra); }
.brand-mark i:nth-child(3) { height: 17px; background: var(--terra); }

.brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.24rem;
  line-height: 1.1;
  letter-spacing: -.015em;
  font-variation-settings: 'opsz' 24, 'SOFT' 50, 'WONK' 1;
}

.brand-sub {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-variation-settings: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}

.site-nav ul { display: flex; align-items: center; gap: clamp(2px, 1vw, 14px); }

.site-nav ul a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding-inline: 9px;
  font-size: .95rem;
  color: var(--ink);
  transition: color .25s var(--ease);
}

.site-nav ul a:hover { color: var(--terra-ink); }

.nav-cta { min-height: 44px; padding: 10px 20px; font-size: .93rem; }

.menu-btn {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  min-width: 44px;
  padding: 8px 10px;
  border: 0;
  background: none;
  color: var(--ink);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
}

.menu-bars { display: grid; gap: 4px; width: 20px; }

.menu-bars i {
  display: block;
  height: 2px;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s ease;
}

.menu-bars i:nth-child(1) { background: var(--terra); }
.menu-bars i:nth-child(2) { background: var(--ockra); }
.menu-bars i:nth-child(3) { background: var(--salvia); }

body.menu-open .menu-bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-bars i:nth-child(2) { opacity: 0; }
body.menu-open .menu-bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 899px) {
  .menu-btn { display: inline-flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 14px clamp(20px, 5vw, 48px) 24px;
    background: var(--kalk-3);
  }

  body.menu-open .site-nav { display: flex; }

  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }

  .site-nav ul li + li { background: linear-gradient(var(--dash), var(--dash)) top left / 100% 1px no-repeat; }

  .site-nav ul a {
    justify-content: flex-start;
    min-height: 54px;
    padding-inline: 2px;
    font-size: 1.06rem;
  }

  .nav-cta { min-height: 52px; font-size: 1rem; }
}


/* -------------------------------------------------------- penseldragskant */

.brush {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: var(--brush-h);
  transform: translateY(-100%);
  z-index: 2;
  pointer-events: none;
  display: block;
}

.brush-kalk { fill: var(--kalk); }
.brush-kalk3 { fill: var(--kalk-3); }
.brush-salvia { fill: var(--salvia-band); }
.brush-ink { fill: var(--ink-plate); }
.brush-foot { fill: var(--kalk-3); }


/* -------------------------------------------------------------------- hero */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--kalk-2);
  padding-block: clamp(34px, 5vw, 72px) clamp(76px, 9vw, 130px);
}

.hero-blob {
  position: absolute;
  z-index: 0;
  top: -14%;
  right: -12%;
  width: min(660px, 84vw);
  aspect-ratio: 1 / .94;
  border-radius: 46% 54% 38% 62% / 55% 42% 58% 45%;
  background: radial-gradient(closest-side, rgba(196, 148, 142, .34), rgba(196, 148, 142, 0));
  pointer-events: none;
}

.hero-grid { position: relative; z-index: 1; display: grid; gap: clamp(40px, 6vw, 64px); }

@media (min-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1.04fr .96fr;
    gap: clamp(44px, 5vw, 76px);
    align-items: center;
  }
}

.taglist { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }

.taglist li {
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--kalk);
  color: var(--muted);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
}

.hero-title {
  font-size: clamp(2.3rem, 6.1vw, 4.15rem);
  line-height: 1.04;
  font-weight: 500;
  font-variation-settings: 'opsz' 120, 'SOFT' 60, 'WONK' 1;
  margin-bottom: 24px;
}

.hero-title em {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  color: var(--terra-ink);
}

.hero-lead {
  max-width: 34em;
  font-size: clamp(1.04rem, 1.4vw, 1.17rem);
  color: var(--muted);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

@media (max-width: 519px) { .hero-cta .btn { flex: 1 1 100%; } }

.hero-fine { margin-top: 18px; font-size: .87rem; color: var(--muted); max-width: 40em; }


/* --------------------------------------------------------- kulörsolfjäder */

.hero-media { position: relative; }

.fan-wrap { position: relative; z-index: 2; }

.fan {
  position: relative;
  height: calc(var(--fh) + 12px);
  margin-inline: auto;
  max-width: 100%;
}

.fan-card {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: var(--z, 1);
  width: var(--fw);
  height: var(--fh);
  margin-left: calc(var(--fw) / -2);
  border-radius: var(--r-chip);
  background: var(--c);
  transform-origin: 50% 100%;
  transform: rotate(0deg) translateY(16px);
  opacity: 0;
  transition: transform 1.15s var(--ease), opacity .8s ease;
}

.fan.fanned .fan-card { transform: rotate(var(--rot)); opacity: 1; }

.fan .fan-card:nth-child(1) { transition-delay: .28s; }
.fan .fan-card:nth-child(2) { transition-delay: .19s; }
.fan .fan-card:nth-child(3) { transition-delay: .10s; }
.fan .fan-card:nth-child(4) { transition-delay: .19s; }
.fan .fan-card:nth-child(5) { transition-delay: .28s; }

html:not(.js) .fan-card { transform: rotate(var(--rot)); opacity: 1; }

/* Kulörkoden löper längs bladet, som på en riktig NCS-solfjäder */
.fan-rail {
  position: absolute;
  left: 5px;
  top: 6%;
  height: 54%;
  width: clamp(17px, 1.6vw, 21px);
  border-radius: 9px;
  background: var(--kalk);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fan-code {
  writing-mode: vertical-rl;
  font-size: clamp(.58rem, .82vw, .7rem);
  letter-spacing: .05em;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}

.fan-rivet {
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  border-radius: 50%;
  background: var(--kalk);
  z-index: 9;
}

.fan-rivet::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.hero-photo { position: relative; z-index: 1; margin: -26px 0 0; }

.hero-photo img {
  width: 100%;
  aspect-ratio: 16 / 9.6;
  object-fit: cover;
  border-radius: var(--r-xl);
}

.hero-cap {
  margin-top: 14px;
  padding-left: 2px;
  font-size: .84rem;
  color: var(--muted);
}


/* ---------------------------------------------------------------- sektion */

.sec { position: relative; padding-block: var(--pad-sec); }
.sec-kalk { background: var(--kalk); }
.sec-kalk3 { background: var(--kalk-3); }

.sec-head { max-width: 42rem; margin-bottom: clamp(34px, 4.5vw, 58px); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terra-ink);
}

.eyebrow::before {
  content: '';
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: var(--terra);
  flex: none;
}

.sec-head h2 {
  font-size: clamp(1.78rem, 3.5vw, 2.72rem);
  line-height: 1.12;
  font-variation-settings: 'opsz' 72, 'SOFT' 55, 'WONK' 1;
}

.sec-note { margin-top: 18px; color: var(--muted); max-width: 36em; }


/* -------------------------------------------------------------- tjänster */

.panels { display: grid; gap: 18px; grid-template-columns: 1fr; }

@media (min-width: 640px) { .panels { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

@media (min-width: 960px) {
  .panels { grid-template-columns: repeat(12, 1fr); gap: 24px; }
  .panels > .panel:nth-child(1) { grid-column: span 7; }
  .panels > .panel:nth-child(2) { grid-column: span 5; }
  .panels > .panel:nth-child(3) { grid-column: span 5; }
  .panels > .panel:nth-child(4) { grid-column: span 7; }
}

.panel {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.8vw, 34px);
  border-radius: var(--r-xl);
}

.p-terra { background: var(--terra-plate); }
.p-ockra { background: var(--ockra-plate); }
.p-dimma { background: var(--dimma-plate); }
.p-salvia { background: var(--salvia-plate); }

.panel-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.panel-kicker .dot { width: 13px; height: 13px; border-radius: 4px; flex: none; }

.p-terra .panel-kicker { color: var(--terra-ink); }
.p-terra .panel-kicker .dot { background: var(--terra); }
.p-ockra .panel-kicker { color: var(--ockra-ink); }
.p-ockra .panel-kicker .dot { background: var(--ockra); }
.p-dimma .panel-kicker { color: var(--dimma-ink); }
.p-dimma .panel-kicker .dot { background: var(--dimma); }
.p-salvia .panel-kicker { color: var(--salvia-ink); }
.p-salvia .panel-kicker .dot { background: var(--salvia); }

.panel h3 {
  font-size: clamp(1.32rem, 2.1vw, 1.72rem);
  line-height: 1.16;
  font-variation-settings: 'opsz' 40, 'SOFT' 55, 'WONK' 1;
  margin-bottom: 12px;
}

.panel > p:not(.panel-kicker):not(.panel-price) { color: var(--muted); }

.panel-price {
  margin-top: auto;
  padding-top: 22px;
  font-size: .89rem;
  font-weight: 500;
}

.p-terra .panel-price { color: var(--terra-ink); }
.p-ockra .panel-price { color: var(--ockra-ink); }
.p-dimma .panel-price { color: var(--dimma-ink); }
.p-salvia .panel-price { color: var(--salvia-ink); }

.panel-fig { margin: 0 0 22px; border-radius: var(--r-md); overflow: hidden; }
.panel-fig img { width: 100%; aspect-ratio: 16 / 8.8; object-fit: cover; }

.panel-list { display: grid; gap: 9px; margin-top: 22px; }

.panel-list li {
  position: relative;
  padding-left: 22px;
  font-size: .93rem;
  line-height: 1.5;
  color: var(--muted);
}

.panel-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5em;
  width: 9px;
  height: 9px;
  border-radius: 3px;
}

.p-terra .panel-list li::before { background: var(--terra); }
.p-ockra .panel-list li::before { background: var(--ockra); }
.p-dimma .panel-list li::before { background: var(--dimma); }
.p-salvia .panel-list li::before { background: var(--salvia); }

.kulorlista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(94px, 1fr));
  gap: 12px 10px;
  margin-top: 26px;
}

.kulorlista .ks { display: block; height: 54px; border-radius: var(--r-chip); margin-bottom: 8px; }

.kulorlista .ks-name {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: .87rem;
  line-height: 1.25;
  font-variation-settings: 'opsz' 14, 'SOFT' 50, 'WONK' 1;
}

.kulorlista .ks-code {
  display: block;
  font-size: .66rem;
  letter-spacing: .03em;
  line-height: 1.4;
  color: var(--muted);
  white-space: nowrap;
}


/* ---------------------------------------------------------------- process */

.steps { display: grid; gap: 30px; }

@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3.5vw, 46px); } }

.step { position: relative; }

.step-tile {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 88px;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-radius: var(--r-md);
  background: var(--plate);
  color: var(--ci);
  overflow: hidden;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.85rem;
  line-height: 1;
  font-variation-settings: 'opsz' 40, 'SOFT' 50, 'WONK' 1;
}

.step-tile::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 15px;
  background: var(--c);
}

.step h3 {
  font-size: clamp(1.2rem, 1.9vw, 1.42rem);
  line-height: 1.2;
  font-variation-settings: 'opsz' 30, 'SOFT' 55, 'WONK' 1;
  margin-bottom: 10px;
}

.step p { color: var(--muted); }

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 38px;
  top: 100px;
  bottom: -30px;
  width: 3px;
  border-radius: 2px;
  background: repeating-linear-gradient(180deg, var(--dash) 0 7px, transparent 7px 16px);
}

@media (min-width: 860px) {
  .step:not(:last-child)::after {
    left: 92px;
    right: calc(clamp(28px, 3.5vw, 46px) * -1);
    top: 42px;
    bottom: auto;
    width: auto;
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--dash) 0 7px, transparent 7px 16px);
  }
}


/* ------------------------------------------------------------ kulörkartan */

.gallery { display: grid; gap: 34px; }

@media (min-width: 800px) {
  .gallery { grid-template-columns: 1fr 1fr; gap: 42px 44px; align-items: start; }
  .proj:nth-child(even) { margin-top: 74px; }
}

.proj-field {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background-color: var(--c);
  background-image:
    radial-gradient(130% 92% at 22% 10%, rgba(255, 255, 255, .24), rgba(255, 255, 255, 0) 62%),
    repeating-linear-gradient(93deg, rgba(255, 255, 255, .055) 0 2px, rgba(255, 255, 255, 0) 2px 7px),
    linear-gradient(158deg, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, .10));
  margin-bottom: 22px;
}

.proj-tall .proj-field { aspect-ratio: 4 / 4; }

.proj-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--kalk);
  color: var(--ink);
  font-size: .77rem;
  font-weight: 500;
  letter-spacing: .01em;
}

.proj h3 {
  font-size: clamp(1.24rem, 2vw, 1.56rem);
  line-height: 1.2;
  font-variation-settings: 'opsz' 36, 'SOFT' 55, 'WONK' 1;
  margin-bottom: 8px;
}

.proj-meta { color: var(--muted); font-size: .92rem; }

.proj-swatches { display: flex; gap: 6px; margin-top: 18px; }
.proj-swatches li { width: 34px; height: 40px; border-radius: 9px; }

.proj-colors { margin-top: 12px; font-size: .8rem; color: var(--muted); letter-spacing: .015em; }


/* ------------------------------------------------------------- miljöbandet */

.sec-salvia { background: var(--salvia-band); color: var(--ink-deep); }
.sec-salvia h2, .sec-salvia h3 { color: var(--ink-deep); }

.eyebrow-band { color: var(--ink-deep); }
.eyebrow-band::before { background: var(--kalk); }

.miljo-grid { display: grid; gap: clamp(34px, 5vw, 56px); }

@media (min-width: 940px) {
  .miljo-grid { grid-template-columns: .94fr 1.06fr; gap: clamp(40px, 5vw, 74px); align-items: start; }
}

.miljo-copy h2 {
  font-size: clamp(1.78rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  font-variation-settings: 'opsz' 72, 'SOFT' 55, 'WONK' 1;
}

.miljo-lead { margin-top: 18px; max-width: 34em; font-size: clamp(1.02rem, 1.3vw, 1.12rem); }

.miljo-note { margin-top: 20px; max-width: 32em; font-size: .95rem; }

.miljo-fig { margin: 26px 0 0; }

.miljo-fig img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-lg);
}

.miljo-list { display: grid; gap: 16px; }

.miljo-list li {
  position: relative;
  padding: clamp(22px, 2.4vw, 30px) clamp(22px, 2.4vw, 32px);
  border-radius: var(--r-lg);
  background: var(--salvia-card);
}

.miljo-swatch {
  display: block;
  width: 40px;
  height: 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.miljo-list h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.26rem);
  line-height: 1.25;
  font-variation-settings: 'opsz' 24, 'SOFT' 55, 'WONK' 1;
  margin-bottom: 7px;
  color: var(--ink);
}

.miljo-list p { color: var(--muted); font-size: .95rem; }


/* --------------------------------------------------------------- omdömen */

.reviews { display: grid; gap: 26px; }

@media (min-width: 860px) {
  .reviews { grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
  .rev:nth-child(2) { margin-top: 58px; }
}

.rev { margin: 0; padding: clamp(24px, 3vw, 40px); border-radius: var(--r-xl); }
.rev-rosa { background: var(--rosa-plate); }
.rev-salvia { background: var(--salvia-plate); }

.rev-swatches { display: flex; gap: 6px; margin-bottom: 22px; }
.rev-swatches li { width: 28px; height: 34px; border-radius: 8px; }

.rev > p {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.56;
  font-variation-settings: 'opsz' 30, 'SOFT' 60, 'WONK' 1;
}

.rev footer { display: flex; align-items: center; gap: 14px; margin-top: 26px; }

.rev-face { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; }

.rev-who { display: grid; }

.rev-who cite {
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.35;
}

.rev-meta { font-size: .85rem; color: var(--muted); line-height: 1.35; }


/* ------------------------------------------------------------------- kontakt */

.sec-ink { background: var(--ink-plate); color: var(--kalk); }
.sec-ink h2 { color: var(--kalk); }

.eyebrow-dark { color: #e0a077; }
.eyebrow-dark::before { background: var(--terra); }

.cta-grid { display: grid; gap: clamp(34px, 5vw, 52px); }

@media (min-width: 900px) {
  .cta-grid { grid-template-columns: 1.06fr .94fr; gap: clamp(40px, 5vw, 68px); align-items: center; }
}

.cta-copy h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  line-height: 1.1;
  font-variation-settings: 'opsz' 72, 'SOFT' 55, 'WONK' 1;
}

.cta-lead { margin-top: 20px; max-width: 34em; color: var(--sand); font-size: clamp(1.02rem, 1.3vw, 1.12rem); }

.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.cta-facts { display: grid; gap: 14px; margin: 34px 0 0; }

@media (min-width: 620px) { .cta-facts { grid-template-columns: repeat(3, auto); justify-content: start; gap: 34px; } }

.cta-facts dt {
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 3px;
}

.cta-facts dd { margin: 0; font-size: .97rem; }

.cta-strip { display: flex; gap: 5px; margin-top: 34px; max-width: 260px; }
.cta-strip li { flex: 1; height: 9px; border-radius: 999px; }

.cta-fig { margin: 0; }

.cta-fig img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--r-xl);
}


/* -------------------------------------------------------------------- footer */

.site-foot {
  position: relative;
  background: var(--kalk-3);
  padding-top: clamp(52px, 6vw, 84px);
}

.foot-grid { display: grid; gap: 32px; }

@media (min-width: 700px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; } }

.foot-logo { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 16px; }

.foot-brand p { color: var(--muted); font-size: .93rem; max-width: 30em; }

.foot-col h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.foot-col li a,
.foot-col li span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: .96rem;
}

.foot-col li a { transition: color .25s var(--ease); }
.foot-col li a:hover { color: var(--terra-ink); }

.foot-areas { display: flex; flex-wrap: wrap; column-gap: 16px; }

.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-top: clamp(34px, 4vw, 52px);
  padding-bottom: clamp(28px, 3vw, 40px);
  font-size: .84rem;
  color: var(--muted);
}

.foot-bottom p { margin: 0; }
.foot-demo { opacity: .85; }


/* --------------------------------------------------------------- rörelse */

.reveal {
  opacity: 0;
  transform: translateY(12px) scale(1.02);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
}

.reveal.in { opacity: 1; transform: none; }

html:not(.js) .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal,
  .reveal.in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .fan-card,
  .fan.fanned .fan-card {
    opacity: 1;
    transform: rotate(var(--rot));
    transition: none;
  }

  .menu-bars i,
  .site-head,
  .btn { transition: none; }
}
