:root {
  --bg: #efe6db;
  --bg-strong: #e1d3c1;
  --surface: #faf5ee;
  --surface-strong: #f1e7da;
  --surface-elevated: rgba(255, 252, 247, 0.88);
  --surface-dark: #2b221c;
  --surface-dark-soft: #3b3129;
  --text: #201814;
  --muted: #66584e;
  --line: rgba(32, 24, 20, 0.11);
  --accent: #745c48;
  --accent-soft: #ebe0d2;
  --accent-warm: #a17e62;
  --shadow: 0 26px 70px rgba(42, 31, 22, 0.08);
  --shadow-soft: 0 14px 34px rgba(42, 31, 22, 0.05);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: min(1240px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 249, 242, 0.82), transparent 30%),
    radial-gradient(circle at right 18%, rgba(225, 211, 193, 0.45), transparent 24%),
    linear-gradient(180deg, #f8f1e8 0%, #eee4d7 42%, #e6d8c9 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.page-shell {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  z-index: -1;
}

.page-shell::before {
  top: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: rgba(255, 248, 241, 0.55);
}

.page-shell::after {
  top: 420px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: rgba(217, 200, 182, 0.28);
}

.section,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 20px 38px;
  background: rgba(255, 252, 247, 0.92);
  border-bottom: 1px solid rgba(88, 69, 52, 0.06);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(38, 29, 21, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-mark {
  display: inline-block;
  width: 188px;
  height: 88px;
  background: url("./assets/images/logo-imi.png") left center/contain no-repeat;
  text-indent: -9999px;
  overflow: hidden;
}

.brand-text {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
}

.page-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
}

.site-nav a {
  color: var(--muted);
}

.page-nav a {
  position: relative;
  padding: 10px 0;
  letter-spacing: 0.01em;
}

.page-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.page-nav a:hover::after,
.page-nav a:focus-visible::after,
.page-nav a.is-active::after {
  transform: scaleX(1);
}

.page-nav a.is-active {
  color: var(--text);
  font-weight: 800;
}

.nav-cta {
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(45, 36, 29, 0.15);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--text);
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
}

.section {
  padding: 124px 0 0;
}

.subhero {
  padding-top: 86px;
  text-align: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 42px;
  padding-top: 94px;
  align-items: stretch;
}

.hero-cinematic {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: clamp(540px, 58vw, 880px);
  min-height: 520px;
  padding: 0;
  display: block;
  overflow: hidden;
  border-radius: 0;
  background: #251c16;
  box-shadow: var(--shadow);
}

.hero-video-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video-shell img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.hero-video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 14, 10, 0.68) 0%, rgba(20, 14, 10, 0.42) 34%, rgba(20, 14, 10, 0.14) 64%, rgba(20, 14, 10, 0.34) 100%),
    linear-gradient(180deg, rgba(20, 14, 10, 0.18), rgba(20, 14, 10, 0.54));
}

.hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  width: min(1140px, calc(100% - 56px));
  margin: 0 auto;
  padding: 88px 0 72px;
}

.hero-cinematic .hero-copy {
  max-width: 780px;
  padding: 0;
  color: #fff;
  text-align: center;
}

.hero-cinematic .hero-lead,
.hero-cinematic .hero-intro-note {
  color: rgba(255, 245, 235, 0.88);
}

.hero-intro-note {
  max-width: 42ch;
  margin-top: 18px;
  line-height: 1.7;
  font-size: 1rem;
}

.hero-cinematic h1 {
  max-width: 16ch;
  margin: 0 auto;
  color: #fff8f0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: clamp(1.85rem, 2.9vw, 3.2rem);
  line-height: 1.04;
  text-wrap: balance;
}

.hero-cinematic .hero-actions {
  justify-content: center;
  margin-top: 26px;
}

.hero-cinematic .button.primary {
  background: #fff;
  color: var(--text);
}

