/**
 * Joakims Mynt & Guld — Client Components CSS
 *
 * Shared component styles extracted from exempelsidor HTML files.
 * These styles are used across ~97 clean-page HTML files and must be
 * loaded AFTER main.css and client.css.
 *
 * Load order: fonts -> main.css -> client.css -> client-components.css
 *
 * Sections:
 *   1. Section Label & Typography
 *   2. Layout Utilities
 *   3. Buttons
 *   4. Reveal Animations
 *   5. Hero — Overlay Layout
 *   6. Hero — Split Layout
 *   7. Hero Chips & CTAs
 *   8. Section Headings
 *   9. Item Cards / Grid
 *  10. Steps (Vardering)
 *  11. Prisblock (Dark)
 *  12. Content Section (Two-col with Sidebar)
 *  13. Content Split (Text + Image)
 *  14. Info Callout
 *  15. USP Bar
 *  16. Location Cards (loc-card-a)
 *  17. FAQ + Form Section
 *  18. Final CTA
 *  19. Mobile Sticky CTA
 *  20. Open/Closed Status Tag
 */


/* ================================================================
   1. SECTION LABEL & TYPOGRAPHY
   ================================================================ */
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label--silver {
  color: var(--silver-dark, #5c7a8e);
}

.section-intro {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 52px;
}


/* ================================================================
   2. LAYOUT UTILITIES
   ================================================================ */
.section-inner {
  width: 100%;
  padding: 0 48px;
}

.max-w {
  max-width: 1180px;
  margin: 0 auto;
}

.section-max {
  max-width: 1320px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .section-inner { padding: 0 20px; }
}


/* ================================================================
   3. BUTTONS
   ================================================================ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #b5761e;
  border-color: #b5761e;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(203,135,50,0.28);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1.5px solid var(--navy);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
}

.btn-silver {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--silver, #9e9d9d);
  color: #fff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-silver:hover {
  background: var(--silver-dark, #5c7a8e);
  transform: translateY(-1px);
}

.btn-outline-silver {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--silver-dark, #5c7a8e);
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--silver, #9e9d9d);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-silver:hover {
  background: var(--silver, #9e9d9d);
  color: #fff;
}

.btn-primary-white {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn-primary-white:hover {
  background: #b5761e;
  border-color: #b5761e;
  transform: translateY(-1px);
}

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.90);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.60);
}

/* btn-outline — hero secondary CTA (colors via inline styles) */
.btn-outline {
  display: inline-block;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.60);
}

/* btn-white — final CTA primary (white bg on navy) */
.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--navy, #18405d);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-white:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-1px);
}

