:root { --sidebar-w: 280px; }

/* ═══════════════════════════════════════════════
   HERO — dramatic Studio entry
   ═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(175deg,
    #3B5A8A 0%,
    #4A6FA5 18%,
    #6E9AC8 35%,
    #9BBAD8 50%,
    #C8D6E4 65%,
    #E4CCBA 78%,
    #F0C8A0 90%,
    #E8B898 100%
  );
  position: relative;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}
/* Atmospheric grain overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 1;
}
/* Soft radial glow behind content */
.hero::after {
  content: '';
  position: absolute;
  top: 35%; left: 50%;
  transform: translate(-50%, calc(-50% + var(--parallax-y, 0px)));
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--midnight); opacity: .5;
  margin-bottom: 28px; position: relative; z-index: 2;
  animation: fadeUp 1s ease both;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 11vw, 130px);
  font-weight: 300; color: var(--midnight);
  line-height: .88; letter-spacing: -.03em;
  position: relative; z-index: 2;
  animation: fadeUp 1s ease .2s both;
}
.hero h1 em { font-style: italic; color: var(--celestial); }
.hero-tagline {
  margin-top: 36px;
  font-size: 17px; font-weight: 300;
  color: var(--midnight); opacity: .55;
  letter-spacing: .02em; max-width: 480px;
  line-height: 1.75; position: relative; z-index: 2;
  animation: fadeUp 1s ease .4s both;
}
.hero-actions {
  margin-top: 48px; display: flex; gap: 16px;
  flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 2;
  animation: fadeUp 1s ease .6s both;
}
.hero-scroll {
  position: absolute; bottom: 24px;
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: var(--midnight); opacity: .3;
  font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1s both;
  z-index: 2;
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: var(--midnight);
  animation: lineGrow 1.5s ease-in-out 1.5s infinite;
  transform-origin: top;
}
@keyframes lineGrow {
  0% { opacity: 0; transform: scaleY(0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1) translateY(10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   ART GALLERY LAYOUT — sidebar + content
   ═══════════════════════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
}

/* ─── SIDEBAR ─────────────────────────────────── */
.sidebar {
  background: linear-gradient(180deg, #344F7A 0%, #3D5E8E 60%, #4A6FA5 100%);
  position: sticky; top: 0;
  height: 100vh;
  display: flex; flex-direction: column;
  padding: 40px 0;
  overflow: hidden;
  z-index: 50;
}
.sidebar::before {
  content: ''; position: absolute;
  bottom: -80px; left: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,143,212,.1), transparent);
  pointer-events: none;
}
.sidebar::after {
  content: ''; position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,168,130,.06), transparent);
  pointer-events: none;
}

.sidebar-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 300;
  color: var(--warm-white);
  padding: 0 36px;
  letter-spacing: .03em;
  margin-bottom: 6px;
  text-decoration: none;
  display: block;
}
.sidebar-logo em { font-style: italic; color: rgba(212,228,244,.7); }
.sidebar-sub {
  font-size: 9px; letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(200,217,240,.2);
  padding: 0 36px;
  margin-bottom: 48px;
}

.sidebar-nav { flex: 1; }
.sidebar-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 36px;
  font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(200,217,240,.6);
  cursor: pointer; text-decoration: none;
  transition: all .3s;
  border-left: 2px solid transparent;
  position: relative;
}
.sidebar-item:focus-visible { outline: 2px solid var(--sky); outline-offset: -2px; }
.sidebar-item:hover { color: rgba(200,217,240,.85); }
.sidebar-item.active {
  color: var(--warm-white);
  border-left-color: var(--sky);
  background: rgba(91,143,212,.06);
}
.sidebar-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  transition: transform .3s;
}
.sidebar-item.active .sidebar-dot { transform: scale(1.6); }

.sidebar-foot {
  margin-top: auto;
  padding: 28px 36px 0;
  border-top: 1px solid rgba(200,217,240,.05);
}
.sidebar-contact {
  display: block;
  background: rgba(200,217,240,.15);
  border: 1px solid rgba(200,217,240,.3);
  border-radius: 100px;
  padding: 11px 20px;
  font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85); text-align: center;
  text-decoration: none;
  cursor: pointer; transition: all .3s;
}
.sidebar-contact:hover {
  background: rgba(200,217,240,.25);
  color: #fff;
}