.hero-panel-card,
.planner-card,
.planner-summary,
.info-card,
.pricing-card,
.product-card,
.location-card,
.story-card,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(99, 88, 75, 0.08);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  padding: 18px 0 28px;
  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 1;
}

.hero-copy.wide {
  max-width: 860px;
  margin: 0 auto;
}

.subhero .hero-copy {
  padding-top: 10px;
  padding-bottom: 0;
  max-width: 760px;
}

.subhero .eyebrow {
  justify-content: center;
}

.eyebrow,
.panel-label,
.planner-kicker,
.price-label,
.card-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.subhero h1,
.hero:not(.hero-cinematic) h1,
.section-heading h2,
.story-card h2,
.editorial-panel h2,
.support-copy h2,
.presence-copy h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.subhero h1,
.hero:not(.hero-cinematic) h1 {
  max-width: 10ch;
  margin-top: 22px;
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  text-wrap: balance;
}

.subhero h1 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.2rem, 3.7vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.hero-lead,
.section-heading p,
.info-card p,
.pricing-card p,
.product-card p,
.location-card p,
.story-card p,
.contact-card p,
.planner-step p,
.feature-list li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-lead {
  max-width: 60ch;
  margin-top: 24px;
  font-size: 1.12rem;
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
}

.subhero .hero-lead {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.02rem, 1.2vw, 1.12rem);
  line-height: 1.8;
}

.hero-actions,
.planner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.subhero .hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.84rem;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--surface-dark);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 252, 247, 0.84);
  border: 1px solid rgba(29, 23, 18, 0.1);
}

.button.tertiary {
  background: rgba(110, 88, 71, 0.1);
  color: var(--accent);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.trust-pill {
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 251, 246, 0.78);
  border: 1px solid rgba(29, 23, 18, 0.08);
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(29, 23, 18, 0.04);
}

.hero-panel {
  display: grid;
  gap: 22px;
}

.hero-image-frame {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-radius: 48px;
  box-shadow: var(--shadow);
  background: #d8cec1;
  border: 1px solid rgba(90, 71, 53, 0.08);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(29, 23, 18, 0.06), rgba(29, 23, 18, 0.48)),
    linear-gradient(90deg, rgba(236, 227, 215, 0.06), transparent 40%);
}

.hero-image-note {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  width: min(360px, calc(100% - 44px));
  padding: 24px;
  border-radius: 28px;
  background: rgba(247, 241, 232, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-panel-card,
.planner-card,
.planner-summary,
.pricing-card,
.story-card {
  border-radius: var(--radius-xl);
  padding: 34px;
}

.hero-panel-card.muted {
  background: rgba(238, 228, 216, 0.92);
}

.phone-link {
  display: inline-block;
  margin-top: 10px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 500;
}

.phone-link.compact {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.panel-copy {
  margin-top: 16px;
}

.office-mini-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.mini-office {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.editorial-band {
  padding-top: 72px;
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1.04fr);
  gap: 52px;
  align-items: center;
}

.editorial-image {
  overflow: hidden;
  border-radius: 38px 38px 140px 38px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(90, 71, 53, 0.08);
}

.editorial-layout > .editorial-image:last-child {
  border-radius: 140px 38px 38px 38px;
}

.editorial-image img {
  width: 100%;
  min-height: 560px;
  height: 100%;
  object-fit: cover;
  display: block;
}

body[data-page="produkter.html"] .editorial-image {
  background: rgba(255, 255, 255, 0.94);
}

body[data-page="produkter.html"] .editorial-image img {
  min-height: 0;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  padding: 18px 0 10px;
}

.editorial-copy {
  max-width: none;
}

.editorial-panel {
  padding: 48px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(250, 244, 236, 0.98), rgba(238, 228, 216, 0.96));
  border: 1px solid rgba(99, 88, 75, 0.08);
  box-shadow: var(--shadow);
}

.editorial-panel h2 {
  margin-top: 16px;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.editorial-panel h2,
.support-copy h2,
.presence-copy h2 {
  line-height: 1.01;
}

.editorial-panel > p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.editorial-caption {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.editorial-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.section-heading {
  max-width: 760px;
}

.section-heading.compact h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.section-heading h2 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 4.4vw, 4.3rem);
}

.section-heading p {
  margin-top: 18px;
  max-width: 58ch;
}

.team-heading {
  max-width: 760px;
}

.planner-layout,
.pricing-layout,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  margin-top: 46px;
}

.planner-card {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.46), transparent 28%),
    linear-gradient(180deg, rgba(246, 238, 229, 0.98), rgba(233, 221, 208, 0.98));
  color: var(--text);
}

