/* ================================================
   Skidresor.se — Main CSS
   Primärfärg: #00548a | Font: Lato
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #09355c;
  --primary-dark: #062140;
  --primary-mid:  #54708b;
  --cta:          #fbe17e;
  --cta-hover:    #f5d44a;
  --bg:           #eff4f7;
  --white:        #ffffff;
  --text:         #212529;
  --muted:        #6c757d;
  --border:       #afc5d8;
  --accent:       rgb(99, 62, 110);
  --radius:       5px;
  --radius-btn:   0 8px 0 8px;
  --shadow:       0 2px 10px rgba(9,53,92,.10);
  --font-headline: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:     'Montserrat', 'Segoe UI', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 170px; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
p a:not(.btn):not(.legal-cta), li a:not(.btn):not(.legal-cta) { text-decoration: underline; text-decoration-color: var(--border); text-underline-offset: 2px; }
p a:not(.btn):not(.legal-cta):hover, li a:not(.btn):not(.legal-cta):hover { text-decoration-color: var(--primary); }

img { max-width: 100%; height: auto; display: block; }
h2 > img, h3 > img { display: inline; vertical-align: middle; }

h1, h2, h3, h4 { font-family: var(--font-headline); line-height: 1.2; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .02em; }
h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .6rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .5rem; }
h3 { font-size: 1.3rem; margin-bottom: .4rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ================================================
   TOPBAR
   ================================================ */
.topbar {
  background: var(--bg);
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  font-size: .82rem;
  font-weight: 500;
  padding: 7px 20px;
  letter-spacing: .02em;
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
  border-bottom: 1px solid var(--border);
}

/* Tvåradig layout: logo uppe-vänster, nav nere-höger */
.header-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 110px;
  padding: 12px 0 0;
}

.site-logo {
  display: block;
  align-self: flex-start;
  margin-top: 14px;
}
.site-logo img { display: block; }
.site-logo:hover { text-decoration: none; opacity: .85; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  padding-bottom: 8px;
}

.site-nav a {
  font-family: var(--font-headline);
  color: #000;
  font-size: 1.25rem;
  font-weight: 300;
  padding: 8px 15px;
  transition: color .15s;
  white-space: nowrap;
  line-height: 1.375;
  letter-spacing: .06em;
}
.site-nav a:hover { color: #000; text-decoration: underline; text-underline-offset: 4px; }
.site-nav a.active { color: var(--primary); font-weight: 700; }

.nav-sista {
  color: #000 !important;
  font-weight: 600 !important;
  background: var(--cta) !important;
  padding: 8px 18px !important;
  border-radius: 4px !important;
}
.nav-sista:hover { background: var(--cta-hover) !important; color: #000 !important; }

.nav-cta {
  color: var(--primary) !important;
  font-weight: 700 !important;
  border: 1.5px solid var(--primary) !important;
  padding: 6px 14px !important;
  border-radius: 4px !important;
  margin-left: 8px !important;
}
.nav-cta:hover { background: var(--primary) !important; color: var(--white) !important; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  position: absolute;
  right: 20px;
  top: 20px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: .2s; }

.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px 20px;
}
.mobile-nav a {
  display: block;
  font-family: var(--font-headline);
  color: var(--text);
  padding: 10px 0;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--primary); text-decoration: none; }
.mobile-nav a.nav-sista-mob { background: var(--cta); color: #000; font-weight: 600; padding: 10px 12px; border-radius: 4px; }
.mobile-nav.open { display: block; }

/* Overlay bakom mobilmeny */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 999;
}
.mobile-nav-overlay.open { display: block; }

/* ================================================
   HERO (startsida)
   ================================================ */
.hero {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 480px;
  position: relative;
  z-index: 1;
}
.hero-text {
  padding: 60px 0;
}
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 1rem; text-shadow: none; }
.hero p { font-family: var(--font-body); font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,.85); max-width: 500px; margin: 0 0 2rem; text-shadow: none; text-transform: none; }
.hero-image {
  position: relative;
  height: 100%;
  min-height: 480px;
}
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--primary) 0%, transparent 15%);
  z-index: 1;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-headline);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 12px 30px;
  border-radius: var(--radius-btn);
  font-size: 1.1rem;
  cursor: pointer;
  transition: opacity .15s;
  text-align: center;
  border: 2px solid transparent;
}
.btn:hover { text-decoration: none; opacity: .9; }
.btn:active { opacity: .85; }