.sidebar-mini-stats {
  display: flex; gap: 20px;
  margin-top: 20px;
}
.sidebar-stat-v {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300;
  color: rgba(200,217,240,.7); line-height: 1;
}
.sidebar-stat-l {
  font-size: 8px; color: rgba(200,217,240,.4);
  margin-top: 3px; letter-spacing: .1em;
}

/* ─── MAIN CONTENT AREA ──────────────────────── */
.content-area {
  background: var(--warm-white);
  min-height: 100vh;
}

/* ─── CONTENT SECTIONS ───────────────────────── */
.panel {
  padding: 72px 64px;
  position: relative; overflow: hidden;
}
.panel-dark {
  background: linear-gradient(170deg, #3B5A8A 0%, #4A6FA5 100%);
}
.panel-cream {
  background: linear-gradient(180deg, #F7F3EE 0%, #F5F0E9 100%);
}

.section-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--celestial);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 1.5px;
  background: var(--celestial);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 24px; color: var(--midnight);
}
.section-title em { font-style: italic; color: var(--celestial); }
.section-body {
  font-size: 15px; line-height: 1.85;
  color: #555; max-width: 540px; font-weight: 300;
}

/* Dark panel overrides */
.panel-dark .section-label { color: var(--mist); }
.panel-dark .section-label::before { background: var(--mist); }
.panel-dark .section-title { color: var(--warm-white); }
.panel-dark .section-body { color: var(--mist); opacity: .7; }

/* ─── ABOUT LAYOUT ───────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
@media (max-width: 1100px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

.illus-circle {
  width: 280px; height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mist) 0%, var(--sage-light) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; margin: 0 auto;
}
.illus-circle .illus-tag {
  position: absolute; bottom: -36px;
  left: 50%; transform: translateX(-50%);
  white-space: nowrap;
  font-size: 10px; color: var(--celestial);
  letter-spacing: .1em; font-weight: 500;
}
.illus-circle svg { opacity: .6; }

/* ─── VALUE CARDS (SELLERS) ──────────────────── */
.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
@media (max-width: 1100px) { .value-grid { grid-template-columns: 1fr; } }

.value-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px; padding: 36px;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}
.value-card:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.value-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 20px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.08);
}
.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  color: var(--warm-white); margin-bottom: 12px;
}
.value-card p {
  font-size: 13px; line-height: 1.7;
  color: rgba(200,217,240,.5); font-weight: 300;
}
/* Value cards inside light panels */
.panel-cream .value-card {
  background: rgba(26,32,56,.03);
  border-color: rgba(26,32,56,.08);
}
.panel-cream .value-card:hover {
  background: rgba(26,32,56,.06);
}
.panel-cream .value-card h3 {
  color: var(--midnight);
}
.panel-cream .value-card p {
  color: var(--ink); opacity: .6;
}

/* ─── BENEFIT LIST (KOMMUNER) ────────────────── */
.kommun-grid {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 1100px) { .kommun-grid { grid-template-columns: 1fr; gap: 48px; } }

.benefit-list { list-style: none; }
.benefit-item {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-dot {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  margin-top: 2px;
}
.benefit-dot svg { display: block; }
.benefit-dot-1 { background: var(--midnight); color: var(--warm-white); }
.benefit-dot-2 { background: var(--celestial); color: white; }
.benefit-dot-3 { background: var(--sage); color: white; }
.benefit-dot-4 { background: var(--gold); color: white; }
.benefit-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400;
  color: var(--midnight); margin-bottom: 6px;
}
.benefit-text p {
  font-size: 13px; line-height: 1.7;
  color: #777; font-weight: 300;
}

/* ─── NUMBERS STRIP ──────────────────────────── */
.numbers-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; background: none;
  margin-top: 56px; border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(59,90,138,.08);
}
.numbers-strip .num-cell {
  background: white; padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(59,90,138,.06);
}
.numbers-strip .num-cell:last-child { border-right: none; }
.numbers-strip .num-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px); font-weight: 300;
  color: var(--midnight); line-height: 1;
  margin-bottom: 10px;
}
.numbers-strip .num-label {
  font-size: 10px; color: #999;
  letter-spacing: .1em; font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 900px) { .numbers-strip { grid-template-columns: 1fr 1fr; } }