/* btn-ghost-light — lighter ghost variant */
.btn-ghost-light {
  display: inline-block;
  background: transparent;
  color: var(--gold, #cb8732);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1.5px solid var(--gold, #cb8732);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-ghost-light:hover {
  background: var(--gold, #cb8732);
  color: #fff;
}

/* btn-primary-light — softer gold button */
.btn-primary-light {
  display: inline-block;
  background: var(--gold-light, #e7bd33);
  color: var(--navy, #18405d);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid var(--gold-light, #e7bd33);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary-light:hover {
  background: var(--gold, #cb8732);
  color: #fff;
  border-color: var(--gold, #cb8732);
  transform: translateY(-1px);
}

/* btn-gold / btn-gold-glow */
.btn-gold {
  display: inline-block;
  background: var(--gold, #cb8732);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid var(--gold, #cb8732);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-gold:hover {
  background: #b5761e;
  border-color: #b5761e;
  transform: translateY(-1px);
}
.btn-gold-glow {
  display: inline-block;
  background: var(--gold, #cb8732);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid var(--gold, #cb8732);
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(203,135,50,0.35);
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-gold-glow:hover {
  background: #b5761e;
  border-color: #b5761e;
  box-shadow: 0 6px 24px rgba(203,135,50,0.45);
  transform: translateY(-1px);
}

/* btn-ghost-gold */
.btn-ghost-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold, #cb8732);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1.5px solid var(--gold, #cb8732);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-ghost-gold:hover {
  background: var(--gold, #cb8732);
  color: #fff;
}

/* btn-text-link */
.btn-text-link {
  display: inline-block;
  background: transparent;
  color: var(--gold, #cb8732);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 0;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: none;
}
.btn-text-link:hover {
  color: #b5761e;
}

/* btn-cta-* variants */
.btn-cta-white {
  display: inline-block;
  background: #fff;
  color: var(--navy, #18405d);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 16px 36px;
  border-radius: 4px;
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-cta-white:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-1px);
}
.btn-cta-outline,
.btn-cta-outline-white {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 16px 36px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-cta-outline:hover,
.btn-cta-outline-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.60);
}
.btn-cta-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold, #cb8732);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 16px 36px;
  border-radius: 4px;
  border: 2px solid var(--gold, #cb8732);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-cta-arrow:hover {
  background: #b5761e;
  border-color: #b5761e;
  transform: translateY(-1px);
}


/* ================================================================
   4. REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Bridge for theme's .visible class */
.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ================================================================
   5. HERO — Overlay Layout (background image + overlay)
      Used on tandguld, silverbestick, most subpages
   ================================================================ */
#subpage-hero {
  padding: 80px 40px 68px;
}


/* Split-layout (grid) heroes: remove padding — columns handle their own */
#subpage-hero:has(.hero-img-col) {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
}
/* Split-layout: inner must stretch to fill grid cell (no centering) */
#subpage-hero:has(.hero-img-col) .hero-subpage-inner {
  max-width: none;
  margin: 0;
  width: 100%;
}
.hero-subpage-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  margin: 0 6px;
  opacity: 0.5;
}

.hero-subpage-inner h1 {
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 760px;
}

.hero-subpage-intro {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  #subpage-hero { padding: 56px 24px 52px; }
  #subpage-hero:has(.hero-img-col) { padding: 0; }
}

/* hero-img-col — split hero image container */
.hero-img-col {
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.hero-img-col img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy, #18405d) 0%, rgba(24,64,93,0.25) 60%, transparent 100%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-img-col { height: 280px; }
}


/* ================================================================
   6. HERO — Split Layout (text left, image right)
      Used on salja-silver, salja-guld
   ================================================================ */
#hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 82vh;
}

.hero-left {
  background: var(--bg);
  padding: 90px 64px 90px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(143,168,184,0.15);
  border: 1px solid rgba(143,168,184,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-dark, #5c7a8e);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--silver, #9e9d9d);
}

#hero h1 {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero-body {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 28px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(143,168,184,0.25);
  padding: 7px 14px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
}

.trust-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--silver-dark, #5c7a8e);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Hero right — full-bleed image column */
.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: var(--navy);
}

.hero-right-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24,64,93,0.18) 0%, rgba(0,0,0,0.08) 100%);
  z-index: 1;
}

/* Hero price preview card (bottom-left of hero image) */
.hero-price-preview {
  position: absolute;
  bottom: 28px;
  left: 28px;
  width: 260px;
  background: rgba(14,34,54,0.42);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 18px 22px;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.hpp-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-light, #c8d8e2);
  opacity: 0.6;
  margin-bottom: 10px;
}

.hpp-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hpp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.hpp-name { color: rgba(255,255,255,0.55); }
.hpp-val { color: #fff; font-weight: 600; }

@media (max-width: 960px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 340px; }
  .hero-left { padding: 64px 32px; }
}

@media (max-width: 600px) {
  .hero-left { padding: 48px 20px; }
  #hero h1 { font-size: 28px; }
}


/* ================================================================
   7. HERO CHIPS & CTAs (shared across both hero layouts)
   ================================================================ */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 7px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.90);
}

.chip svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}


/* ================================================================
   8. SECTION HEADINGS
   ================================================================ */
