
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --charcoal:        #1a1a1a;
  --charcoal-deep:   #0d0d0d;
  --charcoal-soft:   #2a2a2a;
  --gold:            #c89b3c;
  --gold-light:      #d9b14d;
  --gold-deep:       #a17a25;
  --cream:           #f8f5ee;
  --off-white:       #fdfcf9;
  --text-dark:       #141414;
  --text-body:       #2e2e2e;
  --text-muted:      #4a4a4a;
  --text-sub:        #6a6a6a;
  --border:          #d8d4cc;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body  { font-family: var(--sans); background: var(--off-white); color: var(--text-dark); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(200,155,60,0.15);
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled { background: var(--charcoal-deep); box-shadow: 0 2px 14px rgba(0,0,0,0.4); }
.nav-wrap {
  max-width: 1080px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-mark {
  width: 30px; height: 30px; flex-shrink: 0;
  background: rgba(200,155,60,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(200,155,60,0.55);
}
.nav-logo-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}
.nav-logo-name b { color: var(--gold-light); font-weight: 400; }

.nav-menu { display: flex; align-items: center; gap: 1.75rem; }
.nav-menu > a, .nav-dropdown-trigger {
  font-size: 0.875rem; font-weight: 400;
  color: rgba(255,255,255,0.85); text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans);
  display: flex; align-items: center; gap: 0.3rem;
}
.nav-menu > a:hover, .nav-dropdown-trigger:hover { color: #fff; }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger svg { transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 12px); left: 0;
  background: white; border: 1px solid var(--border);
  border-radius: 10px; padding: 0.5rem 0;
  min-width: 240px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text-body);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--charcoal); }

.nav-btn {
  font-size: 0.85rem; font-weight: 600;
  color: var(--charcoal); text-decoration: none;
  background: var(--gold);
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

@media (max-width: 820px) {
  .nav-menu { display: none; }
  .nav-btn { display: none; }
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 0.4rem; margin-left: 0.5rem;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: white;
  margin: 5px 0;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-hamburger { display: block; }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  z-index: 195;
  overflow-y: auto;
  padding: 1.5rem;
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu.open { display: block; }
.mobile-menu-section { margin-bottom: 1.5rem; }
.mobile-menu-title {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding: 0 0.25rem;
}
.mobile-menu-section a {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  text-decoration: none;
  padding: 0.85rem 0.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-section a:active { color: var(--gold); }
.mobile-menu-cta {
  display: block;
  text-align: center;
  background: var(--gold); color: var(--charcoal);
  font-weight: 600;
  padding: 1rem;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 1rem;
}

/* ── HERO (startsida) — formulär direkt synligt ── */
.hero {
  background: var(--charcoal);
  padding: 5.5rem 1.5rem 3.5rem;
  position: relative; overflow: hidden;
  min-height: 80vh;
}
.hero-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(200,155,60,0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(200,155,60,0.09) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(200,155,60,0.04) 0%, transparent 70%);
}
.hero-inner {
  max-width: 1080px; margin: 0 auto;
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.hero-left { color: white; }
.hero-badges { display: flex; gap: 0.5rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em;
  padding: 0.35rem 0.85rem; border-radius: 2rem;
}
.badge-gold {
  background: rgba(200,155,60,0.18);
  color: var(--gold-light);
  border: 1px solid rgba(200,155,60,0.4);
}
.badge-soft {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.18);
}
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; animation: bdot 1.5s ease-in-out infinite; }
.badge-soft .badge-dot { animation: none; }
@keyframes bdot { 0%,100%{opacity:1} 50%{opacity:0.25} }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  color: #ffffff; line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: 1.4rem; font-weight: 400;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-lead {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.85);
  max-width: 480px; line-height: 1.7; margin-bottom: 1.5rem; font-weight: 300;
}

.hero-trust {
  display: flex; align-items: center; gap: 1rem; margin-top: 1.75rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.7);
}
.hero-trust-item svg { color: var(--gold-light); flex-shrink: 0; }

/* HERO-FORMULÄR */
.hero-form-box {
  background: white;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.hero-form-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.015em;
  margin-bottom: 0.4rem;
}
.hero-form-sub {
  font-size: 0.85rem;
  color: var(--text-sub);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

/* ── SUB-HERO för icke-startsidor ── */
.sub-hero {
  background: var(--charcoal);
  padding: 6rem 1.5rem 3rem;
  position: relative; overflow: hidden;
}
.sub-hero .hero-pattern { opacity: 0.7; }
.sub-hero-inner {
  max-width: 1080px; margin: 0 auto;
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}
.sub-hero-text { color: white; padding-top: 0.5rem; }
.sub-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  color: #ffffff; line-height: 1.08; letter-spacing: -0.02em;
  margin-bottom: 1rem; font-weight: 400;
}
.sub-hero h1 em { font-style: italic; color: var(--gold-light); }
.sub-hero-lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 540px; line-height: 1.7; font-weight: 300;
}
.breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 1.25rem; }
.breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* MOBILE HERO LAYOUT */
@media (max-width: 880px) {
  .hero, .sub-hero { padding: 5.5rem 1.25rem 3rem; min-height: auto; }
  .hero-inner, .sub-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero h1 { font-size: 2.4rem; }
  .sub-hero h1 { font-size: 1.95rem; }
  .hero-lead, .sub-hero-lead { font-size: 0.98rem; }
  .hero-form-box { padding: 1.5rem 1.25rem; }
}