/* ─── PROCESS / WORKFLOW ─────────────────────── */
.workflow {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.workflow::before {
  content: ''; position: absolute;
  top: 32px; left: 10%; width: 80%; height: 1px;
  background: linear-gradient(90deg, var(--mist), var(--celestial), var(--sage), var(--mist));
}
.workflow-step {
  padding: 0 20px; text-align: center;
  position: relative;
}
.step-dot {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 300;
  position: relative; z-index: 1;
}
.step-dot-1 { background: var(--midnight); color: var(--warm-white); }
.step-dot-2 { background: var(--celestial); color: white; }
.step-dot-3 { background: var(--sage); color: white; }
.step-dot-4 { background: var(--gold); color: white; }
.workflow-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400;
  color: var(--midnight); margin-bottom: 10px;
}
.workflow-step p {
  font-size: 12px; line-height: 1.7;
  color: #777; font-weight: 300;
}
@media (max-width: 900px) {
  .workflow { grid-template-columns: 1fr 1fr; gap: 40px; }
  .workflow::before { display: none; }
}
@media (max-width: 560px) { .workflow { grid-template-columns: 1fr; } }

/* ─── DIGITAL OMSORG ─────────────────────────── */
.digi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
@media (max-width: 1100px) { .digi-grid { grid-template-columns: 1fr; } }

.digi-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px; padding: 32px 28px;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}
.digi-card:hover {
  background: rgba(255,255,255,.06);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.digi-icon {
  width: 48px; height: 48px;
  background: rgba(200,217,240,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}
.digi-for {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 10px; font-weight: 500;
}
.digi-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  color: var(--warm-white); margin-bottom: 16px;
}
.digi-list {
  list-style: none; padding: 0;
}
.digi-list li {
  font-size: 13px; line-height: 1.65;
  color: rgba(200,217,240,.55); font-weight: 300;
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.digi-list li:last-child { border-bottom: none; }
.digi-list li::before {
  content: '';
  position: absolute; left: 0; top: 16px;
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(200,217,240,.2);
}
.digi-list li strong {
  color: rgba(200,217,240,.8); font-weight: 400;
}

.digi-detail {
  display: flex; flex-wrap: wrap; gap: 20px 40px;
  margin-top: 48px; padding: 28px 32px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 16px;
}
.digi-detail-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: rgba(200,217,240,.45);
  font-weight: 300; flex: 1 1 280px;
}

/* ─── WHY CARDS (light, for Om oss) ─────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 48px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

.why-card-light {
  background: white;
  border: 1px solid rgba(59,90,138,.06);
  border-radius: 20px; padding: 32px;
  display: flex; gap: 20px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.why-card-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(59,90,138,.08);
}
.why-icon-light {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--mist);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: inset 0 1px 2px rgba(59,90,138,.06);
}
.why-card-light h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400;
  color: var(--midnight); margin-bottom: 8px;
}
.why-card-light p {
  font-size: 13px; line-height: 1.7;
  color: #888; font-weight: 300;
}

/* ─── QUOTE BLOCK (light, for Om oss) ────────── */
.quote-block-light {
  max-width: 700px; margin: 48px auto 0;
  padding: 40px;
  background: white;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 20px;
  position: relative;
}
.quote-mark-light {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 300;
  color: var(--celestial); opacity: .25;
  line-height: .5; margin-bottom: 8px;
}
.quote-text-light {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300;
  font-style: italic; color: var(--midnight);
  line-height: 1.5;
}
.quote-author-light {
  font-size: 11px; color: #999;
  margin-top: 16px; letter-spacing: .08em;
}

/* ─── KOMMUN PARTNER ─────────────────────────── */
.kommun-partner-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 48px;
}
@media (max-width: 900px) { .kommun-partner-grid { grid-template-columns: 1fr; } }

.kommun-card {
  background: white;
  border: 1px solid rgba(59,90,138,.06);
  border-radius: 20px; padding: 28px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.kommun-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(59,90,138,.08);
}
.kommun-card-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.kommun-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 400;
  color: var(--midnight); margin-bottom: 8px;
}
.kommun-card p {
  font-size: 13px; line-height: 1.7;
  color: #666; font-weight: 300;
}
.kommun-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding: 32px 36px;
  background: white;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
}
@media (max-width: 700px) { .kommun-cta-inner { flex-direction: column; text-align: center; } }