.section-heading {
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.section-heading p {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 620px;
  line-height: 1.65;
}


/* ================================================================
   9. ITEM CARDS / GRID
      Used in "Vad vi koper" sections across pages
   ================================================================ */
.vad-vi-koper {
  background: var(--bg-warm);
  padding: 80px 60px;
  border-bottom: 1px solid var(--border);
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.items-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.item-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  padding: 24px 20px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.item-card:hover {
  box-shadow: 0 8px 28px rgba(24,64,93,0.10);
  transform: translateY(-3px);
}

.item-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(203,135,50,0.10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.item-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.item-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.item-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .items-grid { grid-template-columns: repeat(2, 1fr); }
  .items-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .vad-vi-koper { padding: 60px 24px; }
}

@media (max-width: 480px) {
  .items-grid { grid-template-columns: 1fr; }
  .items-grid-3 { grid-template-columns: 1fr; }
}


/* ================================================================
   10. STEPS (Vardering Process)
   ================================================================ */
.vardering-section {
  background: var(--bg);
  padding: 80px 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  z-index: 0;
}

/* 3-step connector line override */
.steps-grid-3::before {
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
}

.step-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
}

.step-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-item p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* Step card variant (icon-based, used on salja-silver) */
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-silver, #f5f7f9);
  border: 2px solid var(--silver, #9e9d9d);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.step-circle svg {
  width: 24px;
  height: 24px;
  stroke: var(--silver-dark, #5c7a8e);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-num-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
}

.steps-note {
  margin-top: 36px;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .vardering-section { padding: 60px 24px; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}


/* ================================================================
   11. PRISBLOCK (Dark navy pricing section)
   ================================================================ */
.prisblock {
  background: var(--navy);
  padding: 64px 60px;
}

.prisblock-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.prisblock-text .section-label {
  color: var(--gold);
}

.prisblock-text h2 {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.prisblock-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 24px;
}

.price-row-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.price-row-sub:last-child {
  border-bottom: none;
}

.price-row-sub .pname {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
}

.price-row-sub .pval {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
}

.price-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .prisblock { padding: 60px 24px; }
  .prisblock-inner { grid-template-columns: 1fr; gap: 40px; }
}


/* ================================================================
   12. CONTENT SECTION (Two-col with Sidebar)
       Used on tandguld, silverbestick content areas
   ================================================================ */
.content-section {
  background: var(--bg);
  padding: 80px 60px;
}

.content-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.content-two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}

.content-text h2 {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.content-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 12px;
}

.content-text p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 18px;
}

.content-text strong {
  color: var(--navy);
  font-weight: 600;
}

/* Sidebar boxes */
.sidebar-box {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  padding: 28px 24px;
  margin-bottom: 24px;
}

.sidebar-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.sidebar-box ul {
  list-style: none;
}

.sidebar-box ul li {
  font-size: 14px;
  color: var(--text-dim);
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.sidebar-box ul li:last-child {
  border-bottom: none;
}

.sidebar-box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.sidebar-box p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .content-section { padding: 60px 24px; }
  .content-two-col { grid-template-columns: 1fr; gap: 40px; }
}


/* ================================================================
   13. CONTENT SPLIT (Text + Image side by side)
   ================================================================ */
.content-split {
  background: var(--bg);
  padding: 80px 60px;
}

.split-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.split-text h2 {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.split-text p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 18px;
}

.split-text strong {
  color: var(--navy);
  font-weight: 600;
}

.split-text ul {
  list-style: none;
  margin: 16px 0 20px;
}

.split-text ul li {
  font-size: 15px;
  color: var(--text-dim);
  padding: 8px 0 8px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.split-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: rgba(203,135,50,0.15);
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.split-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(24,64,93,0.12);
}

@media (max-width: 900px) {
  .content-split { padding: 60px 24px; }
  .split-inner { grid-template-columns: 1fr; gap: 40px; }
  .split-img { order: -1; }
}


/* ================================================================
   14. INFO CALLOUT
   ================================================================ */
.info-callout {
  background: rgba(203,135,50,0.08);
  border: 1px solid rgba(203,135,50,0.25);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0;
}

.info-callout p {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.7;
  margin: 0;
}

.info-callout strong {
  font-weight: 600;
}


/* ================================================================
   15. USP BAR (Trust section with icons)
   ================================================================ */
.usp-section {
  background: var(--bg-warm);
  padding: 64px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.usp-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.usp-icon {
  width: 44px;
  height: 44px;
  background: rgba(203,135,50,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usp-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.usp-item strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.usp-item span {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* USP card variant (used on salja-silver) */
.usp-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.usp-card h3 {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 17px;
  color: var(--navy);
}

.usp-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-section { padding: 52px 24px; }
}

@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr; }
}


/* ================================================================
   16. LOCATION CARDS (loc-card-a with slide-reveal map)
   ================================================================ */
.locations-section {
  background: var(--bg-warm);
  padding: 72px 0 60px;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.loc-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  background: var(--bg);
  box-shadow: 0 2px 16px rgba(24,64,93,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}

.loc-card:hover {
  box-shadow: 0 12px 40px rgba(24,64,93,0.14);
  transform: translateY(-2px);
}

.loc-h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
}

.loc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.loc-address {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 16px;
}

.loc-address strong {
  color: var(--text);
  font-weight: 500;
}

.loc-address a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.loc-address a:hover {
  color: var(--gold);
}

/* Hours box */
.hours-box {
  background: var(--bg-warm);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin-bottom: 16px;
}

.hours-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  font-size: 13px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(24,64,93,0.08);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table td:first-child {
  color: var(--text-dim);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--navy);
}