.planner-summary {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(244, 237, 228, 0.94));
}

.planner-card .planner-kicker,
.planner-card h3,
.planner-card p,
.planner-card .step-number {
  color: inherit;
}

.planner-steps {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.planner-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  padding-top: 20px;
  border-top: 1px solid rgba(99, 88, 75, 0.12);
}

.planner-step:first-child {
  padding-top: 0;
  border-top: 0;
}

.step-number {
  font-family: "Newsreader", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  color: var(--accent-warm);
}

.planner-step h3,
.info-card h3,
.pricing-card h3,
.product-card h3,
.location-card h3,
.contact-card h3 {
  font-size: 1.28rem;
  line-height: 1.25;
}

.feature-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-warm);
}

.feature-list.compact li::before {
  background: var(--accent);
}

.service-grid,
.product-grid,
.location-grid,
.contact-grid {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.price-list-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.faq-section,
.price-list-section {
  position: relative;
  padding: 64px 44px 36px;
  margin-top: 36px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(251, 246, 239, 0.95), rgba(241, 232, 221, 0.86));
  border: 1px solid rgba(99, 88, 75, 0.08);
  box-shadow: var(--shadow-soft);
}

.price-accordion {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(241, 233, 223, 0.96));
  border: 1px solid rgba(99, 88, 75, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text);
}

.price-accordion summary::-webkit-details-marker {
  display: none;
}

.price-accordion summary::after {
  content: "+";
  float: right;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--accent);
}

.price-accordion[open] summary::after {
  content: "-";
}

.price-accordion-body {
  padding: 0 28px 28px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.price-table th,
.price-table td {
  padding: 14px 0;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid rgba(99, 88, 75, 0.12);
}

.price-table thead th {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-top: 0;
  padding-top: 0;
}

.price-table td:last-child,
.price-table th:last-child {
  padding-left: 24px;
  white-space: nowrap;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid.product-grid-detailed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.product-card,
.location-card,
.contact-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.card-image,
.team-image {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 18px;
}

.card-image {
  height: 220px;
}

.detail-image {
  height: 260px;
}

.team-image {
  aspect-ratio: 4 / 5;
}

.pricing-card.accent {
  background: linear-gradient(180deg, rgba(234, 223, 209, 0.98), rgba(248, 242, 234, 0.92));
}

.detail-card {
  display: grid;
  align-content: start;
}

.support-card {
  max-width: 100%;
}

.story-card {
  max-width: 920px;
  background: linear-gradient(135deg, rgba(249, 244, 236, 0.98), rgba(235, 225, 213, 0.95));
  position: relative;
}

.story-card::before,
.pricing-card::before,
.planner-card::before,
.planner-summary::before {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  border-radius: 999px;
  background: rgba(116, 92, 72, 0.42);
  margin-bottom: 22px;
}

.contact-card {
  display: grid;
  gap: 8px;
}

.featured-team-grid .contact-card {
  align-content: start;
  min-height: 100%;
}

.contact-card a {
  font-weight: 800;
}

.featured-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 38px;
}

.team-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 26px 26px 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(244, 236, 227, 0.96));
  border: 1px solid rgba(99, 88, 75, 0.08);
  box-shadow: var(--shadow);
}