/* ─── ARTICLES / BLOG ────────────────────────── */
.article-author {
  display: flex; align-items: center; gap: 16px;
  margin-top: 36px; margin-bottom: 8px;
}
.article-author-photo {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mist), var(--sage-light));
  display: flex; align-items: center; justify-content: center;
}
.article-author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400; color: var(--midnight);
}
.article-author-title {
  font-size: 11px; color: #999; font-weight: 300;
  letter-spacing: .03em;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 36px;
}
@media (max-width: 900px) { .article-grid { grid-template-columns: 1fr; } }

.article-card {
  background: var(--cream);
  border: 1px solid rgba(59,90,138,.05);
  border-radius: 20px; padding: 28px;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(59,90,138,.08);
}

.article-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #2A3F62 0%, #344F7A 40%, #3D5E8E 100%);
  border: 1px solid rgba(255,255,255,.06);
  padding: 40px 44px;
  position: relative; overflow: hidden;
}
.article-featured::before {
  content: '';
  position: absolute; inset: 0;
  background: url('poyan-och-isbrytarna.jpg') center 35% / cover no-repeat;
  opacity: .1;
  pointer-events: none;
}
.article-featured .article-meta { margin-bottom: 16px; }
.article-featured .article-date,
.article-featured .article-read { color: rgba(200,217,240,.4); }
.article-featured .news-tag {
  color: var(--sky); background: rgba(137,186,224,.12);
}
.article-featured .article-excerpt {
  color: rgba(200,217,240,.55); max-width: 600px;
}
.article-featured .article-link { color: var(--sky); }
.article-featured .article-link:hover { color: var(--warm-white); }
@media (max-width: 900px) {
  .article-featured { padding: 32px 28px; }
}

.article-img {
  background: linear-gradient(135deg, var(--mist) 0%, var(--sage-light) 100%);
  min-height: 240px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.article-img img {
  width: 100%; height: 240px; object-fit: cover;
}
.article-img-placeholder {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  font-size: 10px; color: var(--celestial);
  letter-spacing: .1em; font-weight: 500;
}

.article-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.article-date {
  font-size: 11px; color: #999; font-weight: 300;
}
.article-read {
  font-size: 11px; color: #bbb; font-weight: 300;
}

.news-tag {
  display: inline-block;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--celestial); font-weight: 500;
  padding: 3px 10px;
  background: rgba(43,69,144,.06);
  border-radius: 20px;
}

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  color: var(--midnight); margin-bottom: 12px;
  line-height: 1.3;
}
.article-featured .article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 34px); font-weight: 300;
  color: var(--warm-white); margin-bottom: 12px;
  line-height: 1.2; letter-spacing: -.01em;
}

.article-excerpt {
  font-size: 13px; line-height: 1.75;
  color: #666; font-weight: 300;
  flex: 1;
}

.article-link {
  display: inline-block; margin-top: 18px;
  font-size: 12px; font-weight: 500;
  color: var(--celestial); text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s;
}
.article-link:hover { color: var(--sky); }

/* ─── TEAM ────────────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: 1fr;
  max-width: 520px;
  gap: 32px; margin-top: 56px;
}

.team-card {
  background: var(--cream); border-radius: 20px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
.team-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-info { padding: 32px; }
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400;
  color: var(--midnight); margin-bottom: 4px;
}
.team-role {
  font-size: 10px; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--celestial); margin-bottom: 8px;
}
.team-email {
  font-size: 13px; color: var(--celestial);
  text-decoration: none; display: inline-block;
  margin-bottom: 16px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.team-email:hover { border-color: var(--celestial); }
.team-bio {
  font-size: 13px; line-height: 1.7;
  color: #666; font-weight: 300;
}
.team-linkedin {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; font-size: 12px; font-weight: 500;
  color: var(--celestial); text-decoration: none;
  transition: color .2s;
}
.team-linkedin:hover { color: var(--midnight); }

/* ─── CTA PANEL ──────────────────────────────── */
.cta-inner { max-width: 700px; text-align: center; }
.cta-inner .section-label { justify-content: center; color: var(--mist); }
.cta-inner .section-label::before { background: var(--mist); }
.cta-inner .section-title { color: var(--warm-white); }
.cta-inner .section-body {
  color: var(--mist); opacity: .6;
  margin: 0 auto 36px; text-align: center;
}
.cta-actions {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}