/* ── SECTIONS ── */
section { padding: 4.5rem 1.5rem; }
.wrap { max-width: 1080px; margin: 0 auto; }
.s-tag   { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 0.85rem; }
.s-title { font-family: var(--serif); font-size: clamp(1.9rem,4.5vw,2.8rem); line-height: 1.12; letter-spacing: -0.02em; color: var(--text-dark); margin-bottom: 1.1rem; font-weight: 400; }
.s-title em { font-style: italic; color: var(--gold-deep); }
.s-lead  { font-size: 1.02rem; color: var(--text-body); max-width: 600px; line-height: 1.75; font-weight: 300; }

/* REVEAL */
.rv { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.rv.on { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* TRUST-ROW direkt efter hero */
.trust-row-section {
  background: var(--cream);
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.trust-row-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.trust-row-item {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--text-body);
  font-weight: 500;
}
.trust-row-item svg { color: var(--gold-deep); flex-shrink: 0; }
@media (max-width: 720px) {
  .trust-row-grid { grid-template-columns: 1fr 1fr; }
  .trust-row-item { font-size: 0.8rem; }
}

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.card {
  background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 1.75rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(26,26,26,0.1); }
.card-ico { width: 42px; height: 42px; border-radius: 9px; background: var(--charcoal); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.card-ico svg { color: var(--gold); }
.card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--text-dark); margin-bottom: 0.55rem; letter-spacing: -0.01em; }
.card p  { font-size: 0.92rem; color: var(--text-body); line-height: 1.7; }
.card-link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1rem; font-size: 0.84rem; font-weight: 600; color: var(--gold-deep); text-decoration: none; transition: gap 0.2s; }
.card-link:hover { gap: 0.6rem; color: var(--charcoal); }

/* STEGEN */
.steps-sec { background: var(--charcoal); }
.steps-sec .s-title { color: #fff; }
.steps-sec .s-lead  { color: rgba(255,255,255,0.75); }
.steps-sec .s-tag   { color: var(--gold-light); }
.step-list { margin-top: 2.5rem; }
.step {
  display: grid; grid-template-columns: 52px 1fr; gap: 1.5rem;
  padding: 1.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-n { font-family: var(--serif); font-size: 2.4rem; font-style: italic; color: var(--gold); line-height: 1; }
.step h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: #fff; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.step p  { font-size: 0.92rem; color: rgba(255,255,255,0.8); line-height: 1.7; }

/* PRISBAR */
.price-bar {
  margin-top: 2.5rem; background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 2rem 1.75rem;
  display: grid; grid-template-columns: repeat(auto-fit,minmax(155px,1fr)); gap: 1.5rem;
}
.price-item { text-align: center; }
.price-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-sub); font-weight: 600; margin-bottom: 0.4rem; }
.price-val   { font-family: var(--serif); font-size: 1.75rem; color: var(--text-dark); letter-spacing: -0.02em; line-height: 1; margin-bottom: 0.3rem; }
.price-note  { font-size: 0.78rem; color: var(--text-sub); }
.price-div   { width: 1px; background: var(--border); align-self: stretch; }

.rot-row {
  margin-top: 1rem;
  background: rgba(200,155,60,0.1);
  border: 1px solid rgba(200,155,60,0.3);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-body);
  display: flex; align-items: center; gap: 0.65rem;
}
.rot-row strong { color: var(--charcoal); font-weight: 600; }
.rot-row svg { color: var(--gold-deep); flex-shrink: 0; }

/* CITIES */
.cities-sec { background: var(--cream); }
.city-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap: 1rem; margin-top: 2.5rem; }
.city-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 1.375rem; transition: border-color 0.25s, transform 0.25s; text-decoration: none; display: block; color: inherit; }
.city-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.city-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--text-dark); margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.city-text { font-size: 0.85rem; color: var(--text-body); line-height: 1.65; }

/* FORMULÄR — använt både i hero och i info-sidor */
form { display: flex; flex-direction: column; gap: 0.85rem; }
.fg { display: flex; flex-direction: column; gap: 0.35rem; }
.fg label { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); }
.fg input, .fg select, .fg textarea {
  font-family: var(--sans); font-size: 0.95rem; color: var(--text-dark);
  background: white; border: 1px solid var(--border);
  border-radius: 6px; padding: 0.7rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%; -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,155,60,0.15);
}
.fg textarea { resize: vertical; min-height: 88px; line-height: 1.55; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.email-err { display: none; font-size: 0.82rem; color: #d94535; margin-top: -0.35rem; }
.form-sub {
  background: var(--charcoal); color: #fff; font-family: var(--sans);
  font-size: 0.95rem; font-weight: 600; padding: 0.9rem 1.5rem;
  border-radius: 6px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 0.4rem;
  width: 100%;
}
.form-sub:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-1px); }
.form-response {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; color: var(--gold-deep); font-weight: 500; margin-top: 0.25rem;
}
.form-note { font-size: 0.76rem; color: var(--text-sub); line-height: 1.55; margin-top: 0.4rem; }
.form-ok {
  display: none; background: rgba(200,155,60,0.1); border: 1px solid rgba(200,155,60,0.35);
  border-radius: 6px; padding: 1rem 1.125rem; font-size: 0.9rem; color: var(--text-dark);
  margin-top: 0.5rem; line-height: 1.55;
}

