/* ---------- Design tokens ---------- */
:root{
  --forest: #2b5f8a;
  --forest-dark: #16283a;
  --forest-light: #5a93bd;
  --cream: #f5f6f5;
  --cream-tint: #e9eef1;
  --card: #ffffff;
  --ink: #1c242b;
  --ink-soft: #5c6b76;
  --line: #dde3e6;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow: 0 12px 32px rgba(22, 40, 58, 0.12);
  --shadow-sm: 0 4px 14px rgba(22, 40, 58, 0.10);
  --maxw: 1180px;
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul, ol{ list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p{ margin: 0; }

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

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: var(--forest); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--forest-dark); }
.btn-outline{ background: transparent; color: var(--forest); border-color: var(--line); }
.btn-outline:hover{ border-color: var(--forest); }
.btn-sm{ padding: 10px 20px; font-size: 0.85rem; }
.btn-block{ width: 100%; }
.btn-primary-inverse{ background: #fff; color: var(--forest-dark); box-shadow: var(--shadow-sm); }
.btn-outline-inverse{ background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-inverse:hover{ border-color: #fff; }

/* ---------- Top bar ---------- */
.top-bar{
  background: var(--forest-dark);
  color: #c7d6de;
}
.top-bar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  font-size: 0.8rem;
  font-weight: 600;
}
.top-bar-inner span{ letter-spacing: 0.02em; }
.top-bar-inner a{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}
.top-bar-inner a:hover{ color: var(--forest-light); }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 240, 0.86);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--forest-dark);
}
.logo-mark{ color: var(--forest); display: inline-flex; }
.main-nav{ display: flex; gap: 34px; }
.main-nav a{
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.main-nav a:hover{ color: var(--forest-dark); }
.header-actions{ display: flex; align-items: center; gap: 16px; }
.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span{
  width: 22px;
  height: 2px;
  background: var(--forest-dark);
  border-radius: 2px;
}

/* ---------- Hero photo banner ---------- */
.hero-photo-wrap{
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: -1px;
}
.hero-photo{
  width: 100%;
  height: auto;
  display: block;
}
.hero-photo-wrap::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(245,246,245,0), var(--cream));
  pointer-events: none;
}
@media (max-width: 720px){
  .hero-photo-wrap::after{ height: 40px; }
}