/* ─── SCROLL REVEAL ──────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── PATH-DRAW ANIMATION ────────────────────── */
.draw-svg path.draw-line {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.5s ease;
}
.draw-svg.visible path.draw-line { stroke-dashoffset: 0; }

/* ─── PRODUCT OVERVIEW (boendeformer) ────────── */
.product-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; margin-top: 56px;
}
@media (max-width: 900px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: white;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
}
.product-img {
  height: 200px;
  background: linear-gradient(135deg, var(--mist) 0%, var(--sage-light) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-img-label {
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--celestial); font-weight: 500;
  position: absolute; bottom: 16px; left: 24px;
  background: rgba(255,255,255,.85); padding: 4px 12px;
  border-radius: 20px;
}
.product-body { padding: 32px; margin-top: 38px; }
.product-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400;
  color: var(--midnight); margin-bottom: 12px;
}
.product-body p {
  font-size: 14px; line-height: 1.8;
  color: #777; font-weight: 300;
}
.product-specs {
  display: flex; gap: 24px; margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.product-spec {
  display: flex; flex-direction: column; gap: 2px;
}
.product-spec-v {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  color: var(--midnight); line-height: 1;
}
.product-spec-l {
  font-size: 10px; color: #aaa;
  letter-spacing: .06em;
}

/* ─── PORTFOLIO MAP ─────────────────────────── */
.portfolio-map-wrap {
  margin-top: 48px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.portfolio-map {
  width: 100%; height: 420px;
}
.portfolio-legend {
  display: flex; gap: 32px; margin-top: 24px;
  flex-wrap: wrap;
}
.portfolio-legend-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--mist); opacity: .6;
}
.portfolio-legend-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.portfolio-stats {
  display: flex; gap: 48px; margin-top: 32px;
  flex-wrap: wrap;
}
.portfolio-stat { text-align: center; }
.portfolio-stat-v {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300;
  color: var(--warm-white); line-height: 1;
}
.portfolio-stat-l {
  font-size: 10px; color: var(--mist); opacity: .5;
  margin-top: 6px; letter-spacing: .06em;
}

/* ─── PANEL DIVIDERS ─────────────────────────── */
.panel-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--mist) 50%, transparent 95%);
  max-width: 800px;
  margin: 0 auto;
}
.panel-divider-dark {
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(200,217,240,.1) 50%, transparent 95%);
  max-width: 800px;
  margin: 0 auto;
}