/* Sekundär kontaktsektion lägre på sidan (för info-sidor främst) */
.form-section-secondary { background: var(--cream); }
.form-section-secondary .wrap { max-width: 760px; }
.form-section-secondary .form-card {
  background: white;
  border-radius: 14px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}

/* ARTICLE-typ */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; color: var(--text-dark); margin: 2.75rem 0 1rem; letter-spacing: -0.015em; }
.article-body h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--text-dark); margin: 1.75rem 0 0.7rem; letter-spacing: -0.01em; }
.article-body p { font-size: 1rem; color: var(--text-body); line-height: 1.78; margin-bottom: 1rem; }
.article-body ul, .article-body ol { margin: 0.4rem 0 1.2rem 1.5rem; }
.article-body li { font-size: 1rem; color: var(--text-body); line-height: 1.75; margin-bottom: 0.45rem; }
.article-body strong { color: var(--text-dark); font-weight: 600; }
.callout {
  background: rgba(200,155,60,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1.2rem 1.4rem;
  margin: 1.4rem 0;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}
.callout strong { color: var(--text-dark); }
.warning {
  background: rgba(217,69,53,0.06);
  border-left: 3px solid #d94535;
  border-radius: 0 8px 8px 0;
  padding: 1.2rem 1.4rem;
  margin: 1.4rem 0;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}
.warning strong { color: #a8362b; }

/* FAQ */
.faq-list { margin-top: 2rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--text-dark); margin-bottom: 0.5rem; }
.faq-a { font-size: 0.95rem; color: var(--text-body); line-height: 1.72; }

/* INLINE CTA */
.inline-cta {
  background: var(--charcoal); color: #fff;
  border-radius: 14px; padding: 2.25rem 1.75rem;
  margin: 2.5rem 0;
  text-align: center;
}
.inline-cta h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.65rem; color: #fff; }
.inline-cta p { color: rgba(255,255,255,0.78); margin-bottom: 1.4rem; font-size: 0.95rem; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--charcoal);
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  padding: 0.9rem 1.75rem; border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ABOUT-band */
.about-band { background: var(--cream); padding: 3.5rem 1.5rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: center; }
@media (max-width: 640px) { .about-inner { grid-template-columns: 1fr; gap: 1.5rem; } }
.about-h { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--text-dark); letter-spacing: -0.02em; line-height: 1.2; }
.about-h em { font-style: italic; color: var(--gold-deep); }
.about-p { font-size: 0.92rem; color: var(--text-body); line-height: 1.78; }
.about-disc { display: inline-flex; align-items: flex-start; gap: 0.5rem; background: rgba(200,155,60,0.08); border: 1px solid rgba(200,155,60,0.25); border-radius: 6px; padding: 0.75rem 1rem; font-size: 0.82rem; color: var(--text-body); margin-top: 1rem; line-height: 1.5; }
.about-disc strong { color: var(--charcoal); }

/* FOOTER */
footer { background: var(--charcoal-deep); padding: 3.25rem 1.5rem; }
.footer-wrap { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; }
.footer-logo-mark { width: 26px; height: 26px; border-radius: 50%; background: rgba(200,155,60,0.15); border: 1px solid rgba(200,155,60,0.4); display: flex; align-items: center; justify-content: center; }
.footer-logo-name { font-family: var(--serif); font-size: 1.1rem; color: rgba(255,255,255,0.9); }
.footer-logo-name b { color: var(--gold-light); font-weight: 400; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.92); }
.footer-hr { border: none; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-bot a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-bot a:hover { color: rgba(255,255,255,0.9); }

/* Sticky mobile CTA — endast touch-enheter, scrollar till formulär */
.sticky-cta { display: none; }
@media (max-width: 720px) and (hover: none) and (pointer: coarse) {
  .sticky-cta {
    display: flex !important;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--charcoal); border-top: 1px solid rgba(200,155,60,0.3);
    padding: 0.85rem 1rem;
    z-index: 150;
    gap: 0.5rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
  }
  .sticky-cta a {
    flex: 1;
    text-align: center;
    background: var(--gold); color: var(--charcoal);
    padding: 0.875rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
  }
  body { padding-bottom: 72px; }
}

@media (max-width: 640px) {
  section { padding: 3.5rem 1.25rem; }
  .footer-links { flex-direction: column; gap: 0.75rem; }
  .footer-bot   { flex-direction: column; align-items: flex-start; }
  .price-bar    { padding: 1.5rem 1.25rem; }
}