/* ---------- Hero ---------- */
.hero{ padding: 84px 0 60px; }
.hero-inner{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 14px;
}
.eyebrow.center{ text-align: center; }
.eyebrow-light{ color: #a9cbe0; }
h1{
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--forest-dark);
  letter-spacing: -0.01em;
}
.hero-lead{
  margin-top: 20px;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-ctas{ display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.trust-row{
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.trust-row li{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-row svg{ color: var(--forest); flex-shrink: 0; }

.hero-card{
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.card-tag{
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--forest);
  margin-bottom: 10px;
}
.hero-card h2{
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--forest-dark);
  line-height: 1.25;
}
.price-from{
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.price-from span{
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--forest-dark);
  line-height: 1;
}
.card-note-lead{
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.center-link{
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest-dark);
}
.step-check{ margin: 22px 0 26px; display: flex; flex-direction: column; gap: 14px; }
.step-check li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.check{
  flex-shrink: 0;
  color: var(--forest);
  font-weight: 800;
}
.card-note{
  margin-top: 18px;
  background: var(--cream-tint);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Sections ---------- */
.section{ padding: 88px 0; }
.section-tint{ background: var(--cream-tint); }
.section-title{
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--forest-dark);
  margin-top: 6px;
  letter-spacing: -0.01em;
}
.section-title.center{ text-align: center; }
.section-lead{
  max-width: 56ch;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section-lead.center{ text-align: center; }
.center{ text-align: center; }

/* Välj väg */
.path-grid{
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.path-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.path-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow); }
.path-tag{
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--forest);
  margin-bottom: 10px;
}
.path-card h3{ font-size: 1.3rem; font-weight: 800; color: var(--forest-dark); }
.path-card p{ margin-top: 12px; color: var(--ink-soft); }
.link-arrow{
  display: inline-block;
  margin-top: 20px;
  font-weight: 700;
  color: var(--forest-dark);
}

/* Priser */
.price-group-title{
  margin-top: 56px;
  margin-bottom: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--forest-dark);
  text-align: center;
}
.price-group-title:first-of-type{ margin-top: 40px; }
.price-table-wrap{
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
}
.price-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.price-table th, .price-table td{
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.price-table thead th{
  font-size: 1rem;
  font-weight: 800;
  color: var(--forest-dark);
  padding-top: 20px;
  position: relative;
}
.price-table .row-label{
  text-align: left;
  font-weight: 700;
  color: var(--forest-dark);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.row-icon{
  display: inline-flex;
  color: var(--forest);
  flex-shrink: 0;
}
.price-table tbody tr:last-child td{ border-bottom: none; }
.price-table tbody tr:not(.cta-row):not(.fit-row):hover td:not(.col-featured){
  background: var(--cream-tint);
}
.price-table .fit-row td{
  white-space: normal;
  text-align: left;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
  min-width: 140px;
}
.price-table .fit-row .row-label{ font-style: normal; }
.price-table .col-featured{
  background: var(--cream-tint);
  font-weight: 700;
  color: var(--forest-dark);
  box-shadow: inset 0 2px 0 var(--forest), inset -1px 0 0 var(--line), inset 1px 0 0 var(--line);
}
.vol-cell{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.vol-icon{ color: var(--forest); }
.vol-label{ font-size: 0.8rem; color: var(--ink-soft); font-weight: 600; }
.price-table .price-badge{
  display: block;
  position: static;
  margin: 0 auto 8px;
  width: fit-content;
  background: var(--forest);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
}
.price-table .price-row td{
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--forest-dark);
}
.price-table .price-row .row-label{ font-size: 0.92rem; font-weight: 700; }
.price-table .cta-row td{ padding-top: 18px; padding-bottom: 22px; }
.price-vat-note{
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.addon-grid{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.addon-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
}
.addon-name{ font-size: 1.05rem; font-weight: 800; color: var(--forest-dark); }
.addon-desc{ margin-top: 4px; color: var(--ink-soft); font-size: 0.85rem; }
.addon-price{
  margin-top: 14px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--forest-dark);
}
.addon-price span{
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-left: 4px;
}
.addon-meta{ margin: 10px 0 18px; font-size: 0.85rem; color: var(--ink-soft); flex-grow: 1; }
.price-note{
  margin-top: 32px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* Stats */
.stat-bar{
  margin-top: 48px;
  display: flex;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-item{
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid var(--line);
}
.stat-item:last-child{ border-right: none; }
.stat-num{ font-size: 2rem; font-weight: 800; color: var(--forest); }
.stat-label{ margin-top: 6px; color: var(--ink-soft); font-size: 0.88rem; font-weight: 600; }

/* Steps */
.step-grid{
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card{
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  position: relative;
}
.step-num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}
.step-card h3{ font-size: 1.15rem; font-weight: 800; color: var(--forest-dark); }
.step-card p{ margin-top: 10px; color: var(--ink-soft); }

/* Uppdrag grid */
.uppdrag-grid{
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.uppdrag-card{
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--line);
}
.uppdrag-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--cream-tint);
  color: var(--forest);
  margin-bottom: 16px;
}
.uppdrag-card h3{ font-size: 1.05rem; font-weight: 800; color: var(--forest-dark); }
.uppdrag-card p{ margin-top: 8px; color: var(--ink-soft); font-size: 0.92rem; }

/* FAQ */
.faq-list{
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 4px 22px;
}
.faq-item summary{
  cursor: pointer;
  list-style: none;
  padding: 18px 28px 18px 0;
  font-weight: 700;
  color: var(--forest-dark);
  position: relative;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--forest);
}
.faq-item[open] summary::after{ content: "–"; }
.faq-item p{ margin: 0 0 20px; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }
.faq-item p a{ color: var(--forest-dark); font-weight: 700; text-decoration: underline; }

/* CTA banner */
.cta-banner{
  background: linear-gradient(160deg, var(--forest-dark), var(--forest));
  padding: 90px 0;
  color: #fff;
}
.cta-banner h2{
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 800;
}
.cta-lead{
  max-width: 52ch;
  margin: 18px auto 0;
  color: #d5e3ea;
  font-size: 1.05rem;
}
.booking-form{
  max-width: 640px;
  margin: 40px auto 0;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
}
.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field{ margin-bottom: 18px; }
.form-field-full{ margin-bottom: 4px; }
.form-field label{
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest-dark);
}
.form-field input, .form-field select, .form-field textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.95rem;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline: 2px solid var(--forest);
  outline-offset: 1px;
}
.form-field textarea{ resize: vertical; min-height: 90px; }
.form-submit{ width: 100%; margin-top: 8px; }
.cta-fallback{
  margin-top: 20px;
  color: #d5e3ea;
  font-size: 0.9rem;
}
.cta-fallback a{ color: #fff; font-weight: 700; text-decoration: underline; }

/* Footer */
.site-footer{ background: var(--forest-dark); color: #a9cbe0; padding: 64px 0 0; }
.footer-inner{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo{ color: #fff; }
.footer-brand p{ margin-top: 14px; color: #96acb9; max-width: 34ch; font-size: 0.92rem; }
.footer-heading{ font-weight: 800; color: #fff; margin-bottom: 14px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col p{ margin-bottom: 10px; font-size: 0.92rem; color: #96acb9; }
.footer-col a:hover{ color: #fff; }
.footer-bottom{
  padding: 22px 0;
  font-size: 0.82rem;
  color: #6d8290;
  text-align: center;
}

/* Tack-sida */
.thanks-section{ padding: 120px 0; }
.thanks-card{
  max-width: 520px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.thanks-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cream-tint);
  color: var(--forest);
  margin-bottom: 24px;
}
.thanks-card h1{
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--forest-dark);
}
.thanks-card p{
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1rem;
}
.thanks-note a{ color: var(--forest-dark); font-weight: 700; }
.thanks-card .btn{ margin-top: 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .path-grid, .step-grid{ grid-template-columns: 1fr 1fr; }
  .uppdrag-grid{ grid-template-columns: 1fr 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
  .stat-bar{ flex-wrap: wrap; border-bottom: none; }
  .stat-item{ flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--line); }
  .stat-item:nth-child(odd){ border-right: 1px solid var(--line); }
  .stat-item:nth-last-child(-n+2){ border-bottom: none; }
}

@media (max-width: 720px){
  .main-nav{
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 18px 24px;
    gap: 18px;
    display: none;
  }
  .main-nav.open{ display: flex; }
  .nav-toggle{ display: flex; }
  .path-grid, .step-grid, .uppdrag-grid{ grid-template-columns: 1fr; }
  .hero{ padding: 48px 0 40px; }
  .section{ padding: 64px 0; }
  .form-row{ grid-template-columns: 1fr; }
  .booking-form{ padding: 24px; }
  .stat-item{ flex: 1 1 100%; border-right: none !important; }
  .stat-item:last-child{ border-bottom: none; }
  .top-bar-inner{ flex-direction: column; height: auto; gap: 4px; padding: 8px 0; text-align: center; }
}