/* loc-card-a — Slide-reveal map layout */
.loc-card-a {
  display: flex;
  min-height: 340px;
}

.loc-a-info {
  flex: 1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.loc-a-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex: 1;
}

.loc-a-info .loc-h3 {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

/* Map panel — collapsed to 64px, expands on click */
.loc-a-map-panel {
  width: 64px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--border);
  transition: width 0.54s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.loc-card-a.map-open .loc-a-map-panel {
  width: 277px;
}

.loc-a-map-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 277px;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.loc-a-trigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 10;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.28s ease, width 0.54s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.loc-card-a.map-open .loc-a-trigger {
  opacity: 0;
  pointer-events: none;
}

.loc-a-needle-logo {
  width: 56px;
  height: auto;
  display: block;
}

.loc-a-pulse {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

.loc-a-trigger-hitta {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.5); }
}

/* Map info plate (appears when map is open) */
.loc-a-plate {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(14, 34, 54, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 13px 16px 12px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
  pointer-events: none;
}

.loc-card-a.map-open .loc-a-plate {
  opacity: 1;
  transform: translateY(0);
}

.loc-a-plate-pin {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.loc-a-plate-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.loc-a-plate-name {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loc-a-plate-addr {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}

.loc-a-plate-maps {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  pointer-events: auto;
  flex-shrink: 0;
}

.loc-a-plate-maps:hover {
  color: #fff;
}

@media (max-width: 960px) {
  .locations-grid { grid-template-columns: 1fr; }
  .loc-card-a { min-height: 300px; }
  .loc-card-a.map-open .loc-a-map-panel { width: 244px; }
  .loc-a-map-img { width: 244px; }
}

@media (max-width: 560px) {
  .loc-card-a { min-height: 260px; }
  .loc-card-a.map-open .loc-a-map-panel { width: 211px; }
  .loc-a-map-img { width: 211px; }
  .loc-a-columns { grid-template-columns: 1fr; gap: 12px; }
}


/* ================================================================
   17. FAQ + FORM SECTION (Split layout)
   ================================================================ */
.faq-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

/* FAQ column (dark navy) */
.faq-col {
  background: var(--navy);
  padding: 64px 48px;
  color: #fff;
}

.faq-col .section-label {
  color: var(--gold);
}

.faq-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 32px;
}

.faq-col details {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.faq-col details:first-of-type {
  border-top: 1px solid rgba(255,255,255,0.15);
}

.faq-col summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  transition: color 0.2s;
  user-select: none;
}

.faq-col summary::-webkit-details-marker {
  display: none;
}

.faq-col summary::marker {
  display: none;
}

.faq-col summary:hover {
  color: var(--gold-light);
}

.faq-col .faq-triangle {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-col .faq-triangle svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-col details[open] .faq-triangle {
  transform: rotate(180deg);
}

.faq-col .faq-answer {
  padding: 0 0 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* Form column */
.form-col {
  background: var(--bg-warm);
  padding: 64px 48px;
}

.form-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-col .form-sub {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-col .form-group {
  margin-bottom: 18px;
}

.form-col label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-col input[type="text"],
.form-col input[type="email"],
.form-col input[type="tel"],
.form-col textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.2s;
}

.form-col input:focus,
.form-col textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-col textarea {
  min-height: 100px;
  resize: vertical;
}

.form-col .form-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}

.form-col .form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.form-col .form-submit:hover {
  background: #b5761e;
}

@media (max-width: 768px) {
  .faq-form-section { grid-template-columns: 1fr; }
  .faq-col, .form-col { padding: 48px 24px; }
}


/* ================================================================
   18. FINAL CTA (Gold gradient)
   ================================================================ */
.final-cta {
  background: linear-gradient(135deg, #cb8732 0%, #e7bd33 50%, #cb8732 100%);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.final-cta .section-label {
  color: rgba(255,255,255,0.7);
}

.final-cta h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.final-cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 600px) {
  .final-cta { padding: 60px 24px; }
}


/* ================================================================
   19. MOBILE STICKY CTA
   ================================================================ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 16px;
  gap: 10px;
}

@media (max-width: 768px) {
  .mobile-sticky { display: flex; }
}

.mobile-sticky a {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
}

.mobile-sticky .ms-primary {
  background: var(--gold);
  color: #fff;
}

.mobile-sticky .ms-secondary {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
}


/* ================================================================
   20. OPEN/CLOSED STATUS TAG
   ================================================================ */
.open-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}

.open-status-tag.open-now {
  color: #2a7a3a;
  background: rgba(42,122,58,0.09);
}

.open-status-tag.closed-now {
  color: var(--text-dim);
  background: rgba(107,99,96,0.08);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: status-blink 2s ease-in-out infinite;
}

.closed-now .status-dot {
  animation: none;
}

@keyframes status-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================================
   FAQ ACCORDION (fragor-svar, om-oss, stad-sidor, guide-posts)
   ============================================================ */
.faq-section {
  background: var(--bg, #fff);
  padding: 80px 40px 100px;
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-group {
  margin-bottom: 64px;
}
.faq-group:last-child { margin-bottom: 0; }
.faq-group-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border, #e8e3dd);
}
.faq-group-dot {
  width: 10px;
  height: 10px;
  background: var(--gold, #cb8732);
  border-radius: 50%;
  flex-shrink: 0;
}
.faq-group-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.50;
  flex-shrink: 0;
}
.faq-group-icon.icon-invert {
  filter: brightness(0.15);
}
.faq-group h2 {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
  color: var(--navy, #18405d);
}
.faq-item {
  border-bottom: 1px solid var(--border, #e8e3dd);
}
.faq-item:first-of-type {
  border-top: 1px solid var(--border, #e8e3dd);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.faq-question h3 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy, #18405d);
  line-height: 1.5;
  flex: 1;
  transition: color 0.2s ease;
}
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(203,135,50,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold, #cb8732);
  transition: transform 0.3s ease, stroke 0.25s ease;
}
.faq-question:hover .faq-icon {
  background: rgba(203,135,50,0.18);
}
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item .faq-answer-inner {
  padding: 0 0 26px 0;
}
.faq-item .faq-answer-inner p {
  font-size: 15px;
  color: var(--text-dim, #6b6360);
  line-height: 1.78;
  margin-bottom: 10px;
}
.faq-item .faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-item .faq-answer-inner a {
  color: var(--gold, #cb8732);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.faq-item .faq-answer-inner a:hover { color: #b5761e; }
.faq-item.open > .faq-answer {
  max-height: 800px;
}
.faq-item.open .faq-icon {
  background: var(--gold, #cb8732);
}
.faq-item.open .faq-icon svg {
  stroke: #fff;
  transform: rotate(45deg);
}
.faq-item.open .faq-question h3 {
  color: var(--gold, #cb8732);
}
@media (max-width: 640px) {
  .faq-section { padding: 52px 20px 72px; }
  .faq-question h3 { font-size: 14px; }
}

/* ============================================================
   FAQ CTA BLOCK
   ============================================================ */
.faq-cta {
  background: var(--navy, #18405d);
  padding: 80px 40px;
}
.faq-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.faq-cta-inner .section-label {
  color: var(--gold, #cb8732);
}
.faq-cta-inner h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.faq-cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.faq-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.faq-cta-btns .btn-ghost {
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.30);
}
.faq-cta-btns .btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
}
@media (max-width: 580px) {
  .faq-cta { padding: 60px 20px; }
  .faq-cta-btns { flex-direction: column; align-items: center; }
  .faq-cta-btns a { width: 100%; text-align: center; max-width: 320px; }
}

/* ============================================================
   FAQ DETAILS LIST (kontakt, stad-sidor — light variant)
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin-top: 48px;
}
.faq-list details {
  border-bottom: 1px solid var(--border, #e8e3dd);
}
.faq-list details:first-of-type {
  border-top: 1px solid var(--border, #e8e3dd);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy, #18405d);
  transition: color 0.2s;
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::marker { display: none; }
.faq-list summary:hover { color: var(--gold, #cb8732); }
.faq-triangle {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-triangle svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold, #cb8732);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
details[open] .faq-triangle { transform: rotate(180deg); }
.faq-list .faq-answer {
  max-height: none;
  overflow: visible;
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--text-dim, #6b6360);
  line-height: 1.7;
}
.faq-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold, #cb8732);
  text-decoration: none;
  transition: color 0.2s;
}
.faq-more-link:hover { color: #b5761e; }
.faq-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold, #cb8732);
  text-decoration: none;
  transition: color 0.2s;
}
.faq-all-link:hover { color: #b5761e; }

/* ============================================================
   HERO — Remove gap between breadcrumb and hero
   ============================================================ */
#main > #subpage-hero,
#main #subpage-hero {
  margin-top: 0;
}
#subpage-hero {
  width: 100%;
}

/* ============================================================
   LOCATION CARDS — Fix clock icon size in hours-label
   ============================================================ */
.hours-label svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--gold, #cb8732);
}