.btn-primary { background: var(--cta); color: #000; border-color: var(--cta); }
.btn-primary:hover { background: var(--cta-hover); color: #000; }

.btn-blue { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-blue:hover { background: var(--primary-dark); color: var(--white); }

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover { background: var(--primary); color: var(--white); }

.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { opacity: .9; }

.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { opacity: .8; }

.btn-block { display: block; width: 100%; }

/* ================================================
   ORTER GRID (startsida)
   ================================================ */
.orter-section { padding: 56px 0; }
.orter-section + .orter-section { padding-top: 0; }

.section-header { margin-bottom: 28px; }
.section-header h2 { color: var(--primary); }
.section-label {
  display: inline-block;
  font-family: var(--font-headline);
  background: var(--primary);
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 14px;
  border-radius: var(--radius-btn);
  margin-bottom: 8px;
}

.ort-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.ort-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.ort-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,84,138,.15); text-decoration: none; }

.ort-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--border);
}
.ort-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.ort-card-body { padding: 14px 16px; }
.ort-card-body h3 { font-family: var(--font-headline); font-size: 1.15rem; color: var(--primary); margin-bottom: 4px; text-transform: uppercase; }
.ort-card-body p { font-size: .85rem; color: var(--muted); margin: 0; }
.ort-card-arrow {
  font-family: var(--font-headline);
  font-size: .95rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

/* ================================================
   ORT-SIDA (vinter/sommar)
   ================================================ */
.ort-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--primary);
}
.ort-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.ort-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,61,99,.35) 0%, rgba(0,61,99,.10) 40%, rgba(0,61,99,.45) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 20px 40px;
}
.ort-hero-text { width: 100%; }
.ort-hero-overlay > .container { padding-left: 30px; padding-right: 30px; }
.ort-hero-text h1 { color: var(--white); margin: 0; text-shadow: 0 3px 5px rgba(0,0,0,.6); }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.90); margin-bottom: 8px; background: rgba(0,0,0,.25); display: inline-block; padding: 5px 14px; border-radius: 4px; }
.breadcrumb a { color: rgba(255,255,255,.90); }
.breadcrumb a:hover { color: var(--white); }

.ort-content { padding: 48px 0; }

.ort-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.ort-main h2 { margin-top: 32px; padding-top: 32px; border-top: 2px solid var(--border); }
.ort-main h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.ort-cta-block {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
  text-align: center;
}
.ort-cta-block p { color: rgba(255,255,255,.9); margin-bottom: 16px; }
.ort-cta-block .btn { background: var(--border); color: #000; font-size: 1.15rem; border: 2px solid var(--border); }
.ort-cta-block .btn:hover { opacity: .85; }

/* Sidebar */
.ort-sidebar { }

.sidebar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.sidebar-card h3 {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  text-transform: uppercase;
}

.fakta-list { list-style: none; }
.fakta-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.fakta-list li:last-child { border-bottom: none; }
.fakta-list .label { color: var(--muted); flex-shrink: 0; }
.fakta-list .value { font-weight: 700; color: var(--primary); text-align: right; word-break: break-word; }

.temp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  font-size: .82rem;
}
.temp-row { display: contents; }
.temp-row span { padding: 3px 0; }
.temp-manad { font-weight: 700; color: var(--primary); }
.temp-dag { color: var(--text); }

/* Temperature bar chart */
.temp-chart { display: flex; flex-direction: column; gap: 6px; }
.temp-bar-row {
  display: grid;
  grid-template-columns: 36px 1fr 72px;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
}
.temp-bar-label { font-weight: 600; color: var(--primary); }
.temp-bar-track {
  position: relative;
  height: 22px;
  background: var(--bg);
  border-radius: 3px;
  overflow: hidden;
}
.temp-bar-range {
  position: absolute;
  top: 2px;
  bottom: 2px;
  border-radius: 2px;
  min-width: 2px;
}
.temp-bar-range.dag { background: var(--primary); opacity: .85; }
.temp-bar-range.natt { background: var(--primary-mid); opacity: .5; }
.temp-bar-values {
  font-size: .72rem;
  color: var(--text);
  white-space: nowrap;
  font-weight: 600;
  text-align: right;
}
.temp-zero-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e53935;
  opacity: .5;
  z-index: 1;
}
.temp-legend {
  display: flex;
  gap: 14px;
  font-size: .72rem;
  color: var(--muted);
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid var(--border);
}
.temp-legend span::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  margin-right: 4px;
  vertical-align: middle;
}
.temp-legend .leg-dag::before { background: var(--primary); opacity: .85; }
.temp-legend .leg-natt::before { background: var(--primary-mid); opacity: .5; }
.temp-legend .leg-zero::before { background: #e53935; opacity: .5; width: 2px; }

/* Price indicator */
.price-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.price-dots {
  display: flex;
  gap: 4px;
}
.price-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
}
.price-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}
.price-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
}
.price-icon {
  font-size: 1.4rem;
  line-height: 1;
}
.price-icon.cheap { color: #2e7d32; }
.price-icon.medium { color: var(--primary); }
.price-icon.expensive { color: #c62828; }

.sidebar-cta .btn { width: 100%; text-align: center; font-size: .95rem; }

/* Tips */
.tips-list { counter-reset: tips; list-style: none; }
.tips-list li {
  counter-increment: tips;
  padding: 12px 0 12px 44px;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: .95rem;
}
.tips-list li:last-child { border-bottom: none; }
.tips-list li::before {
  content: counter(tips);
  position: absolute;
  left: 0;
  top: 12px;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
}
.tips-list strong { display: block; color: var(--primary); }

/* Visste du */
.visste-du-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.visste-du-box::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 8rem;
  color: rgba(255,255,255,.08);
  font-family: Georgia, serif;
  line-height: 1;
}
.visste-du-box h3 { color: rgba(255,255,255,.9); font-size: 1rem; margin-bottom: 10px; font-weight: 700; }
.visste-du-box p { color: rgba(255,255,255,.88); font-size: .95rem; margin: 0; }

/* Pistkarta */
.pistkarta-section { margin-top: 40px; }
.pistkarta-section img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  width: 100%;
}
.pistkarta-btns { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }

/* Relaterade orter */
.relaterade-section { background: var(--bg); padding: 48px 0; margin-top: 48px; }
.relaterade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.relaterad-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--primary);
  transition: transform .2s, box-shadow .2s;
}
.relaterad-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,84,138,.15); text-decoration: none; }
.relaterad-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.relaterad-card-body { padding: 12px 14px; text-align: center; }
.relaterad-card-body small { font-weight: 400; font-size: .8rem; color: var(--muted); text-transform: none; }

/* ================================================
   CONTENT PAGES (om-oss, villkor, kontakt)
   ================================================ */
.page-header {
  background: var(--primary);
  color: var(--white);
  padding: 48px 20px;
}
.page-header h1 { color: var(--white); margin: 0; }

.page-content { padding: 60px 0; max-width: 800px; }
.page-content h2 { margin: 32px 0 12px; }
.page-content ul, .page-content ol { padding-left: 1.4em; margin-bottom: 1rem; }
.page-content li { margin-bottom: .4rem; }

.contact-form {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .9rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  transition: border-color .15s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { color: #1a7a3a; background: #e6f4ea; border-radius: 4px; padding: 14px; margin-top: 12px; display: none; }

/* ================================================
   PISTKARTOR
   ================================================ */
.pistkartor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 48px 0;
}
.pistkarta-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pistkarta-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.pistkarta-card-body { padding: 14px 16px; }
.pistkarta-card-body h3 { font-size: 1rem; margin-bottom: 8px; }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,.95);
  padding: 48px 0 24px;
  font-size: .9rem;
}
.footer-brand {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 32px;
}
.footer-brand .site-logo { display: inline-block; margin-bottom: 12px; }
.footer-brand p { font-size: .85rem; line-height: 1.6; max-width: 420px; color: rgba(255,255,255,.90); }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-top .footer-col:first-child ul { columns: 2; column-gap: 32px; }
.footer-top .footer-col:first-child li { break-inside: avoid; }
.footer-mid {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
}

.footer-col h4 {
  font-family: var(--font-headline);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,.88); font-size: .9rem; font-weight: 300; }
.footer-col a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }

/* Systerwebbar */
.syster-links {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  margin-top: 20px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
}
.syster-links a { color: rgba(255,255,255,.45); margin-right: 4px; }
.syster-links a:hover { color: rgba(255,255,255,.8); }

/* ================================================
   LEGAL / CONTACT PAGES
   ================================================ */
.legal-page { background: var(--bg); min-height: 60vh; }
.legal-container { max-width: 820px; margin: 0 auto; padding: 48px 24px 72px; }
.legal-container > h1 { font-size: clamp(1.6rem,3.5vw,2.2rem); color: var(--primary); margin-bottom: .35rem; }
.legal-updated { color: var(--muted); font-size: .9rem; margin-bottom: 32px; }

.legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 16px;
  overflow: visible;
}
/* Tabeller i legal-cards: responsiv scroll + max bredd */
.legal-card table { max-width: 100%; }
.legal-card div[style*="overflow-x"] { -webkit-overflow-scrolling: touch; max-width: calc(100vw - 48px); }
.legal-card h2 { font-family: var(--font-headline); font-size: 1.3rem; color: var(--primary); margin: 0 0 .7rem; text-transform: uppercase; }
.legal-card p { line-height: 1.75; color: #444; margin-bottom: .8rem; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul { padding-left: 1.4rem; margin-bottom: .8rem; }
.legal-card ul li { line-height: 1.7; margin-bottom: .3rem; color: #444; }
.legal-card a:not(.legal-cta) { color: var(--primary); }
.legal-card a.btn-secondary:hover,
.legal-card a.btn:hover { color: var(--white); }

.legal-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.legal-cta {
  display: inline-block;
  font-family: var(--font-headline);
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 11px 26px;
  border-radius: var(--radius-btn);
  transition: opacity .15s;
}
.legal-cta:hover { background: var(--primary-dark); color: var(--white); text-decoration: none; }
.legal-cta.secondary { background: var(--white); color: var(--primary); border: 2px solid var(--primary); }
.legal-cta.secondary:hover { background: var(--primary); color: var(--white); }

.contact-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; align-items: start; margin-top: 10px; }
.ski-contact-form label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 5px; color: var(--text); }
.ski-contact-form input,
.ski-contact-form textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: .95rem;
  margin-bottom: 14px;
  background: var(--white);
  transition: border-color .15s;
}
.ski-contact-form input:focus,
.ski-contact-form textarea:focus { outline: none; border-color: var(--primary); }
.ski-contact-form textarea { resize: vertical; min-height: 130px; }
.legal-link { color: var(--primary); font-weight: 600; }
.legal-link:hover { color: var(--primary-dark); }

@media (max-width: 640px) {
  .contact-layout { grid-template-columns: 1fr; }
  .legal-card { padding: 20px; }
}

/* ================================================
   FAQ PAGE
   ================================================ */
.faq-list { display: flex; flex-direction: column; gap: 6px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 16px 50px 16px 24px;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .02em;
  position: relative;
  transition: background .15s;
}
.faq-q:hover { background: var(--bg); }
.faq-q::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary-mid);
  transition: transform .2s;
}
.faq-item.open .faq-q { background: var(--bg); }
.faq-item.open .faq-q::after { content: '−'; }

.faq-a {
  display: none;
  padding: 0 20px 18px 24px;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }
.faq-a p {
  margin: 14px 0 0;
  font-size: .95rem;
  color: #3a3a3a;
  line-height: 1.75;
}

/* ================================================
   SCHEMA / SEO hidden
   ================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  .ort-layout { grid-template-columns: 1fr; }
  .ort-sidebar { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-top .footer-col:first-child { grid-column: 1 / -1; }
}

/* Mobile menu scroll lock */
body.menu-open { overflow: hidden; }

@media (max-width: 900px) {
  [id] { scroll-margin-top: 84px; }
  .header-inner { min-height: auto; padding: 10px 0; align-items: center; }
  .site-logo img { height: 48px; width: auto; }
  .site-logo { margin-top: 0; }
  .site-nav { display: none; }
  .burger { display: flex; position: fixed; right: 20px; top: 14px; z-index: 1010; }
  .hero-btns-desktop { display: none; }
  .ort-sidebar { position: static; }

  /* Hamburger: halv bredd, slide från höger */
  .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -70%;
    width: 65%;
    height: 100vh;
    z-index: 1000;
    padding: 72px 24px 32px;
    border-top: none;
    box-shadow: -4px 0 20px rgba(0,0,0,.25);
    transition: right .25s ease;
    overflow-y: auto;
  }
  .mobile-nav.open { right: 0; }
}

@media (max-width: 640px) {
  .site-nav { display: none; }
  .burger { display: flex; }
  .hero .container { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 24px 20px 0; text-align: center; }
  .hero-text p { display: none; }
  .hero-text div { justify-content: center; }
  .hero-image { min-height: 0; }
  .hero-image img { position: static; height: auto; }
  .hero-image::before { display: none; }
  .hero-below-text { display: block; padding: 20px 20px 0; text-align: center; color: rgba(255,255,255,.85); font-size: .95rem; }
  .hero-btns-mobile { display: flex; gap: 8px; justify-content: center; padding: 12px 12px 2px; }
  .hero-btns-mobile .btn { padding: 8px 14px; font-size: .78rem; white-space: nowrap; }
  .hero-btns-desktop { display: none; }
  .ort-hero { height: 280px; }
  .footer-top { gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pistkarta-btns { flex-direction: column; }
  .relaterade-grid { grid-template-columns: 1fr 1fr; }
}

/* Snabbsvar/snabbfakta-block (AI-sok + featured snippets) */
.snabbsvar {
  background: var(--white, #fff);
  border: 1px solid var(--border);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 18px 0 26px;
}
.snabbsvar-label {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--primary);
  margin-bottom: 6px;
}
.snabbsvar p { margin: 0; line-height: 1.65; color: var(--text, #333); font-size: .97rem; }
.snabbsvar p + p { margin-top: 8px; }
.snabbsvar-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.snabbsvar-chips span {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}