/* ─── PHOTO STRIP (section transition) ──────── */
.photo-strip {
  height: 280px;
  background-size: cover;
  background-position: center 40%;
  position: relative;
}
.photo-strip::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      var(--warm-white) 0%,
      rgba(253,250,246,0) 18%,
      rgba(253,250,246,0) 82%,
      var(--warm-white) 100%
    ),
    rgba(253,250,246,.35);
  pointer-events: none;
}
.photo-strip-dark::after {
  background:
    linear-gradient(180deg,
      rgba(59,90,138,1) 0%,
      rgba(59,90,138,0) 18%,
      rgba(59,90,138,0) 82%,
      rgba(74,111,165,1) 100%
    ),
    rgba(42,63,98,.35);
}
@media (max-width: 900px) {
  .photo-strip { height: 180px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — collapse sidebar on mobile
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .gallery { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .panel { padding: 56px 24px; }
  .mobile-hidden { display: none; }
  .hero { padding: 100px 24px 80px; }
  .hero h1 { font-size: clamp(44px, 14vw, 80px); }
  .hero-tagline { font-size: 15px; max-width: 340px; }
  .hero::after { width: 300px; height: 300px; }
  .why-grid { gap: 16px; }
  .saarbetarvi-grid { gap: 20px; }
  .numbers-strip .num-cell { border-bottom: 1px solid rgba(59,90,138,.06); }
}

/* ─── SKETCH OVERLAY ───────────────────────── */
.sketch-open-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px;
  font-size: 13px; font-weight: 500;
  color: var(--celestial);
  letter-spacing: .02em;
  cursor: pointer; text-decoration: none;
  transition: color .2s;
}
.sketch-open-btn:hover { color: var(--midnight); }

.sketch-overlay {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(42,53,80,.92);
  display: none;
  align-items: center; justify-content: center;
}
.sketch-overlay.open { display: flex; }
.sketch-overlay-close {
  position: absolute; top: 24px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: var(--warm-white);
  font-size: 28px; line-height: 1;
  cursor: pointer;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.sketch-overlay-close:hover { background: rgba(255,255,255,.14); }
.sketch-overlay-title {
  position: absolute; top: 32px; left: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300;
  color: var(--mist);
  letter-spacing: .02em;
}
.sketch-overlay-frame {
  width: 90vw; height: 85vh;
  max-width: 1400px;
  border: none;
  border-radius: 12px;
  background: var(--warm-white);
}

/* ─── SÅ ARBETAR VI ────────────────────────── */
.saarbetarvi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px;
}
@media (max-width: 1100px) { .saarbetarvi-grid { grid-template-columns: 1fr; } }

.sa-block {
  background: white;
  border: 1px solid rgba(59,90,138,.06);
  border-radius: 20px; padding: 36px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.sa-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(59,90,138,.08);
}
.sa-block-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 22px;
  box-shadow: inset 0 1px 2px rgba(59,90,138,.06);
}
.sa-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  color: var(--midnight); margin-bottom: 12px;
}
.sa-block p {
  font-size: 13px; line-height: 1.75;
  color: #777; font-weight: 300;
}
.sa-list {
  list-style: none; padding: 0; margin-top: 16px;
}
.sa-list li {
  font-size: 13px; line-height: 1.65;
  color: #666; font-weight: 300;
  padding: 6px 0 6px 18px;
  position: relative;
}
.sa-list li::before {
  content: '';
  position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--celestial); opacity: .4;
}

/* ─── DOWNLOADABLES ────────────────────────── */
.dl-strip {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 28px;
}
@media (max-width: 900px) { .dl-strip { grid-template-columns: 1fr; } }

.dl-card {
  background: white;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px; padding: 24px 28px;
  display: flex; align-items: center; gap: 20px;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none; color: inherit;
  cursor: pointer;
}
.dl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.dl-card-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.dl-card-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400;
  color: var(--midnight); margin-bottom: 4px;
}
.dl-card-text p {
  font-size: 12px; line-height: 1.6;
  color: #999; font-weight: 300;
}
.dl-card-arrow {
  margin-left: auto;
  font-size: 18px; color: var(--celestial);
  opacity: .4; transition: opacity .2s, transform .2s;
}
.dl-card:hover .dl-card-arrow {
  opacity: .8; transform: translateX(3px);
}

/* ─── INSIKTER POLISH ──────────────────────── */
.article-grid-upcoming {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 24px;
}
@media (max-width: 900px) { .article-grid-upcoming { grid-template-columns: 1fr; } }

.article-upcoming-heading {
  margin-top: 40px; margin-bottom: 8px;
  display: flex; align-items: center; gap: 16px;
  font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--celestial);
}
.article-upcoming-heading::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--mist), transparent);
}

.article-card-upcoming {
  opacity: .85;
  transition: opacity .3s, transform .3s, box-shadow .3s;
}
.article-card-upcoming:hover { opacity: 1; }

.article-link {
  position: relative;
}
.article-link::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--celestial);
  transition: width .3s ease;
}
.article-link:hover::after { width: 100%; }
/* LSS-kartan teaser */
.teaser-grid {
  display: flex; gap: 40px; align-items: center;
  justify-content: center; max-width: 700px; margin: 0 auto;
}
.teaser-stats { display: flex; flex-direction: column; gap: 12px; }
.teaser-card {
  background: var(--warm-white); border: 1px solid var(--mist);
  border-radius: 12px; padding: 14px 18px;
  box-shadow: 0 2px 12px rgba(59,90,138,.06);
  display: flex; align-items: center; gap: 14px;
}
.teaser-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(84,128,184,.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--celestial); font-size: 14px;
}
.teaser-label {
  font-size: 9px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--sky);
}
.teaser-value {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  color: var(--midnight); letter-spacing: -.01em;
}
.teaser-unit { font-size: 12px; color: var(--celestial); opacity: .6; }
@media (max-width: 768px) {
  .teaser-grid { flex-direction: column; }
}