.team-card .team-image {
  width: 76%;
  max-width: 200px;
  margin: 0 auto 10px;
  aspect-ratio: 4 / 4.9;
  border-radius: 24px;
}

.team-role {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-card h3 {
  font-size: 1.6rem;
  line-height: 1.08;
  text-align: center;
}

.team-meta {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: center;
}

.team-links {
  display: grid;
  gap: 6px;
}

.team-link {
  margin-top: 4px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.team-card .team-role {
  text-align: center;
}

.support-band {
  padding-top: 84px;
}

.support-layout,
.contact-presence-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 28px;
  align-items: center;
}

.support-copy,
.presence-copy {
  padding: 18px 0;
}

.support-copy h2,
.presence-copy h2 {
  margin-top: 16px;
  font-size: clamp(2.3rem, 3.8vw, 3.8rem);
}

.support-copy p:not(.eyebrow),
.presence-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.support-image,
.presence-image {
  overflow: hidden;
  border-radius: 34px 34px 132px 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(90, 71, 53, 0.08);
}

.support-image img,
.presence-image img {
  width: 100%;
  min-height: 420px;
  height: 100%;
  object-fit: cover;
  display: block;
}

.presence-grid-wrap {
  display: grid;
  gap: 28px;
  margin-top: 46px;
}

.presence-block h3 {
  font-size: 1.4rem;
}

.presence-contact .location-grid,
.presence-contact .contact-grid {
  margin-top: 18px;
}

.presence-contact .location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.presence-contact .contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.presence-contact .contact-card {
  padding: 34px;
  background: rgba(255, 252, 247, 0.7);
}

.presence-contact .location-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.presence-contact .location-card h3 {
  margin-bottom: 10px;
}

.presence-contact .location-card p {
  max-width: 34ch;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 58px 0 72px;
  color: var(--muted);
  border-top: 1px solid rgba(29, 23, 18, 0.08);
  margin-top: 88px;
}

.site-footer a {
  color: inherit;
  text-underline-offset: 0.18em;
}

.wizard-section {
  padding-bottom: 48px;
}

.wizard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.wizard-form,
.wizard-summary-card {
  background: var(--surface);
  border: 1px solid rgba(99, 88, 75, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.wizard-form {
  padding: 28px;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 26px;
}

.progress-pill {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(35, 33, 29, 0.05);
  color: var(--muted);
}

.progress-pill span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-weight: 800;
}

.progress-pill.is-current {
  background: rgba(94, 109, 97, 0.12);
  color: var(--text);
}

.progress-pill.is-current span,
.progress-pill.is-complete span {
  background: var(--accent);
  color: #fff;
}

.progress-pill.is-complete {
  background: rgba(94, 109, 97, 0.08);
}

.wizard-group + .wizard-group {
  margin-top: 24px;
}

.wizard-note,
.wizard-inline-field {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(250, 247, 242, 0.92);
  border: 1px solid rgba(99, 88, 75, 0.1);
}

.wizard-note h3,
.wizard-inline-field h3 {
  margin-bottom: 8px;
}

.wizard-note p,
.wizard-inline-field p {
  color: var(--muted);
  line-height: 1.7;
}

.wizard-group h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.wizard-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.wizard-options-tight {
  grid-template-columns: 1fr;
}

.choice-card {
  display: block;
  cursor: pointer;
}

.choice-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-content {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(35, 33, 29, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.choice-content strong {
  font-size: 1.05rem;
}

.choice-content small,
.choice-content em {
  color: var(--muted);
  font-style: normal;
}

.choice-card:hover .choice-content,
.choice-card:focus-within .choice-content,
.choice-card.is-selected .choice-content {
  transform: translateY(-2px);
  border-color: rgba(94, 109, 97, 0.35);
  background: rgba(235, 239, 232, 0.9);
}

.wizard-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.field span {
  font-size: 0.95rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(35, 33, 29, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
}

.field-wide {
  grid-column: 1 / -1;
}


.wizard-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.wizard-buttons {
  display: flex;
  gap: 12px;
}

.wizard-message {
  min-height: 1.5em;
  color: var(--accent-warm);
  font-weight: 700;
}

.wizard-summary {
  position: sticky;
  top: 120px;
}

.wizard-summary-card {
  padding: 28px;
}

.wizard-estimate {
  margin-top: 14px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.wizard-summary-copy {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.wizard-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .planner-layout,
  .pricing-layout,
  .split-section,
  .wizard-layout,
  .editorial-layout,
  .support-layout,
  .contact-presence-layout,
  .service-grid,
  .faq-grid,
  .product-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero:not(.hero-cinematic) h1 {
    max-width: 11ch;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    padding: 18px 20px;
    margin: 0;
    border-radius: 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 164px;
    height: 78px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: 0;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 16px;
  }

  .page-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .page-nav a,
  .nav-cta {
    width: 100%;
  }

  .page-nav a {
    text-align: left;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-cinematic {
    width: 100vw;
    height: clamp(480px, 58vw, 680px);
    min-height: 480px;
  }

  .hero-overlay {
    min-height: 0;
    width: 100%;
    padding: 72px 24px 56px;
  }

  .hero-cinematic h1 {
    max-width: 18ch;
    font-size: clamp(1.4rem, 3.6vw, 2.2rem);
  }

  .featured-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wizard-progress,
  .wizard-options {
    grid-template-columns: 1fr;
  }

  .wizard-summary {
    position: static;
  }

  .price-table td:last-child,
  .price-table th:last-child {
    padding-left: 16px;
    white-space: normal;
  }

  .faq-section,
  .price-list-section {
    padding: 46px 28px 28px;
  }

  .product-grid.product-grid-detailed,
  .presence-contact .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section,
  .site-footer {
    width: min(100vw - 24px, 1180px);
  }

  .site-header {
    width: 100%;
    padding:
      16px calc(max(16px, env(safe-area-inset-right)) + 8px)
      16px calc(max(16px, env(safe-area-inset-left)) + 8px);
    gap: 12px;
  }

  .brand-mark {
    width: 144px;
    height: 70px;
  }

  .menu-toggle {
    flex-shrink: 0;
  }

  .hero-panel-card,
  .planner-card,
  .planner-summary,
  .pricing-card,
  .story-card,
  .info-card,
  .product-card,
  .location-card,
  .contact-card {
    padding: 24px;
  }

  .hero:not(.hero-cinematic) h1 {
    max-width: none;
  }

  .hero-cinematic {
    width: 100vw;
    height: clamp(380px, 64vw, 520px);
    min-height: 380px;
  }

  .hero-overlay {
    align-items: center;
    padding: 54px 18px 34px;
  }

  .hero-cinematic h1 {
    max-width: 16ch;
    font-size: clamp(1.18rem, 4.9vw, 1.7rem);
    line-height: 1.16;
  }

  .hero-image-frame {
    min-height: 460px;
  }

  .editorial-panel {
    padding: 28px;
  }

  .faq-section,
  .price-list-section {
    padding: 36px 22px 24px;
    border-radius: 28px;
  }

  .support-image img,
  .presence-image img {
    min-height: 320px;
  }

  .page-shell::before,
  .page-shell::after {
    display: none;
  }

  body[data-page="produkter.html"] .editorial-image img {
    padding: 12px 0 8px;
  }

  .featured-team-grid {
    grid-template-columns: 1fr;
  }

  .presence-contact .contact-grid,
  .product-grid.product-grid-detailed {
    grid-template-columns: 1fr;
  }

  .planner-step {
    grid-template-columns: 1fr;
  }

  .wizard-fields,
  .wizard-controls,
  .wizard-buttons {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    flex-direction: column;
  }
}
